EMPTRIBDOC: Tribunal Document
A PDF (or RTF) document published with an Employment Tribunal decision. Child of EMPTRIB.
Default definition. This article describes the default
EMPTRIBDOC 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 EMPTRIBDOC.Entity properties
| Property | Value |
|---|---|
| Entity code | EMPTRIBDOC |
| Display name | Tribunal Document |
| Plural | Tribunal Documents |
| Level | 2510 |
Use cases
A PDF (or RTF) document published with an Employment Tribunal decision. Child of EMPTRIB.
Fields
Document
| Field | Type | Required | Notes |
|---|---|---|---|
title | text | Yes | Title. |
docType | enum | Valid ids: judgment (Judgment), judgment-with-reasons (Judgment with Reasons), reasons (Reasons), reconsideration (Reconsideration), remedy (Remedy), costs (Costs), preliminary (Preliminary), final (Final), other (Other). | |
format | enum | Valid ids: pdf (PDF), rtf (RTF), doc (DOC), other (Other). | |
url | text (URL) | Document URL. | |
publishedDate | date | Published Date. |
Relationships
- No declared relationships in the default definition.
Creating a Tribunal Document via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "EMPTRIBDOC",
"level": 2510,
"comboKey": "SUB:<your-sub-id>|ENT:",
"title": "Example title",
"docType": "judgment",
"format": "pdf",
"url": "https://example.com"
}
Listing Tribunal Documents records
GET /v1/entities/EMPTRIBDOC/SUB:<your-sub-id>