DISCIPLINE: Discipline
A professional discipline or skill category used to classify recruitment vacancies and candidates.
Default definition. This article describes the default
DISCIPLINE 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 DISCIPLINE.Entity properties
| Property | Value |
|---|---|
| Entity code | DISCIPLINE |
| Display name | Discipline |
| Plural | Disciplines |
| Level | 250 |
Use cases
DISCIPLINE is a simple lookup entity at level 250. Uses a flat definition array (not panelised) with three fields: name, code, and a readonly Dynamics ID for ERP sync. Grid-only view.
Fields
Discipline
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
code | text | Code. | |
_dynamics_id | text | Dynamics ID. Read only. |
Relationships
- No declared relationships in the default definition.
Creating a Discipline via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "DISCIPLINE",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example name",
"code": "Example value"
}
Listing Disciplines records
GET /v1/entities/DISCIPLINE/SUB:<your-sub-id>