legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where bill_id = "113-s-999" 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 |
|---|---|---|---|---|---|---|---|
| 113-s-999,B000944 | RUSH Act 113-s-999 | B000944 | Sen. Brown, Sherrod [D-OH] | D | OH | 2013-07-09 | 0 |
| 113-s-999,D000563 | RUSH Act 113-s-999 | D000563 | Sen. Durbin, Richard J. [D-IL] | D | IL | 2013-06-10 | 0 |
| 113-s-999,P000449 | RUSH Act 113-s-999 | P000449 | Sen. Portman, Rob [R-OH] | R | OH | 2013-06-06 | 0 |
| 113-s-999,B001265 | RUSH Act 113-s-999 | B001265 | Sen. Begich, Mark [D-AK] | D | AK | 2013-06-06 | 0 |
| 113-s-999,B000711 | RUSH Act 113-s-999 | B000711 | Sen. Boxer, Barbara [D-CA] | D | CA | 2013-05-22 | 0 |
| 113-s-999,K000360 | RUSH Act 113-s-999 | K000360 | Sen. Kirk, Mark Steven [R-IL] | R | IL | 2013-05-21 | 1 |
| 113-s-999,M000702 | RUSH Act 113-s-999 | M000702 | Sen. Mikulski, Barbara A. [D-MD] | D | MD | 2013-05-21 | 1 |
| 113-s-999,N000032 | RUSH Act 113-s-999 | N000032 | Sen. Nelson, Bill [D-FL] | D | FL | 2013-05-21 | 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);