TimeZoneTimeZoneInformation

Defines a date and time for a geographical location.

APIs.ioEngineeringPlatform

Properties

Name Type Description
location string The name of the geographical location.For example, County; City; City, State; City, State, Country; or Time Zone.
time string The data and time specified in the form, YYYY-MM-DDThh;mm:ss.ssssssZ.
utcOffset string The offset from UTC. For example, UTC-7.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-timezonetimezoneinformation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeZoneTimeZoneInformation",
  "title": "TimeZoneTimeZoneInformation",
  "required": [
    "location",
    "time",
    "utcOffset"
  ],
  "type": "object",
  "properties": {
    "location": {
      "type": "string",
      "description": "The name of the geographical location.For example, County; City; City, State; City, State, Country; or Time Zone."
    },
    "time": {
      "type": "string",
      "description": "The data and time specified in the form, YYYY-MM-DDThh;mm:ss.ssssssZ."
    },
    "utcOffset": {
      "type": "string",
      "description": "The offset from UTC. For example, UTC-7."
    }
  },
  "description": "Defines a date and time for a geographical location.",
  "x-ms-discriminator-value": "TimeZone/TimeZoneInformation"
}