Microsoft Graph · Schema

timeCardBreak

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
breakId string ID of the timeCardBreak.
end object The start event of the timeCardBreak.
notes object Notes about the timeCardBreak.
start object
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtimecardbreak-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.timeCardBreak",
  "title": "timeCardBreak",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "breakId": {
      "type": "string",
      "description": "ID of the timeCardBreak.",
      "nullable": true
    },
    "end": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.timeCardEvent"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The start event of the timeCardBreak."
    },
    "notes": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.itemBody"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Notes about the timeCardBreak."
    },
    "start": {
      "$ref": "#/components/schemas/microsoft.graph.timeCardEvent"
    },
    "@odata.type": {
      "type": "string"
    }
  }
}