Microsoft Graph · Schema

timeCardEntry

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
breaks array The clock-in event of the timeCard.
clockInEvent object The clock-out event of the timeCard.
clockOutEvent object The list of breaks associated with the timeCard.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtimecardentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.timeCardEntry",
  "title": "timeCardEntry",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "breaks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/microsoft.graph.timeCardBreak"
      },
      "description": "The clock-in event of the timeCard."
    },
    "clockInEvent": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.timeCardEvent"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The clock-out event of the timeCard."
    },
    "clockOutEvent": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.timeCardEvent"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "The list of breaks associated with the timeCard."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}