legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where bill_id = "100-hr-2069" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, state, sponsorship_date (date)
is_original_cosponsor 1
- 1 6
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 100-hr-2069,B000918 | Superconductivity Competition Act of 1987 100-hr-2069 | B000918 | Rep. Brown, George E., Jr. [D-CA-36] | D | CA | 1987-04-09 | 1 |
| 100-hr-2069,F000049 | Superconductivity Competition Act of 1987 100-hr-2069 | F000049 | Rep. Fawell, Harris W. [R-IL-13] | R | IL | 1987-04-09 | 1 |
| 100-hr-2069,F000380 | Superconductivity Competition Act of 1987 100-hr-2069 | F000380 | Rep. Frenzel, Bill [R-MN-3] | R | MN | 1987-04-09 | 1 |
| 100-hr-2069,H000814 | Superconductivity Competition Act of 1987 100-hr-2069 | H000814 | Rep. Houghton, Amo [R-NY-34] | R | NY | 1987-04-09 | 1 |
| 100-hr-2069,M000249 | Superconductivity Competition Act of 1987 100-hr-2069 | M000249 | Rep. Matsui, Robert T. [D-CA-3] | D | CA | 1987-04-09 | 1 |
| 100-hr-2069,V000006 | Superconductivity Competition Act of 1987 100-hr-2069 | V000006 | Rep. Valentine, Tim [D-NC-2] | D | NC | 1987-04-09 | 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);