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

21 lines
304 B
JSON
Raw Normal View History

2023-03-08 23:38:30 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"roles": {
"type": "array",
"items": {
"anyOf": [
{ "type": "string" },
{ "enum": [
"''",
"'DHCP'",
"'DNS'",
"'VPN'",
"'Firewall'",
"'Router'"
]}
]
}
}
}
}