Microsoft Graph · Schema

timeCardEvent

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
dateTime string The time the entry is recorded.
isAtApprovedLocation boolean Indicates whether this action happens at an approved location.
notes object Notes about the timeCardEvent.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtimecardevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.timeCardEvent",
  "title": "timeCardEvent",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "dateTime": {
      "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$",
      "type": "string",
      "description": "The time the entry is recorded.",
      "format": "date-time"
    },
    "isAtApprovedLocation": {
      "type": "boolean",
      "description": "Indicates whether this action happens at an approved location.",
      "nullable": true
    },
    "notes": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/microsoft.graph.itemBody"
        },
        {
          "type": "object",
          "nullable": true
        }
      ],
      "description": "Notes about the timeCardEvent."
    },
    "@odata.type": {
      "type": "string"
    }
  }
}