AI memory snapshot. Each record is a versioned snapshot of accumulated knowledge.
Record Key
tid
Timestamp-based ID
Properties
content
union
Required
Memory content. Supports markdown and other formats via $type.
Known types:
createdAt
string
datetime
Required
Timestamp when this memory snapshot was created.
did
string
did
Required
DID of the AI agent this memory belongs to.
version
integer
Optional
Monotonically increasing version number of this memory snapshot.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"did",
"content",
"createdAt"
],
"properties": {
"did": {
"type": "string",
"format": "did",
"description": "DID of the AI agent this memory belongs to."
},
"content": {
"refs": [
"#markdown"
],
"type": "union",
"closed": false,
"description": "Memory content. Supports markdown and other formats via $type."
},
"version": {
"type": "integer",
"description": "Monotonically increasing version number of this memory snapshot."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when this memory snapshot was created."
}
}
},
"description": "AI memory snapshot. Each record is a versioned snapshot of accumulated knowledge."
}