snapshot_comments
3 rows where snapshot_pk = 101
This data as json, CSV (advanced)
Suggested facets: status_text, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 152 | 101 101 | 1 | 103255140397 | 7995009083 | 2025-04-06T04:51:41Z | Submitted for Sanction | Sri S Rajiv | submitted for sanction | {"id": "103255140397", "mobile_number": "7995009083", "posted_by": "Sri S Rajiv", "remarks": "submitted for sanction", "status": "Submitted for Sanction", "time_stamp": "06-APR-2025 10:21:41"} |
| 153 | 101 101 | 2 | 103255140397 | 7337557252 | 2025-03-15T06:39:52Z | Open | S.Sravani | 123 | {"id": "103255140397", "mobile_number": "7337557252", "posted_by": "S.Sravani", "remarks": "123", "status": "Open", "time_stamp": "15-MAR-2025 12:09:52"} |
| 154 | 101 101 | 3 | 103255140397 | 7993360292 | 2025-03-01T06:10:58Z | Open | S.Srinivas | it pertains to another ward | {"id": "103255140397", "mobile_number": "7993360292", "posted_by": "S.Srinivas", "remarks": "it pertains to another ward", "status": "Open", "time_stamp": "01-MAR-2025 11:40:58"} |
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)
);