Amadeus · Schema

Agency

Agency email information.

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
contacts array List of contact information
View JSON Schema on GitHub

JSON Schema

transfer-book-agency-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-book-agency-schema.json",
  "title": "Agency",
  "description": "Agency email information.",
  "type": "object",
  "properties": {
    "contacts": {
      "type": "array",
      "description": "List of contact information",
      "items": {
        "type": "object",
        "properties": {
          "email": {
            "type": "object",
            "description": "Email information.",
            "title": "Email",
            "properties": {
              "address": {
                "type": "string",
                "format": "email",
                "description": "Email address (e.g. [email protected])",
                "example": "[email protected]"
              }
            }
          }
        }
      }
    }
  }
}