Space_Layout is layout config available for each space.
| Parameter | Value type | Note | ||
|---|---|---|---|---|
| Layouts | string (JSON object) | |||
| Name | string | Name for the space | ||
| Space_Id | string | Space ID, internal number | ||
| SeatingArrangements | string (JSON object) | |||
| Style | string | Layout style name | ||
| Capacity | integer | Space for how many people | ||
| Setup | integer | Time in minutes needed to set this layout up | ||
| Breakdown | integer | Time in minutes needed to reset the space to its original or default layout | ||
Example of a record
{
 "Layouts": [
   {
     "Name": "R005",
     "Space_Id": "1CC_03-NE-R005",
     "SeatingArrangements": [
       {
         "Style": "Boardroom",
         "Capacity": 15,
         "Setup": 60,
         "Breakdown": 60
       }
     ]
   },
   {
     "Name": "R005/R006",
     "Space_Id": "1CC_03-NE-R005;1CC_03-SE-R006",
     "SeatingArrangements": [
       {
         "Style": "Boardroom",
         "Capacity": 30,
         "Setup": 60,
         "Breakdown": 60
       },
       {
         "Style": "Theatre",
         "Capacity": 30,
         "Setup": 60,
         "Breakdown": 60
       },
       {
         "Style": "Hollow Square",
         "Capacity": 30,
         "Setup": 60,
         "Breakdown": 60
       }
     ]
   }
 ]
}

