JsonUnmappedMemberHandling
Determines how JsonSerializer handles JSON properties that cannot be mapped to a specific .NET member when deserializing object types.
Disallow = 1
Throws an exception when an unmapped property is encountered.
Skip = 0
Silently skips any unmapped properties. This is the default behavior.