UNPKG

xsd2json

Version:

Translate an XML Schema into equivalent JSON Schema

29 lines (28 loc) 542 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "OrderType": { "type": "object", "properties": { "customer": { "type": "string" }, "number": { "type": "integer", "minimum": 0, "exclusiveMinimum": true }, "items": { "type": "integer", "minimum": 0, "exclusiveMinimum": false } }, "required": [ "number", "customer", "items" ] } } }