snapshot_comments
3 rows where snapshot_pk = 36
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 |
|---|---|---|---|---|---|---|---|---|---|
| 55 | 36 36 | 1 | 103255140332 | - | 2025-04-17T11:34:09Z | - | Call Centre | Partially Satisfied | {"id": "103255140332", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Partially Satisfied", "status": "-", "time_stamp": "17-APR-2025 17:04:09"} |
| 56 | 36 36 | 2 | 103255140332 | 9121242764 | 2025-04-11T07:10:26Z | Attended By Officer | P Anusha | r | {"id": "103255140332", "mobile_number": "9121242764", "posted_by": "P Anusha", "remarks": "r", "status": "Attended By Officer", "time_stamp": "11-APR-2025 12:40:26"} |
| 57 | 36 36 | 3 | 103255140332 | 9246575745 | 2025-03-04T02:47:53Z | Open | anuradha reddy | Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir | {"id": "103255140332", "mobile_number": "9246575745", "posted_by": "anuradha reddy", "remarks": "Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir", "status": "Open", "time_stamp": "04-MAR-2025 08:17:53"} |
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)
);