Amadeus · Schema

Contact

Contact schema from Transfer Search

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
phoneNumber string Contact phone number
email string Contact email
View JSON Schema on GitHub

JSON Schema

transfer-search-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/transfer-search-contact-schema.json",
  "title": "Contact",
  "description": "Contact schema from Transfer Search",
  "type": "object",
  "properties": {
    "phoneNumber": {
      "type": "string",
      "pattern": "([+]?)[0-9]{1,20}",
      "description": "Contact phone number",
      "example": "+33123456789"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Contact email",
      "example": "[email protected]"
    }
  }
}