Sabre · Schema

HotelReservationResponse

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
ConfirmationNumber string
HotelConfirmationNumber string
Status string
HotelCode string
CheckIn string
CheckOut string
TotalCost object
GuestInfo object
View JSON Schema on GitHub

JSON Schema

sabre-hotelreservationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HotelReservationResponse",
  "title": "HotelReservationResponse",
  "type": "object",
  "properties": {
    "ConfirmationNumber": {
      "type": "string"
    },
    "HotelConfirmationNumber": {
      "type": "string"
    },
    "Status": {
      "type": "string",
      "enum": [
        "CONFIRMED",
        "PENDING",
        "CANCELLED"
      ]
    },
    "HotelCode": {
      "type": "string"
    },
    "CheckIn": {
      "type": "string",
      "format": "date"
    },
    "CheckOut": {
      "type": "string",
      "format": "date"
    },
    "TotalCost": {
      "$ref": "#/components/schemas/Rate"
    },
    "GuestInfo": {
      "$ref": "#/components/schemas/GuestInfo"
    }
  }
}