mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-25 09:06:11 +00:00
63 lines
960 B
JSON
63 lines
960 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||
|
"properties": {
|
||
|
"interfaces": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"name": {
|
||
|
"anyOf": [
|
||
|
{"type": "string"},
|
||
|
{"enum": [
|
||
|
"''",
|
||
|
"'LAN'",
|
||
|
"'WIFI'",
|
||
|
"'WAN'",
|
||
|
"'VPN'"
|
||
|
]}
|
||
|
]
|
||
|
},
|
||
|
"ip": {
|
||
|
"anyOf": [
|
||
|
{"type": "string"},
|
||
|
{"enum": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
},
|
||
|
"mask": {
|
||
|
"anyOf": [
|
||
|
{"type": "string"},
|
||
|
{"enum": [
|
||
|
"''",
|
||
|
"'255.255.255.0'",
|
||
|
"'255.255.0.0'",
|
||
|
"'255.0.0.0'"
|
||
|
]}
|
||
|
]
|
||
|
},
|
||
|
"gw": {
|
||
|
"anyOf": [
|
||
|
{"type": "string"},
|
||
|
{"enum": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
},
|
||
|
"dns": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"anyOf": [
|
||
|
{"type": "string"},
|
||
|
{"enum": [
|
||
|
"''"
|
||
|
]}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|