legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where bill_id = "110-hr-4226" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 110-hr-4226,E000092 | Climate Stewardship and Economic Security Act of 2007 110-hr-4226 | E000092 | Rep. Ehlers, Vernon J. [R-MI-3] | R | MI | 2007-12-18 | 0 |
| 110-hr-4226,W000099 | Climate Stewardship and Economic Security Act of 2007 110-hr-4226 | W000099 | Rep. Walsh, James T. [R-NY-25] | R | NY | 2007-12-13 | 0 |
| 110-hr-4226,S001144 | Climate Stewardship and Economic Security Act of 2007 110-hr-4226 | S001144 | Rep. Shays, Christopher [R-CT-4] | R | CT | 2007-12-11 | 0 |
| 110-hr-4226,G000549 | Climate Stewardship and Economic Security Act of 2007 110-hr-4226 | G000549 | Rep. Gerlach, Jim [R-PA-6] | R | PA | 2007-12-06 | 0 |
| 110-hr-4226,O000085 | Climate Stewardship and Economic Security Act of 2007 110-hr-4226 | O000085 | Rep. Olver, John W. [D-MA-1] | D | MA | 2007-11-15 | 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);