Equipment

extra equipment information

BookingFlightsHotelsReservationsTravel

Properties

Name Type Description
code string extra equipment codes, which can take following values code | name ------ | ------------------------------------- BBS | Baby stroller/Push chair BYC | Bicycle rack CBB | Cargo barrier rack CBF | Cargo
itemId string extra equipment identifier
description string extra equipment description
quotation object
converted object
isBookable boolean true if extra equipment is available for booking
taxIncluded boolean true if tax included in extra equipment price
includedInTotal boolean true if extra equipment price is included in total transfer amount
View JSON Schema on GitHub

JSON Schema

transfer-booking-equipment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-schema/transfer-booking-equipment-schema.json",
  "title": "Equipment",
  "description": "extra equipment information",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "extra equipment codes, which can take following values\n\ncode   | name                                 \n------ | -------------------------------------  \nBBS    | Baby stroller/Push chair\nBYC    | Bicycle rack\nCBB    | Cargo barrier rack\nCBF    | Cargo barrier front\nCBS    | Booster seat for child under 135cm or up to 12 years\nCSB    | Child seat determined by weight/age of child 1-3 years / 9-18 Kg\nCSI    | Child seat determined by weight/age of child 0-12 month/0-13Kg\nCST    | Child seat determined by weight/age of child 4-7 years/15 \u2013 30 Kg\nSBR    | Snow board racks\nSKB    | Ski box\nSKR    | Ski rack\nTAB    | Travel Tablet \nWAR    | Wheelchair access ramp\nWHC    | Wheelchair\nWIF    | Wi-Fi access\nCNT    | Charger cable\n",
      "enum": [
        "BBS",
        "BYC",
        "CBB",
        "CBF",
        "CBS",
        "CSB",
        "CSI",
        "CST",
        "SBR",
        "SKB",
        "SKR",
        "TAB ",
        "WAR",
        "WHC",
        "WIF",
        "CNT"
      ]
    },
    "itemId": {
      "type": "string",
      "description": "extra equipment identifier"
    },
    "description": {
      "type": "string",
      "description": "extra equipment description"
    },
    "quotation": {
      "$ref": "#/definitions/Quotation"
    },
    "converted": {
      "$ref": "#/definitions/Quotation"
    },
    "isBookable": {
      "type": "boolean",
      "description": "true if extra equipment is available for booking"
    },
    "taxIncluded": {
      "type": "boolean",
      "description": "true if tax included in extra equipment price"
    },
    "includedInTotal": {
      "type": "boolean",
      "description": "true if extra equipment price is included in total transfer amount"
    }
  },
  "required": [
    "code"
  ]
}