forked from TIBCOSoftware/flogo-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trigger.json
executable file
·53 lines (53 loc) · 1.02 KB
/
trigger.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
{
"name": "flogo-timer",
"type": "flogo:trigger",
"ref": "github.com/TIBCOSoftware/flogo-contrib/trigger/timer",
"version": "0.0.1",
"title": "Timer",
"description": "Simple Timer trigger",
"homepage": "https://github.com/TIBCOSoftware/flogo-contrib/tree/master/trigger/timer",
"settings": [
],
"output": [
{
"name": "params",
"type": "params"
},
{
"name": "content",
"type": "object"
}
],
"handler": {
"settings": [
{
"name": "repeating",
"type": "string",
"value": "false",
"required" : true
},
{
"name": "notImmediate",
"type": "string",
"value": "true"
},
{
"name": "startDate",
"type": "string",
"value": "2018-01-01T12:00:00Z00:00"
},
{
"name": "hours",
"type": "string"
},
{
"name": "minutes",
"type": "string"
},
{
"name": "seconds",
"type": "string"
}
]
}
}