legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where bill_id = "116-hr-7948" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 116-hr-7948,A000377 | Tribal Health Data Improvement Act of 2020 116-hr-7948 | A000377 | Rep. Armstrong, Kelly [R-ND-At Large] | R | ND | 2020-08-21 | 0 |
| 116-hr-7948,L000570 | Tribal Health Data Improvement Act of 2020 116-hr-7948 | L000570 | Rep. Lujan, Ben Ray [D-NM-3] | D | NM | 2020-08-07 | 1 |
| 116-hr-7948,M001159 | Tribal Health Data Improvement Act of 2020 116-hr-7948 | M001159 | Rep. McMorris Rodgers, Cathy [R-WA-5] | R | WA | 2020-08-07 | 1 |
| 116-hr-7948,M001190 | Tribal Health Data Improvement Act of 2020 116-hr-7948 | M001190 | Rep. Mullin, Markwayne [R-OK-2] | R | OK | 2020-08-07 | 1 |
| 116-hr-7948,O000171 | Tribal Health Data Improvement Act of 2020 116-hr-7948 | O000171 | Rep. O'Halleran, Tom [D-AZ-1] | D | AZ | 2020-08-07 | 1 |
| 116-hr-7948,R000599 | Tribal Health Data Improvement Act of 2020 116-hr-7948 | R000599 | Rep. Ruiz, Raul [D-CA-36] | D | CA | 2020-08-07 | 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);