nfsense/internal/validation/schema/network/network.schema.json

20 lines
No EOL
565 B
JSON

{
"$id": "https://nfsense.net/schema/network/network.schema.json",
"title": "Network",
"type": "object",
"properties": {
"interfaces": {
"type": "object",
"additionalProperties": {
"$ref": "https://nfsense.net/schema/network/interface.schema.json"
}
},
"static_routes": {
"type": "array",
"items": {
"$ref": "https://nfsense.net/schema/network/static_route.schema.json"
}
}
},
"required": ["interfaces"]
}