Amadeus Reservations · JSON Structure

Flight Order Management Contact Structure

contact information

Type: Properties: 0
BookingFlightsHotelsReservationsTravel

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

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/flight-order-management-contact-structure.json",
  "name": "Contact",
  "description": "contact information",
  "allOf": [
    {
      "$ref": "#/definitions/ContactDictionary"
    },
    {
      "type": "object",
      "properties": {
        "phones": {
          "description": "Phone numbers",
          "type": "array",
          "maxItems": 3,
          "items": {
            "$ref": "#/definitions/Phone"
          }
        },
        "companyName": {
          "description": "Name of the company",
          "type": "string",
          "example": "AMADEUS"
        },
        "emailAddress": {
          "type": "string",
          "description": "Email address (e.g. john@smith.com)",
          "example": "support@mail.com"
        }
      }
    }
  ]
}