Seat

Seat schema

BookingFlightsHotelsReservationsTravel

Properties

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

JSON Schema

transfer-booking-seat-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-schema/transfer-booking-seat-schema.json",
  "title": "Seat",
  "description": "Seat schema",
  "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"
    }
  }
}