legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where bill_id = "100-s-880" 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 |
|---|---|---|---|---|---|---|---|
| 100-s-880,B001057 | Superconductivity Competition Act of 1987 100-s-880 | B001057 | Sen. Bumpers, Dale [D-AR] | D | AR | 1987-05-05 | 0 |
| 100-s-880,C000567 | Superconductivity Competition Act of 1987 100-s-880 | C000567 | Sen. Cochran, Thad [R-MS] | R | MS | 1987-04-21 | 0 |
| 100-s-880,M001054 | Superconductivity Competition Act of 1987 100-s-880 | M001054 | Sen. Moynihan, Daniel Patrick [D-NY] | D | NY | 1987-04-21 | 0 |
| 100-s-880,B000401 | Superconductivity Competition Act of 1987 100-s-880 | B000401 | Sen. Bentsen, Lloyd M. [D-TX] | D | TX | 1987-04-10 | 0 |
| 100-s-880,M000250 | Superconductivity Competition Act of 1987 100-s-880 | M000250 | Sen. Matsunaga, Spark M. [D-HI] | D | HI | 1987-04-09 | 0 |
| 100-s-880,C000356 | Superconductivity Competition Act of 1987 100-s-880 | C000356 | Sen. Chiles, Lawton [D-FL] | D | FL | 1987-04-09 | 0 |
| 100-s-880,A000031 | Superconductivity Competition Act of 1987 100-s-880 | A000031 | Sen. Adams, Brock [D-WA] | D | WA | 1987-04-08 | 0 |
| 100-s-880,S000320 | Superconductivity Competition Act of 1987 100-s-880 | S000320 | Sen. Shelby, Richard C. [D-AL] | D | AL | 1987-04-08 | 0 |
| 100-s-880,G000072 | Superconductivity Competition Act of 1987 100-s-880 | G000072 | Sen. Garn, E. J. (Jake) [R-UT] | R | UT | 1987-04-07 | 0 |
| 100-s-880,M000811 | Superconductivity Competition Act of 1987 100-s-880 | M000811 | Sen. Mitchell, George J. [D-ME] | D | ME | 1987-04-07 | 0 |
| 100-s-880,B001225 | Superconductivity Competition Act of 1987 100-s-880 | B001225 | Sen. Bradley, Bill [D-NJ] | D | NJ | 1987-04-01 | 0 |
| 100-s-880,D000030 | Superconductivity Competition Act of 1987 100-s-880 | D000030 | Sen. Danforth, John C. [R-MO] | R | MO | 1987-03-30 | 1 |
| 100-s-880,G000321 | Superconductivity Competition Act of 1987 100-s-880 | G000321 | Sen. Gore, Albert, Jr. [D-TN] | D | TN | 1987-03-30 | 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);