xsd2json
Version:
Translate an XML Schema into equivalent JSON Schema
30 lines (29 loc) • 532 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"pets": {
"type": "object",
"properties": {
"dog": {
"type": "string"
},
"cat": {
"type": "string"
}
},
"required": ["dog", "cat"]
},
"shapes": {
"type": "object",
"properties": {
"circle": {
"type": "string"
},
"square": {
"type": "string"
}
},
"required": ["circle", "square"]
}
}
}