Amadeus Solutions · Schema

Price

Price schema

AirlinesBookingFlightsGDSHotelsTravelTravel Technology

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

seat-map-display-price-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/seat-map-display-price-schema.json",
  "title": "Price",
  "description": "Price schema",
  "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": {
        "$ref": "#/definitions/Fee"
      }
    },
    "taxes": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/Tax"
      }
    }
  },
  "type": "object"
}