snapshot_comments
2 rows where snapshot_pk = 80
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 |
|---|---|---|---|---|---|---|---|---|---|
| 128 | 80 80 | 1 | 108255392695 | 9515165713 | 2025-08-01T08:22:37Z | Closed | Dr.G.Rajnikanth | HMWS | {"id": "108255392695", "mobile_number": "9515165713", "posted_by": "Dr.G.Rajnikanth", "remarks": "HMWS", "status": "Closed", "time_stamp": "01-AUG-2025 13:52:37"} |
| 129 | 80 80 | 2 | 108255392695 | 9949099032 | 2025-08-01T02:28:38Z | Open | M Venkata Subbaiah | Noted cleared drainage issue, unable to walk on road since 7 days it is same condition, huge drainage over flow, pleas do the needful bad smell | {"id": "108255392695", "mobile_number": "9949099032", "posted_by": "M Venkata Subbaiah", "remarks": "Noted cleared drainage issue, unable to walk on road since 7 days it is same condition, huge drainage over flow, pleas do the needful bad smell", "status": "Open", "time_stamp": "01-AUG-2025 07:58: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)
);