xsd2json
Version:
Translate an XML Schema into equivalent JSON Schema
23 lines (22 loc) • 412 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"pets": {
"type": "object",
"properties": {
"dog": {
"type": "array",
"items": {
"type": "string"
},
"minItems": 2,
"maxItems": 2
},
"cat": {
"type": "string"
}
},
"required": ["cat", "dog"]
}
}
}