FLOORSTATUS: Floor Status
Lifecycle status values for floors within a building (e.g. active, fit-out, decommissioned).
Default definition. This article describes the default
FLOORSTATUS definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches FLOORSTATUS.Entity properties
| Property | Value |
|---|---|
| Entity code | FLOORSTATUS |
| Display name | Floor Status |
| Plural | Floor Statuses |
| Level | 250 |
Use cases
FLOORSTATUS is a lookup entity referenced by FLOOR (as status) to track the operational lifecycle state of individual floors. Values might include planned, under fit-out, active, partially decommissioned, or decommissioned. Separate from SITESTATUS because floors within the same building may be at different lifecycle stages (e.g.
Fields
Floor Status
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
description | text (multi-line) | Description. |
Relationships
- No declared relationships in the default definition.
Creating a Floor Status via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "FLOORSTATUS",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"description": "..."
}
Listing Floor Statuses
# All records in your tenant
GET /v1/entities/FLOORSTATUS/SUB:<your-sub-id>