{
"$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"
}
]
}