snapshot_comments
4 rows where snapshot_pk = 29
This data as json, CSV (advanced)
Suggested facets: mobile_number, status_text, posted_by, remarks, comment_timestamp (date)
| comment_pk ▼ | snapshot_pk | ordinal | complaint_id | mobile_number | comment_timestamp | status_text | posted_by | remarks | raw_comment_json |
|---|---|---|---|---|---|---|---|---|---|
| 58 | 29 29 | 1 | 104255188611 | 9381459256 | 2025-05-12T15:36:32Z | Attended By Officer | P.Venkateshwar Goud. | rectified | {"id": "104255188611", "mobile_number": "9381459256", "posted_by": "P.Venkateshwar Goud.", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "12-MAY-2025 21:06:32"} |
| 59 | 29 29 | 2 | 104255188611 | 9848310311 | 2025-05-08T10:51:52Z | Open | Bhaswanth | still the timer is not rectified | {"id": "104255188611", "mobile_number": "9848310311", "posted_by": "Bhaswanth", "remarks": "still the timer is not rectified", "status": "Open", "time_stamp": "08-MAY-2025 16:21:52"} |
| 60 | 29 29 | 3 | 104255188611 | 9848310311 | 2025-04-18T13:19:35Z | Open | Bhaswanth | same issue repeated not turning on. when there is a small power cut the timer is not working. please change the timer or battery since this issue is been repeated from 1 year | {"id": "104255188611", "mobile_number": "9848310311", "posted_by": "Bhaswanth", "remarks": "same issue repeated not turning on. when there is a small power cut the timer is not working. please change the timer or battery since this issue is been repeated from 1 year", "status": "Open", "time_stamp": "18-APR-2025 18:49:35"} |
| 61 | 29 29 | 4 | 104255188611 | 9121242764 | 2025-04-10T10:00:29Z | Attended By Officer | P Anusha | rectified | {"id": "104255188611", "mobile_number": "9121242764", "posted_by": "P Anusha", "remarks": "rectified", "status": "Attended By Officer", "time_stamp": "10-APR-2025 15:30:29"} |
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)
);