Microsoft Exchange · Schema

WorkingHours

Working hours for the user

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
daysOfWeek array
startTime string The time of the day the work day starts
endTime string The time of the day the work day ends
timeZone object
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-workinghours-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkingHours",
  "title": "WorkingHours",
  "type": "object",
  "description": "Working hours for the user",
  "properties": {
    "daysOfWeek": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "sunday",
          "monday",
          "tuesday",
          "wednesday",
          "thursday",
          "friday",
          "saturday"
        ]
      }
    },
    "startTime": {
      "type": "string",
      "description": "The time of the day the work day starts"
    },
    "endTime": {
      "type": "string",
      "description": "The time of the day the work day ends"
    },
    "timeZone": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        }
      }
    }
  }
}