snapshot_comments
3 rows where snapshot_pk = 100
This data as json, CSV (advanced)
Suggested facets: comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 144 | 100 100 | 1 | 102255097185 | - | 2025-02-08T11:18:42Z | - | Call Centre | Satisfied | {"id": "102255097185", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "-", "time_stamp": "08-FEB-2025 16:48:42"} |
| 145 | 100 100 | 2 | 102255097185 | 9666385075 | 2025-02-01T09:44:54Z | Attended By Officer | P.VENKATESHWARLU | claer | {"id": "102255097185", "mobile_number": "9666385075", "posted_by": "P.VENKATESHWARLU", "remarks": "claer", "status": "Attended By Officer", "time_stamp": "01-FEB-2025 15:14:54"} |
| 146 | 100 100 | 3 | 102255097185 | 7997951620 | 2025-02-01T04:32:43Z | Open | Serilingampally | citizen saying sat auto not coming regularly | {"id": "102255097185", "mobile_number": "7997951620", "posted_by": "Serilingampally", "remarks": "citizen saying sat auto not coming regularly", "status": "Open", "time_stamp": "01-FEB-2025 10:02:43"} |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE snapshot_comments (
comment_pk INTEGER PRIMARY KEY,
snapshot_pk INTEGER NOT NULL REFERENCES complaint_snapshots(snapshot_pk) ON DELETE CASCADE,
ordinal INTEGER NOT NULL,
complaint_id TEXT NOT NULL,
mobile_number TEXT NOT NULL,
comment_timestamp TEXT NOT NULL,
status_text TEXT NOT NULL,
posted_by TEXT NOT NULL,
remarks TEXT NOT NULL,
raw_comment_json TEXT NOT NULL,
UNIQUE(snapshot_pk, ordinal)
);