dokytree/samples/it_v2/schemas_builder/parts/urls.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": [
"''"
]}
]
}
}
}
}
}
}