Amadeus Media · Schema

HotelBasicInfo

Basic hotel classification information.

ContentHotelsImagesMediaTravel

Properties

Name Type Description
category integer Hotel star category (1-5).
rating string Hotel rating classification.
numberOfRooms integer Total number of rooms in the property.
checkInTime string Standard check-in time (HH:MM format).
checkOutTime string Standard check-out time (HH:MM format).
View JSON Schema on GitHub

JSON Schema

hotel-content-hotel-basic-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-media/refs/heads/main/json-schema/hotel-content-hotel-basic-info-schema.json",
  "title": "HotelBasicInfo",
  "description": "Basic hotel classification information.",
  "type": "object",
  "properties": {
    "category": {
      "type": "integer",
      "description": "Hotel star category (1-5).",
      "example": 4
    },
    "rating": {
      "type": "string",
      "description": "Hotel rating classification.",
      "example": "FOUR_STARS"
    },
    "numberOfRooms": {
      "type": "integer",
      "description": "Total number of rooms in the property.",
      "example": 120
    },
    "checkInTime": {
      "type": "string",
      "description": "Standard check-in time (HH:MM format).",
      "example": "14:00"
    },
    "checkOutTime": {
      "type": "string",
      "description": "Standard check-out time (HH:MM format).",
      "example": "12:00"
    }
  }
}