omi_action_items
3 rows where conversation_id = "3c9b1259-cdfd-4f93-9c86-ec160ae97ce1"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 138 | Jake and Katie Explore Family, Obligation, and Agency 3c9b1259-cdfd-4f93-9c86-ec160ae97ce1 | Learn how to use the video library |
| 139 | Jake and Katie Explore Family, Obligation, and Agency 3c9b1259-cdfd-4f93-9c86-ec160ae97ce1 | Wash and sanitize clothes and shoes to avoid spreading bedbugs |
| 140 | Jake and Katie Explore Family, Obligation, and Agency 3c9b1259-cdfd-4f93-9c86-ec160ae97ce1 | Schedule time to watch a movie together for fun |
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);