-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathconfig.schema.json
47 lines (47 loc) · 1.35 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
{
"pluginAlias": "WyzeConnectedHome",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Plugin Name",
"description": "This name will appear in your Homebridge log",
"type": "string",
"default": "Wyze",
"required": true
},
"username": {
"title": "Username (E-Mail Address)",
"description": "The e-mail address used for your Wyze account",
"type": "string",
"default": "",
"required": true
},
"password": {
"title": "Password",
"description": "The password used for your Wyze account",
"type": "string",
"default": "",
"required": true
},
"refreshInterval": {
"title": "Refresh Interval",
"description": "Specify the number of milliseconds to wait between updates, default is 10000 ms (10 seconds)",
"type": "integer",
"default": 10000,
"required": false
},
"mfaCode": {
"title": "One-time Password (for two-factor authentication)",
"description": "Only required for initial login if you have two-factor authentication enabled on your Wyze account",
"type": "string",
"default": "",
"required": false
}
}
},
"form": null,
"display": null
}