Amadeus Reservations · JSON Structure

Transfer Booking Baggage Structure

Baggage schema

Type: object Properties: 2
BookingFlightsHotelsReservationsTravel

Baggage is a JSON Structure definition published by Amadeus Reservations, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

count size

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-structure/transfer-booking-baggage-structure.json",
  "name": "Baggage",
  "description": "Baggage schema",
  "type": "object",
  "properties": {
    "count": {
      "type": "int32",
      "description": "baggage capacity",
      "example": 3
    },
    "size": {
      "type": "string",
      "description": "baggage size\n\ncode   | name                                 \n------ | ---------------------------- \nS \t   | Small\nM \t   | Medium\nL \t   | Large\n",
      "enum": [
        "S",
        "M",
        "L"
      ]
    }
  }
}