TILETYPE: Tile Type
Classification of raised floor tile types (solid, perforated, grated) with airflow characteristics.
TILETYPE 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 TILETYPE.Entity properties
| Property | Value |
|---|---|
| Entity code | TILETYPE |
| Display name | Tile Type |
| Plural | Tile Types |
| Level | 1000 |
Use cases
Classification of raised floor tile types (solid, perforated, grated) with airflow characteristics.
TILETYPE is a lookup entity referenced by TILE records to classify the type of raised floor tile (e.g. solid, perforated 25%, grated). Beyond name and description, it captures perforation percentage and nominal airflow rating in CFM, which are critical for cooling calculations and computational fluid dynamics modelling. The isActive flag allows deprecating tile types no longer in use without deleting historical references. Uses simple view since it is a reference data entity with a small number of records.
Fields
General
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
description | text (multi-line) | Description. | |
perforationPercentage | number | Yes | Percentage of tile surface that is perforated |
nominalAirflow | number | Typical airflow rating at standard pressure | |
status | enum | Yes | Valid ids: 1 (Active), 2 (Inactive). |
Relationships
No declared relationships in the default definition.
Creating a Tile Type via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "TILETYPE",
"level": 1000,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example name",
"perforationPercentage": 0,
"status": "1"
}
Listing Tile Types
GET /v1/entities/TILETYPE/SUB