xsd2json
Version:
Translate an XML Schema into equivalent JSON Schema
28 lines (27 loc) • 528 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"pets": {
"type": "object",
"properties": {
"dog": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 3,
"maxItems": 8
},
"amount": {
"$ref": "#/definitions/myInteger"
}
},
"required": ["dog"]
},
"myInteger": {
"type": "integer",
"maximum": 8,
"exclusiveMaximum": false
}
}
}