SITEPRIORITY: Priority
The SITEPRIORITY entity: Operational priority levels for sites and rooms, with ordering and colour coding.
Default definition. This article describes the default
SITEPRIORITY 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 SITEPRIORITY.Entity properties
| Property | Value |
|---|---|
| Entity code | SITEPRIORITY |
| Display name | Priority |
| Plural | Priorities |
| Level | 250 |
Use cases
SITEPRIORITY is a lookup entity referenced by ROOM (as operationalPriority) and potentially other infrastructure entities to classify operational importance. Beyond name and description, it includes an order field for priority ranking (lower number = higher priority) and a colour field for visual indicators in the UI. This enables tiered SLA management: critical facilities receive faster response times and more stringent monitoring thresholds than lower-priority spaces.
Uses a flat definition structure with grid view.
Fields
Priority
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name |
description | text (multi-line) | Yes | Description |
order | number | Yes | Order |
color | color | Colour |
Relationships
- No declared relationships in the default definition.
Creating a Priority via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "SITEPRIORITY",
"level": 250,
"comboKey": "SUB:|ENT:",
"name": "Example name",
"description": "Example Description",
"order": 1,
"color": "Example value"
}
Listing Priorities records
GET /v1/entities/SITEPRIORITY/SUB