mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-24 08:36:11 +00:00
74 lines
1.1 KiB
JSON
74 lines
1.1 KiB
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"title": "YAML Schema for computer",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"properties": {
|
||
|
"index": { "type": "integer" },
|
||
|
"title": {
|
||
|
"anyOf": [
|
||
|
{"type": "string"},
|
||
|
{"enum": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
},
|
||
|
"book": { "type": "boolean" },
|
||
|
"toc": { "type": "boolean" },
|
||
|
"templates": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"node": {
|
||
|
"anyOf": [
|
||
|
{"type": "string"},
|
||
|
{"enum": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
},
|
||
|
"items": {
|
||
|
"anyOf": [
|
||
|
{"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": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|