Skip to main content

Logs Model

Overview

Stores system logs for debugging and auditing.

Fields

FieldTypeDescriptionRequired
idstringUnique identifier for the log entry. This acts as the primary key for each log entry.
messageanyA textual message describing the event, error, or system activity.
levelstringThe severity or type of the log.
created_atdateTimestamp when the log entry was created. Useful for tracing timelines and filtering logs.
modified_atdateTimestamp when the log entry was last modified.
metdataanyAdditional 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"
}