snapshot_comments
3 rows where snapshot_pk = 3
This data as json, CSV (advanced)
Suggested facets: mobile_number, status_text, posted_by, remarks, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 2 | 3 3 | 1 | 109255451013 | 9154686556 | 2025-10-07T01:43:53Z | Attended By Officer | T.Sowmya | . | {"id": "109255451013", "mobile_number": "9154686556", "posted_by": "T.Sowmya", "remarks": ".", "status": "Attended By Officer", "time_stamp": "07-OCT-2025 07:13:53"} |
| 3 | 3 3 | 2 | 109255451013 | 9154686556 | 2025-10-07T01:43:30Z | Attended By Officer | T.Sowmya | . | {"id": "109255451013", "mobile_number": "9154686556", "posted_by": "T.Sowmya", "remarks": ".", "status": "Attended By Officer", "time_stamp": "07-OCT-2025 07:13:30"} |
| 4 | 3 3 | 3 | 109255451013 | 8328333132 | 2025-09-15T05:03:44Z | Open | Chaitanya | Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir. | {"id": "109255451013", "mobile_number": "8328333132", "posted_by": "Chaitanya", "remarks": "Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir.", "status": "Open", "time_stamp": "15-SEP-2025 10:33:44"} |
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)
);