37 lines
884 B
JSON
37 lines
884 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://unidesk.pikapython.com/schema/feature-config.schema.json",
|
|
"title": "UniDesk Product Feature Configuration",
|
|
"type": "object",
|
|
"properties": {
|
|
"webProbeSentinel": {
|
|
"x-unidesk-feature": "web-probe-sentinel",
|
|
"type": "object",
|
|
"required": [
|
|
"enabled",
|
|
"scheduler"
|
|
],
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean"
|
|
},
|
|
"scheduler": {
|
|
"type": "object",
|
|
"required": [
|
|
"intervalSeconds"
|
|
],
|
|
"properties": {
|
|
"intervalSeconds": {
|
|
"type": "integer",
|
|
"minimum": 30
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|