dokytree/samples/it_v1/schemas_builder/parts/subnet_name.json

28 lines
401 B
JSON
Raw Normal View History

2023-03-08 23:38:30 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"name": {
"oneOf": [
{"type": "string"},
{"enum": [
"''",
"'LAN'",
"'LAN01'",
"'LAN02'",
"'LAN03'",
"'LAN04'",
"'LAN06'",
"'LAN07'",
"'LAN08'",
"'LAN09'",
"'LAN10'",
"'WAN'",
"'WIFI'",
"'GUEST'",
"'DMZ'",
"'VPN'"
]}
]
}
}
}