legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where bill_id = "119-s-500" 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 |
|---|---|---|---|---|---|---|---|
| 119-s-500,M001242 | CAREER Act of 2025 119-s-500 | M001242 | Sen. Moreno, Bernie [R-OH] | R | OH | 2025-05-01 | 0 |
| 119-s-500,H000601 | CAREER Act of 2025 119-s-500 | H000601 | Sen. Hagerty, Bill [R-TN] | R | TN | 2025-02-10 | 1 |
| 119-s-500,F000479 | CAREER Act of 2025 119-s-500 | F000479 | Sen. Fetterman, John [D-PA] | D | PA | 2025-02-10 | 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);