action lufthansa_seat_details { label: "Seat Details" description: "A description of all available seat details by aircraft type. You can retrieve the full set or details for a particular aircraft type." provider: lufthansa method: GET path: "/references/seatdetails/{aircraftCode}/{cabinCode}" encoding: json input: { type: "object" properties: { Accept: { type: "string" } aircraftCode: { type: "string" } cabinCode: { type: "string" } lang: { type: "string" } } required: ["Accept", "aircraftCode", "cabinCode"] additionalProperties: false } output: { type: "string" } }