SeatingPlan

A single seating plan.

More info: see the get operation and the seating plans endpoint.

Fields

FieldDescription
id
int 
(required)

Unique ID

Example value:123
name
string 
(required)

The name for the seating plan

Example value:"The Opera House"
status
string 
(required)

The status this seating plan is in

Example value:"draft"
translations
map<string, string> 
(required)

Translations for the seat description templates

Example value:{ "Seat description - Defaultnl": "Rij {{rowname}} stoel {{seatname}}" }
useszones
bool 
(required)

When true: treat as a multi-zoned seatingplan

zones
int[] 
(required)

IDs of the seat zones defined

Example value:[ 1, 2, 3 ]
isarchived
bool 
(required)

Whether or not this item is archived

createdts
timestamp 
(required)

Created timestamp

Example value:"2014-09-26 15:24:36"
lastupdatets
timestamp 
(required)

Last updated timestamp

Example value:"2014-09-26 15:24:36"

Example

 1{
 2    "id": 123,
 3    "name": "The Opera House",
 4    "status": "draft",
 5    "translations": {
 6        "Seat description - Defaultnl": "Rij {{rowname}} stoel {{seatname}}"
 7    },
 8    "useszones": false,
 9    "zones": [ 1, 2, 3 ],
10    "isarchived": false,
11    "createdts": "2014-09-26 15:24:36",
12    "lastupdatets": "2014-09-26 15:24:36"
13}