-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
57 lines (57 loc) · 1.25 KB
/
manifest.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
{
"author": "atirage",
"description": "miLight adapter add-on for WebThings Gateway",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/atirage/miLight-adapter#readme",
"id": "miLight-adapter",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "miLight",
"options": {
"default": {
"bulbs": [
{
"bridgeIP": "192.168.0.66",
"bridgePort": 8899,
"zone": 0
}
]
},
"schema": {
"type": "object",
"properties": {
"bulbs": {
"type": "array",
"items": {
"type": "object",
"required": [
"bridgeIP"
],
"properties": {
"bridgeIP": {
"type": "string"
},
"bridgePort": {
"type": "integer",
"minimum": 1
},
"zone": {
"type": "integer",
"minimum": 0
}
}
}
}
}
}
},
"short_name": "miLight",
"version": "0.0.7"
}