legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where bill_id = "119-hr-5910" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 119-hr-5910,A000381 | To authorize leases of up to 99 years for land held in trust for federally recognized Indian Tribes. 119-hr-5910 | A000381 | Rep. Ansari, Yassamin [D-AZ-3] | D | AZ | 2025-12-16 | 0 |
| 119-hr-5910,L000578 | To authorize leases of up to 99 years for land held in trust for federally recognized Indian Tribes. 119-hr-5910 | L000578 | Rep. LaMalfa, Doug [R-CA-1] | R | CA | 2025-12-11 | 0 |
| 119-hr-5910,H001100 | To authorize leases of up to 99 years for land held in trust for federally recognized Indian Tribes. 119-hr-5910 | H001100 | Rep. Hurd, Jeff [R-CO-3] | R | CO | 2025-12-05 | 0 |
| 119-hr-5910,L000273 | To authorize leases of up to 99 years for land held in trust for federally recognized Indian Tribes. 119-hr-5910 | L000273 | Rep. Leger Fernandez, Teresa [D-NM-3] | D | NM | 2025-11-04 | 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);
CREATE INDEX idx_legislation_cosponsors_bioguide ON legislation_cosponsors(bioguide_id);
CREATE INDEX idx_legislation_cosponsors_bill ON legislation_cosponsors(bill_id);