Schema definition for workflow run step.
What this schema does
Defines the object fields used for workflow run step data exchanged by this API.
Fields
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Yes | Name of the workflow step. |
| status | string | Yes | Current execution status of the workflow step. |
| type | string | Yes | Type of workflow step executed (for example, Activity or ChildWorkflow). |
| error | string | No | Error message returned for the step when execution fails. |
| occurredAt | string (date-time) | Yes | Date and time when the step event occurred. |
{
"name": "string",
"status": "string",
"type": "string",
"error": "string",
"occurredAt": "string"
}