snapshot_comments
3 rows where snapshot_pk = 121
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 |
|---|---|---|---|---|---|---|---|---|---|
| 202 | 121 121 | 1 | 104255188703 | - | 2025-04-21T10:05:59Z | - | Call Centre | Satisfied | {"id": "104255188703", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Satisfied", "status": "-", "time_stamp": "21-APR-2025 15:35:59"} |
| 203 | 121 121 | 2 | 104255188703 | 7995079814 | 2025-04-17T18:24:28Z | Attended By Officer | Sri Seva Eslavath | Cleared | {"id": "104255188703", "mobile_number": "7995079814", "posted_by": "Sri Seva Eslavath", "remarks": "Cleared", "status": "Attended By Officer", "time_stamp": "17-APR-2025 23:54:28"} |
| 204 | 121 121 | 3 | 104255188703 | 9652653495 | 2025-04-16T04:11:28Z | Open | Manohar | Officer arranged workers to clear the dump. This ticket can be closed. Thanks | {"id": "104255188703", "mobile_number": "9652653495", "posted_by": "Manohar", "remarks": "Officer arranged workers to clear the dump. This ticket can be closed. Thanks", "status": "Open", "time_stamp": "16-APR-2025 09:41:28"} |
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)
);