snapshot_comments
3 rows where snapshot_pk = 2
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 |
|---|---|---|---|---|---|---|---|---|---|
| 4 | 2 2 | 1 | 105255241039 | - | 2025-05-09T07:05:29Z | - | Call Centre | Not Satisfied | {"id": "105255241039", "mobile_number": "-", "posted_by": "Call Centre", "remarks": "Not Satisfied", "status": "-", "time_stamp": "09-MAY-2025 12:35:29"} |
| 5 | 2 2 | 2 | 105255241039 | 8712013145 | 2025-05-08T10:21:22Z | Attended By Officer | Smt. Kethavath Bindu | cc road laid near Gemini hospital | {"id": "105255241039", "mobile_number": "8712013145", "posted_by": "Smt. Kethavath Bindu", "remarks": "cc road laid near Gemini hospital", "status": "Attended By Officer", "time_stamp": "08-MAY-2025 15:51:22"} |
| 6 | 2 2 | 3 | 105255241039 | 7386417622 | 2025-05-03T09:45:25Z | Open | Ward048 | This complaint pertain to Jangammet Ward Office. | {"id": "105255241039", "mobile_number": "7386417622", "posted_by": "Ward048", "remarks": "This complaint pertain to Jangammet Ward Office.", "status": "Open", "time_stamp": "03-MAY-2025 15:15:25"} |
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)
);