Amadeus Solutions · Schema

Error_404

Error_404 schema

AirlinesBookingFlightsGDSHotelsTravelTravel Technology

Properties

Name Type Description
errors array
View JSON Schema on GitHub

JSON Schema

seat-map-display-error_404-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-schema/seat-map-display-error_404-schema.json",
  "title": "Error_404",
  "description": "Error_404 schema",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Issue"
      }
    }
  },
  "required": [
    "errors"
  ],
  "example": {
    "errors": [
      {
        "status": 404,
        "code": 1797,
        "title": "NOT FOUND",
        "detail": "no response found for this query parameter",
        "source": {
          "parameter": "airport"
        }
      }
    ]
  }
}