snapshot_comments
3 rows where snapshot_pk = 19
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 |
|---|---|---|---|---|---|---|---|---|---|
| 30 | 19 19 | 1 | 111255552170 | 9505995197 | 2025-11-03T19:37:03Z | Closed | Pradeep | Thanks for response | {"id": "111255552170", "mobile_number": "9505995197", "posted_by": "Pradeep", "remarks": "Thanks for response", "status": "Closed", "time_stamp": "04-NOV-2025 01:07:03"} |
| 31 | 19 19 | 2 | 111255552170 | 9154299628 | 2025-11-03T13:06:48Z | Attended By Officer | K Ashok Kumar | . | {"id": "111255552170", "mobile_number": "9154299628", "posted_by": "K Ashok Kumar", "remarks": ".", "status": "Attended By Officer", "time_stamp": "03-NOV-2025 18:36:48"} |
| 32 | 19 19 | 3 | 111255552170 | 9154686556 | 2025-11-01T03:44:19Z | Open | T.Sowmya | other circle | {"id": "111255552170", "mobile_number": "9154686556", "posted_by": "T.Sowmya", "remarks": "other circle", "status": "Open", "time_stamp": "01-NOV-2025 09:14:19"} |
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)
);