Logs Model
Overview
Stores system logs for debugging and auditing.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | Unique identifier for the log entry. This acts as the primary key for each log entry. | ❌ |
| message | any | A textual message describing the event, error, or system activity. | ✅ |
| level | string | The severity or type of the log. | ✅ |
| created_at | date | Timestamp when the log entry was created. Useful for tracing timelines and filtering logs. | ❌ |
| modified_at | date | Timestamp when the log entry was last modified. | ❌ |
| metdata | any | Additional metadata related to the log entry. | ✅ |
Sample JSON
{
"id": "example_value",
"message": "example_value",
"level": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"metdata": "example_value"
}