30 lines
776 B
JSON
30 lines
776 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"definitions": {
|
|
"object_check": {
|
|
"type": "object",
|
|
"dependencies": {
|
|
"type": ["title", "description"]
|
|
},
|
|
"additionalProperties": {
|
|
"anyOf": [
|
|
{ "type": "object", "$ref": "#/definitions/object_check" },
|
|
{ "type": "array", "$ref": "#/definitions/array_check" }
|
|
]
|
|
}
|
|
},
|
|
"array_check": {
|
|
"items": {
|
|
"anyOf": [
|
|
{ "type": "object", "$ref": "#/definitions/object_check" },
|
|
{ "type": "array", "$ref": "#/definitions/array_check" }
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"anyOf": [
|
|
{ "type": "object", "$ref": "#/definitions/object_check" },
|
|
{ "type": "array", "$ref": "#/definitions/array_check" }
|
|
]
|
|
}
|