29 lines
493 B
JSON
29 lines
493 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"default": true
|
|
},
|
|
"ip": {
|
|
"type": "string",
|
|
"default": "10.20.30.42"
|
|
},
|
|
"localPort": {
|
|
"type": "number",
|
|
"default": 52361
|
|
},
|
|
"xr18": {
|
|
"type": "boolean",
|
|
"default": false
|
|
}
|
|
},
|
|
"required": [
|
|
"enabled",
|
|
"ip",
|
|
"localPort",
|
|
"xr18"
|
|
]
|
|
} |