esa-nodecg/shared/schemas/configschema/x32.json
2024-03-13 11:26:46 +01:00

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"
]
}