Amadeus Reservations · JSON Structure

Transfer Booking Vehicle Structure

Vehicle schema

Type: object Properties: 6 Required: 4
BookingFlightsHotelsReservationsTravel

Vehicle is a JSON Structure definition published by Amadeus Reservations, describing 6 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

code category description seats baggages imageURL

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-vehicle-structure.json",
  "name": "Vehicle",
  "description": "Vehicle schema",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "enum": [
        "CAR",
        "SED",
        "WGN",
        "ELC",
        "VAN",
        "SUV",
        "LMS",
        "MBR",
        "TRN",
        "BUS"
      ],
      "description": "vehicle type, which can take following values\n\nvalue           | description\n--------------  | ------------------------\nCAR             | Car\nSED             | Sedan\nWGN             | Wagon\nELC             | Electric car\nVAN             | Van or minivan\nSUV             | Sport utility vehicle\nLMS             | Limousine\nMBR             | Motorbike\nTRN             | Train\nBUS             | Bus\n"
    },
    "category": {
      "type": "string",
      "enum": [
        "ST",
        "BU",
        "FC"
      ],
      "description": "category of the vehicle, which can take following values\n\nvalue           | description\n--------------  | ------------------------\nST              | Standard\nBU              | Business\nFC              | First class\n"
    },
    "description": {
      "type": "string",
      "description": "description of the vehicle. Can describe a list of potential vehicles, e.g. VW Polo or similar"
    },
    "seats": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Seat"
      }
    },
    "baggages": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Baggage"
      }
    },
    "imageURL": {
      "type": "string",
      "description": "URL to vehicle image"
    }
  },
  "required": [
    "code",
    "category",
    "description",
    "seats"
  ]
}