Amadeus Solutions · JSON Structure

Seat Map Display Seatmap Traveler Pricing Structure

SeatmapTravelerPricing schema

Type: object Properties: 3
AirlinesBookingFlightsGDSHotelsTravelTravel Technology

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

Properties

travelerId seatAvailabilityStatus price

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-seatmap-traveler-pricing-structure.json",
  "name": "SeatmapTravelerPricing",
  "description": "SeatmapTravelerPricing schema",
  "type": "object",
  "properties": {
    "travelerId": {
      "description": "Traveler id",
      "type": "string",
      "pattern": "[a-zA-Z0-9-]{1,20}"
    },
    "seatAvailabilityStatus": {
      "description": "Seat availability for this specific traveler. Allows better seat choice per traveler",
      "type": "string",
      "enum": [
        "AVAILABLE",
        "BLOCKED",
        "OCCUPIED"
      ]
    },
    "price": {
      "description": "Price for a given seat",
      "$ref": "#/definitions/Price"
    }
  }
}