omi_action_items
5 rows where conversation_id = "c35ef12c-a29c-4eca-8fba-930af92c84a5"
This data as json, CSV (advanced)
| id ▼ | conversation_id | description |
|---|---|---|
| 1 | Katie and Jake Plan Basement Repairs and Women’s Group c35ef12c-a29c-4eca-8fba-930af92c84a5 | Text real estate clients about next week’s photo session |
| 2 | Katie and Jake Plan Basement Repairs and Women’s Group c35ef12c-a29c-4eca-8fba-930af92c84a5 | Borrow Kevin Baker’s camera for the real estate photo shoot |
| 3 | Katie and Jake Plan Basement Repairs and Women’s Group c35ef12c-a29c-4eca-8fba-930af92c84a5 | Practice taking real estate photos with tripod before client session |
| 4 | Katie and Jake Plan Basement Repairs and Women’s Group c35ef12c-a29c-4eca-8fba-930af92c84a5 | Buy shellac for basement work |
| 5 | Katie and Jake Plan Basement Repairs and Women’s Group c35ef12c-a29c-4eca-8fba-930af92c84a5 | Buy paint to match existing basement finish |
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);