omi_action_items
1 row where conversation_id = "c8649f5c-be28-4bdd-9f74-d1701099e677"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 141 | Interview Discusses Emotional Health App Role c8649f5c-be28-4bdd-9f74-d1701099e677 | Follow up with Ankita about next steps for How We Feel role |
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);