legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where bill_id = "111-hr-5294" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, state, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 111-hr-5294,M001159 | LEASE Act of 2010 111-hr-5294 | M001159 | Rep. McMorris Rodgers, Cathy [R-WA-5] | R | WA | 2010-05-27 | 0 |
| 111-hr-5294,Y000033 | LEASE Act of 2010 111-hr-5294 | Y000033 | Rep. Young, Don [R-AK-At Large] | R | AK | 2010-05-26 | 0 |
| 111-hr-5294,L000564 | LEASE Act of 2010 111-hr-5294 | L000564 | Rep. Lamborn, Doug [R-CO-5] | R | CO | 2010-05-25 | 0 |
| 111-hr-5294,C001062 | LEASE Act of 2010 111-hr-5294 | C001062 | Rep. Conaway, K. Michael [R-TX-11] | R | TX | 2010-05-25 | 0 |
| 111-hr-5294,C001077 | LEASE Act of 2010 111-hr-5294 | C001077 | Rep. Coffman, Mike [R-CO-6] | R | CO | 2010-05-25 | 0 |
| 111-hr-5294,B001250 | LEASE Act of 2010 111-hr-5294 | B001250 | Rep. Bishop, Rob [R-UT-1] | R | UT | 2010-05-20 | 0 |
| 111-hr-5294,L000571 | LEASE Act of 2010 111-hr-5294 | L000571 | Rep. Lummis, Cynthia M. [R-WY-At Large] | R | WY | 2010-05-20 | 0 |
| 111-hr-5294,B001254 | LEASE Act of 2010 111-hr-5294 | B001254 | Rep. Boren, Dan [D-OK-2] | D | OK | 2010-05-19 | 0 |
| 111-hr-5294,H001037 | LEASE Act of 2010 111-hr-5294 | H001037 | Rep. Herseth Sandlin, Stephanie [D-SD-At Large] | D | SD | 2010-05-13 | 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);