legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where bill_id = "113-hr-4797" 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 |
|---|---|---|---|---|---|---|---|
| 113-hr-4797,L000566 | CLEAN Energy Producers Act of 2014 113-hr-4797 | L000566 | Rep. Latta, Robert E. [R-OH-5] | R | OH | 2014-06-20 | 0 |
| 113-hr-4797,B001275 | CLEAN Energy Producers Act of 2014 113-hr-4797 | B001275 | Rep. Bucshon, Larry [R-IN-8] | R | IN | 2014-06-02 | 1 |
| 113-hr-4797,M001182 | CLEAN Energy Producers Act of 2014 113-hr-4797 | M001182 | Rep. Mulvaney, Mick [R-SC-5] | R | SC | 2014-06-02 | 1 |
| 113-hr-4797,C001096 | CLEAN Energy Producers Act of 2014 113-hr-4797 | C001096 | Rep. Cramer, Kevin [R-ND-At Large] | R | ND | 2014-06-02 | 1 |
| 113-hr-4797,J000255 | CLEAN Energy Producers Act of 2014 113-hr-4797 | J000255 | Rep. Jones, Walter B., Jr. [R-NC-3] | R | NC | 2014-06-02 | 1 |
| 113-hr-4797,R000592 | CLEAN Energy Producers Act of 2014 113-hr-4797 | R000592 | Rep. Rokita, Todd [R-IN-4] | R | IN | 2014-06-02 | 1 |
| 113-hr-4797,J000292 | CLEAN Energy Producers Act of 2014 113-hr-4797 | J000292 | Rep. Johnson, Bill [R-OH-6] | R | OH | 2014-06-02 | 1 |
| 113-hr-4797,B001273 | CLEAN Energy Producers Act of 2014 113-hr-4797 | B001273 | Rep. Black, Diane [R-TN-6] | R | TN | 2014-06-02 | 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);