Microsoft Graph · Schema

availabilityItem

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
endDateTime object
serviceId string Indicates the service ID for 1:n appointments. If the appointment is of type 1:n, this field is present, otherwise, null.
startDateTime object
status object The status of the staff member. The possible values are: available, busy, slotsAvailable, outOfOffice, unknownFutureValue.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphavailabilityitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.availabilityItem",
  "title": "availabilityItem",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "endDateTime": {
      "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
    },
    "serviceId": {
      "type": "string",
      "description": "Indicates the service ID for 1:n appointments. If the appointment is of type 1:n, this field is present, otherwise, null.",
      "nullable": true
    },
    "startDateTime": {
      "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
    },
    "status": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.bookingsAvailabilityStatus"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The status of the staff member. The possible values are: available, busy, slotsAvailable, outOfOffice, unknownFutureValue."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}