LogicalPlanRow
A row contains a set of seats
Fields
Field | Description |
---|---|
name string (required) | The name of the row Example value:"A" |
coord int (required) | The coordinate of the row Example value:1 |
seats | The seats in this row Example value:[ { "id": "s002001001", "name": "1", "center": [ 312.000000, 834.500000 ], "coord": 1, "priority": 85, "rowname": "A", "seatrankid": 1, "size": [ 12.000000, 12.000000 ] }, { "id": "s002001002", "name": "2", "center": [ 330.000000, 834.500000 ], "coord": 1, "priority": 85, "rowname": "A", "seatrankid": 1, "size": [ 12.000000, 12.000000 ] } ] |
Example
1{
2 "name": "A",
3 "coord": 1,
4 "seats": [
5 {
6 "id": "s002001001",
7 "name": "1",
8 "center": [ 312.000000, 834.500000 ],
9 "coord": 1,
10 "priority": 85,
11 "rowname": "A",
12 "seatrankid": 1,
13 "size": [ 12.000000, 12.000000 ]
14 },
15 {
16 "id": "s002001002",
17 "name": "2",
18 "center": [ 330.000000, 834.500000 ],
19 "coord": 1,
20 "priority": 85,
21 "rowname": "A",
22 "seatrankid": 1,
23 "size": [ 12.000000, 12.000000 ]
24 }
25 ]
26}