AircraftCabinAmenities_Beverage schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-schema/seat-map-display-aircraft-cabin-amenities_-beverage-schema.json", "title": "AircraftCabinAmenities_Beverage", "description": "AircraftCabinAmenities_Beverage schema", "allOf": [ { "$ref": "#/definitions/Amenity" }, { "type": "object", "description": "Type of beverage for a given flight", "properties": { "beverageType": { "type": "string", "enum": [ "ALCOHOLIC", "NON_ALCOHOLIC", "ALCOHOLIC_AND_NON_ALCOHOLIC" ] } } } ] }