Amadeus Reservations · JSON Structure

Flight Order Management Baggage Allowance Structure

baggageAllowance

Type: object Properties: 3
BookingFlightsHotelsReservationsTravel

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

Properties

quantity weight weightUnit

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/flight-order-management-baggage-allowance-structure.json",
  "name": "BaggageAllowance",
  "description": "baggageAllowance",
  "type": "object",
  "properties": {
    "quantity": {
      "type": "int32",
      "description": "Total number of units",
      "example": 1
    },
    "weight": {
      "type": "int32",
      "description": "Weight of the baggage allowance",
      "example": 20
    },
    "weightUnit": {
      "type": "string",
      "description": "Code to qualify unit as pounds or kilos",
      "example": "KG"
    }
  }
}