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