Amadeus Solutions · JSON Structure

Seat Map Display Price Structure

Price schema

Type: object Properties: 5
AirlinesBookingFlightsGDSHotelsTravelTravel Technology

Price is a JSON Structure definition published by Amadeus Solutions, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

currency total base fees taxes

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-solutions/refs/heads/main/json-structure/seat-map-display-price-structure.json",
  "name": "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"
}