legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where bill_id = "110-hr-3610" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: state, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 110-hr-3610,D000210 | Food and Drug Import Safety Act of 2007 110-hr-3610 | D000210 | Rep. Delahunt, William D. [D-MA-10] | D | MA | 2007-12-11 | 0 |
| 110-hr-3610,B001258 | Food and Drug Import Safety Act of 2007 110-hr-3610 | B001258 | Rep. Boyda, Nancy E. [D-KS-2] | D | KS | 2007-11-05 | 0 |
| 110-hr-3610,S001174 | Food and Drug Import Safety Act of 2007 110-hr-3610 | S001174 | Rep. Sutton, Betty [D-OH-13] | D | OH | 2007-11-05 | 0 |
| 110-hr-3610,M000725 | Food and Drug Import Safety Act of 2007 110-hr-3610 | M000725 | Rep. Miller, George [D-CA-7] | D | CA | 2007-10-24 | 0 |
| 110-hr-3610,D000197 | Food and Drug Import Safety Act of 2007 110-hr-3610 | D000197 | Rep. DeGette, Diana [D-CO-1] | D | CO | 2007-10-02 | 0 |
| 110-hr-3610,W000215 | Food and Drug Import Safety Act of 2007 110-hr-3610 | W000215 | Rep. Waxman, Henry A. [D-CA-30] | D | CA | 2007-09-25 | 0 |
| 110-hr-3610,P000034 | Food and Drug Import Safety Act of 2007 110-hr-3610 | P000034 | Rep. Pallone, Frank, Jr. [D-NJ-6] | D | NJ | 2007-09-20 | 1 |
| 110-hr-3610,S001045 | Food and Drug Import Safety Act of 2007 110-hr-3610 | S001045 | Rep. Stupak, Bart [D-MI-1] | D | MI | 2007-09-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);