legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where bill_id = "102-s-2180" 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 |
|---|---|---|---|---|---|---|---|
| 102-s-2180,H000338 | Access to Justice Act of 1992 102-s-2180 | H000338 | Sen. Hatch, Orrin G. [R-UT] | R | UT | 1992-09-08 | 0 |
| 102-s-2180,C000542 | Access to Justice Act of 1992 102-s-2180 | C000542 | Sen. Coats, Daniel [R-IN] | R | IN | 1992-06-11 | 0 |
| 102-s-2180,S001138 | Access to Justice Act of 1992 102-s-2180 | S001138 | Sen. Symms, Steven D. [R-ID] | R | ID | 1992-06-02 | 0 |
| 102-s-2180,K000017 | Access to Justice Act of 1992 102-s-2180 | K000017 | Sen. Kassebaum, Nancy Landon [R-KS] | R | KS | 1992-05-19 | 0 |
| 102-s-2180,H000463 | Access to Justice Act of 1992 102-s-2180 | H000463 | Sen. Helms, Jesse [R-NC] | R | NC | 1992-05-12 | 0 |
| 102-s-2180,M000355 | Access to Justice Act of 1992 102-s-2180 | M000355 | Sen. McConnell, Mitch [R-KY] | R | KY | 1992-02-04 | 1 |
| 102-s-2180,G000072 | Access to Justice Act of 1992 102-s-2180 | G000072 | Sen. Garn, E. J. (Jake) [R-UT] | R | UT | 1992-02-04 | 1 |
| 102-s-2180,D000401 | Access to Justice Act of 1992 102-s-2180 | D000401 | Sen. Dole, Robert J. [R-KS] | R | KS | 1992-02-04 | 1 |
| 102-s-2180,W000092 | Access to Justice Act of 1992 102-s-2180 | W000092 | Sen. Wallop, Malcolm [R-WY] | R | WY | 1992-02-04 | 1 |
| 102-s-2180,M001085 | Access to Justice Act of 1992 102-s-2180 | M001085 | Sen. Murkowski, Frank H. [R-AK] | R | AK | 1992-02-04 | 1 |
| 102-s-2180,N000102 | Access to Justice Act of 1992 102-s-2180 | N000102 | Sen. Nickles, Don [R-OK] | R | OK | 1992-02-04 | 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);