Amadeus · JSON Structure

Hotel Booking Hotel Contact Structure

Contact Details

Type: object Properties: 3 Required: 1
TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Hotel Booking Hotel Contact Structure is a JSON Structure definition published by Amadeus, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/draft/v0/schema meta-schema.

Properties

phone fax email

Meta-schema: https://json-structure.org/draft/v0/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/v0/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-structure/hotel-booking-hotel-contact-structure.json",
  "title": "Hotel_Contact",
  "description": "Contact Details",
  "type": "object",
  "properties": {
    "phone": {
      "type": "string",
      "description": "Phone Number"
    },
    "fax": {
      "type": "string",
      "description": "Fax Number"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email Address"
    }
  },
  "required": [
    "fax"
  ]
}