Schema definition for workflow step.
What this schema does
Defines the object fields used for workflow step data exchanged by this API.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Name of the workflow step. |
| next | string | No | Identifier or name of the next step to execute after this step completes. |
| input | object | No | Optional input data provided to the step, represented as a flexible key-value object. |
{
"name": "string",
"next": "string",
"input": {}
}