mirror of
https://github.com/MatMoul/dokytree.git
synced 2024-12-24 08:36:11 +00:00
87 lines
1.3 KiB
JSON
87 lines
1.3 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"properties": {
|
|
"subnet": {
|
|
"type": "string",
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'192.168.0.0/24'",
|
|
"'192.168.1.0/24'"
|
|
]}
|
|
]
|
|
},
|
|
"gw": {
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'192.168.0.1'",
|
|
"'192.168.1.1'"
|
|
]}
|
|
]
|
|
},
|
|
"dns": {
|
|
"type": "array",
|
|
"items": {
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'192.168.0.1'",
|
|
"'192.168.1.1'"
|
|
]}
|
|
]
|
|
}
|
|
},
|
|
"vlans": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"dhcp": {
|
|
"type": "object",
|
|
"properties": {
|
|
"server": {
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'192.168.0.1'",
|
|
"'192.168.1.1'"
|
|
]}
|
|
]
|
|
},
|
|
"ranges": {
|
|
"type": "array",
|
|
"items": {
|
|
"properties": {
|
|
"from": {
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'192.168.0.20'",
|
|
"'192.168.1.20'"
|
|
]}
|
|
]
|
|
},
|
|
"to": {
|
|
"oneOf": [
|
|
{ "type": "string" },
|
|
{ "enum": [
|
|
"''",
|
|
"'192.168.0.99'",
|
|
"'192.168.1.99'"
|
|
]}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |