omi_action_items
1 row where conversation_id = "f25cf3df-1d45-4390-80b8-7a91c2b5755c"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 13 | Casual Chat About Using Math In Life f25cf3df-1d45-4390-80b8-7a91c2b5755c | Have Will text the user |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE omi_action_items (
id INTEGER PRIMARY KEY AUTOINCREMENT,
conversation_id TEXT NOT NULL,
description TEXT,
FOREIGN KEY (conversation_id) REFERENCES omi_conversations(id)
);
CREATE INDEX idx_omi_actions_conv ON omi_action_items(conversation_id);