Amadeus · Schema

LocationValue

LocationValue schema from Flight Cheapest Date Search

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
subType string location type: airport or city
detailedName string name of the location
View JSON Schema on GitHub

JSON Schema

flight-cheapest-date-search-location-value-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/flight-cheapest-date-search-location-value-schema.json",
  "title": "LocationValue",
  "description": "LocationValue schema from Flight Cheapest Date Search",
  "properties": {
    "subType": {
      "type": "string",
      "description": "location type: airport or city",
      "enum": [
        "AIRPORT",
        "CITY"
      ],
      "example": "AIRPORT"
    },
    "detailedName": {
      "type": "string",
      "description": "name of the location",
      "example": "Paris/FR: Charles de Gaulle"
    }
  },
  "type": "object"
}