mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-25 09:06:11 +00:00
47 lines
650 B
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": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|