legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where bill_id = "117-hr-9331" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date (date)
is_original_cosponsor 1
- 1 4
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 117-hr-9331,S001183 | ED ACCESS Act of 2022 117-hr-9331 | S001183 | Rep. Schweikert, David [R-AZ-6] | R | AZ | 2022-11-17 | 1 |
| 117-hr-9331,H001066 | ED ACCESS Act of 2022 117-hr-9331 | H001066 | Rep. Horsford, Steven [D-NV-4] | D | NV | 2022-11-17 | 1 |
| 117-hr-9331,W000815 | ED ACCESS Act of 2022 117-hr-9331 | W000815 | Rep. Wenstrup, Brad R. [R-OH-2] | R | OH | 2022-11-17 | 1 |
| 117-hr-9331,S001185 | ED ACCESS Act of 2022 117-hr-9331 | S001185 | Rep. Sewell, Terri A. [D-AL-7] | D | AL | 2022-11-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);