-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmodule.json
93 lines (92 loc) · 1.87 KB
/
module.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"singleton" : true,
"dependencies": [],
"category": "support_external_dev",
"author": "Patrick Hecker",
"homepage": "sensor.fh-zwickau.de",
"icon": "icon.png",
"moduleName": "OpenHABConnector",
"repository" : {
"source" : "https://github.com/pathec/ZWay-OpenHABConnector",
"type" : "git"
},
"version": "0.1.8",
"maturity": "beta",
"defaults" : {
"title" : "__m_title__",
"description" : "__m_descr__"
},
"schema" : {
"type" : "object",
"properties" : {
"commonOptions": {
"type": "object",
"properties": {
"openHabServers": {
"type": "array",
"items": {
"type": "object",
"properties": {
"openHabAlias": {
"type": "text",
"required": true
},
"protocol": {
"type": "text",
"required": false
},
"ipAddress": {
"type": "text",
"required": true
},
"port": {
"type": "integer",
"required": true
}
}
}
}
}
}
},
"required": false
},
"options": {
"fields": {
"commonOptions": {
"label": "__l_common_options__",
"fields": {
"openHabServers": {
"label": "__l_openhab_servers__",
"fields": {
"item": {
"fields": {
"openHabAlias": {
"label": "__l_openhab_alias__",
"type": "text",
"helper": "__l_openhab_alias_help__"
},
"protocol": {
"label": "__l_protocol__",
"type": "text",
"helper": "__l_protocol_help__"
},
"ipAddress": {
"label": "__l_ip_address__",
"type": "text",
"helper": "__l_ip_address_help__"
},
"port": {
"label": "__l_port__",
"type": "integer",
"helper": "__l_port_help__"
}
}
}
}
}
}
}
}
}
}