API Docs / Schemas / WorkflowStepAnalysisReportDto

WorkflowStepAnalysisReportDto

The Workflow Step Analysis report: for one workflow template, where does the time go across
every occurrence (task) spawned from it - per-step duration distributions plus a worst-first
occurrence list. Distributions over few occurrences are noise, so check the occurrence count.

Properties

Name Type Description
workflowCodeAndNameDto
summaryWorkflowStepAnalysisSummaryDto
stepsarray of WorkflowStepAnalysisStepDto

Per-step duration distributions, in workflow order. The occurrence list is served
separately (paged) by the occurrences endpoint.

Per-step duration distributions, in workflow order. The occurrence list is served
separately (paged) by the occurrences endpoint.

generatedAtstring

When the report was generated (UTC).

When the report was generated (UTC).

JSON Example

{
  "workflow": {
    "code": "string",
    "name": "string"
  },
  "summary": {
    "occurrenceCount": 0,
    "avgTotalDays": 0,
    "medianTotalDays": 0,
    "avgClientWaitDays": 0,
    "avgInternalDays": 0
  },
  "steps": [
    {
      "groupName": "...",
      "stepName": "...",
      "stepType": "...",
      "stage": "...",
      "isClientWait": "..."
    }
  ],
  "generatedAt": "2024-01-01T00:00:00Z"
}

Used By Operations