UNPKG

xsd2json

Version:

Translate an XML Schema into equivalent JSON Schema

21 lines (20 loc) 360 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "pets": { "type": "object", "properties": { "dog": { "type": "string" }, "cat": { "type": "string" } }, "required": ["dog", "cat"] }, "morePets": { "$ref": "#/definitions/pets" } } }