omi_action_items
4 rows where conversation_id = "e5d9ed1d-33e3-49a1-9f47-c18e92cb937e"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 77 | Emotional Processing, Careers, And Faith In Transition e5d9ed1d-33e3-49a1-9f47-c18e92cb937e | Block Sharon on Facebook |
| 78 | Emotional Processing, Careers, And Faith In Transition e5d9ed1d-33e3-49a1-9f47-c18e92cb937e | Remove photos of Sharon from photo library |
| 79 | Emotional Processing, Careers, And Faith In Transition e5d9ed1d-33e3-49a1-9f47-c18e92cb937e | Go see Cahea for another session |
| 80 | Emotional Processing, Careers, And Faith In Transition e5d9ed1d-33e3-49a1-9f47-c18e92cb937e | Consider signing up for the warrior heart men’s retreat |
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);