omi_action_items
3 rows where conversation_id = "0a82fc92-8bd5-4265-850a-206c2b3d4390"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 925 | Family Plans Summer Training 0a82fc92-8bd5-4265-850a-206c2b3d4390 | Research the job offer rate and negotiate a higher hourly rate |
| 926 | Family Plans Summer Training 0a82fc92-8bd5-4265-850a-206c2b3d4390 | Ask the boys' mother about their summer schedule |
| 927 | Family Plans Summer Training 0a82fc92-8bd5-4265-850a-206c2b3d4390 | Plan a summer workout schedule with the boys |
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);