legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where bill_id = "104-hr-3152" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, state, sponsorship_date, sponsorship_date (date)
is_original_cosponsor 1
- 0 8
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 104-hr-3152,N000147 | Wetland Creation and Improvement Act 104-hr-3152 | N000147 | Del. Norton, Eleanor Holmes [D-DC-At Large] | D | DC | 1996-05-21 | 0 |
| 104-hr-3152,S000213 | Wetland Creation and Improvement Act 104-hr-3152 | S000213 | Rep. Seastrand, Andrea H. [R-CA-22] | R | CA | 1996-05-21 | 0 |
| 104-hr-3152,C000100 | Wetland Creation and Improvement Act 104-hr-3152 | C000100 | Rep. Campbell, Tom [R-CA-15] | R | CA | 1996-04-18 | 0 |
| 104-hr-3152,L000397 | Wetland Creation and Improvement Act 104-hr-3152 | L000397 | Rep. Lofgren, Zoe [D-CA-16] | D | CA | 1996-04-17 | 0 |
| 104-hr-3152,W000738 | Wetland Creation and Improvement Act 104-hr-3152 | W000738 | Rep. Woolsey, Lynn C. [D-CA-6] | D | CA | 1996-03-29 | 0 |
| 104-hr-3152,R000252 | Wetland Creation and Improvement Act 104-hr-3152 | R000252 | Rep. Riggs, Frank [R-CA-1] | R | CA | 1996-03-29 | 0 |
| 104-hr-3152,F000053 | Wetland Creation and Improvement Act 104-hr-3152 | F000053 | Rep. Fazio, Vic [D-CA-3] | D | CA | 1996-03-29 | 0 |
| 104-hr-3152,R000409 | Wetland Creation and Improvement Act 104-hr-3152 | R000409 | Rep. Rohrabacher, Dana [R-CA-45] | R | CA | 1996-03-29 | 0 |
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);