UNPKG

xsd2json

Version:

Translate an XML Schema into equivalent JSON Schema

26 lines (25 loc) 415 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "yesno": { "enum": [ "yes", "no" ], "type":"string" }, "dog": { "properties": { "animal": { "allOf": [ { "$ref":"#/definitions/yesno" } ], "enum": [ "yes" ] } }, "type":"object" } } }