Sabre · Schema

ErrorResponse

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
status integer
errorCode string
message string
timeStamp string
View JSON Schema on GitHub

JSON Schema

sabre-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "integer"
    },
    "errorCode": {
      "type": "string"
    },
    "message": {
      "type": "string"
    },
    "timeStamp": {
      "type": "string",
      "format": "date-time"
    }
  }
}