legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where bill_id = "101-hr-5124" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: sponsorship_date (date)
is_original_cosponsor 1
- 1 6
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 101-hr-5124,F000270 | Anti-Drug Education Act of 1990 101-hr-5124 | F000270 | Rep. Ford, William D. [D-MI-15] | D | MI | 1990-06-21 | 1 |
| 101-hr-5124,M000206 | Anti-Drug Education Act of 1990 101-hr-5124 | M000206 | Rep. Martinez, Matthew G. [D-CA-30] | D | CA | 1990-06-21 | 1 |
| 101-hr-5124,O000159 | Anti-Drug Education Act of 1990 101-hr-5124 | O000159 | Rep. Owens, Major R. [D-NY-12] | D | NY | 1990-06-21 | 1 |
| 101-hr-5124,U000017 | Anti-Drug Education Act of 1990 101-hr-5124 | U000017 | Rep. Unsoeld, Jolene [D-WA-3] | D | WA | 1990-06-21 | 1 |
| 101-hr-5124,R000011 | Anti-Drug Education Act of 1990 101-hr-5124 | R000011 | Rep. Rahall, Nick J., II [D-WV-4] | D | WV | 1990-06-21 | 1 |
| 101-hr-5124,J000265 | Anti-Drug Education Act of 1990 101-hr-5124 | J000265 | Rep. Jontz, Jim [D-IN-5] | D | IN | 1990-06-21 | 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);