DemandFlow Support Centre

TILESIZE: Tile Size

ReferenceEntity Reference16/04/2026Updated 16/04/2026
Standard and custom raised floor tile dimensions in both imperial and metric units.

TILESIZE: Tile Size

Standard and custom raised floor tile dimensions in both imperial and metric units.

Default definition. This article describes the default 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

PropertyValue
Entity codeTILESIZE
Display nameTile Size
PluralTile Sizes
Level1000

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

FieldTypeRequiredNotes
nametextYesName.
widthInchesnumberYesWidth (inches).
lengthInchesnumberYesLength (inches).
widthMmnumberWidth (mm).
lengthMmnumberLength (mm).
isStandardbooleanIs this a standard industry size
isActivebooleanActive.

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

See also

tilesizetilesizesizes

Was this article helpful?

← Back to Knowledge Base