forked from Zie619/n8n-workflows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkflow_templates.json
More file actions
71 lines (71 loc) · 1.52 KB
/
Copy pathworkflow_templates.json
File metadata and controls
71 lines (71 loc) · 1.52 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
{
"data_pipeline": {
"name": "Data Pipeline Template",
"description": "Standard pattern for data processing workflows",
"nodes": [
{
"type": "trigger",
"name": "Data Source"
},
{
"type": "transform",
"name": "Data Processing"
},
{
"type": "validate",
"name": "Data Validation"
},
{
"type": "store",
"name": "Data Storage"
}
],
"pattern": "trigger \u2192 process \u2192 validate \u2192 store"
},
"api_integration": {
"name": "API Integration Template",
"description": "Standard pattern for API integrations",
"nodes": [
{
"type": "webhook",
"name": "API Trigger"
},
{
"type": "http",
"name": "API Call"
},
{
"type": "transform",
"name": "Response Processing"
},
{
"type": "action",
"name": "Result Action"
}
],
"pattern": "webhook \u2192 api_call \u2192 process \u2192 action"
},
"monitoring": {
"name": "Monitoring Template",
"description": "Standard pattern for monitoring workflows",
"nodes": [
{
"type": "schedule",
"name": "Check Trigger"
},
{
"type": "http",
"name": "Health Check"
},
{
"type": "if",
"name": "Status Check"
},
{
"type": "notification",
"name": "Alert"
}
],
"pattern": "schedule \u2192 check \u2192 condition \u2192 alert"
}
}