legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where bill_id = "109-s-1350" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 109-s-1350,C001042 | Wireless 411 Privacy Act 109-s-1350 | C001042 | Sen. Corzine, Jon S. [D-NJ] | D | NJ | 2005-09-19 | 0 |
| 109-s-1350,I000055 | Wireless 411 Privacy Act 109-s-1350 | I000055 | Sen. Isakson, Johnny [R-GA] | R | GA | 2005-09-06 | 0 |
| 109-s-1350,K000105 | Wireless 411 Privacy Act 109-s-1350 | K000105 | Sen. Kennedy, Edward M. [D-MA] | D | MA | 2005-07-29 | 0 |
| 109-s-1350,C000567 | Wireless 411 Privacy Act 109-s-1350 | C000567 | Sen. Cochran, Thad [R-MS] | R | MS | 2005-07-28 | 0 |
| 109-s-1350,N000032 | Wireless 411 Privacy Act 109-s-1350 | N000032 | Sen. Nelson, Bill [D-FL] | D | FL | 2005-07-11 | 0 |
| 109-s-1350,B000711 | Wireless 411 Privacy Act 109-s-1350 | B000711 | Sen. Boxer, Barbara [D-CA] | D | CA | 2005-06-30 | 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);