omi_action_items
1 row where conversation_id = "e401eb62-983b-4113-9f27-0963cffd37e9"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 303 | User Heads to Katie’s Construction Project e401eb62-983b-4113-9f27-0963cffd37e9 | Bring the phone downstairs for the user |
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);