omi_action_items
1 row where conversation_id = "07434e29-9de3-44c7-a888-f86aa49f7503"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 715 | Navigating Breakups, Boundaries, And Friend-Group Drama 07434e29-9de3-44c7-a888-f86aa49f7503 | Tell Jason that you will not pursue anything romantic with Sheree |
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);