IPGeolocation.io · Schema

AirportDetails

Airport information returned when the timezone lookup is performed using `iata_code` or `icao_code`. Contains metadata about the airport including its geographic coordinates, country, and airport identifiers.

GeocodingIP GeolocationIP IntelligenceIP SecurityASN LookupAbuse ContactTimezoneAstronomyUser AgentThreat IntelligencePublic APIs

Properties

Name Type Description
type string Classification of the airport based on size and traffic.
name string Official name of the airport.
latitude string Latitude coordinate of the airport.
longitude string Longitude coordinate of the airport.
elevation_ft number Airport elevation above sea level measured in feet.
continent_code string Two-letter continent code where the airport is located.
country_code string ISO 3166-1 alpha-2 country code.
state_code string State or province code where the airport is located.
city string City served by the airport.
iata_code string Three-letter IATA airport identifier.
icao_code string Four-letter ICAO airport identifier.
faa_code string FAA location identifier used primarily in the United States.
View JSON Schema on GitHub

JSON Schema

timezone-airport-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/ipgeolocation/refs/heads/main/json-schema/timezone-airport-details-schema.json",
  "title": "AirportDetails",
  "description": "Airport information returned when the timezone lookup is performed\nusing `iata_code` or `icao_code`.\n\nContains metadata about the airport including its geographic\ncoordinates, country, and airport identifiers.\n",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Classification of the airport based on size and traffic.",
      "example": "large_airport"
    },
    "name": {
      "type": "string",
      "description": "Official name of the airport.",
      "example": "Hartsfield Jackson Atlanta International Airport"
    },
    "latitude": {
      "type": "string",
      "description": "Latitude coordinate of the airport.",
      "example": "33.63670"
    },
    "longitude": {
      "type": "string",
      "description": "Longitude coordinate of the airport.",
      "example": "-84.42810"
    },
    "elevation_ft": {
      "type": "number",
      "description": "Airport elevation above sea level measured in feet.",
      "example": 1026
    },
    "continent_code": {
      "type": "string",
      "description": "Two-letter continent code where the airport is located.",
      "example": "NA"
    },
    "country_code": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code.",
      "example": "US"
    },
    "state_code": {
      "type": "string",
      "description": "State or province code where the airport is located.",
      "example": "US-GA"
    },
    "city": {
      "type": "string",
      "description": "City served by the airport.",
      "example": "Atlanta"
    },
    "iata_code": {
      "type": "string",
      "description": "Three-letter IATA airport identifier.",
      "example": "ATL"
    },
    "icao_code": {
      "type": "string",
      "description": "Four-letter ICAO airport identifier.",
      "example": "KATL"
    },
    "faa_code": {
      "type": "string",
      "description": "FAA location identifier used primarily in the United States.",
      "example": ""
    }
  }
}