legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where bill_id = "118-s-840" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: state, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 118-s-840,S001217 | Respect for the Second Amendment Act 118-s-840 | S001217 | Sen. Scott, Rick [R-FL] | R | FL | 2023-03-29 | 0 |
| 118-s-840,G000386 | Respect for the Second Amendment Act 118-s-840 | G000386 | Sen. Grassley, Chuck [R-IA] | R | IA | 2023-03-16 | 1 |
| 118-s-840,C001056 | Respect for the Second Amendment Act 118-s-840 | C001056 | Sen. Cornyn, John [R-TX] | R | TX | 2023-03-16 | 1 |
| 118-s-840,L000577 | Respect for the Second Amendment Act 118-s-840 | L000577 | Sen. Lee, Mike [R-UT] | R | UT | 2023-03-16 | 1 |
| 118-s-840,C001098 | Respect for the Second Amendment Act 118-s-840 | C001098 | Sen. Cruz, Ted [R-TX] | R | TX | 2023-03-16 | 1 |
| 118-s-840,H001089 | Respect for the Second Amendment Act 118-s-840 | H001089 | Sen. Hawley, Josh [R-MO] | R | MO | 2023-03-16 | 1 |
| 118-s-840,C001095 | Respect for the Second Amendment Act 118-s-840 | C001095 | Sen. Cotton, Tom [R-AR] | R | AR | 2023-03-16 | 1 |
| 118-s-840,K000393 | Respect for the Second Amendment Act 118-s-840 | K000393 | Sen. Kennedy, John [R-LA] | R | LA | 2023-03-16 | 1 |
| 118-s-840,T000476 | Respect for the Second Amendment Act 118-s-840 | T000476 | Sen. Tillis, Thomas [R-NC] | R | NC | 2023-03-16 | 1 |
| 118-s-840,B001243 | Respect for the Second Amendment Act 118-s-840 | B001243 | Sen. Blackburn, Marsha [R-TN] | R | TN | 2023-03-16 | 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);