legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where bill_id = "119-hr-4239" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, state, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 119-hr-4239,T000467 | Rural Weather Monitoring Systems Act 119-hr-4239 | T000467 | Rep. Thompson, Glenn [R-PA-15] | R | PA | 2025-12-15 | 0 |
| 119-hr-4239,J000310 | Rural Weather Monitoring Systems Act 119-hr-4239 | J000310 | Rep. Johnson, Julie [D-TX-32] | D | TX | 2025-09-03 | 0 |
| 119-hr-4239,V000138 | Rural Weather Monitoring Systems Act 119-hr-4239 | V000138 | Rep. Vindman, Eugene Simon [D-VA-7] | D | VA | 2025-08-08 | 0 |
| 119-hr-4239,W000814 | Rural Weather Monitoring Systems Act 119-hr-4239 | W000814 | Rep. Weber, Randy K. Sr. [R-TX-14] | R | TX | 2025-07-14 | 0 |
| 119-hr-4239,S001225 | Rural Weather Monitoring Systems Act 119-hr-4239 | S001225 | Rep. Sorensen, Eric [D-IL-17] | D | IL | 2025-06-27 | 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);