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

52 lines
705 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"path": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
},
"targets": {
"type": "array",
"items": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
}
},
"folders": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
},
"targets": {
"type": "array",
"items": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
}
}
}
}
}
}
}