Amadeus Solutions · Schema

Contact

contact information

AirlinesBookingFlightsGDSHotelsTravelTravel Technology
View JSON Schema on GitHub

JSON Schema

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