Amadeus Reservations · JSON Structure

Transfer Booking Seat Structure

Seat schema

Type: object Properties: 3
BookingFlightsHotelsReservationsTravel

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

Properties

count row size

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-reservations/refs/heads/main/json-structure/transfer-booking-seat-structure.json",
  "name": "Seat",
  "description": "Seat schema",
  "type": "object",
  "properties": {
    "count": {
      "type": "int32",
      "description": "seat capacity",
      "example": 3
    },
    "row": {
      "type": "string",
      "description": "seat row",
      "example": "front"
    },
    "size": {
      "type": "string",
      "description": "seat size",
      "example": "XL"
    }
  }
}