Amadeus Reservations · JSON Structure

Transfer Booking Quotation Structure

quotation representing a price valuation and its components. The monetaryAmount at the root are the sum of base and all the taxes/fees/discounts

Type: Properties: 0
BookingFlightsHotelsReservationsTravel

Quotation 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/transfer-booking-quotation-structure.json",
  "name": "Quotation",
  "description": "quotation representing a price valuation and its components. The monetaryAmount at the root are the sum of base and all the taxes/fees/discounts",
  "allOf": [
    {
      "$ref": "#/definitions/PointsAndCash"
    },
    {
      "type": "object",
      "properties": {
        "currencyCode": {
          "type": "string",
          "example": "USD"
        },
        "isEstimated": {
          "type": "boolean",
          "description": "indicates if the price is pre-estimated prior to ride. Becomes mandatory for transferType = TAXI"
        },
        "base": {
          "description": "base price",
          "allOf": [
            {
              "$ref": "#/definitions/PointsAndCash"
            }
          ]
        },
        "discount": {
          "description": "discount amount of base price",
          "allOf": [
            {
              "$ref": "#/definitions/PointsAndCash"
            }
          ]
        },
        "taxes": {
          "description": "Taxes breakdown",
          "type": "array",
          "items": {
            "$ref": "#/definitions/Tax"
          }
        },
        "fees": {
          "description": "Fees breakdown",
          "type": "array",
          "items": {
            "$ref": "#/definitions/Fee"
          }
        },
        "totalTaxes": {
          "$ref": "#/definitions/PointsAndCash"
        },
        "totalFees": {
          "$ref": "#/definitions/PointsAndCash"
        }
      }
    }
  ]
}