Amadeus Reservations · JSON Structure

Flight Create Orders Flight Stop Structure

details of stops for direct or change of gauge flights

Type: Properties: 0
BookingFlightsHotelsReservationsTravel

FlightStop is a JSON Structure definition published by Amadeus Reservations. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-structure/flight-create-orders-flight-stop-structure.json",
  "name": "FlightStop",
  "description": "details of stops for direct or change of gauge flights",
  "allOf": [
    {
      "$ref": "#/definitions/OriginalFlightStop"
    },
    {
      "type": "object",
      "properties": {
        "arrivalAt": {
          "description": "arrival at the stop in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) YYYY-MM-ddThh:mm:ss format, e.g. 2017-02-10T20:40:00",
          "type": "datetime",
          "example": "2017-10-23T20:00:00"
        },
        "departureAt": {
          "description": "departure from the stop in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) YYYY-MM-ddThh:mm:ss format, e.g. 2017-02-10T20:40:00",
          "type": "datetime",
          "example": "2017-10-23T20:00:00"
        }
      }
    }
  ]
}