Agent thought record.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"workType",
"createdAt"
],
"properties": {
"note": {
"type": "string",
"description": "Additional context or details for the thought."
},
"workType": {
"type": "string",
"required": true,
"description": "Job type identifier the agent is thinking about."
},
"createdAt": {
"type": "string",
"format": "datetime",
"required": true,
"description": "Timestamp when the thought was recorded."
},
"subjectUri": {
"type": "string",
"format": "uri",
"description": "URI of the content being processed by the agent."
}
}
},
"description": "Agent thought record."
}