ROADLINE: Roadmap Line
The ROADLINE entity: An annual financial line within a roadmap, with monthly forecast and actual figures for budget tracking.
Default definition. This article describes the default
ROADLINE 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 ROADLINE.Entity properties
| Property | Value |
|---|---|
| Entity code | ROADLINE |
| Display name | Roadmap Line |
| Plural | Roadmap Lines |
| Level | 446 |
Use cases
ROADLINE is a child of ROAD at level 446. The General panel uses a 40/60 split: left column captures line name and year; right column shows budget summary fields (budget, revised budget, MTP, total forecast readonly, total actual readonly) all with currency formatting. The Monthly Data panel uses the financialperiods row type with yearProperty referencing the year field, and four prefixes: forecast (editable), actual (editable), MTP (readonly), and variance (readonly).
Fields
Line Detail
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name |
year | number | Yes | Year |
Budget Summary
| Field | Type | Required | Notes |
|---|---|---|---|
budget | number | Budget | |
revised | number | Revised Budget | |
mtp | number | MTP | |
totalForecast | number | Read-only. Total Forecast | |
totalActual | number | Read-only. Total Actual |
Relationships
- No declared relationships in the default definition.
Creating a Roadmap Line via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "ROADLINE",
"level": 446,
"comboKey": "SUB:|ENT:",
"name": "Example name",
"year": 1,
"budget": 1,
"revised": 1
}
Listing Roadmap Lines records
GET /v1/entities/ROADLINE/SUB