Abstract API · JSON Structure

Timezones Convert Time Response Structure

Time zone conversion result

Type: object Properties: 10
AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

ConvertTimeResponse is a JSON Structure definition published by Abstract API, describing 10 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

base_location base_datetime base_timezone_name base_timezone_abbreviation base_utc_offset target_location target_datetime target_timezone_name target_timezone_abbreviation target_utc_offset

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/abstract-api/refs/heads/main/json-structure/timezones-convert-time-response-structure.json",
  "name": "ConvertTimeResponse",
  "description": "Time zone conversion result",
  "type": "object",
  "properties": {
    "base_location": {
      "type": "string",
      "description": "Source location",
      "example": "London"
    },
    "base_datetime": {
      "type": "string",
      "description": "Input date and time",
      "example": "2026-04-19 10:30:00"
    },
    "base_timezone_name": {
      "type": "string",
      "description": "Source IANA timezone name",
      "example": "Europe/London"
    },
    "base_timezone_abbreviation": {
      "type": "string",
      "description": "Source timezone abbreviation",
      "example": "BST"
    },
    "base_utc_offset": {
      "type": "int32",
      "description": "Source UTC offset in hours",
      "example": 1
    },
    "target_location": {
      "type": "string",
      "description": "Target location",
      "example": "Tokyo"
    },
    "target_datetime": {
      "type": "string",
      "description": "Converted date and time",
      "example": "2026-04-19 18:30:00"
    },
    "target_timezone_name": {
      "type": "string",
      "description": "Target IANA timezone name",
      "example": "Asia/Tokyo"
    },
    "target_timezone_abbreviation": {
      "type": "string",
      "description": "Target timezone abbreviation",
      "example": "JST"
    },
    "target_utc_offset": {
      "type": "int32",
      "description": "Target UTC offset in hours",
      "example": 9
    }
  }
}