winutil/schemas/config/dns.json

30 lines
663 B
JSON
Raw Normal View History

2024-08-07 08:27:05 -05:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"patternProperties": {
"^[a-zA-Z_][a-zA-Z0-9_]*$": {
"type": "object",
"properties": {
"Primary": {
"type": "string",
"format": "ipv4"
},
"Secondary": {
"type": "string",
"format": "ipv4"
},
"Primary6": {
"type": "string",
"format": "ipv6"
},
"Secondary6": {
"type": "string",
"format": "ipv6"
}
},
2024-08-07 10:11:07 -05:00
"required": ["Primary", "Secondary", "Primary6", "Secondary6"],
"additionalProperties": false
2024-08-07 08:27:05 -05:00
}
}
}