legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "104-s-1811" 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 |
|---|---|---|---|---|---|---|---|
| 104-s-1811,G000352 | Shore Protection Act of 1996 104-s-1811 | G000352 | Sen. Graham, Bob [D-FL] | D | FL | 1996-06-28 | 0 |
| 104-s-1811,H000463 | Shore Protection Act of 1996 104-s-1811 | H000463 | Sen. Helms, Jesse [R-NC] | R | NC | 1996-06-19 | 0 |
| 104-s-1811,K000105 | Shore Protection Act of 1996 104-s-1811 | K000105 | Sen. Kennedy, Edward M. [D-MA] | D | MA | 1996-06-03 | 0 |
| 104-s-1811,B001225 | Shore Protection Act of 1996 104-s-1811 | B001225 | Sen. Bradley, Bill [D-NJ] | D | NJ | 1996-05-23 | 1 |
| 104-s-1811,R000460 | Shore Protection Act of 1996 104-s-1811 | R000460 | Sen. Roth Jr., William V. [R-DE] | R | DE | 1996-05-23 | 1 |
| 104-s-1811,L000123 | Shore Protection Act of 1996 104-s-1811 | L000123 | Sen. Lautenberg, Frank R. [D-NJ] | D | NJ | 1996-05-23 | 1 |
| 104-s-1811,B000444 | Shore Protection Act of 1996 104-s-1811 | B000444 | Sen. Biden, Joseph R., Jr. [D-DE] | D | DE | 1996-05-23 | 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);