legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "105-hr-334" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 105-hr-334,B000575 | Fair Indian Gaming Act 105-hr-334 | B000575 | Rep. Blunt, Roy [R-MO-7] | R | MO | 1998-02-24 | 0 |
| 105-hr-334,B000013 | Fair Indian Gaming Act 105-hr-334 | B000013 | Rep. Bachus, Spencer [R-AL-6] | R | AL | 1997-01-21 | 0 |
| 105-hr-334,R000385 | Fair Indian Gaming Act 105-hr-334 | R000385 | Rep. Roemer, Tim [D-IN-3] | D | IN | 1997-01-07 | 1 |
| 105-hr-334,B000169 | Fair Indian Gaming Act 105-hr-334 | B000169 | Rep. Barr, Bob [R-GA-7] | R | GA | 1997-01-07 | 1 |
| 105-hr-334,C000345 | Fair Indian Gaming Act 105-hr-334 | C000345 | Rep. Chenoweth-Hage, Helen [R-ID-1] | R | ID | 1997-01-07 | 1 |
| 105-hr-334,G000289 | Fair Indian Gaming Act 105-hr-334 | G000289 | Rep. Goodlatte, Bob [R-VA-6] | R | VA | 1997-01-07 | 1 |
| 105-hr-334,H000528 | Fair Indian Gaming Act 105-hr-334 | H000528 | Rep. Herger, Wally [R-CA-2] | R | CA | 1997-01-07 | 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);