legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "113-s-2909" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 113-s-2909,H001046 | Global Food Security Act of 2014 113-s-2909 | H001046 | Sen. Heinrich, Martin [D-NM] | D | NM | 2014-12-04 | 0 |
| 113-s-2909,D000563 | Global Food Security Act of 2014 113-s-2909 | D000563 | Sen. Durbin, Richard J. [D-IL] | D | IL | 2014-11-13 | 0 |
| 113-s-2909,J000291 | Global Food Security Act of 2014 113-s-2909 | J000291 | Sen. Johanns, Mike [R-NE] | R | NE | 2014-09-18 | 1 |
| 113-s-2909,C001088 | Global Food Security Act of 2014 113-s-2909 | C001088 | Sen. Coons, Christopher A. [D-DE] | D | DE | 2014-09-18 | 1 |
| 113-s-2909,I000055 | Global Food Security Act of 2014 113-s-2909 | I000055 | Sen. Isakson, Johnny [R-GA] | R | GA | 2014-09-18 | 1 |
| 113-s-2909,C000141 | Global Food Security Act of 2014 113-s-2909 | C000141 | Sen. Cardin, Benjamin L. [D-MD] | D | MD | 2014-09-18 | 1 |
| 113-s-2909,B001236 | Global Food Security Act of 2014 113-s-2909 | B001236 | Sen. Boozman, John [R-AR] | R | AR | 2014-09-18 | 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);