legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where bill_id = "103-s-798" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, state, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 103-s-798,F000062 | Arson Prevention Act of 1993 103-s-798 | F000062 | Sen. Feinstein, Dianne [D-CA] | D | CA | 1993-11-22 | 0 |
| 103-s-798,S000064 | Arson Prevention Act of 1993 103-s-798 | S000064 | Sen. Sarbanes, Paul S. [D-MD] | D | MD | 1993-11-22 | 0 |
| 103-s-798,M000702 | Arson Prevention Act of 1993 103-s-798 | M000702 | Sen. Mikulski, Barbara A. [D-MD] | D | MD | 1993-10-13 | 0 |
| 103-s-798,B000444 | Arson Prevention Act of 1993 103-s-798 | B000444 | Sen. Biden, Joseph R., Jr. [D-DE] | D | DE | 1993-09-24 | 0 |
| 103-s-798,H000343 | Arson Prevention Act of 1993 103-s-798 | H000343 | Sen. Hatfield, Mark O. [R-OR] | R | OR | 1993-07-30 | 0 |
| 103-s-798,R000460 | Arson Prevention Act of 1993 103-s-798 | R000460 | Sen. Roth Jr., William V. [R-DE] | R | DE | 1993-06-29 | 0 |
| 103-s-798,G000333 | Arson Prevention Act of 1993 103-s-798 | G000333 | Sen. Gorton, Slade [R-WA] | R | WA | 1993-04-20 | 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);