forked from conductor-sdk/conductor-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workflow.json
40 lines (40 loc) · 1.02 KB
/
workflow.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
{
"updateTime": 1651520122357,
"name": "get_random_fact",
"description": "Edit or extend this sample workflow. Set the workflow name to get started",
"version": 1,
"tasks": [
{
"name": "get_random_fact",
"taskReferenceName": "get_random_fact",
"inputParameters": {
"http_request": {
"uri": "https://catfact.ninja/fact",
"method": "GET"
}
},
"type": "HTTP",
"decisionCases": {},
"defaultCase": [],
"forkTasks": [],
"startDelay": 0,
"joinOn": [],
"optional": false,
"defaultExclusiveJoinTask": [],
"asyncComplete": false,
"loopOver": []
}
],
"inputParameters": [],
"outputParameters": {
"data": "${get_random_fact.output.response.body.fact}",
"factLength": "${get_random_fact.output.response.body.length}"
},
"schemaVersion": 2,
"restartable": true,
"workflowStatusListenerEnabled": false,
"timeoutPolicy": "ALERT_ONLY",
"timeoutSeconds": 0,
"variables": {},
"inputTemplate": {}
}