snapshot_comments
3 rows where snapshot_pk = 72
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 |
|---|---|---|---|---|---|---|---|---|---|
| 154 | 72 72 | 1 | 109255451085 | 7995007400 | 2025-09-24T04:09:34Z | Attended By Officer | Mahender | attended | {"id": "109255451085", "mobile_number": "7995007400", "posted_by": "Mahender", "remarks": "attended", "status": "Attended By Officer", "time_stamp": "24-SEP-2025 09:39:34"} |
| 155 | 72 72 | 2 | 109255451085 | 9160196666 | 2025-09-22T08:59:59Z | Open | G Harshavardhan goud | Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir. | {"id": "109255451085", "mobile_number": "9160196666", "posted_by": "G Harshavardhan goud", "remarks": "Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir.", "status": "Open", "time_stamp": "22-SEP-2025 14:29:59"} |
| 156 | 72 72 | 3 | 109255451085 | 9440449486 | 2025-09-20T10:17:43Z | Open | Sri S Sairam Reddy | it pertains to jambagh ward | {"id": "109255451085", "mobile_number": "9440449486", "posted_by": "Sri S Sairam Reddy", "remarks": "it pertains to jambagh ward", "status": "Open", "time_stamp": "20-SEP-2025 15:47: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)
);