NetworkScript/network-presets.schema.json

35 lines
1.1 KiB
JSON
Raw Normal View History

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Network Presets Schema",
"type": "object",
"properties": {
"presets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"adapterGuid": { "type": "string" },
"adapterName": { "type": "string" },
"adapterDescription": { "type": "string" },
"presets": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"type": { "type": "string", "enum": ["Manual","DHCP"] },
"ipAddress": { "type": "string" },
"prefixLength": { "type": "integer", "minimum": 0, "maximum": 32 },
"gateway": { "type": ["string","null"] },
"dns": { "type": "array", "items": { "type": "string" } }
},
"required": [ "name", "type" ]
}
}
},
"required": [ "adapterGuid", "presets" ]
}
}
},
"required": [ "presets" ]
}