The data model
Every building in Tacit follows the same structure, regardless of the underlying BMS vendor or naming convention.feeds other equipment, sensors are pointOf equipment, zones are partOf floors.
How Tacit uses Brick
Every building management system (BMS) has its own naming conventions. The same physical sensor might be calledAHU1_SAT, Supply_Air_Temp_AHU_01, or SA-T-1 depending on the vendor. Across a portfolio, this is impossible to manage manually.
Tacit maps every building’s raw BMS data to Brick Schema, an open-source ontology that gives building data a shared vocabulary. Once mapped, the same query works on any building:
- Canonical class names:
Supply_Air_Temperature_Sensorinstead of vendor-specific abbreviations - A class hierarchy:
Supply_Air_Temperature_Sensoris a kind ofTemperature_Sensor, which is a kind ofSensor, which is a kind ofPoint - Typed relationships: equipment
feedsother equipment, sensors arepointOfequipment, zones arepartOffloors
Name-based discovery
Every entity can be found by name, no UUIDs required. Thename argument does case-insensitive substring matching by default:
nameMatch: EXACT for precise matches. This works on every entity type and on nested fields too.
Buildings
A building is the top-level container. It has a spatial hierarchy of locations (wings, floors, zones) and contains all equipment, systems, and points for that physical site.Equipment
Equipment represents physical devices: air handling units, variable air volume boxes, chillers, boilers, fan coil units, pumps, cooling towers, and more. Each piece of equipment has atype that describes what it is, and a typeHierarchy showing its full class lineage.
feeds relationships, forming chains that represent the physical distribution of air, water, or electricity through a building. Equipment can also have parts (sub-components like fans, dampers, and valves). See relationships and traversal.
typeHierarchy returns the full class lineage (leaf to root), e.g. ["AHU", "HVAC_Equipment", "Equipment", "Entity", "Class"]. This is why is: "HVAC_Equipment" matches AHUs.
Points
Points are the leaf nodes of the model: individual sensor readings, actuator commands, and setpoints. A point always belongs to a piece of equipment (or directly to a zone in some cases).| Point category | Description | Examples |
|---|---|---|
| Sensors | Measured values from physical sensors | Temperature, humidity, CO2, pressure, flow rate |
| Setpoints | Target values for control loops | Temperature setpoint, pressure setpoint |
| Commands | Actuator positions or on/off states | Damper position, valve position, fan on/off |
| Status | Equipment state feedback | Running status, fault status, mode |
unit (e.g., DEG_C, PA, CFM), a type from the Brick ontology, and an equipmentId linking it back to its parent equipment.
Use
currentValue { value timestamp quality } on the Point type for the latest reading. For historical time-range data, use the timeseries REST endpoint with the point’s timeseriesId.Locations
Locations represent the spatial hierarchy of a building: wings, floors, rooms, and areas. They provide the physical context for where equipment is installed and zones are defined.Zones
Zones represent the spaces that equipment feeds. An HVAC zone is the area controlled by a single terminal unit (like a VAV box). Zones reference locations and are fed by equipment.Cross-cutting queries
The most powerful pattern is querying across the entire building graph without UUIDs:Properties on all entity types
Every entity type carries structured metadata viaproperties. Buildings, locations, zones, systems, equipment, and points can all have properties:
controllerName, isVirtual, pointCount, each with a name, value, and optional unit.
IFC integration
Entities that come from an IFC (BIM) model carry anifcId field linking back to the BIM element:
ifcId is null when equipment was created from BMS data rather than an IFC model. Available on Building, Equipment, Location, Zone, and System.
Next steps
Class hierarchy
How
is: "HVAC_Equipment" matches all subtypes automatically.Relationships and traversal
How equipment connects, what it contains, what it feeds, and where it sits.
