mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-25 09:06:11 +00:00
38 lines
512 B
JSON
38 lines
512 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"properties": {
|
||
|
"headfiles": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"anyOf": [
|
||
|
{ "type": "string" },
|
||
|
{ "enum": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"files": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"anyOf": [
|
||
|
{ "type": "string" },
|
||
|
{ "enum": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"footfiles": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"anyOf": [
|
||
|
{ "type": "string" },
|
||
|
{ "enum": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|