Letta · Schema
ArchivalMemorySearchResult
AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier of the archival memory passage |
| timestamp | string | Timestamp of when the memory was created, formatted in agent's timezone |
| content | string | Text content of the archival memory passage |
| tags | array | List of tags associated with this memory |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ArchivalMemorySearchResult",
"title": "ArchivalMemorySearchResult",
"properties": {
"id": {
"type": "string",
"title": "Id",
"description": "Unique identifier of the archival memory passage"
},
"timestamp": {
"type": "string",
"title": "Timestamp",
"description": "Timestamp of when the memory was created, formatted in agent's timezone"
},
"content": {
"type": "string",
"title": "Content",
"description": "Text content of the archival memory passage"
},
"tags": {
"items": {
"type": "string"
},
"type": "array",
"title": "Tags",
"description": "List of tags associated with this memory"
}
},
"type": "object",
"required": [
"id",
"timestamp",
"content"
]
}