UNPKG

xsd2json

Version:

Translate an XML Schema into equivalent JSON Schema

20 lines (19 loc) 282 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "allOf": [ { "$ref": "#/definitions/Pets" } ], "definitions": { "Pets": { "type": "string", "enum": [ "cat", "dog", "parrot", "hamster" ] } } }