Sabre · Schema

HotelSearchResponse

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
Hotels array
TotalResults integer
SearchId string Session search identifier for subsequent requests
View JSON Schema on GitHub

JSON Schema

sabre-hotelsearchresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HotelSearchResponse",
  "title": "HotelSearchResponse",
  "type": "object",
  "properties": {
    "Hotels": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HotelSummary"
      }
    },
    "TotalResults": {
      "type": "integer"
    },
    "SearchId": {
      "type": "string",
      "description": "Session search identifier for subsequent requests"
    }
  }
}