Amadeus · Schema

Baggage

Baggage schema from Transfer Search

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
count integer baggage capacity
size string baggage size code | name ------ | ---------------------------- S | Small M | Medium L | Large
View JSON Schema on GitHub

JSON Schema

transfer-search-baggage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/transfer-search-baggage-schema.json",
  "title": "Baggage",
  "description": "Baggage schema from Transfer Search",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "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"
      ],
      "example": "S"
    }
  }
}