History Model
Overview
The history table is used to log and track task executions, workflows, or actions performed within the system, tied to a specific object or application. It serves as a historical log or audit trail for operational monitoring, debugging, reporting, or rollback mechanisms.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | id field | ❌ |
| task | any | task field | ❌ |
| application_id | any | application_id field | ❌ |
| status | string | status field | ❌ |
| object_id | any | object_id field | ❌ |
| origin | any | origin field | ❌ |
| action | any | action field | ❌ |
| created_at | date | created_at field | ❌ |
| modified_at | date | modified_at field | ❌ |
Sample JSON
{
"id": "example_value",
"task": "example_value",
"application_id": "example_value",
"status": "example_value",
"object_id": "example_value",
"origin": "example_value",
"action": "example_value",
"created_at": "example_value",
"modified_at": "example_value"
}