snapshot_comments
2 rows where snapshot_pk = 11
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 |
|---|---|---|---|---|---|---|---|---|---|
| 19 | 11 11 | 1 | 107255337665 | 9989930592 | 2025-07-01T18:35:59Z | Attended By Officer | B.Swapna | closed | {"id": "107255337665", "mobile_number": "9989930592", "posted_by": "B.Swapna", "remarks": "closed", "status": "Attended By Officer", "time_stamp": "02-JUL-2025 00:05:59"} |
| 20 | 11 11 | 2 | 107255337665 | 8977703672 | 2025-06-30T18:57:31Z | Open | Aravind | Lights Street lights are not glowing | {"id": "107255337665", "mobile_number": "8977703672", "posted_by": "Aravind", "remarks": "Lights Street lights are not glowing", "status": "Open", "time_stamp": "01-JUL-2025 00:27:31"} |
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)
);