SeatingPlan
A single seating plan.
More info: see the get operation and the seating plans endpoint.
Fields
Field | Description |
---|---|
id
int
(required) |
Unique ID Example value:123 |
name
string
(required) |
The name for the seating plan Example value:"The Opera House" |
jointjs_dump
string
(required) |
JointJS seating plan dump |
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 "jointjs_dump": null,
5 "status": "draft",
6 "translations": {
7 "Seat description - Defaultnl": "Rij {{rowname}} stoel {{seatname}}"
8 },
9 "useszones": false,
10 "zones": [ 1, 2, 3 ],
11 "isarchived": false,
12 "createdts": "2014-09-26 15:24:36",
13 "lastupdatets": "2014-09-26 15:24:36"
14}