legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where bill_id = "119-hr-6989" 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 |
|---|---|---|---|---|---|---|---|
| 119-hr-6989,N000147 | Public Health Nursing Act 119-hr-6989 | N000147 | Del. Norton, Eleanor Holmes [D-DC-At Large] | D | DC | 2026-02-03 | 0 |
| 119-hr-6989,G000599 | Public Health Nursing Act 119-hr-6989 | G000599 | Rep. Goldman, Daniel S. [D-NY-10] | D | NY | 2026-02-03 | 0 |
| 119-hr-6989,G000598 | Public Health Nursing Act 119-hr-6989 | G000598 | Rep. Garcia, Robert [D-CA-42] | D | CA | 2026-01-20 | 0 |
| 119-hr-6989,O000173 | Public Health Nursing Act 119-hr-6989 | O000173 | Rep. Omar, Ilhan [D-MN-5] | D | MN | 2026-01-13 | 0 |
| 119-hr-6989,F000476 | Public Health Nursing Act 119-hr-6989 | F000476 | Rep. Frost, Maxwell [D-FL-10] | D | FL | 2026-01-12 | 0 |
| 119-hr-6989,C001080 | Public Health Nursing Act 119-hr-6989 | C001080 | Rep. Chu, Judy [D-CA-28] | D | CA | 2026-01-12 | 0 |
| 119-hr-6989,J000298 | Public Health Nursing Act 119-hr-6989 | J000298 | Rep. Jayapal, Pramila [D-WA-7] | D | WA | 2026-01-09 | 0 |
| 119-hr-6989,M001160 | Public Health Nursing Act 119-hr-6989 | M001160 | Rep. Moore, Gwen [D-WI-4] | D | WI | 2026-01-08 | 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);