dokytree/samples/it_v2/schemas_builder/parts/ad_domain.json

47 lines
650 B
JSON

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