snapshot_comments
2 rows where snapshot_pk = 58
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 |
|---|---|---|---|---|---|---|---|---|---|
| 129 | 58 58 | 1 | 110255503128 | 9849002952 | 2025-10-27T08:56:24Z | Closed | Call Centre | Not Satisfied | {"id": "110255503128", "mobile_number": "9849002952", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "Closed", "time_stamp": "27-OCT-2025 14:26:24"} |
| 130 | 58 58 | 2 | 110255503128 | 9989930592 | 2025-10-09T17:29:15Z | Attended By Officer | B.Swapna | closed | {"id": "110255503128", "mobile_number": "9989930592", "posted_by": "B.Swapna", "remarks": "closed", "status": "Attended By Officer", "time_stamp": "09-OCT-2025 22:59:15"} |
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)
);