omi_action_items
1 row where conversation_id = "e5958c86-a55f-4811-8018-0b2c1ad58c56"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 75 | Family Reviews Mortgages And Gathers Tax Documents e5958c86-a55f-4811-8018-0b2c1ad58c56 | Send 2024 tax return forms to mortgage officer |
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);