legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where bill_id = "100-s-2819" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 100-s-2819,D000407 | Chemical Warfare Control Act 100-s-2819 | D000407 | Sen. Domenici, Pete V. [R-NM] | R | NM | 1988-09-23 | 0 |
| 100-s-2819,W000154 | Chemical Warfare Control Act 100-s-2819 | W000154 | Sen. Warner, John [R-VA] | R | VA | 1988-09-23 | 0 |
| 100-s-2819,M000303 | Chemical Warfare Control Act 100-s-2819 | M000303 | Sen. McCain, John [R-AZ] | R | AZ | 1988-09-23 | 0 |
| 100-s-2819,B000647 | Chemical Warfare Control Act 100-s-2819 | B000647 | Sen. Boschwitz, Rudy [R-MN] | R | MN | 1988-09-22 | 1 |
| 100-s-2819,H000463 | Chemical Warfare Control Act 100-s-2819 | H000463 | Sen. Helms, Jesse [R-NC] | R | NC | 1988-09-22 | 1 |
| 100-s-2819,G000072 | Chemical Warfare Control Act 100-s-2819 | G000072 | Sen. Garn, E. J. (Jake) [R-UT] | R | UT | 1988-09-22 | 1 |
| 100-s-2819,H000456 | Chemical Warfare Control Act 100-s-2819 | H000456 | Sen. Heinz, John [R-PA] | R | PA | 1988-09-22 | 1 |
| 100-s-2819,C000598 | Chemical Warfare Control Act 100-s-2819 | C000598 | Sen. Cohen, William S. [R-ME] | R | ME | 1988-09-22 | 1 |
| 100-s-2819,R000497 | Chemical Warfare Control Act 100-s-2819 | R000497 | Sen. Rudman, Warren [R-NH] | R | NH | 1988-09-22 | 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);