Conversation
Tables for conversations, messages, and memories.
Conversations Table
Table Name: conversations
Description: Conversation sessions and their metadata
_id
string
Internal identifier
completed_post_processings
json
Post-processing status
created_at
timestamp
Conversation start time
interactions
json
Interaction history
is_finished
boolean
Completion status
org_id
string
Organization identifier
region_name
string
Deployment region
service_id
string
Associated service ID
updated_at
timestamp
Last update timestamp
user_id
string
Associated user ID
version_set_info
json
Version set metadata
working_memories
json
Conversation memory state
Messages Table
Table Name: messages
Description: Individual messages within conversations
_id
string
Message identifier
content
string
Message body
conversation_id
string
Parent conversation ID
created_at
timestamp
Message timestamp
format
string
Message format (one of: text
, voice
)
interaction_id
string
Parent interaction ID
message_metadata
json
Additional message metadata
message_type
string
Message type (one of: user-message
, agent-message
, agent-inner-thought
, external-event
)
org_id
string
Organization identifier
region_name
string
Deployment region
sender
string
Sender identifier (user/agent)
updated_at
timestamp
Last update timestamp
user_id
string
Associated user ID
Memories Table
Table Name: memories
Description: Stored conversation memories
_id
string
Memory identifier
content
json
Memory content { reference, content, context, importance_score }
conversation_id
string
Associated conversation ID
created_at
timestamp
Creation timestamp
org_id
string
Organization identifier
region_name
string
Deployment region
updated_at
timestamp
Last update timestamp
user_id
string
Associated user ID
Last updated
Was this helpful?