snapshot_comments
3 rows where snapshot_pk = 17
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 |
|---|---|---|---|---|---|---|---|---|---|
| 29 | 17 17 | 1 | 105255241054 | - | 2025-05-14T08:03:46Z | - | Call Centre | Not Satisfied | {"id": "105255241054", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "-", "time_stamp": "14-MAY-2025 13:33:46"} |
| 30 | 17 17 | 2 | 105255241054 | 9154909321 | 2025-05-13T09:37:31Z | Attended By Officer | K.Raju | rectified | {"id": "105255241054", "mobile_number": "9154909321", "posted_by": "K.Raju", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "13-MAY-2025 15:07:31"} |
| 31 | 17 17 | 3 | 105255241054 | 8074343671 | 2025-05-05T15:20:25Z | Open | Mohammed Reyas | Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir | {"id": "105255241054", "mobile_number": "8074343671", "posted_by": "Mohammed Reyas", "remarks": "Citizen informed that the grievance has been pending.So please take necessary action.Thank you sir", "status": "Open", "time_stamp": "05-MAY-2025 20:50:25"} |
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)
);