action amadeus_get_flight_offers { label: "Return list of Flight Offers based on searching criteria." description: "" provider: amadeus method: GET path: "/shopping/flight-offers" encoding: json input: { type: "object" properties: { adults: { type: "integer" } children: { type: "integer" } currencyCode: { type: "string" } departureDate: { type: "string" format: "date" } destinationLocationCode: { type: "string" } excludedAirlineCodes: { type: "string" } includedAirlineCodes: { type: "string" } infants: { type: "integer" } max: { type: "integer" } maxPrice: { type: "integer" } nonStop: { type: "boolean" } originLocationCode: { type: "string" } returnDate: { type: "string" format: "date" } travelClass: { type: "string" enum: ["ECONOMY", "PREMIUM_ECONOMY", "BUSINESS", "FIRST"] } } required: ["adults", "departureDate", "destinationLocationCode", "originLocationCode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }