mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-23 16:16:12 +00:00
117 lines
1.6 KiB
JSON
117 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "YAML Schema for computer",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"todo": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"msg": {
|
|
"anyOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"priority": { "type": "integer" },
|
|
"duration": {
|
|
"anyOf": [
|
|
{"type": "integer"},
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"name": {
|
|
"oneOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"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": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"headfiles": {
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
},
|
|
"files": {
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
},
|
|
"footfiles": {
|
|
"type": "array",
|
|
"items": {
|
|
"anyOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|