Amadeus · Schema

GeoCode

GeoCode schema from Airport & City Search

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
latitude number latitude of the location
longitude number longitude of the location
View JSON Schema on GitHub

JSON Schema

airport-city-search-geo-code-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/airport-city-search-geo-code-schema.json",
  "title": "GeoCode",
  "description": "GeoCode schema from Airport & City Search",
  "properties": {
    "latitude": {
      "description": "latitude of the location",
      "type": "number",
      "format": "double",
      "example": 43.580418
    },
    "longitude": {
      "description": "longitude of the location",
      "type": "number",
      "format": "double",
      "example": 7.125102
    }
  },
  "type": "object"
}