snapshot_comments
3 rows where snapshot_pk = 92
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 |
|---|---|---|---|---|---|---|---|---|---|
| 164 | 92 92 | 1 | 111255552244 | 9948963533 | 2025-11-01T05:11:38Z | Attended By Officer | D. CHANDRAKANTH | clear | {"id": "111255552244", "mobile_number": "9948963533", "posted_by": "D. CHANDRAKANTH", "remarks": "clear", "status": "Attended By Officer", "time_stamp": "01-NOV-2025 10:41:38"} |
| 165 | 92 92 | 2 | 111255552244 | 9440846500 | 2025-11-01T04:42:16Z | Open | DrPVikramSinh | No, plz do not close, debris not picked , no one attended…. | {"id": "111255552244", "mobile_number": "9440846500", "posted_by": "DrPVikramSinh", "remarks": "No, plz do not close, debris not picked , no one attended….", "status": "Open", "time_stamp": "01-NOV-2025 10:12:16"} |
| 166 | 92 92 | 3 | 111255552244 | 9948963533 | 2025-11-01T03:36:57Z | Attended By Officer | D. CHANDRAKANTH | clear | {"id": "111255552244", "mobile_number": "9948963533", "posted_by": "D. CHANDRAKANTH", "remarks": "clear", "status": "Attended By Officer", "time_stamp": "01-NOV-2025 09:06:57"} |
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)
);