omi_action_items
5 rows where conversation_id = "7f0b03eb-de35-4632-9ddd-d31c3200dbb9"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 35 | Jake Weighs Taking The Bar And Money Options 7f0b03eb-de35-4632-9ddd-d31c3200dbb9 | Add privacy policy to website |
| 36 | Jake Weighs Taking The Bar And Money Options 7f0b03eb-de35-4632-9ddd-d31c3200dbb9 | Apply for Stripe account as a vendor |
| 37 | Jake Weighs Taking The Bar And Money Options 7f0b03eb-de35-4632-9ddd-d31c3200dbb9 | Create Facebook Marketplace ad for computer handyman services |
| 38 | Jake Weighs Taking The Bar And Money Options 7f0b03eb-de35-4632-9ddd-d31c3200dbb9 | Take full MBE practice exam to assess bar readiness |
| 39 | Jake Weighs Taking The Bar And Money Options 7f0b03eb-de35-4632-9ddd-d31c3200dbb9 | Set up friend with Open Claw and coordinate visit |
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);