legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where bill_id = "104-hr-977" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: sponsorship_date (date)
is_original_cosponsor 1
- 0 4
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 104-hr-977,F000111 | To amend the Goals 2000: Educate America Act to eliminate the National Education Standards and Improvement Council, and for other purposes. 104-hr-977 | F000111 | Rep. Fields, Jack [R-TX-8] | R | TX | 1995-04-03 | 0 |
| 104-hr-977,B000013 | To amend the Goals 2000: Educate America Act to eliminate the National Education Standards and Improvement Council, and for other purposes. 104-hr-977 | B000013 | Rep. Bachus, Spencer [R-AL-6] | R | AL | 1995-03-30 | 0 |
| 104-hr-977,P000148 | To amend the Goals 2000: Educate America Act to eliminate the National Education Standards and Improvement Council, and for other purposes. 104-hr-977 | P000148 | Rep. Paxon, Bill [R-NY-27] | R | NY | 1995-03-09 | 0 |
| 104-hr-977,D000435 | To amend the Goals 2000: Educate America Act to eliminate the National Education Standards and Improvement Council, and for other purposes. 104-hr-977 | D000435 | Rep. Dornan, Robert K. [R-CA-46] | R | CA | 1995-03-01 | 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);