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