32 lines
872 B
JSON
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
|
|
} |