Amadeus · Schema

HotelProduct_EstimatedRoomType

estimated room category, bed type and number of beds in the room. This information has been parsed from the room description, and is thus only provided for informational purposes

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
category string Category code
beds integer Number of beds in the room (1-9)
bedType string Type of the bed
View JSON Schema on GitHub

JSON Schema

hotel-search-hotel-product-estimated-room-type-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/hotel-search-hotel-product-estimated-room-type-schema.json",
  "title": "HotelProduct_EstimatedRoomType",
  "description": "estimated room category, bed type and number of beds in the room. This information has been parsed from the room description, and is thus only provided for informational purposes",
  "type": "object",
  "properties": {
    "category": {
      "description": "Category code",
      "type": "string",
      "example": "string-value"
    },
    "beds": {
      "description": "Number of beds in the room (1-9)",
      "type": "integer",
      "format": "int32",
      "example": 1
    },
    "bedType": {
      "description": "Type of the bed",
      "type": "string",
      "example": "string-value"
    }
  }
}