dokytree/samples/it_v1/schemas/wifi.json
2023-03-09 00:38:30 +01:00

107 lines
1.5 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": [
"''",
"'LAN'",
"'LAN01'",
"'LAN02'",
"'LAN03'",
"'LAN04'",
"'LAN06'",
"'LAN07'",
"'LAN08'",
"'LAN09'",
"'LAN10'",
"'WAN'",
"'WIFI'",
"'GUEST'",
"'DMZ'",
"'VPN'"
]}
]
},
"ssid": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
},
"key": {
"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": [
"''"
]}
]
}
}
}
}