omi_action_items
1 row where conversation_id = "83a1081f-a954-47d9-bf69-d99cc1447e32"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 105 | Tired User Debates App Work Versus Napping 83a1081f-a954-47d9-bf69-d99cc1447e32 | Work on the workout tracker app |
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);