Amadeus Reservations · JSON Structure

Transfer Booking Error_400 Structure

Error_400 schema

Type: object Properties: 1 Required: 1
BookingFlightsHotelsReservationsTravel

Error_400 is a JSON Structure definition published by Amadeus Reservations, describing 1 property, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

errors

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-error_400-structure.json",
  "name": "Error_400",
  "description": "Error_400 schema",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Issue"
      }
    }
  },
  "required": [
    "errors"
  ],
  "example": {
    "errors": [
      {
        "status": 400,
        "code": 4926,
        "title": "INVALID DATA RECEIVED",
        "detail": "Transfer type is not valid",
        "source": {
          "parameter": "transferType"
        }
      }
    ]
  },
  "type": "object"
}