legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "119-hr-4075" 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 |
|---|---|---|---|---|---|---|---|
| 119-hr-4075,N000191 | Fire Weather Development Act of 2025 119-hr-4075 | N000191 | Rep. Neguse, Joe [D-CO-2] | D | CO | 2025-11-17 | 0 |
| 119-hr-4075,V000138 | Fire Weather Development Act of 2025 119-hr-4075 | V000138 | Rep. Vindman, Eugene Simon [D-VA-7] | D | VA | 2025-08-12 | 0 |
| 119-hr-4075,F000472 | Fire Weather Development Act of 2025 119-hr-4075 | F000472 | Rep. Franklin, Scott [R-FL-18] | R | FL | 2025-06-24 | 0 |
| 119-hr-4075,E000300 | Fire Weather Development Act of 2025 119-hr-4075 | E000300 | Rep. Evans, Gabe [R-CO-8] | R | CO | 2025-06-24 | 0 |
| 119-hr-4075,B001323 | Fire Weather Development Act of 2025 119-hr-4075 | B001323 | Rep. Begich, Nicholas J. [R-AK-At Large] | R | AK | 2025-06-23 | 1 |
| 119-hr-4075,R000620 | Fire Weather Development Act of 2025 119-hr-4075 | R000620 | Rep. Rivas, Luz M. [D-CA-29] | D | CA | 2025-06-23 | 1 |
| 119-hr-4075,H001100 | Fire Weather Development Act of 2025 119-hr-4075 | H001100 | Rep. Hurd, Jeff [R-CO-3] | R | CO | 2025-06-23 | 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);