SITETYPE: Site type
The SITETYPE entity: Classification of site and building types (e.g. data centre, office, warehouse, exchange).
Default definition. This article describes the default
SITETYPE 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 SITETYPE.Entity properties
| Property | Value |
|---|---|
| Entity code | SITETYPE |
| Display name | Site type |
| Plural | Site types |
| Level | 40000 |
Use cases
SITETYPE is a lookup entity referenced by SITE (as sitetype) and BUILDING (as buildingtype) to classify the purpose or function of the facility. Shared between both entities because a site and its buildings often share the same classification taxonomy (e.g. data centre, colocation, office, warehouse, exchange).
Simple name and description fields with flat definition structure and grid view.
Fields
Site type
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name |
description | text (multi-line) | Description |
Relationships
- No declared relationships in the default definition.
Creating a Site type via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "SITETYPE",
"level": 40000,
"comboKey": "SUB:|ENT:",
"name": "Example name",
"description": "Example Description"
}
Listing Site types records
GET /v1/entities/SITETYPE/SUB