Recommended allocations
Prerequisites
Allocation record shape
type Allocation = {
starts_at: string; // ISO timestamp (interval start)
ends_at: string; // ISO timestamp (interval end)
location_id: string;
location_name: string;
layer_id: string; // floor/layer allocated to
layer_name: string;
spaces: string[]; // array of space IDs allocated
type: string; // "SPACE" or "ROOM" (type of allocation)
people_id?: string; // present for people allocations
team_id?: string; // present for team allocations (or people with team assignment)
room_id?: string; // present only on room allocations
};1) Get recommended allocations for a location (day-by-day)
2) Summarise allocations per day
3) Inspect by level: zone/neighbourhood, team, people
4) Make manual adjustments (create/update/delete)
A) Create manual allocations
B) Update allocations (e.g., swap spaces)
C) Delete allocations
5) Common patterns
Last updated
Was this helpful?