legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where bill_id = "116-hr-8295" 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 |
|---|---|---|---|---|---|---|---|
| 116-hr-8295,C001068 | Educating for Democracy Act of 2020 116-hr-8295 | C001068 | Rep. Cohen, Steve [D-TN-9] | D | TN | 2020-12-14 | 0 |
| 116-hr-8295,K000382 | Educating for Democracy Act of 2020 116-hr-8295 | K000382 | Rep. Kuster, Ann M. [D-NH-2] | D | NH | 2020-12-14 | 0 |
| 116-hr-8295,C001084 | Educating for Democracy Act of 2020 116-hr-8295 | C001084 | Rep. Cicilline, David N. [D-RI-1] | D | RI | 2020-12-14 | 0 |
| 116-hr-8295,S001205 | Educating for Democracy Act of 2020 116-hr-8295 | S001205 | Rep. Scanlon, Mary Gay [D-PA-5] | D | PA | 2020-11-12 | 0 |
| 116-hr-8295,C001097 | Educating for Democracy Act of 2020 116-hr-8295 | C001097 | Rep. Cárdenas, Tony [D-CA-29] | D | CA | 2020-10-30 | 0 |
| 116-hr-8295,C000754 | Educating for Democracy Act of 2020 116-hr-8295 | C000754 | Rep. Cooper, Jim [D-TN-5] | D | TN | 2020-10-23 | 0 |
| 116-hr-8295,S001204 | Educating for Democracy Act of 2020 116-hr-8295 | S001204 | Del. San Nicolas, Michael F. Q. [D-GU-At Large] | D | GU | 2020-09-23 | 0 |
| 116-hr-8295,E000215 | Educating for Democracy Act of 2020 116-hr-8295 | E000215 | Rep. Eshoo, Anna G. [D-CA-18] | D | CA | 2020-09-21 | 0 |
| 116-hr-8295,C001053 | Educating for Democracy Act of 2020 116-hr-8295 | C001053 | Rep. Cole, Tom [R-OK-4] | R | OK | 2020-09-17 | 1 |
| 116-hr-8295,J000032 | Educating for Democracy Act of 2020 116-hr-8295 | J000032 | Rep. Jackson Lee, Sheila [D-TX-18] | D | TX | 2020-09-17 | 1 |
| 116-hr-8295,T000193 | Educating for Democracy Act of 2020 116-hr-8295 | T000193 | Rep. Thompson, Bennie G. [D-MS-2] | D | MS | 2020-09-17 | 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);