legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "101-s-891" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, state, sponsorship_date, sponsorship_date (date)
is_original_cosponsor 1
- 0 7
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 101-s-891,K000019 | Consumer Products Safe Testing Act 101-s-891 | K000019 | Sen. Kasten, Robert W., Jr. [R-WI] | R | WI | 1990-09-10 | 0 |
| 101-s-891,L000174 | Consumer Products Safe Testing Act 101-s-891 | L000174 | Sen. Leahy, Patrick J. [D-VT] | D | VT | 1990-08-02 | 0 |
| 101-s-891,A000069 | Consumer Products Safe Testing Act 101-s-891 | A000069 | Sen. Akaka, Daniel K. [D-HI] | D | HI | 1990-07-13 | 0 |
| 101-s-891,B001077 | Consumer Products Safe Testing Act 101-s-891 | B001077 | Sen. Burdick, Quentin N. [D-ND] | D | ND | 1989-11-14 | 0 |
| 101-s-891,W000647 | Consumer Products Safe Testing Act 101-s-891 | W000647 | Sen. Wirth, Timothy [D-CO] | D | CO | 1989-09-06 | 0 |
| 101-s-891,J000072 | Consumer Products Safe Testing Act 101-s-891 | J000072 | Sen. Jeffords, James M. [R-VT] | R | VT | 1989-09-06 | 0 |
| 101-s-891,C000598 | Consumer Products Safe Testing Act 101-s-891 | C000598 | Sen. Cohen, William S. [R-ME] | R | ME | 1989-09-06 | 0 |
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);