Amadeus · JSON Structure

Hotel Booking V1 Contact Structure

Contact Details

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

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

Properties

phone 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-v1-contact-structure.json",
  "title": "Contact",
  "description": "Contact Details",
  "type": "object",
  "properties": {
    "phone": {
      "type": "string",
      "description": "Phone Number in standard E.123(https://en.wikipedia.org/wiki/E.123)"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Email Address"
    }
  },
  "required": [
    "phone",
    "email"
  ]
}