Files
m.heisig 2d11c43579 Added minimal functionality for Robot teaching
- Added minimal HMI
- Added possibility to open and close all chamber doors
2026-01-17 09:20:39 +01:00

32 lines
872 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"CONFIG_PAGE_ARRAY_LIMIT": {
"type": "integer",
"configDescription": "DESC_CONFIG_PAGE_ARRAY_LIMIT",
"default": 100,
"minimum": 1
},
"LOG_PAGE_MAX_ENTRIES": {
"type": "integer",
"configDescription": "DESC_LOG_PAGE_MAX_ENTRIES",
"default": 200,
"minimum": 10
},
"HTML_ERRORS": {
"configDescription": "DESC_HTML_ERRORS",
"type": "boolean",
"default": false
},
"SCRIPT_TIMEOUT": {
"configDescription": "DESC_SCRIPT_TIMEOUT",
"type": "string",
"format": "timespan",
"default": "PT10S",
"formatMinimum": "PT5S"
}
},
"required": [ "CONFIG_PAGE_ARRAY_LIMIT", "LOG_PAGE_MAX_ENTRIES", "HTML_ERRORS", "SCRIPT_TIMEOUT" ],
"type": "object",
"additionalProperties": false
}