legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where bill_id = "110-hr-6789" 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 |
|---|---|---|---|---|---|---|---|
| 110-hr-6789,B001149 | LEAVE Act 110-hr-6789 | B001149 | Rep. Burton, Dan [R-IN-5] | R | IN | 2008-09-11 | 0 |
| 110-hr-6789,G000280 | LEAVE Act 110-hr-6789 | G000280 | Rep. Goode, Virgil H., Jr. [R-VA-5] | R | VA | 2008-09-09 | 0 |
| 110-hr-6789,R000409 | LEAVE Act 110-hr-6789 | R000409 | Rep. Rohrabacher, Dana [R-CA-46] | R | CA | 2008-08-01 | 1 |
| 110-hr-6789,G000021 | LEAVE Act 110-hr-6789 | G000021 | Rep. Gallegly, Elton [R-CA-24] | R | CA | 2008-08-01 | 1 |
| 110-hr-6789,D000606 | LEAVE Act 110-hr-6789 | D000606 | Rep. Davis, David [R-TN-1] | R | TN | 2008-08-01 | 1 |
| 110-hr-6789,C001064 | LEAVE Act 110-hr-6789 | C001064 | Rep. Campbell, John [R-CA-48] | R | CA | 2008-08-01 | 1 |
| 110-hr-6789,D000492 | LEAVE Act 110-hr-6789 | D000492 | Rep. Dreier, David [R-CA-26] | R | CA | 2008-08-01 | 1 |
| 110-hr-6789,B001236 | LEAVE Act 110-hr-6789 | B001236 | Rep. Boozman, John [R-AR-3] | R | AR | 2008-08-01 | 1 |
| 110-hr-6789,D000168 | LEAVE Act 110-hr-6789 | D000168 | Rep. Deal, Nathan [R-GA-9] | R | GA | 2008-08-01 | 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);