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 |
|---|---|---|
| workflow | CodeAndNameDto | |
| summary | WorkflowStepAnalysisSummaryDto | |
| steps | array of WorkflowStepAnalysisStepDto | Per-step duration distributions, in workflow order. The occurrence list is served |
Per-step duration distributions, in workflow order. The occurrence list is served | ||
| generatedAt | string | 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"
}