legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where bill_id = "112-hr-2764" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date (date)
is_original_cosponsor 1
- 1 5
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 112-hr-2764,S001175 | WMD Intelligence and Information Sharing Act of 2012 112-hr-2764 | S001175 | Rep. Speier, Jackie [D-CA-12] | D | CA | 2011-08-01 | 1 |
| 112-hr-2764,P000096 | WMD Intelligence and Information Sharing Act of 2012 112-hr-2764 | P000096 | Rep. Pascrell, Bill, Jr. [D-NJ-8] | D | NJ | 2011-08-01 | 1 |
| 112-hr-2764,M001179 | WMD Intelligence and Information Sharing Act of 2012 112-hr-2764 | M001179 | Rep. Marino, Tom [R-PA-10] | R | PA | 2011-08-01 | 1 |
| 112-hr-2764,K000210 | WMD Intelligence and Information Sharing Act of 2012 112-hr-2764 | K000210 | Rep. King, Peter T. [R-NY-3] | R | NY | 2011-08-01 | 1 |
| 112-hr-2764,R000575 | WMD Intelligence and Information Sharing Act of 2012 112-hr-2764 | R000575 | Rep. Rogers, Mike D. [R-AL-3] | R | AL | 2011-08-01 | 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);