Contact

Contact schema

BookingFlightsHotelsReservationsTravel

Properties

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

JSON Schema

transfer-booking-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-schema/transfer-booking-contact-schema.json",
  "title": "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"
    }
  }
}