JSConfig scope deserialize

The following doesn’t seem to be respecting the JsConfig scope settings when deserializing.
Am I missing something here?

https://gistlyn.com/?gist=d4dd00bbc9a150a69e782a07753c575e&collection=2cc6b5db6afd3ccb0d0149e55fdb3a6a

TextCase is only used for property text serialization, if you want to make the property deserialization more lax to support deserializing snake_case you’ll also need:

scope.PropertyConvention = PropertyConvention.Lenient;
1 Like