-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_workflow.json
More file actions
79 lines (79 loc) · 1.56 KB
/
example_workflow.json
File metadata and controls
79 lines (79 loc) · 1.56 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"nodes": [
{
"id": "start-1",
"type": "start",
"title": "Start",
"x": 50,
"y": 150,
"parameters": {},
"inputs": [],
"outputs": ["process-1"]
},
{
"id": "process-1",
"type": "process",
"title": "Transform Data",
"x": 250,
"y": 150,
"parameters": {
"operation": "transform",
"value": "uppercase"
},
"inputs": ["start-1"],
"outputs": ["decision-1"]
},
{
"id": "decision-1",
"type": "decision",
"title": "Check Condition",
"x": 450,
"y": 150,
"parameters": {
"condition": "value > 10"
},
"inputs": ["process-1"],
"outputs": ["process-2", "end-2"]
},
{
"id": "process-2",
"type": "process",
"title": "Process True Branch",
"x": 650,
"y": 50,
"parameters": {
"operation": "format",
"value": "result"
},
"inputs": ["decision-1"],
"outputs": ["end-1"]
},
{
"id": "end-1",
"type": "end",
"title": "End Success",
"x": 850,
"y": 50,
"parameters": {},
"inputs": ["process-2"],
"outputs": []
},
{
"id": "end-2",
"type": "end",
"title": "End Alternative",
"x": 850,
"y": 250,
"parameters": {},
"inputs": ["decision-1"],
"outputs": []
}
],
"connections": [
["start-1", "process-1"],
["process-1", "decision-1"],
["decision-1", "process-2"],
["decision-1", "end-2"],
["process-2", "end-1"]
]
}