-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
64 lines (64 loc) · 1.32 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
{
"pluginAlias": "Cisco 9800",
"pluginType": "accessory",
"schema": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "Guest WiFi"
},
"ipAddress": {
"title": "IP Address",
"type": "string",
"required": true,
"default": "192.168.1.115"
},
"username": {
"title": "Username",
"type": "string",
"required": true,
"default": ""
},
"password": {
"title": "Password",
"type": "string",
"required": true,
"default": ""
},
"wlanName": {
"title": "WLAN Name",
"type": "string",
"required": true,
"default": "",
"description": "The WLAN name may not be the same as the SSID in the WLC config..."
},
"model": {
"title": "Model",
"type": "string",
"required": false,
"default": "C",
"description": "Model number to display in Homekit."
},
"serial": {
"title": "Serial Number",
"type": "string",
"required": false,
"default": "",
"description": "Serial number to display in Homekit."
},
"timeout": {
"title": "Timeout",
"type": "integer",
"required": false,
"default": false,
"description": "Specifies the number of milliseconds before the request times out. Default is 10000."
},
"debug": {
"title": "Debug",
"type": "boolean",
"required": false,
"default": false
}
}
}