WorkflowStepDetailsDto
Details about a specific workflow step when a TaskItemDto represents a workflow step view
Properties
| Name | Type | Description |
|---|---|---|
| step | CodeAndNameDto | |
| description | string | The description of the workflow step |
The description of the workflow step | ||
| workflowGroup | CodeAndNameDto | |
| groupDeadline | string | The deadline for the workflow group containing this step |
The deadline for the workflow group containing this step | ||
| status | enum | NotStarted InProgress Blocked Completed Skipped |
NotStarted InProgress Blocked Completed Skipped | ||
| isOverdue | boolean | Indicates if the workflow step is overdue (GroupDeadline is before today and status is not Completed or Skipped) |
Indicates if the workflow step is overdue (GroupDeadline is before today and status is not Completed or Skipped) | ||
| blockedReason | string | The reason this step is blocked. Only populated when Status is Blocked. |
The reason this step is blocked. Only populated when Status is Blocked. | ||
| completedDate | string | When this workflow step was completed (if applicable) |
When this workflow step was completed (if applicable) | ||
| assignedTo | CodeAndNameDto | |
| canStart | boolean | Indicates whether this step can be started based on its dependency requirements |
Indicates whether this step can be started based on its dependency requirements | ||
JSON Example
{
"step": {
"code": "string",
"name": "string"
},
"description": "string",
"workflowGroup": {
"code": "string",
"name": "string"
},
"groupDeadline": "2024-01-01T00:00:00Z",
"status": "NotStarted"
}