FIN: Finance model
A finance model with name and description, displayed as a simple grid-only entity.
Default definition. This article describes the default
FIN 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 FIN.Entity properties
| Property | Value |
|---|---|
| Entity code | FIN |
| Display name | Finance model |
| Plural | Finance models |
| Level | 5 |
Use cases
Minimal financial modelling entity. Uses flat definition array with grid-only view (view type is object {type: 'grid'} rather than string 'complex'). Contains only name and description fields. Very low level (5) suggesting it's a foundational/system entity. May serve as a container or reference for financial model configurations used elsewhere in the system.
Fields
Finance model
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
description | text (multi-line) | Description. |
Relationships
- No declared relationships in the default definition.
Creating a Finance model via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "FIN",
"level": 5,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example name",
"description": "Example value"
}
Listing Finance models records
GET /v1/entities/FIN/SUB:<your-sub-id>