omi_action_items
1 row where conversation_id = "460118a1-4ff1-4c52-902f-b8ef9c69e2a3"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 43 | Jake Weighs Bar Exam Against Career And Relationship 460118a1-4ff1-4c52-902f-b8ef9c69e2a3 | Put $25 deposit on bar exam review course |
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);