Microsoft Graph · Schema

timeZoneBase

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks

Properties

Name Type Description
name string The name of a time zone. It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or 'Customized Time Zone' for a custom time zone.
@odata.type string
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphtimezonebase-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.timeZoneBase",
  "title": "timeZoneBase",
  "required": [
    "@odata.type"
  ],
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of a time zone. It can be a standard time zone name such as 'Hawaii-Aleutian Standard Time', or 'Customized Time Zone' for a custom time zone.",
      "nullable": true
    },
    "@odata.type": {
      "type": "string"
    }
  },
  "discriminator": {
    "propertyName": "@odata.type",
    "mapping": {
      "#microsoft.graph.customTimeZone": "#/components/schemas/microsoft.graph.customTimeZone"
    }
  }
}