API Docs / Schemas / TaskDateSummaryDto

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
datestring

The date the tasks fall on, per the query's dateBasis

The date the tasks fall on, per the query's dateBasis

totalCountinteger

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

tasksarray of TaskItemDto

The first tasks for this date in stable order, capped at the request's perDateLimit.
NextSteps is not populated on summary responses.

The first tasks for this date in stable order, capped at the request's perDateLimit.
NextSteps is not populated on summary responses.

JSON Example

{
  "date": "2024-01-01",
  "totalCount": 0,
  "tasks": [
    {
      "code": "...",
      "name": "...",
      "description": "...",
      "status": "...",
      "isProjected": "..."
    }
  ]
}