API Docs / Schemas / ExpectedTimeDto

ExpectedTimeDto

What a team member's working pattern expects of them over a date window, day by day.
Backs the Time calendar's daily targets. Expectations come from the member's own
pattern, falling back to the practice default; when the practice has no patterns at
all, WorkingPattern is null and every day reads as zero expectation.

Properties

Name Type Description
workingPatternCodeAndNameDto
hasOwnPatternboolean

True when the member is on a working pattern of their own rather than the practice
default

True when the member is on a working pattern of their own rather than the practice
default

daysarray of ExpectedTimeDayDto

One entry per day of the requested window, oldest first

One entry per day of the requested window, oldest first

JSON Example

{
  "workingPattern": {
    "code": "string",
    "name": "string"
  },
  "hasOwnPattern": false,
  "days": [
    {
      "date": "...",
      "isWorkingDay": "...",
      "expectedMinutes": "..."
    }
  ]
}

Used By Operations