legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where bill_id = "104-hr-4113" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date, sponsorship_date (date)
is_original_cosponsor 1
- 0 6
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 104-hr-4113,M000933 | Consumer Internet Privacy Protection Act of 1996 104-hr-4113 | M000933 | Rep. Moran, James P. [D-VA-8] | D | VA | 1996-09-30 | 0 |
| 104-hr-4113,N000147 | Consumer Internet Privacy Protection Act of 1996 104-hr-4113 | N000147 | Del. Norton, Eleanor Holmes [D-DC-At Large] | D | DC | 1996-09-26 | 0 |
| 104-hr-4113,T000253 | Consumer Internet Privacy Protection Act of 1996 104-hr-4113 | T000253 | Rep. Thurman, Karen L. [D-FL-5] | D | FL | 1996-09-26 | 0 |
| 104-hr-4113,F000043 | Consumer Internet Privacy Protection Act of 1996 104-hr-4113 | F000043 | Rep. Fattah, Chaka [D-PA-2] | D | PA | 1996-09-26 | 0 |
| 104-hr-4113,H000627 | Consumer Internet Privacy Protection Act of 1996 104-hr-4113 | H000627 | Rep. Hinchey, Maurice D. [D-NY-26] | D | NY | 1996-09-26 | 0 |
| 104-hr-4113,F000351 | Consumer Internet Privacy Protection Act of 1996 104-hr-4113 | F000351 | Del. Frazer, Victor O. [I-VI-At Large] | I | VI | 1996-09-26 | 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);