{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-structure/ip-geolocation-timezone-info-structure.json", "name": "TimezoneInfo", "description": "TimezoneInfo schema from Abstract API ip-geolocation", "type": "object", "properties": { "name": { "type": "string", "description": "IANA timezone name", "example": "America/Los_Angeles" }, "abbreviation": { "type": "string", "description": "Timezone abbreviation", "example": "PST" }, "gmt_offset": { "type": "int32", "description": "GMT/UTC offset in hours", "example": -8 }, "current_time": { "type": "string", "description": "Current local time", "example": "2026-04-19 10:30:00" }, "is_dst": { "type": "boolean", "description": "Whether daylight saving time is active", "example": false } } }