ServerSideRpcCallActionDescriptor.json
1.38 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
49
50
51
52
53
54
55
56
57
{
"schema": {
"title": "Send Mail Action Configuration",
"type": "object",
"properties": {
"sendFlag": {
"title": "Send flag (empty or 'isNewAlarm', 'isExistingAlarm', 'isClearedAlarm', 'isNewOrClearedAlarm')",
"type": "string"
},
"deviceIdTemplate": {
"title": "Device ID template",
"type": "string",
"default": "$deviceId"
},
"rpcCallMethodTemplate": {
"title": "RPC Call template",
"type": "string"
},
"rpcCallBodyTemplate": {
"title": "RPC Call Body template",
"type": "string"
},
"rpcCallTimeoutInSec": {
"title": "RPC Call timeout in seconds",
"type": "integer",
"default": 60
},
"fromDeviceRelationTemplate": {
"title": "From Device Relation template",
"type": "string"
},
"toDeviceRelationTemplate": {
"title": "To Device Relation template",
"type": "string"
}
},
"required": [
"deviceIdTemplate",
"rpcCallMethodTemplate",
"rpcCallBodyTemplate",
"rpcCallTimeoutInSec"
]
},
"form": [
"sendFlag",
"deviceIdTemplate",
"rpcCallMethodTemplate",
{
"key": "rpcCallBodyTemplate",
"type": "textarea",
"rows": 5
},
"rpcCallTimeoutInSec",
"fromDeviceRelationTemplate",
"toDeviceRelationTemplate"
]
}