Sabre · Schema

RoomType

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
RoomTypeCode string
Name string
Description string
MaxOccupancy integer
BedConfiguration string
Rates array
View JSON Schema on GitHub

JSON Schema

sabre-roomtype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoomType",
  "title": "RoomType",
  "type": "object",
  "properties": {
    "RoomTypeCode": {
      "type": "string"
    },
    "Name": {
      "type": "string"
    },
    "Description": {
      "type": "string"
    },
    "MaxOccupancy": {
      "type": "integer"
    },
    "BedConfiguration": {
      "type": "string"
    },
    "Rates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RatePlan"
      }
    }
  }
}