generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
45 lines (45 loc) · 928 Bytes
/
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
{
"pluginAlias": "Platform PDU",
"pluginType": "platform",
"schema": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "LAB Platform PDU"
},
"debug": {
"title": "Debug",
"type": "boolean",
"required": false,
"default": false
},
"refreshInterval": {
"title": "Refresh Interval",
"type": "integer",
"required": false,
"description": "Specifies the number of minutes between outlet status polls and updates. Default is 15."
},
"pdus": {
"type": "array",
"items": {
"title": "PDU config",
"type": "object",
"properties": {
"ipAddress": {
"title": "IP Address",
"type": "string",
"required": true,
"default": "192.168.1.70"
},
"snmpCommunity": {
"title": "SNMP Write Community",
"type": "string",
"required": true,
"default": "private"
}
}
}
}
}
}