legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where bill_id = "114-s-3183" 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 |
|---|---|---|---|---|---|---|---|
| 114-s-3183,S000770 | BOTS Act of 2016 114-s-3183 | S000770 | Sen. Stabenow, Debbie [D-MI] | D | MI | 2016-11-15 | 0 |
| 114-s-3183,W000805 | BOTS Act of 2016 114-s-3183 | W000805 | Sen. Warner, Mark R. [D-VA] | D | VA | 2016-09-28 | 0 |
| 114-s-3183,C000127 | BOTS Act of 2016 114-s-3183 | C000127 | Sen. Cantwell, Maria [D-WA] | D | WA | 2016-09-27 | 0 |
| 114-s-3183,K000367 | BOTS Act of 2016 114-s-3183 | K000367 | Sen. Klobuchar, Amy [D-MN] | D | MN | 2016-09-19 | 0 |
| 114-s-3183,N000032 | BOTS Act of 2016 114-s-3183 | N000032 | Sen. Nelson, Bill [D-FL] | D | FL | 2016-09-13 | 0 |
| 114-s-3183,S000148 | BOTS Act of 2016 114-s-3183 | S000148 | Sen. Schumer, Charles E. [D-NY] | D | NY | 2016-07-13 | 1 |
| 114-s-3183,F000463 | BOTS Act of 2016 114-s-3183 | F000463 | Sen. Fischer, Deb [R-NE] | R | NE | 2016-07-13 | 1 |
| 114-s-3183,B001277 | BOTS Act of 2016 114-s-3183 | B001277 | Sen. Blumenthal, Richard [D-CT] | D | CT | 2016-07-13 | 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);