19 lines
571 B
JSON
19 lines
571 B
JSON
{
|
|
"name": "Delay",
|
|
"type": "delay",
|
|
"icon": "clock",
|
|
"description": "Pause workflow execution for a specified time",
|
|
"category": "Flow Control",
|
|
"version": "1.0.0",
|
|
"configSchema": [
|
|
{ "key": "duration", "type": "number", "label": "Duration", "required": true, "default": 1000 },
|
|
{ "key": "unit", "type": "select", "label": "Unit", "options": ["milliseconds", "seconds", "minutes", "hours"], "default": "milliseconds" }
|
|
],
|
|
"inputs": [
|
|
{ "key": "input", "label": "Input" }
|
|
],
|
|
"outputs": [
|
|
{ "key": "output", "label": "Output" }
|
|
]
|
|
}
|