-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings-schema.json
58 lines (58 loc) · 1.6 KB
/
settings-schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"head": {
"type": "header",
"description": "General Settings for the Nighscout Applet"
},
"refreshInterval": {
"type": "spinbutton",
"default": 2,
"min": 1,
"max": 10,
"step": 0.5,
"units": "minutes",
"description": "Refresh Interval for your Nightscout applet:",
"tooltip": "Increase or decrease this spinner value to change the refresh interval - use a slow refresh if you have a slow machine."
},
"head1": {
"type": "header",
"description": "Nightscout host"
},
"host": {
"type": "entry",
"default": "http://example.com",
"description": "Nighscout host (including http(s))",
"tooltip": "A host where your CGM information gonna be queried"
},
"head2": {
"type": "header",
"description": "Various settings"
},
"showMissing": {
"type": "checkbox",
"default": true,
"description": "Show missing readings",
"tooltip": "Add information about missing readings in the text"
},
"showMissingInterval": {
"type": "spinbutton",
"default": 15,
"min": 10,
"max": 40,
"step": 5,
"units": "minutes",
"description": "When start to show missing readings alert",
"tooltip": "Time which is taken to decide when to show alert of missing readings. Will apply only if above checkbox is enabled"
},
"showiob": {
"type": "checkbox",
"default": true,
"description": "Show IoB",
"tooltip": "Enable/disable IoB (insulin on board) in the text"
},
"usemmol": {
"type": "checkbox",
"default": true,
"description": "Use mmol/l",
"tooltip": "Use mmol/l instead of mg/dl"
}
}