committee_membership
Data source: See col-scraper on GitHub
9 rows where committee_id = 183
This data as json, CSV (advanced)
Link | rowid ▼ | committee_id | member_id | role |
---|---|---|---|---|
49 | 49 | Freedom Applications Committee 183 | Tom Hoffman 251 | |
139 | 139 | Freedom Applications Committee 183 | Sheriff Vincent Thomas Keaveny 1395 | |
248 | 248 | Freedom Applications Committee 183 | John George Stewart Scott 401 | |
262 | 262 | Freedom Applications Committee 183 | Sir David Hugh Wootton 397 | |
287 | 287 | Freedom Applications Committee 183 | Catherine McGuinness 373 | |
303 | 303 | Freedom Applications Committee 183 | Dominic Gerard Christian 1757 | |
557 | 557 | Freedom Applications Committee 183 | Tijs Broeke 1954 | |
729 | 729 | Freedom Applications Committee 183 | Simon D'Olier Duckworth 151 | |
802 | 802 | Freedom Applications Committee 183 | Jeremy Mayhew 370 |
Advanced export
JSON shape: default, array, newline-delimited
CREATE TABLE committee_membership( committee_id INTEGER REFERENCES committees(id), member_id INTEGER REFERENCES members(id), role VARCHAR(50) ); CREATE INDEX committee_membership_committee_id ON committee_membership("committee_id"); CREATE INDEX committee_membership_member_id ON committee_membership("member_id");