FIRESUP: Fire suppression systems
Fire suppression system types (e.g. FM-200, Novec 1230, inert gas, pre-action sprinkler).
Default definition. This article describes the default
FIRESUP 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 FIRESUP.Entity properties
| Property | Value |
|---|---|
| Entity code | FIRESUP |
| Display name | Fire suppression systems |
| Plural | Fire suppression system |
| Level | 250 |
Use cases
FIRESUP is a lookup entity referenced by BUILDING (as fireSuppType), FLOOR and ROOM (as fireSuppression) to classify the fire suppression system installed. Values include clean agent systems (FM-200, Novec 1230, Inergen), pre-action sprinkler, dry pipe, wet pipe, and water mist. In data centres, clean agent suppression is preferred because it extinguishes fire without damaging electronics, unlike water-based systems.
Fields
Fire suppression systems
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
description | text (multi-line) | Description. |
Relationships
- No declared relationships in the default definition.
Creating a Fire suppression systems via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "FIRESUP",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"description": "..."
}
Listing Fire suppression system
# All records in your tenant
GET /v1/entities/FIRESUP/SUB:<your-sub-id>