TimeZone

Defines the data and time of one or more geographic locations.

APIs.ioEngineeringPlatform

Properties

Name Type Description
otherCityTimes array A list of dates and times of nearby time zones.
primaryCityTime object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-timezone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeZone",
  "title": "TimeZone",
  "required": [
    "primaryCityTime"
  ],
  "properties": {
    "otherCityTimes": {
      "type": "array",
      "description": "A list of dates and times of nearby time zones.",
      "readOnly": true,
      "items": {
        "$ref": "#/components/schemas/TimeZoneTimeZoneInformation"
      }
    },
    "primaryCityTime": {
      "$ref": "#/components/schemas/TimeZoneTimeZoneInformation"
    }
  },
  "description": "Defines the data and time of one or more geographic locations.",
  "allOf": [
    {
      "$ref": "#/components/schemas/SearchResultsAnswer"
    }
  ]
}