Amadeus Media · Schema

HotelContent

Detailed content for a single hotel property.

ContentHotelsImagesMediaTravel

Properties

Name Type Description
hotelId string Amadeus property code (8 characters).
chainCode string Hotel chain code.
iataCode string IATA city code where the hotel is located.
name string Hotel name.
basicInfo object
descriptions array Hotel descriptions in various languages.
contact object
address object
geoCode object
amenities array List of hotel amenity codes.
media array List of hotel media assets.
View JSON Schema on GitHub

JSON Schema

hotel-content-hotel-content-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-content-schema.json",
  "title": "HotelContent",
  "description": "Detailed content for a single hotel property.",
  "type": "object",
  "properties": {
    "hotelId": {
      "type": "string",
      "description": "Amadeus property code (8 characters).",
      "example": "MCLONGHM"
    },
    "chainCode": {
      "type": "string",
      "description": "Hotel chain code.",
      "example": "MC"
    },
    "iataCode": {
      "type": "string",
      "description": "IATA city code where the hotel is located.",
      "example": "LON"
    },
    "name": {
      "type": "string",
      "description": "Hotel name.",
      "example": "THE LONGCHAMP HOTEL"
    },
    "basicInfo": {
      "$ref": "#/components/schemas/HotelBasicInfo"
    },
    "descriptions": {
      "type": "array",
      "description": "Hotel descriptions in various languages.",
      "items": {
        "$ref": "#/components/schemas/HotelDescription"
      }
    },
    "contact": {
      "$ref": "#/components/schemas/HotelContact"
    },
    "address": {
      "$ref": "#/components/schemas/HotelAddress"
    },
    "geoCode": {
      "$ref": "#/components/schemas/GeoCode"
    },
    "amenities": {
      "type": "array",
      "description": "List of hotel amenity codes.",
      "items": {
        "type": "string"
      },
      "example": [
        "WIFI",
        "RESTAURANT",
        "SPA"
      ]
    },
    "media": {
      "type": "array",
      "description": "List of hotel media assets.",
      "items": {
        "$ref": "#/components/schemas/MediaAsset"
      }
    }
  }
}