-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.json
63 lines (63 loc) · 1.36 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
{
"singleton": false,
"dependencies": [],
"category": "device_enhancements",
"author": "Z-Wave.Me",
"homepage": "https://github.com/alex-parkhomenko/SensorMirrorExt",
"icon": "icon.png",
"moduleName": "SensorMirrorExt",
"version": "0.3.0",
"maturity": "stable",
"repository": {
"type": "git",
"source": "https://github.com/alex-parkhomenko/SensorMirrorExt"
},
"defaults": {
"title": "__m_title__",
"description": "__m_descr__",
"device": ""
},
"schema": {
"type": "object",
"properties": {
"device": {
"type": "string",
"field": "enum",
"datasource": "namespaces",
"enum": "namespaces:devices_sensorMultilevel:deviceId",
"required": true
},
"targets": {
"type": "array",
"items": {
"type": "string",
"field": "enum",
"datasource": "namespaces",
"enum": "namespaces:devices_thermostat:deviceId",
"required": true
}
}
},
"required": false
},
"options": {
"fields": {
"device": {
"label": "__l_device__",
"datasource": "namespaces",
"field": "optionLabels",
"optionLabels": "namespaces:devices_sensorMultilevel:deviceName"
},
"targets": {
"fields": {
"item": {
"label": "__l_report_device__",
"datasource": "namespaces",
"field": "optionLabels",
"optionLabels": "namespaces:devices_thermostat:deviceName"
}
}
}
}
}
}