MOUNTTYPE: Mount Type
Classification of tower mounting hardware types with specifications, dimensions, and images.
Default definition. This article describes the default
MOUNTTYPE 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 MOUNTTYPE.Entity properties
| Property | Value |
|---|---|
| Entity code | MOUNTTYPE |
| Display name | Mount Type |
| Plural | Mount Types |
| Level | 39100 |
Use cases
MOUNTTYPE is a lookup entity referenced by MOUNTPOINT and MOUNTEQP records to classify the type of mounting hardware used (pipe mount, stand-off, T-arm, sector frame, platform, wall mount, monopole rail). Unlike simple lookups, it has a complex view with detailed specifications: manufacturer (VEN), model, material, max load capacity, dimensions (H/W/D in cm), weight, and installation guide URL. A files row type allows image uploads for visual reference.
Fields
General
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name |
description | text (multi-line) | Description | |
oem | reference → VEN | Manufacturer | |
model | text | Model | |
material | text | Material |
Specifications
| Field | Type | Required | Notes |
|---|---|---|---|
maxLoadCapacity | number | Max Load Capacity (kg) | |
dimHeight | number | Dimensions height (cm) | |
dimWidth | number | Dimensions width (cm) | |
dimDepth | number | Dimensions depth (cm) | |
weight | number | Weight (Kg) | |
installguide | text (URL) | Installation guide |
Documents
| Field | Type | Required | Notes |
|---|---|---|---|
file | file |
Relationships
- Lookups:
oempoints at aVENrecord.
Creating a Mount Type via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "MOUNTTYPE",
"level": 39100,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"description": "Example text.",
"oem": "",
"model": "Example"
}
Listing Mount Types records
# All mount types in your tenant
GET /v1/entities/MOUNTTYPE/SUB