UNPKG

xsd2json

Version:

Translate an XML Schema into equivalent JSON Schema

26 lines (25 loc) 391 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "pets": { "enum": [ "cat", "dog", "parrot", "hamster" ], "type": "string" }, "myType": { "required": [ "dog" ], "type": "object", "properties": { "dog": { "type": "string" } } } } }