legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where bill_id = "118-hr-9481" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: state, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 118-hr-9481,N000193 | Improving Coordination for the Northern Border Act 118-hr-9481 | N000193 | Rep. Nunn, Zachary [R-IA-3] | R | IA | 2024-12-16 | 0 |
| 118-hr-9481,S001196 | Improving Coordination for the Northern Border Act 118-hr-9481 | S001196 | Rep. Stefanik, Elise M. [R-NY-21] | R | NY | 2024-10-18 | 0 |
| 118-hr-9481,W000828 | Improving Coordination for the Northern Border Act 118-hr-9481 | W000828 | Rep. Williams, Brandon [R-NY-22] | R | NY | 2024-09-23 | 0 |
| 118-hr-9481,T000478 | Improving Coordination for the Northern Border Act 118-hr-9481 | T000478 | Rep. Tenney, Claudia [R-NY-24] | R | NY | 2024-09-06 | 1 |
| 118-hr-9481,M001221 | Improving Coordination for the Northern Border Act 118-hr-9481 | M001221 | Rep. Molinaro, Marcus J. [R-NY-19] | R | NY | 2024-09-06 | 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);