Amadeus · Schema

GeoCode

geo position

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

tours-and-activities-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/tours-and-activities-geo-code-schema.json",
  "title": "GeoCode",
  "description": "geo position",
  "type": "object",
  "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
    }
  }
}