omi_action_items
1 row where conversation_id = "0919c959-e1a0-4f18-971c-e0a2c49fb8ce"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 25 | Family Dinner, Jokes, And Getting Ready To Leave 0919c959-e1a0-4f18-971c-e0a2c49fb8ce | Take the kids to mom’s house |
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);