mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-13 11:38:21 +00:00
23 lines
No EOL
525 B
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"]
|
|
} |