Microsoft Exchange · Schema

DateTimeTimeZone

Describes a date, time, and time zone

CalendarCollaborationContactsEmailEnterprise

Properties

Name Type Description
dateTime string A date and time in ISO 8601 format
timeZone string A time zone name (e.g. Pacific Standard Time)
View JSON Schema on GitHub

JSON Schema

microsoft-exchange-datetimetimezone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DateTimeTimeZone",
  "title": "DateTimeTimeZone",
  "type": "object",
  "description": "Describes a date, time, and time zone",
  "properties": {
    "dateTime": {
      "type": "string",
      "description": "A date and time in ISO 8601 format"
    },
    "timeZone": {
      "type": "string",
      "description": "A time zone name (e.g. Pacific Standard Time)"
    }
  }
}