Amadeus Solutions · Schema

AircraftCabinAmenities_Beverage

AircraftCabinAmenities_Beverage schema

AirlinesBookingFlightsGDSHotelsTravelTravel Technology
View JSON Schema on GitHub

JSON Schema

seat-map-display-aircraft-cabin-amenities_-beverage-schema.json Raw ↑
{
  "$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"
          ]
        }
      }
    }
  ]
}