Microsoft Graph · Schema

dateTimeTimeZone

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
dateTime string A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000).
timeZone string Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphdatetimetimezone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.dateTimeTimeZone",
  "title": "dateTimeTimeZone",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "dateTime": {
      "type": "string",
      "description": "A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000)."
    },
    "timeZone": {
      "type": "string",
      "description": "Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  }
}