-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconfig.schema.json
65 lines (65 loc) · 2 KB
/
config.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
59
60
61
62
63
64
65
{
"pluginAlias": "Eufy RoboVac",
"pluginType": "accessory",
"headerDisplay": "You must have your eufy RoboVac's device ID & local key to configure this plugin. For information about getting your eufy RoboVac's device ID & local key, go [here](https://github.com/joshstrange/eufy-robovac#readme).",
"singular": false,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "eufy RoboVac Name",
"type": "string",
"required": true,
"default": "eufy RoboVac",
"description": "Enter a name for your eufy RoboVac device."
},
"ip": {
"title": "eufy RoboVac IP Address",
"type": "ipv4",
"required": true,
"description": "Enter the IP Address assigned to your eufy RoboVac device."
},
"deviceid": {
"title": "eufy RoboVac device ID",
"type": "string",
"required": true,
"description": "Enter the device ID of your eufy RoboVac device."
},
"localkey": {
"title": "eufy RoboVac local key",
"type": "string",
"required": true,
"description": "Enter the local key of your eufy RoboVac device."
},
"useSwitchService": {
"title": "eufy RoboVac Accessory Type",
"type": "string",
"required": true,
"default": "switch",
"oneOf": [
{"title": "Switch", "enum": ["switch"]},
{"title": "Fan", "enum": ["fan"]}
]
},
"hideFindButton": {
"title": "Find My Robot",
"type": "boolean",
"oneOf": [
{"title": "Enabled", "enum": ["false"]},
{"title": "Disabled", "enum": ["true"]}
],
"required": true,
"default": "Disabled"
},
"debugLog": {
"title": "Enable Debug Logging",
"type": "boolean",
"required": false,
"description": "This should only be enabled for troubleshooting purposes.",
"default": false
}
}
},
"form": null,
"display": null
}