legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where bill_id = "98-hr-4829" 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 |
|---|---|---|---|---|---|---|---|
| 98-hr-4829,H000930 | Ocean Dumping Amendments Act of 1984 98-hr-4829 | H000930 | Rep. Hughes, William J. [D-NJ-2] | D | NJ | 1984-05-15 | 1 |
| 98-hr-4829,C000174 | Ocean Dumping Amendments Act of 1984 98-hr-4829 | C000174 | Rep. Carper, Thomas R. [D-DE-At Large] | D | DE | 1984-05-15 | 1 |
| 98-hr-4829,D000593 | Ocean Dumping Amendments Act of 1984 98-hr-4829 | D000593 | Rep. Dyson, Roy [D-MD-1] | D | MD | 1984-05-15 | 1 |
| 98-hr-4829,S001040 | Ocean Dumping Amendments Act of 1984 98-hr-4829 | S001040 | Rep. Studds, Gerry E. [D-MA-10] | D | MA | 1984-05-15 | 1 |
| 98-hr-4829,T000184 | Ocean Dumping Amendments Act of 1984 98-hr-4829 | T000184 | Rep. Thomas, Lindsay [D-GA-1] | D | GA | 1984-05-15 | 1 |
| 98-hr-4829,J000256 | Ocean Dumping Amendments Act of 1984 98-hr-4829 | J000256 | Rep. Jones, Walter B. [D-NC-1] | D | NC | 1984-05-15 | 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);