TaskDateSummaryDto
One date's slice of a task date summary: the first tasks on that date plus the
total number of tasks the date holds. Dates with no tasks are omitted from responses.
Properties
| Name | Type | Description |
|---|---|---|
| date | string | The date the tasks fall on, per the query's dateBasis |
The date the tasks fall on, per the query's dateBasis | ||
| totalCount | integer | Total number of tasks on this date, before the per-date cap is applied |
Total number of tasks on this date, before the per-date cap is applied | ||
| tasks | array of TaskItemDto | The first tasks for this date in stable order, capped at the request's perDateLimit. |
The first tasks for this date in stable order, capped at the request's perDateLimit. | ||
JSON Example
{
"date": "2024-01-01",
"totalCount": 0,
"tasks": [
{
"code": "...",
"name": "...",
"description": "...",
"status": "...",
"isProjected": "..."
}
]
}