Microsoft Graph · Schema

staffAvailabilityItem

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
availabilityItems array Each item in this collection indicates a slot and the status of the staff member.
staffId string The ID of the staff member.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphstaffavailabilityitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.staffAvailabilityItem",
  "title": "staffAvailabilityItem",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "availabilityItems": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.availabilityItem"
      },
      "description": "Each item in this collection indicates a slot and the status of the staff member."
    },
    "staffId": {
      "type": "string",
      "description": "The ID of the staff member.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}