omi_action_items
1 row where conversation_id = "13e2ba11-b835-4634-8ef9-9b2bb9b9d08f"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 15 | Planning John And Eli’s 15th Birthday 13e2ba11-b835-4634-8ef9-9b2bb9b9d08f | Plan John and Eli’s 15th birthday celebration |
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);