TILESIZE: Tile Size
Standard and custom raised floor tile dimensions in both imperial and metric units.
TILESIZE 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 TILESIZE.Entity properties
| Property | Value |
|---|---|
| Entity code | TILESIZE |
| Display name | Tile Size |
| Plural | Tile Sizes |
| Level | 1000 |
Use cases
Standard and custom raised floor tile dimensions in both imperial and metric units.
TILESIZE is a lookup entity referenced by TILE records to define tile dimensions. It stores width and length in both inches and millimetres to support international standards (e.g. 24x24 inch / 600x600mm is the most common data centre tile size). The isStandard flag distinguishes industry-standard sizes from custom cuts, and isActive allows deprecating sizes no longer in use. This separation from TILETYPE and TILEMATERIAL enables mix-and-match combinations: a tile can be a specific size, made of a specific material, and be a specific type (perforated, solid, etc.).
Fields
General
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
widthInches | number | Yes | Width (inches). |
lengthInches | number | Yes | Length (inches). |
widthMm | number | Width (mm). | |
lengthMm | number | Length (mm). | |
isStandard | boolean | Is this a standard industry size | |
isActive | boolean | Active. |
Relationships
No declared relationships in the default definition.
Creating a Tile Size via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "TILESIZE",
"level": 1000,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example name",
"widthInches": 0,
"lengthInches": 0
}
Listing Tile Sizes
GET /v1/entities/TILESIZE/SUB