-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
50 lines (50 loc) · 1.3 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
{
"manifest_version": 1,
"id": "mqtt-bridge",
"name": "MQTT Bridge",
"short_name": "MQTT",
"version": "0.0.2",
"description": "Bridge your webthings to MQTT",
"homepage_url": "https://github.com/bewee/mqtt-bridge#readme",
"license": "MPL-2.0",
"author": "bewee",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"strict_min_version": "1.0.0",
"strict_max_version": "*",
"primary_type": "extension"
}
},
"options": {
"default": {
"mqttbroker_url": "mqtt://127.0.0.1:1883"
},
"schema": {
"type": "object",
"required": [
"webthingsclient_accessToken",
"mqttbroker_url"
],
"properties": {
"webthingsclient_accessToken": {
"type": "string",
"title": "Access token",
"description": "required in order to communicate with devices"
},
"mqttbroker_url": {
"type": "string",
"title": "URL of the MQTT broker"
},
"mqttbroker_user": {
"type": "string",
"title": "Username for authentification against the MQTT broker"
},
"mqttbroker_password": {
"type": "string",
"title": "Password for authentification against the MQTT broker"
}
}
}
}
}