mirror of
https://github.com/Zie619/n8n-workflows.git
synced 2025-11-25 03:15:25 +08:00
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"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"
|
|
}
|
|
} |