legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where bill_id = "104-s-239" 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 |
|---|---|---|---|---|---|---|---|
| 104-s-239,C000567 | Private Property Owners Bill of Rights 104-s-239 | C000567 | Sen. Cochran, Thad [R-MS] | R | MS | 1995-01-26 | 0 |
| 104-s-239,K000352 | Private Property Owners Bill of Rights 104-s-239 | K000352 | Sen. Kyl, Jon [R-AZ] | R | AZ | 1995-01-23 | 0 |
| 104-s-239,N000102 | Private Property Owners Bill of Rights 104-s-239 | N000102 | Sen. Nickles, Don [R-OK] | R | OK | 1995-01-18 | 1 |
| 104-s-239,B001126 | Private Property Owners Bill of Rights 104-s-239 | B001126 | Sen. Burns, Conrad R. [R-MT] | R | MT | 1995-01-18 | 1 |
| 104-s-239,H001016 | Private Property Owners Bill of Rights 104-s-239 | H001016 | Sen. Hutchison, Kay Bailey [R-TX] | R | TX | 1995-01-18 | 1 |
| 104-s-239,L000447 | Private Property Owners Bill of Rights 104-s-239 | L000447 | Sen. Lott, Trent [R-MS] | R | MS | 1995-01-18 | 1 |
| 104-s-239,P000009 | Private Property Owners Bill of Rights 104-s-239 | P000009 | Sen. Packwood, Bob [R-OR] | R | OR | 1995-01-18 | 1 |
| 104-s-239,P000513 | Private Property Owners Bill of Rights 104-s-239 | P000513 | Sen. Pressler, Larry [R-SD] | R | SD | 1995-01-18 | 1 |
| 104-s-239,I000024 | Private Property Owners Bill of Rights 104-s-239 | I000024 | Sen. Inhofe, James M. [R-OK] | R | OK | 1995-01-18 | 1 |
| 104-s-239,T000162 | Private Property Owners Bill of Rights 104-s-239 | T000162 | Sen. Thomas, Craig [R-WY] | R | WY | 1995-01-18 | 1 |
| 104-s-239,B000919 | Private Property Owners Bill of Rights 104-s-239 | B000919 | Sen. Brown, Hank [R-CO] | R | CO | 1995-01-18 | 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);