omi_action_items
4 rows where conversation_id = "617bbecc-bc36-4a12-96e6-55672c29cfdb"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 299 | App Build Plans, Home Projects, And Reflections 617bbecc-bc36-4a12-96e6-55672c29cfdb | Invite Grant and Jordan to Apple developer organization |
| 300 | App Build Plans, Home Projects, And Reflections 617bbecc-bc36-4a12-96e6-55672c29cfdb | Produce new test build of the app |
| 301 | App Build Plans, Home Projects, And Reflections 617bbecc-bc36-4a12-96e6-55672c29cfdb | Reach out to confirm Friday meeting |
| 302 | App Build Plans, Home Projects, And Reflections 617bbecc-bc36-4a12-96e6-55672c29cfdb | Ask cousin from University of Utah about asset deployment help |
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);