Microsoft Graph · Schema

bookingWorkTimeSlot

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
endTime string The time of the day when work stops. For example, 17:00:00.0000000.
startTime string The time of the day when work starts. For example, 08:00:00.0000000.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphbookingworktimeslot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.bookingWorkTimeSlot",
  "title": "bookingWorkTimeSlot",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "endTime": {
      "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$",
      "type": "string",
      "description": "The time of the day when work stops. For example, 17:00:00.0000000.",
      "format": "time"
    },
    "startTime": {
      "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$",
      "type": "string",
      "description": "The time of the day when work starts. For example, 08:00:00.0000000.",
      "format": "time"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}