Amadeus · Schema

Price

Price schema from Flight Create Orders

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
currency string
total string Total amount paid by the user
base string Amount without taxes
fees array List of applicable fees
taxes array
refundableTaxes string The amount of taxes which are refundable
View JSON Schema on GitHub

JSON Schema

flight-create-orders-price-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/flight-create-orders-price-schema.json",
  "title": "Price",
  "description": "Price schema from Flight Create Orders",
  "properties": {
    "currency": {
      "type": "string",
      "example": "USD"
    },
    "total": {
      "description": "Total amount paid by the user",
      "type": "string",
      "example": "932.70"
    },
    "base": {
      "description": "Amount without taxes",
      "type": "string",
      "example": "632.70"
    },
    "fees": {
      "description": "List of applicable fees",
      "type": "array",
      "items": {
        "description": "a fee",
        "properties": {
          "amount": {
            "type": "string",
            "example": "332.70"
          },
          "type": {
            "$ref": "#/definitions/FeeType"
          }
        }
      }
    },
    "taxes": {
      "type": "array",
      "items": {
        "description": "a tax",
        "type": "object",
        "properties": {
          "amount": {
            "type": "string",
            "example": "332.70"
          },
          "code": {
            "type": "string",
            "example": "MX"
          }
        }
      }
    },
    "refundableTaxes": {
      "description": "The amount of taxes which are refundable",
      "type": "string",
      "example": "200.00"
    }
  },
  "type": "object"
}