omi_action_items
2 rows where conversation_id = "0664e4ac-be8a-4876-8b54-1069318ce7da"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 666 | Coordinating Evening Meet-Up Plans 0664e4ac-be8a-4876-8b54-1069318ce7da | Figure out where to meet to eat before the Classic event |
| 667 | Coordinating Evening Meet-Up Plans 0664e4ac-be8a-4876-8b54-1069318ce7da | Text meeting details and then get changed and leave for the meetup |
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);