legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where bill_id = "113-hr-2156" 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 |
|---|---|---|---|---|---|---|---|
| 113-hr-2156,I000057 | CLAIM Act 113-hr-2156 | I000057 | Rep. Israel, Steve [D-NY-3] | D | NY | 2014-09-17 | 0 |
| 113-hr-2156,F000454 | CLAIM Act 113-hr-2156 | F000454 | Rep. Foster, Bill [D-IL-11] | D | IL | 2014-05-22 | 0 |
| 113-hr-2156,S001190 | CLAIM Act 113-hr-2156 | S001190 | Rep. Schneider, Bradley Scott [D-IL-10] | D | IL | 2014-05-01 | 0 |
| 113-hr-2156,D000622 | CLAIM Act 113-hr-2156 | D000622 | Rep. Duckworth, Tammy [D-IL-8] | D | IL | 2014-04-29 | 0 |
| 113-hr-2156,L000569 | CLAIM Act 113-hr-2156 | L000569 | Rep. Luetkemeyer, Blaine [R-MO-3] | R | MO | 2014-02-25 | 0 |
| 113-hr-2156,S001187 | CLAIM Act 113-hr-2156 | S001187 | Rep. Stivers, Steve [R-OH-15] | R | OH | 2013-09-17 | 0 |
| 113-hr-2156,R000582 | CLAIM Act 113-hr-2156 | R000582 | Rep. Roe, David P. [R-TN-1] | R | TN | 2013-06-14 | 0 |
| 113-hr-2156,B001243 | CLAIM Act 113-hr-2156 | B001243 | Rep. Blackburn, Marsha [R-TN-7] | R | TN | 2013-05-23 | 1 |
| 113-hr-2156,T000462 | CLAIM Act 113-hr-2156 | T000462 | Rep. Tiberi, Patrick J. [R-OH-12] | R | OH | 2013-05-23 | 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);