FIREDET: Fire detection system
Fire detection system types used in buildings and rooms (e.g. VESDA, smoke, heat, aspirating).
FIREDET 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 FIREDET.Entity properties
| Property | Value |
|---|---|
| Entity code | FIREDET |
| Display name | Fire detection system |
| Plural | Fire detection systems |
| Level | 250 |
Use cases
FIREDET is a lookup entity referenced by BUILDING (as fireDetectionSystem) and FLOOR/ROOM (as fireDetectionType) to classify the type of fire detection system installed. Values include VESDA (Very Early Smoke Detection Apparatus), ionisation smoke detectors, photoelectric smoke detectors, heat detectors, aspirating systems, and multi-sensor detectors. Detection type is critical for data centre compliance (e.g. VESDA is required for many Tier III+ facilities). Separate from FIRESUP (suppression) since detection and suppression are independent systems. Simple name and description fields with flat definition structure and grid view.
Fields
Fire detection system
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
description | text (multi-line) | Description. |
Relationships
- No declared relationships in the default definition.
Creating a Fire detection system via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "FIREDET",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example name",
"description": "Example value"
}
Listing Fire detection systems records
GET /v1/entities/FIREDET/SUB:<your-sub-id>