Amadeus Reservations · JSON Structure

Transfer Booking Contact Structure

Contact schema

Type: object Properties: 2
BookingFlightsHotelsReservationsTravel

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

Properties

phoneNumber email

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-contact-structure.json",
  "name": "Contact",
  "description": "Contact schema",
  "type": "object",
  "properties": {
    "phoneNumber": {
      "type": "string",
      "pattern": "([+]?)[0-9]{1,20}",
      "description": "Contact phone number"
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "Contact email"
    }
  }
}