generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.schema.json
37 lines (37 loc) · 907 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
{
"pluginAlias": "SamsungTVPrior2014",
"pluginType": "platform",
"schema": {
"type": "object",
"properties": {
"tvs": {
"title": "TVs",
"type": "array",
"items": {
"title": "TV",
"type": "object",
"properties": {
"displayName": {
"title": "Name",
"type": "string",
"description": "Name for your TV",
"required": true
},
"ipAddress": {
"title": "IP Address",
"type": "string",
"description": "IP address of the TV",
"required": true
},
"macAddress": {
"title": "MAC Address",
"type": "string",
"description": "MAC address of the TV",
"required": true
}
}
}
}
}
}
}