Abstract API · Schema

TimezoneInfo

TimezoneInfo schema from Abstract API ip-intelligence

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

Properties

Name Type Description
name string
abbreviation string
utc_offset integer
local_time string
is_dst boolean
View JSON Schema on GitHub

JSON Schema

ip-intelligence-timezone-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-schema/ip-intelligence-timezone-info-schema.json",
  "title": "TimezoneInfo",
  "description": "TimezoneInfo schema from Abstract API ip-intelligence",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "America/Los_Angeles"
    },
    "abbreviation": {
      "type": "string",
      "example": "PST"
    },
    "utc_offset": {
      "type": "integer",
      "example": -8
    },
    "local_time": {
      "type": "string",
      "example": "2026-04-19T10:30:00"
    },
    "is_dst": {
      "type": "boolean",
      "example": false
    }
  }
}