UNPKG

xsd2json

Version:

Translate an XML Schema into equivalent JSON Schema

20 lines (19 loc) 334 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "recursive": { "required": [ "node" ], "type": "object", "properties": { "node": { "$ref": "#/definitions/recursive" } } } }, "allOf": [ { "$ref": "#/definitions/recursive" } ] }