Amadeus Media · Schema

HotelContact

Hotel contact information.

ContentHotelsImagesMediaTravel

Properties

Name Type Description
phone string Hotel phone number in international format.
fax string Hotel fax number.
email string Hotel email address.
website string Hotel website URL.
View JSON Schema on GitHub

JSON Schema

hotel-content-hotel-contact-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-contact-schema.json",
  "title": "HotelContact",
  "description": "Hotel contact information.",
  "type": "object",
  "properties": {
    "phone": {
      "type": "string",
      "description": "Hotel phone number in international format.",
      "example": "+44-20-12345678"
    },
    "fax": {
      "type": "string",
      "description": "Hotel fax number.",
      "example": "+44-20-12345679"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Hotel email address.",
      "example": "info@hotel.com"
    },
    "website": {
      "type": "string",
      "format": "uri",
      "description": "Hotel website URL.",
      "example": "https://www.hotel.com"
    }
  }
}