-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.schema.json
54 lines (54 loc) · 1007 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
46
47
48
49
50
51
52
53
54
{
"pluginAlias": "Raritan PDU",
"pluginType": "accessory",
"schema": {
"name": {
"title": "Name",
"type": "string",
"required": true,
"default": "PDU"
},
"ip": {
"title": "IP-Address or Hostname",
"type": "string",
"required": true,
"default": "192.168.1.70"
},
"snmp_community": {
"title": "SNMP Read/Write Community",
"type": "string",
"required": true,
"default": "RW"
},
"outlet_count": {
"title": "Number of Outlets",
"type": "integer",
"required": true,
"default": 24
},
"manufacturer": {
"title": "PDU Manufacturer",
"type": "string",
"required": false,
"default": "Raritan-PDU"
},
"model": {
"title": "PDU Model",
"type": "string",
"required": false,
"default": "PX-5475"
},
"serial": {
"title": "Serial Number",
"type": "string",
"required": false,
"default": ""
},
"firmware": {
"title": "Firmware Version",
"type": "string",
"required": false,
"default": ""
}
}
}