xsd2json
Version:
Translate an XML Schema into equivalent JSON Schema
25 lines (24 loc) • 426 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"pets": {
"type": "object",
"properties": {
"amount": {
"$ref": "#/definitions/@amount"
}
}
},
"houses": {
"type": "object",
"properties": {
"amount": {
"$ref": "#/definitions/@amount"
}
}
},
"@amount": {
"type": "integer"
}
}
}