Amadeus Media · Schema

HotelMediaData

Media assets for a single hotel.

ContentHotelsImagesMediaTravel

Properties

Name Type Description
hotelId string Amadeus property code.
media array List of media assets for the hotel.
View JSON Schema on GitHub

JSON Schema

hotel-content-hotel-media-data-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-media-data-schema.json",
  "title": "HotelMediaData",
  "description": "Media assets for a single hotel.",
  "type": "object",
  "properties": {
    "hotelId": {
      "type": "string",
      "description": "Amadeus property code.",
      "example": "MCLONGHM"
    },
    "media": {
      "type": "array",
      "description": "List of media assets for the hotel.",
      "items": {
        "$ref": "#/components/schemas/HotelMediaItem"
      }
    }
  }
}