committee_membership
Data source: See col-scraper on GitHub
9 rows where member_id = 128
This data as json, CSV (advanced)
Link | rowid ▼ | committee_id | member_id | role |
---|---|---|---|---|
436 | 436 | Capital Buildings Committee 1255 | Douglas Barrow 128 | |
437 | 437 | 223 | Douglas Barrow 128 | |
438 | 438 | Economic Crime Committee of the Police Authority Board 513 | Douglas Barrow 128 | |
439 | 439 | Markets Committee 411 | Douglas Barrow 128 | |
440 | 440 | Performance and Resource Management Committee of the Police Authority Board 171 | Douglas Barrow 128 | |
441 | 441 | Police Authority Board 142 | Douglas Barrow 128 | |
442 | 442 | Policy and Resources Committee 395 | Douglas Barrow 128 | |
443 | 443 | Professional Standards and Integrity Committee of the Police Authority Board 398 | Douglas Barrow 128 | |
444 | 444 | Safer City Partnership Strategy Group 1110 | Douglas Barrow 128 |
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");