{ "$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" ] }