dokytree/samples/it_v1/schemas_builder/parts/templates.json
2023-03-09 00:38:30 +01:00

26 lines
361 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"templates": {
"type": "object",
"properties": {
"node": {
"anyOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
},
"items": {
"anyOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
}
}
}
}
}