omi_action_items
3 rows where conversation_id = "131dbe1b-b4b3-4d1f-abe9-7fc275ba7596"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 921 | Family Plans Overnight Childcare 131dbe1b-b4b3-4d1f-abe9-7fc275ba7596 | Propose Lindsay sleep in your bed |
| 922 | Family Plans Overnight Childcare 131dbe1b-b4b3-4d1f-abe9-7fc275ba7596 | Arrange sleeping space for John |
| 923 | Family Plans Overnight Childcare 131dbe1b-b4b3-4d1f-abe9-7fc275ba7596 | Check Tracy's summer schedule before planning the weekend |
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);