mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-24 00:26:11 +00:00
29 lines
420 B
JSON
29 lines
420 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"urls": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"website": {
|
|
"oneOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
},
|
|
"download": {
|
|
"oneOf": [
|
|
{"type": "string"},
|
|
{"enum": [
|
|
"''"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |