snapshot_comments
3 rows where snapshot_pk = 40
This data as json, CSV (advanced)
Suggested facets: status_text, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 59 | 40 40 | 1 | 102265688295 | 7396976452 | 2026-03-05T09:44:39Z | Attended By Officer | Deekoda Anjaiah | complaint attend | {"id": "102265688295", "mobile_number": "7396976452", "posted_by": "Deekoda Anjaiah", "remarks": "complaint attend", "status": "Attended By Officer", "time_stamp": "05-MAR-2026 15:14:39"} |
| 60 | 40 40 | 2 | 102265688295 | 9966696683 | 2026-02-12T11:35:13Z | Open | Call Centre | Not Satisfied | {"id": "102265688295", "mobile_number": "9966696683", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Open", "time_stamp": "12-FEB-2026 17:05:13"} |
| 61 | 40 40 | 3 | 102265688295 | 8008050361 | 2026-02-08T05:00:46Z | Attended By Officer | Srinivas reddy | fogging done | {"id": "102265688295", "mobile_number": "8008050361", "posted_by": "Srinivas reddy", "remarks": "fogging done", "status": "Attended By Officer", "time_stamp": "08-FEB-2026 10:30:46"} |
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)
);