omi_action_items
2 rows where conversation_id = "b69946f0-2713-413e-a538-7d3aa9314428"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 142 | Katie and Jake Discuss Family, Fitness, and Remotion b69946f0-2713-413e-a538-7d3aa9314428 | Text Katie when done at Saratoga to coordinate workout |
| 143 | Katie and Jake Discuss Family, Fitness, and Remotion b69946f0-2713-413e-a538-7d3aa9314428 | Call Katie when done with meeting |
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);