legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "97-hr-6690" 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 |
|---|---|---|---|---|---|---|---|
| 97-hr-6690,P000444 | National Hostel System Plan Act of 1982 97-hr-6690 | P000444 | Rep. Porter, John Edward [R-IL-10] | R | IL | 1982-09-28 | 0 |
| 97-hr-6690,W000258 | National Hostel System Plan Act of 1982 97-hr-6690 | W000258 | Rep. Weiss, Ted [D-NY-20] | D | NY | 1982-09-09 | 0 |
| 97-hr-6690,G000291 | National Hostel System Plan Act of 1982 97-hr-6690 | G000291 | Rep. Goodling, William F. [R-PA-19] | R | PA | 1982-08-12 | 0 |
| 97-hr-6690,F000046 | National Hostel System Plan Act of 1982 97-hr-6690 | F000046 | Del. Fauntroy, Walter E. [D-DC-At Large] | D | DC | 1982-08-03 | 0 |
| 97-hr-6690,F000053 | National Hostel System Plan Act of 1982 97-hr-6690 | F000053 | Rep. Fazio, Vic [D-CA-4] | D | CA | 1982-08-03 | 0 |
| 97-hr-6690,S000230 | National Hostel System Plan Act of 1982 97-hr-6690 | S000230 | Rep. Seiberling, John F. [D-OH-14] | D | OH | 1982-06-24 | 1 |
| 97-hr-6690,B001156 | National Hostel System Plan Act of 1982 97-hr-6690 | B001156 | Rep. Burton, Phillip [D-CA-6] | D | CA | 1982-06-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);