ITTYPE: IT asset type
Classification type for IT assets, providing a controlled taxonomy for asset categorisation.
Default definition. This article describes the default
ITTYPE 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 ITTYPE.Entity properties
| Property | Value |
|---|---|
| Entity code | ITTYPE |
| Display name | IT asset type |
| Plural | IT asset types |
| Level | 250 |
Use cases
ITTYPE is a simple lookup entity that provides a controlled vocabulary for classifying ITASSET records via their assetType field. It uses a flat grid-based view (not complex editor) because it only needs name and description - typical for a reference data entity. Having asset types as a separate entity rather than a hardcoded select list allows organisations to define their own IT asset taxonomy (e.g., Laptop, Desktop, Server, Monitor, Printer, Phone, Tablet, Network Equipment) without modifying the ITASSET definition.
Fields
IT asset type
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
icon | text (FA icon class) | Icon. | |
description | text (multi-line) | Description. | |
carbonFactorPerDay | number | Daily carbon emission rate for this asset type | |
scope | enum | Valid ids: 2 (Scope 2), 3 (Scope 3). | |
weeeCategory | text | WEEE category. |
Relationships
- No declared relationships in the default definition.
Creating a IT asset type via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "ITTYPE",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"icon": "...",
"description": "...",
"carbonFactorPerDay": 1
}
Listing IT asset types
# All records in your tenant
GET /v1/entities/ITTYPE/SUB:<your-sub-id>