omi_action_items
2 rows where conversation_id = "37fc6000-1ec8-4283-99ce-e430a300f371"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 23 | Family Game Night and Tina’s Work Reviews 37fc6000-1ec8-4283-99ce-e430a300f371 | Review employee performance reviews for the last year |
| 24 | Family Game Night and Tina’s Work Reviews 37fc6000-1ec8-4283-99ce-e430a300f371 | Call clients and possibly write up a real estate offer |
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);