MqttPluginDescriptor.json
1.06 KB
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
{
"schema": {
"title": "Mqtt Plugin Configuration",
"type": "object",
"properties": {
"host": {
"title": "Specify the host to connect to",
"type": "string",
"default": "localhost"
},
"port": {
"title": "Connect to the port specified",
"type": "integer",
"default": 1883
},
"accessToken": {
"title": "Username (Access Token) to be used for authenticating.",
"type": "string"
},
"clientId": {
"title": "The id to use for this client.",
"type": "string"
},
"maxInFlight": {
"title": "How many messages can be send without acknowledgments.",
"type": "integer",
"default": 1000
},
"retryInterval": {
"title": "Interval to wait between connect attempts to host.",
"type": "integer",
"default": 3000
}
},
"required": [
"host",
"port"
]
},
"form": [
"host",
"port",
"accessToken",
"clientId",
"maxInFlight",
"retryInterval"
]
}