AircraftCabinAmenities_Food 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_-food-schema.json", "title": "AircraftCabinAmenities_Food", "description": "AircraftCabinAmenities_Food schema", "allOf": [ { "$ref": "#/definitions/Amenity" }, { "type": "object", "description": "Type of food for a given flight", "properties": { "foodType": { "type": "string", "enum": [ "MEAL", "FRESH_MEAL", "SNACK", "FRESH_SNACK" ] } } } ] }