snapshot_comments
2 rows where snapshot_pk = 33
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 |
|---|---|---|---|---|---|---|---|---|---|
| 57 | 33 33 | 1 | 111255552183 | 9154299628 | 2025-11-03T13:08:10Z | Attended By Officer | K Ashok Kumar | . | {"id": "111255552183", "mobile_number": "9154299628", "posted_by": "K Ashok Kumar", "remarks": ".", "status": "Attended By Officer", "time_stamp": "03-NOV-2025 18:38:10"} |
| 58 | 33 33 | 2 | 111255552183 | 9154686556 | 2025-11-01T03:40:38Z | Open | T.Sowmya | other circle | {"id": "111255552183", "mobile_number": "9154686556", "posted_by": "T.Sowmya", "remarks": "other circle", "status": "Open", "time_stamp": "01-NOV-2025 09:10:38"} |
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)
);