legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "101-hr-4592" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, state, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 101-hr-4592,L000305 | Crop Insurance Act of 1990 101-hr-4592 | L000305 | Rep. Lightfoot, Jim [R-IA-5] | R | IA | 1990-05-10 | 0 |
| 101-hr-4592,T000034 | Crop Insurance Act of 1990 101-hr-4592 | T000034 | Rep. Tallon, Robert M. (Robin) [D-SC-6] | D | SC | 1990-04-24 | 1 |
| 101-hr-4592,E000218 | Crop Insurance Act of 1990 101-hr-4592 | E000218 | Rep. Espy, Mike [D-MS-2] | D | MS | 1990-04-24 | 1 |
| 101-hr-4592,M000041 | Crop Insurance Act of 1990 101-hr-4592 | M000041 | Rep. Madigan, Edward R. [R-IL-15] | R | IL | 1990-04-24 | 1 |
| 101-hr-4592,M000999 | Crop Insurance Act of 1990 101-hr-4592 | M000999 | Rep. Morrison, Sid [R-WA-4] | R | WA | 1990-04-24 | 1 |
| 101-hr-4592,N000003 | Crop Insurance Act of 1990 101-hr-4592 | N000003 | Rep. Nagle, Dave R, [D-IA-3] | D | IA | 1990-04-24 | 1 |
| 101-hr-4592,H000729 | Crop Insurance Act of 1990 101-hr-4592 | H000729 | Rep. Holloway, Clyde [R-LA-8] | R | LA | 1990-04-24 | 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);