Amadeus · Schema

Seat

Seat schema from Transfer Booking

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
count integer seat capacity
row string seat row
size string seat size
View JSON Schema on GitHub

JSON Schema

transfer-book-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/transfer-book-seat-schema.json",
  "title": "Seat",
  "description": "Seat schema from Transfer Booking",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "seat capacity",
      "example": 3
    },
    "row": {
      "type": "string",
      "description": "seat row",
      "example": "front"
    },
    "size": {
      "type": "string",
      "description": "seat size",
      "example": "XL"
    }
  }
}