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

23 lines
No EOL
525 B
JSON

{
"$id": "https://nfsense.net/schema/network/static_route.schema.json",
"title": "Static Route",
"type": "object",
"properties": {
"name": {
"type": "string"
},
"interface": {
"type": "string"
},
"gateway": {
"type": "string"
},
"destination": {
"type": "string"
},
"metric": {
"type": "number"
}
},
"required": ["name", "interface", "gateway", "destination"]
}