Amadeus · Schema

ChargeableSeat

Details of chargeable seat

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
id string Id of the chargeable seat
number string seat number
View JSON Schema on GitHub

JSON Schema

flight-offers-price-chargeable-seat-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-offers-price-chargeable-seat-schema.json",
  "title": "ChargeableSeat",
  "description": "Details of chargeable seat",
  "type": "object",
  "properties": {
    "id": {
      "description": "Id of the chargeable seat",
      "type": "string",
      "example": "1"
    },
    "number": {
      "type": "string",
      "description": "seat number",
      "example": "33D",
      "pattern": "[1-9][0-9]{0,2}[A-Z]?"
    }
  }
}