legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "110-hr-6954" 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 |
|---|---|---|---|---|---|---|---|
| 110-hr-6954,C001060 | Senior Financial Empowerment Act of 2008 110-hr-6954 | C001060 | Rep. Carnahan, Russ [D-MO-3] | D | MO | 2008-09-29 | 0 |
| 110-hr-6954,K000366 | Senior Financial Empowerment Act of 2008 110-hr-6954 | K000366 | Rep. Klein, Ron [D-FL-22] | D | FL | 2008-09-24 | 0 |
| 110-hr-6954,G000551 | Senior Financial Empowerment Act of 2008 110-hr-6954 | G000551 | Rep. Grijalva, Raúl M. [D-AZ-7] | D | AZ | 2008-09-23 | 0 |
| 110-hr-6954,G000552 | Senior Financial Empowerment Act of 2008 110-hr-6954 | G000552 | Rep. Gohmert, Louie [R-TX-1] | R | TX | 2008-09-18 | 1 |
| 110-hr-6954,C000714 | Senior Financial Empowerment Act of 2008 110-hr-6954 | C000714 | Rep. Conyers, John, Jr. [D-MI-14] | D | MI | 2008-09-18 | 1 |
| 110-hr-6954,S000583 | Senior Financial Empowerment Act of 2008 110-hr-6954 | S000583 | Rep. Smith, Lamar [R-TX-21] | R | TX | 2008-09-18 | 1 |
| 110-hr-6954,S000185 | Senior Financial Empowerment Act of 2008 110-hr-6954 | S000185 | Rep. Scott, Robert C. "Bobby" [D-VA-3] | D | VA | 2008-09-18 | 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);