Amadeus Media · JSON Structure

Hotel Content Hotel Basic Info Structure

Basic hotel classification information.

Type: object Properties: 5
ContentHotelsImagesMediaTravel

HotelBasicInfo is a JSON Structure definition published by Amadeus Media, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

category rating numberOfRooms checkInTime checkOutTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-media/refs/heads/main/json-structure/hotel-content-hotel-basic-info-structure.json",
  "name": "HotelBasicInfo",
  "description": "Basic hotel classification information.",
  "type": "object",
  "properties": {
    "category": {
      "type": "int32",
      "description": "Hotel star category (1-5).",
      "example": 4
    },
    "rating": {
      "type": "string",
      "description": "Hotel rating classification.",
      "example": "FOUR_STARS"
    },
    "numberOfRooms": {
      "type": "int32",
      "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"
    }
  }
}