Properties
| Name | Type | Description |
|---|---|---|
| timestamp | string | |
| level | string | |
| logger | string | |
| message | string | |
| sessionId | string | Associated session ID, if applicable |
| applicationName | string | Associated application, if applicable |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "LogEntry",
"type": "object",
"properties": {
"timestamp": {
"type": "string"
},
"level": {
"type": "string"
},
"logger": {
"type": "string"
},
"message": {
"type": "string"
},
"sessionId": {
"type": "string",
"description": "Associated session ID, if applicable"
},
"applicationName": {
"type": "string",
"description": "Associated application, if applicable"
}
}
}