Error_400

Error_400 schema

BookingFlightsHotelsReservationsTravel

Properties

Name Type Description
errors array
View JSON Schema on GitHub

JSON Schema

flight-create-orders-error_400-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/flight-create-orders-error_400-schema.json",
  "title": "Error_400",
  "description": "Error_400 schema",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Issue"
      }
    }
  },
  "required": [
    "errors"
  ],
  "example": {
    "errors": [
      {
        "status": 400,
        "code": 477,
        "title": "INVALID FORMAT",
        "detail": "invalid query parameter format",
        "source": {
          "parameter": "airport",
          "example": "CDG"
        }
      }
    ]
  }
}