This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
Enhancements
-
JSON Schemas generated for
fixed-type
arrays with a single sub-type will no longer be wrapped in ananyOf
schema. Thusarray[Object]
asfixed-type
will now result in the following schema:{ "type": "array", "items": { "type": "object" } }
Bug Fixes
- JSON Schemas generated for
fixed-type
arrays with no types will no longer produce an emptyanyOf
subschema.anyOf
must be a non-empty array in JSON Schema.