Amadeus Media · JSON Structure

Hotel Content Hotel Contact Structure

Hotel contact information.

Type: object Properties: 4
ContentHotelsImagesMediaTravel

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

Properties

phone fax email website

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-contact-structure.json",
  "name": "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": "uri",
      "description": "Hotel website URL.",
      "example": "https://www.hotel.com"
    }
  }
}