legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where bill_id = "117-hr-9404" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: state, sponsorship_date (date)
is_original_cosponsor 1
- 1 10
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 117-hr-9404,M001211 | Protecting Our Children from the CDC Act 117-hr-9404 | M001211 | Rep. Miller, Mary E. [R-IL-15] | R | IL | 2022-12-02 | 1 |
| 117-hr-9404,H001077 | Protecting Our Children from the CDC Act 117-hr-9404 | H001077 | Rep. Higgins, Clay [R-LA-3] | R | LA | 2022-12-02 | 1 |
| 117-hr-9404,G000565 | Protecting Our Children from the CDC Act 117-hr-9404 | G000565 | Rep. Gosar, Paul A. [R-AZ-4] | R | AZ | 2022-12-02 | 1 |
| 117-hr-9404,B001297 | Protecting Our Children from the CDC Act 117-hr-9404 | B001297 | Rep. Buck, Ken [R-CO-4] | R | CO | 2022-12-02 | 1 |
| 117-hr-9404,B000825 | Protecting Our Children from the CDC Act 117-hr-9404 | B000825 | Rep. Boebert, Lauren [R-CO-3] | R | CO | 2022-12-02 | 1 |
| 117-hr-9404,T000165 | Protecting Our Children from the CDC Act 117-hr-9404 | T000165 | Rep. Tiffany, Thomas P. [R-WI-7] | R | WI | 2022-12-02 | 1 |
| 117-hr-9404,W000814 | Protecting Our Children from the CDC Act 117-hr-9404 | W000814 | Rep. Weber, Randy K., Sr. [R-TX-14] | R | TX | 2022-12-02 | 1 |
| 117-hr-9404,J000304 | Protecting Our Children from the CDC Act 117-hr-9404 | J000304 | Rep. Jackson, Ronny [R-TX-13] | R | TX | 2022-12-02 | 1 |
| 117-hr-9404,R000614 | Protecting Our Children from the CDC Act 117-hr-9404 | R000614 | Rep. Roy, Chip [R-TX-21] | R | TX | 2022-12-02 | 1 |
| 117-hr-9404,S001214 | Protecting Our Children from the CDC Act 117-hr-9404 | S001214 | Rep. Steube, W. Gregory [R-FL-17] | R | FL | 2022-12-02 | 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);