UNPKG

xsd2json

Version:

Translate an XML Schema into equivalent JSON Schema

19 lines (18 loc) 324 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "pets": { "type": "object", "properties": { "dog": { "type": "array", "items": { "type": "string" }, "minItems": 0, "maxItems": 42 } } } } }