You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my json decoder, I usually use json.loads(json_str, object_pairs_hook=OrderedDict), so that key-ordering is preserved. But the json_schema_generator does not support this:
json_schema_generator.schema_types.JsonSchemaTypeNotFound: There is no schema type for <class 'collections.OrderedDict'>.
The text was updated successfully, but these errors were encountered:
In my json decoder, I usually use
json.loads(json_str, object_pairs_hook=OrderedDict)
, so that key-ordering is preserved. But the json_schema_generator does not support this:json_schema_generator.schema_types.JsonSchemaTypeNotFound: There is no schema type for <class 'collections.OrderedDict'>.
The text was updated successfully, but these errors were encountered: