legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where bill_id = "98-sres-84" 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 |
|---|---|---|---|---|---|---|---|
| 98-sres-84,M001085 | A resolution relating to the Strategic Petroleum Reserve. 98-sres-84 | M001085 | Sen. Murkowski, Frank H. [R-AK] | R | AK | 1983-07-14 | 0 |
| 98-sres-84,M000250 | A resolution relating to the Strategic Petroleum Reserve. 98-sres-84 | M000250 | Sen. Matsunaga, Spark M. [D-HI] | D | HI | 1983-04-05 | 0 |
| 98-sres-84,M000346 | A resolution relating to the Strategic Petroleum Reserve. 98-sres-84 | M000346 | Sen. McClure, James A. [R-ID] | R | ID | 1983-03-08 | 1 |
| 98-sres-84,J000189 | A resolution relating to the Strategic Petroleum Reserve. 98-sres-84 | J000189 | Sen. Johnston, J. Bennett [D-LA] | D | LA | 1983-03-08 | 1 |
| 98-sres-84,B001225 | A resolution relating to the Strategic Petroleum Reserve. 98-sres-84 | B001225 | Sen. Bradley, Bill [D-NJ] | D | NJ | 1983-03-08 | 1 |
| 98-sres-84,W000154 | A resolution relating to the Strategic Petroleum Reserve. 98-sres-84 | W000154 | Sen. Warner, John [R-VA] | R | VA | 1983-03-08 | 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);