Amadeus · Schema

FlightDates

FlightDates schema from Flight Cheapest Date Search

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
data array
dictionaries object
meta object
warnings array
View JSON Schema on GitHub

JSON Schema

flight-cheapest-date-search-flight-dates-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-flight-dates-schema.json",
  "title": "FlightDates",
  "description": "FlightDates schema from Flight Cheapest Date Search",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "the resource name",
            "example": "flight-date"
          },
          "origin": {
            "type": "string",
            "example": "PAR"
          },
          "destination": {
            "type": "string",
            "example": "DXB"
          },
          "departureDate": {
            "type": "string",
            "example": "2017-08-19"
          },
          "returnDate": {
            "type": "string",
            "example": "2017-08-22"
          },
          "price": {
            "$ref": "#/definitions/Price"
          },
          "links": {
            "type": "object",
            "properties": {
              "flightDestinations": {
                "type": "string",
                "example": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=PAR&nonStop=true"
              },
              "flightOffers": {
                "type": "string",
                "example": "https://test.api.amadeus.com/v1/shopping/flight-offers?origin=PAR&destination=MAD&departureDate=2017-08-26&returnDate=2017-08-30&adults=1"
              }
            }
          }
        }
      }
    },
    "dictionaries": {
      "type": "object",
      "properties": {
        "currencies": {
          "additionalProperties": {
            "type": "string",
            "example": "EUR"
          }
        },
        "locations": {
          "additionalProperties": {
            "$ref": "#/definitions/LocationValue"
          }
        }
      }
    },
    "meta": {
      "type": "object",
      "properties": {
        "currency": {
          "type": "string",
          "description": "the currency in which the prices of the flight offers are returned. Currency is specified in the [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) format, e.g. EUR for Euro",
          "pattern": "[A-Z]{3}",
          "example": "EUR"
        },
        "links": {
          "properties": {
            "self": {
              "type": "string",
              "format": "uri",
              "example": "https://example.com/resource"
            }
          }
        },
        "defaults": {
          "description": "the query parameters for which default values were used are returned here",
          "type": "object",
          "properties": {
            "departureDate": {
              "description": "the date, or range of dates, on which the flight will depart from the origin. Dates are specified in the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) YYYY-MM-DD format, e.g. 2017-12-25. Ranges are specified with a comma and are inclusive",
              "type": "string",
              "example": "2011-09-10,2011-09-15"
            },
            "oneWay": {
              "description": "if this parameter is set to true, only one-way flights are considered. If this parameter is not set or set to false, only round-trip flights are considered",
              "type": "boolean",
              "example": true
            },
            "duration": {
              "description": "exact duration or range of durations of the travel, in days. This parameter must not be set if oneWay is true. Ranges are specified with a comma and are inclusive, e.g. 2,8",
              "type": "string",
              "example": "2,5"
            },
            "nonStop": {
              "description": "if this parameter is set to true, only flights going from the origin to the destination with no stop in-between are considered",
              "type": "boolean",
              "example": true
            },
            "viewBy": {
              "type": "string",
              "description": "view the flight dates by DATE, DURATION, or WEEK. View by DATE to get the cheapest flight dates for every departure date in the given range. View by DURATION to get the cheapest flight dates for every departure date and for every duration in the given ranges. View by WEEK to get the cheapest flight date for every week in the given range of departure dates",
              "enum": [
                "DATE",
                "DURATION",
                "WEEK"
              ],
              "example": "DATE"
            }
          }
        }
      }
    },
    "warnings": {
      "type": "array",
      "items": {
        "properties": {
          "status": {
            "description": "the HTTP status code applicable to this error",
            "type": "integer",
            "example": 1
          },
          "code": {
            "description": "an application-specific error code",
            "type": "integer",
            "format": "int64",
            "example": 1
          },
          "title": {
            "description": "a short summary of the error",
            "type": "string",
            "example": "string-value"
          },
          "detail": {
            "description": "explanation of the error",
            "type": "string",
            "example": "string-value"
          },
          "source": {
            "type": "object",
            "title": "Issue_Source",
            "description": "an object containing references to the source of the error",
            "maxProperties": 1,
            "properties": {
              "pointer": {
                "description": "a JSON Pointer [RFC6901] to the associated entity in the request document",
                "type": "string",
                "example": "string-value"
              },
              "parameter": {
                "description": "a string indicating which URI query parameter caused the issue",
                "type": "string",
                "example": "string-value"
              },
              "example": {
                "description": "a string indicating an example of the right value",
                "type": "string",
                "example": "string-value"
              }
            }
          }
        }
      },
      "example": [
        {
          "status": "200",
          "code": "12345",
          "title": "WARNING"
        }
      ]
    }
  },
  "example": {
    "data": [
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-07-30",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-07-30&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-07-31",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-07-31&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-01",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-01&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-02",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-02&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-03",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-03&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-04",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-04&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-05",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-05&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-06",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-06&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-07",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-07&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-08",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-08&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-09",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-09&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-10",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-10&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-11",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-11&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-12",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-12&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-29",
        "returnDate": "2020-08-13",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-29&returnDate=2020-08-13&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-07-31",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-07-31&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-01",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-01&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-02",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-02&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-03",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-03&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-04",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-04&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-05",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-05&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-06",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-06&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-07",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-07&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-08",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-08&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-09",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-09&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-10",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-10&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-11",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-11&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-12",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-12&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-13",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-13&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-30",
        "returnDate": "2020-08-14",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-30&returnDate=2020-08-14&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-01",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-01&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-02",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-02&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-03",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-03&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-04",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-04&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-05",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-05&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-06",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-06&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-07",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-07&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-08",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-08&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "returnDate": "2020-08-09",
        "price": {
          "total": "98.53"
        },
        "links": {
          "flightDestinations": "https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=MAD&departureDate=2020-07-24,2021-01-19&oneWay=false&duration=1,15&nonStop=false&viewBy=DURATION",
          "flightOffers": "https://test.api.amadeus.com/v2/shopping/flight-offers?originLocationCode=MAD&destinationLocationCode=MUC&departureDate=2020-07-31&returnDate=2020-08-09&adults=1&nonStop=false"
        }
      },
      {
        "type": "flight-date",
        "origin": "MAD",
        "destination": "MUC",
        "departureDate": "2020-07-31",
        "retu

# --- truncated at 32 KB (498 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/flight-cheapest-date-search-flight-dates-schema.json