@nju33/json-schema
Version:
[](https://www.npmjs.com/package/@nju33/json-schema)
29 lines (28 loc) • 485 B
JSON
{
"definitions": {
"title": {
"type": "string"
},
"value": {
"type": "string"
},
"short": {
"type": "boolean"
},
"field": {
"type": "object",
"properties": {
"title": {
"$ref": "#/definitions/title"
},
"value": {
"$ref": "#/definitions/value"
},
"short": {
"$ref": "#/definitions/short"
}
},
"required": ["title", "value"]
}
}
}