legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where bill_id = "93-s-3043" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, state
is_original_cosponsor 1
- 0 5
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 93-s-3043,A000017 | Federal Citizens Appeal Act 93-s-3043 | A000017 | Sen. Abourezk, James [D-SD] | D | SD | 0 | |
| 93-s-3043,G000388 | Federal Citizens Appeal Act 93-s-3043 | G000388 | Sen. Gravel, Mike [D-AK] | D | 0 | ||
| 93-s-3043,D000409 | Federal Citizens Appeal Act 93-s-3043 | D000409 | Sen. Dominick, Peter H. [R-CO] | R | CO | 0 | |
| 93-s-3043,M000851 | Federal Citizens Appeal Act 93-s-3043 | M000851 | Sen. Mondale, Walter F. [D-MN] | D | 0 | ||
| 93-s-3043,M000452 | Federal Citizens Appeal Act 93-s-3043 | M000452 | Sen. McGovern, George [D-SD] | D | SD | 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);