Amadeus Reservations · JSON Structure

Transfer Booking Agency Structure

Agency email information.

Type: object Properties: 1
BookingFlightsHotelsReservationsTravel

Agency is a JSON Structure definition published by Amadeus Reservations, describing 1 property. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

contacts

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-reservations/refs/heads/main/json-structure/transfer-booking-agency-structure.json",
  "name": "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.",
            "name": "Email",
            "properties": {
              "address": {
                "type": "string",
                "format": "email",
                "description": "Email address (e.g. john@smith.com)"
              }
            }
          }
        }
      }
    }
  }
}