Abstract API · Schema

TimezoneInfo

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
name string IANA timezone name
abbreviation string Timezone abbreviation
gmt_offset integer GMT/UTC offset in hours
current_time string Current local time
is_dst boolean Whether daylight saving time is active
View JSON Schema on GitHub

JSON Schema

abstract-api-timezoneinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimezoneInfo",
  "title": "TimezoneInfo",
  "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": "integer",
      "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
    }
  }
}