legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
13 rows where bill_id = "100-s-934" 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 |
|---|---|---|---|---|---|---|---|
| 100-s-934,W000647 | Child-Care Standards Improvement Act of 1987 100-s-934 | W000647 | Sen. Wirth, Timothy [D-CO] | D | CO | 1987-09-11 | 0 |
| 100-s-934,M000702 | Child-Care Standards Improvement Act of 1987 100-s-934 | M000702 | Sen. Mikulski, Barbara A. [D-MD] | D | MD | 1987-06-11 | 0 |
| 100-s-934,I000025 | Child-Care Standards Improvement Act of 1987 100-s-934 | I000025 | Sen. Inouye, Daniel K. [D-HI] | D | HI | 1987-06-09 | 0 |
| 100-s-934,R000146 | Child-Care Standards Improvement Act of 1987 100-s-934 | R000146 | Sen. Reid, Harry [D-NV] | D | NV | 1987-05-19 | 0 |
| 100-s-934,M000250 | Child-Care Standards Improvement Act of 1987 100-s-934 | M000250 | Sen. Matsunaga, Spark M. [D-HI] | D | HI | 1987-05-19 | 0 |
| 100-s-934,D000388 | Child-Care Standards Improvement Act of 1987 100-s-934 | D000388 | Sen. Dodd, Christopher J. [D-CT] | D | CT | 1987-04-07 | 1 |
| 100-s-934,K000105 | Child-Care Standards Improvement Act of 1987 100-s-934 | K000105 | Sen. Kennedy, Edward M. [D-MA] | D | MA | 1987-04-07 | 1 |
| 100-s-934,D000185 | Child-Care Standards Improvement Act of 1987 100-s-934 | D000185 | Sen. DeConcini, Dennis [D-AZ] | D | AZ | 1987-04-07 | 1 |
| 100-s-934,G000321 | Child-Care Standards Improvement Act of 1987 100-s-934 | G000321 | Sen. Gore, Albert, Jr. [D-TN] | D | TN | 1987-04-07 | 1 |
| 100-s-934,H000725 | Child-Care Standards Improvement Act of 1987 100-s-934 | H000725 | Sen. Hollings, Ernest F. [D-SC] | D | SC | 1987-04-07 | 1 |
| 100-s-934,K000148 | Child-Care Standards Improvement Act of 1987 100-s-934 | K000148 | Sen. Kerry, John F. [D-MA] | D | MA | 1987-04-07 | 1 |
| 100-s-934,M001054 | Child-Care Standards Improvement Act of 1987 100-s-934 | M001054 | Sen. Moynihan, Daniel Patrick [D-NY] | D | NY | 1987-04-07 | 1 |
| 100-s-934,R000249 | Child-Care Standards Improvement Act of 1987 100-s-934 | R000249 | Sen. Riegle, Donald W., Jr. [D-MI] | D | MI | 1987-04-07 | 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);