Amadeus · Schema

Price

Price schema from Seatmap Display

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
View JSON Schema on GitHub

JSON Schema

seatmap-display-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/seatmap-display-price-schema.json",
  "title": "Price",
  "description": "Price schema from Seatmap Display",
  "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"
          }
        }
      }
    }
  },
  "type": "object"
}