DemandFlow Support Centre

FLOOR: Floor

ReferenceEntity Reference16/04/2026Updated 16/04/2026
A floor within a building, tracking rooms, capacity, infrastructure, and environmental metrics.

FLOOR: Floor

A floor within a building, tracking rooms, capacity, infrastructure, and environmental metrics.

Default definition. This article describes the default FLOOR 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 FLOOR.

Entity properties

PropertyValue
Entity codeFLOOR
Display nameFloor
PluralFloors
Level250

Use cases

FLOOR is the third level in the physical hierarchy (SITE > BUILDING > FLOOR > ROOM > RACK). Each floor belongs to a parent BUILDING via comboLookup, with a floorNumber field (0 for ground, negative for basements) for ordered display. Status uses the FLOORSTATUS lookup.

Fields

General

FieldTypeRequiredNotes
nametextYesName.
floorIdtextFloor ID.
floorNumbernumber0 for ground floor, negative for basement levels
buildingreference → BUILDINGParent Building.
statusreference → FLOORSTATUSFloor Status.
descriptiontext (multi-line)Description.

Physical Attributes

FieldTypeRequiredNotes
totalAreanumberTotal Floor Area (sq ft).
usableAreanumberUsable Area (sq ft).
whiteSpaceAreanumberWhite Space Area (sq ft).
supportSpaceAreanumberSupport Space Area (sq ft).
floorHeightnumberFloor Height (ft).
ceilingHeightnumberCeiling Height (ft).
floorLoadingnumberFloor Loading Capacity (lbs/sq ft).

Floor Plan

FieldTypeRequiredNotes
floorPlanUrltext (URL)Link to floor plan document

Space Capacity

FieldTypeRequiredNotes
totalRackCapacitynumberTotal Rack Capacity.
usedRackSpacenumberUsed Rack Space.
availableRackSpacenumberAvailable Rack Space.
maxRackHeightnumberMaximum Rack Height (U).

Power & Cooling

FieldTypeRequiredNotes
totalPowerCapacitynumberTotal Power Capacity (kW).
usedPowernumberUsed Power (kW).
availablePowernumberAvailable Power (kW).
totalCoolingCapacitynumberTotal Cooling Capacity (kW).
usedCoolingnumberUsed Cooling (kW).
availableCoolingnumberAvailable Cooling (kW).

Electrical Systems

FieldTypeRequiredNotes
powerDistributionTypereference → POWERDISTPower Distribution Type.
powerCircuitCountnumberPower Circuit Count.
pduCountnumberPDU Count.
upsAvailablebooleanUPS Available.
voltageTypesarray of enumsValid ids: 1 (120V Single-Phase), 2 (208V Single-Phase), 3 (208V Three-Phase), 4 (240V Single-Phase), 5 (480V Three-Phase).

Cooling & Air Systems

FieldTypeRequiredNotes
coolingTypereference → COOLINGFLOORCooling Type.
hasCracUnitsbooleanHas CRAC Units.
cracUnitCountnumberCRAC Unit Count.
hasRaisedFloorbooleanHas Raised Floor.
raisedFloorHeightnumberRaised Floor Height (inches).
airContainmentreference → AIRCONTAir Containment.

Access Control

FieldTypeRequiredNotes
accessControlTypereference → ACCESSCONTAccess Control Type.
entrancePointsnumberNumber of Entrance Points.
exitPointsnumberNumber of Exit Points.
cameraCountnumberSecurity Camera Count.
securityNotestext (multi-line)Security Notes.

Fire Safety

FieldTypeRequiredNotes
fireDetectionTypereference → FIREDETFire Detection Type.
fireSuppressionreference → FIRESUPFire Suppression System.
emergencyExitbooleanEmergency Exit Available.
fireExtinguisherCountnumberFire Extinguisher Count.

Maintenance Information

FieldTypeRequiredNotes
lastMaintenanceDatedateLast Maintenance Date.
nextMaintenanceDatedateNext Scheduled Maintenance.
maintenanceProviderreference → COMMaintenance Provider.
maintenanceNotestext (multi-line)Maintenance Notes.

Environmental Metrics

FieldTypeRequiredNotes
targetTemperaturenumberTarget Temperature (°F).
targetHumiditynumberTarget Humidity (%).
tempHumidSensorCountnumberTemperature/Humidity Sensor Count.
leakDetectionbooleanLeak Detection System Installed.

Energy Metrics

FieldTypeRequiredNotes
powerDensitynumberPower Density (W/sq ft).
annualPowerConsumptionnumberAnnual Power Consumption (kWh).
puenumberPower Usage Effectiveness for this floor

Relationships

  • Lookups: building points at a BUILDING record; status points at a FLOORSTATUS record; powerDistributionType points at a POWERDIST record; coolingType points at a COOLINGFLOOR record; airContainment points at a AIRCONT record; accessControlType points at a ACCESSCONT record; fireDetectionType points at a FIREDET record; fireSuppression points at a FIRESUP record; maintenanceProvider points at a COM record.
  • Related lists: ROOM.

Creating a Floor via the API

POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json

{
  "entity":   "FLOOR",
  "level":    250,
  "comboKey": "SUB:<your-sub-id>|ENT:",
  "name": "Example",
  "floorId": "...",
  "floorNumber": 1,
  "building": "..."
}

Listing Floors

# All records in your tenant
GET /v1/entities/FLOOR/SUB:<your-sub-id>

See also

floorfloors

Was this article helpful?

← Back to Knowledge Base