legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where bill_id = "115-hr-4651" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: state, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 115-hr-4651,M001195 | Let Lenders Lend Act 115-hr-4651 | M001195 | Rep. Mooney, Alexander X. [R-WV-2] | R | WV | 2018-01-08 | 0 |
| 115-hr-4651,Y000065 | Let Lenders Lend Act 115-hr-4651 | Y000065 | Rep. Yoho, Ted S. [R-FL-3] | R | FL | 2018-01-08 | 0 |
| 115-hr-4651,P000599 | Let Lenders Lend Act 115-hr-4651 | P000599 | Rep. Posey, Bill [R-FL-8] | R | FL | 2017-12-14 | 1 |
| 115-hr-4651,H001052 | Let Lenders Lend Act 115-hr-4651 | H001052 | Rep. Harris, Andy [R-MD-1] | R | MD | 2017-12-14 | 1 |
| 115-hr-4651,S001183 | Let Lenders Lend Act 115-hr-4651 | S001183 | Rep. Schweikert, David [R-AZ-6] | R | AZ | 2017-12-14 | 1 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE legislation_cosponsors (
bill_id TEXT NOT NULL REFERENCES legislation(bill_id),
bioguide_id TEXT NOT NULL,
full_name TEXT,
party TEXT,
state TEXT,
sponsorship_date TEXT,
is_original_cosponsor INTEGER,
PRIMARY KEY (bill_id, bioguide_id)
);
CREATE INDEX idx_lc_bioguide ON legislation_cosponsors(bioguide_id);
CREATE INDEX idx_lc_bill ON legislation_cosponsors(bill_id);
CREATE INDEX idx_lc_original ON legislation_cosponsors(is_original_cosponsor);