TILEMATERIAL: Tile Material
Raised floor tile material classification with load capacity, fire rating, and conductivity properties.
TILEMATERIAL 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 TILEMATERIAL.Entity properties
| Property | Value |
|---|---|
| Entity code | TILEMATERIAL |
| Display name | Tile Material |
| Plural | Tile Materials |
| Level | 1000 |
Use cases
Raised floor tile material classification with load capacity, fire rating, and conductivity properties.
TILEMATERIAL is a lookup entity referenced by TILE records to classify the construction material (e.g. steel, aluminium, calcium sulphate, wood core). It captures material-specific properties that affect tile selection: load rating range (min/max in lbs) for structural planning, fire rating classification for safety compliance, and electrical conductivity (conductive, static dissipative, non-conductive) which is critical in data centres where ESD protection is required. The isActive flag allows deprecating materials no longer specified without losing historical references. This entity works alongside TILETYPE and TILESIZE to give each TILE a complete physical specification.
Fields
General
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
description | text (multi-line) | Description. | |
loadRatingMin | number | Minimum load capacity for this material | |
loadRatingMax | number | Maximum load capacity for this material | |
fireRating | text | Fire resistance classification | |
conductivity | enum | Valid ids: 1 (Conductive), 2 (Static Dissipative), 3 (Non-Conductive). | |
isActive | boolean | Active. |
Relationships
No declared relationships in the default definition.
Creating a Tile Material via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "TILEMATERIAL",
"level": 1000,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example name",
"description": "Example text"
}
Listing Tile Materials
GET /v1/entities/TILEMATERIAL/SUB