Sabre · Schema

CancellationResponse

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
CancellationNumber string
Status string
CancellationFee object
View JSON Schema on GitHub

JSON Schema

sabre-cancellationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CancellationResponse",
  "title": "CancellationResponse",
  "type": "object",
  "properties": {
    "CancellationNumber": {
      "type": "string"
    },
    "Status": {
      "type": "string",
      "enum": [
        "CANCELLED"
      ]
    },
    "CancellationFee": {
      "$ref": "#/components/schemas/Rate"
    }
  }
}