Amadeus · Schema

OriginalFlightStop

details of stops for direct or change of gauge flights

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
iataCode string [IATA airline codes](http://www.iata.org/publications/Pages/code-search.aspx)
duration string stop duration in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) PnYnMnDTnHnMnS format, e.g. PT2H10M
View JSON Schema on GitHub

JSON Schema

branded-fares-upsell-original-flight-stop-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/branded-fares-upsell-original-flight-stop-schema.json",
  "title": "OriginalFlightStop",
  "description": "details of stops for direct or change of gauge flights",
  "type": "object",
  "properties": {
    "iataCode": {
      "description": "[IATA airline codes](http://www.iata.org/publications/Pages/code-search.aspx)",
      "type": "string",
      "example": "JFK"
    },
    "duration": {
      "type": "string",
      "description": "stop duration in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) PnYnMnDTnHnMnS format, e.g. PT2H10M",
      "example": "PT2H10M"
    }
  }
}