legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where bill_id = "97-hr-7379" 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-7379,B000298 | Natural Gas Import Policy Act of 1982 97-hr-7379 | B000298 | Rep. Bedell, Berkley W. [D-IA-6] | D | IA | 1982-12-21 | 0 |
| 97-hr-7379,B000403 | Natural Gas Import Policy Act of 1982 97-hr-7379 | B000403 | Rep. Bereuter, Doug [R-NE-1] | R | NE | 1982-12-21 | 0 |
| 97-hr-7379,C000714 | Natural Gas Import Policy Act of 1982 97-hr-7379 | C000714 | Rep. Conyers, John, Jr. [D-MI-1] | D | MI | 1982-12-20 | 1 |
| 97-hr-7379,D000044 | Natural Gas Import Policy Act of 1982 97-hr-7379 | D000044 | Rep. Dannemeyer, William E. [R-CA-39] | R | CA | 1982-12-20 | 1 |
| 97-hr-7379,H000206 | Natural Gas Import Policy Act of 1982 97-hr-7379 | H000206 | Rep. Harkin, Tom [D-IA-5] | D | IA | 1982-12-20 | 1 |
| 97-hr-7379,L000169 | Natural Gas Import Policy Act of 1982 97-hr-7379 | L000169 | Rep. Leach, James A. [R-IA-1] | R | IA | 1982-12-20 | 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);