API Docs / Schemas / WorkflowOccurrenceDto

WorkflowOccurrenceDto

One occurrence (task) of the workflow: its total elapsed time and the client-wait vs
internal split - "show me the ten slowest VAT-return runs this quarter".

Properties

Name Type Description
taskCodeAndNameDto
clientCodeAndNameDto
completedDatestring

When the task completed (UTC).

When the task completed (UTC).

totalElapsedDaysnumber

Days from the task's actual start (fallback planned start) to completion.

Days from the task's actual start (fallback planned start) to completion.

clientWaitDaysnumber

Days of the step chain spent waiting on the client.

Days of the step chain spent waiting on the client.

internalDaysnumber

Days of the step chain spent on practice-side steps.

Days of the step chain spent on practice-side steps.

JSON Example

{
  "task": {
    "code": "string",
    "name": "string"
  },
  "client": {
    "code": "string",
    "name": "string"
  },
  "completedDate": "2024-01-01T00:00:00Z",
  "totalElapsedDays": 0,
  "clientWaitDays": 0
}

Contained in Schemas