Time zone information.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Timezone", "title": "Timezone", "required": [ "offset", "value", "label" ], "type": "object", "description": "Time zone information.", "properties": { "offset": { "type": "integer", "format": "int32", "description": "Time zone offset." }, "value": { "type": "string", "description": "Time zone." }, "label": { "type": "string", "nullable": true, "description": "Label." } }, "example": { "offset": 300, "value": "America/Bogota", "label": null } }