API Docs / Schemas / KanbanTaskDto

KanbanTaskDto

Lightweight task summary for kanban board cards

Properties

Name Type Description
codestring

The task code (for linking to the task page)

The task code (for linking to the task page)

namestring

The task name

The task name

statusenum

NotStarted InProgress Blocked Completed Skipped

NotStarted InProgress Blocked Completed Skipped

dueDatestring

The task due date. Used by the frontend to determine if the task is overdue.

The task due date. Used by the frontend to determine if the task is overdue.

currentStepNamestring

The current workflow step name (if the task has an active workflow).
When present, this is more useful than the task name on kanban cards.

The current workflow step name (if the task has an active workflow).
When present, this is more useful than the task name on kanban cards.

currentStepStatusenum

NotStarted InProgress Blocked Completed Skipped

NotStarted InProgress Blocked Completed Skipped

JSON Example

{
  "code": "string",
  "name": "string",
  "status": "NotStarted",
  "dueDate": "2024-01-01T00:00:00Z",
  "currentStepName": "string"
}

Contained in Schemas