Agent journal entry record.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt"
],
"properties": {
"journal": {
"type": "string",
"description": "Journal entry content written by the agent."
},
"createdAt": {
"type": "string",
"format": "datetime",
"required": true,
"description": "Timestamp when the journal entry was created."
}
}
},
"description": "Agent journal entry record."
}