master
json 28 lines 704 Bytes
Raw
1 {
2 "jsonSchema": {
3 "$schema": "http://json-schema.org/draft-07/schema#",
4 "title": "Access Point collector configuration.",
5 "type": "object",
6 "properties": {
7 "update_every": {
8 "title": "Update every",
9 "description": "Data collection interval, measured in seconds.",
10 "type": "integer",
11 "minimum": 1,
12 "default": 1
13 },
14 "sensors_path": {
15 "title": "Sensors path",
16 "description": "Directory path containing sensor folders with w1_slave files.",
17 "type": "string",
18 "default": "/sys/bus/w1/devices"
19 }
20 },
21 "required": []
22 },
23 "uiSchema": {
24 "uiOptions": {
25 "fullPage": true
26 }
27 }
28 }