Sabre · Schema

HotelReservationRequest

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
HotelCode string
RoomTypeCode string
RatePlanCode string
CheckIn string
CheckOut string
GuestInfo object
PaymentInfo object
SpecialRequests string
View JSON Schema on GitHub

JSON Schema

sabre-hotelreservationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HotelReservationRequest",
  "title": "HotelReservationRequest",
  "type": "object",
  "required": [
    "HotelCode",
    "RoomTypeCode",
    "RatePlanCode",
    "CheckIn",
    "CheckOut",
    "GuestInfo"
  ],
  "properties": {
    "HotelCode": {
      "type": "string"
    },
    "RoomTypeCode": {
      "type": "string"
    },
    "RatePlanCode": {
      "type": "string"
    },
    "CheckIn": {
      "type": "string",
      "format": "date"
    },
    "CheckOut": {
      "type": "string",
      "format": "date"
    },
    "GuestInfo": {
      "$ref": "#/components/schemas/GuestInfo"
    },
    "PaymentInfo": {
      "$ref": "#/components/schemas/PaymentInfo"
    },
    "SpecialRequests": {
      "type": "string"
    }
  }
}