ServiceDeliveryReportDto
The Service Delivery Turnaround report: headline KPIs plus the breakdown table for the
requested grouping. The common report response shape - summary, rows, generatedAt.
Properties
| Name | Type | Description |
|---|---|---|
| summary | ServiceDeliverySummaryDto | |
| rows | ServiceDeliveryRowDtoPagedResult | |
| generatedAt | string | UTC timestamp the report was computed - the report is a point-in-time snapshot, not live. |
UTC timestamp the report was computed - the report is a point-in-time snapshot, not live. | ||
JSON Example
{
"summary": {
"completedCount": 0,
"avgTurnaroundDays": 0,
"medianTurnaroundDays": 0,
"onTimePct": 0,
"statutoryOnTimePct": 0
},
"rows": {
"data": [
"..."
],
"totalCount": 0,
"offset": 0,
"limit": 0,
"hasMore": false
},
"generatedAt": "2024-01-01T00:00:00Z"
}