legislation_cosponsors
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where bill_id = "103-hr-4776" sorted by sponsorship_date descending
This data as json, CSV (advanced)
Suggested facets: party, sponsorship_date, sponsorship_date (date)
| Link | bill_id | bioguide_id | full_name | party | state | sponsorship_date ▲ | is_original_cosponsor |
|---|---|---|---|---|---|---|---|
| 103-hr-4776,H000448 | Veterans' Employment Act of 1994 103-hr-4776 | H000448 | Rep. Hefner, W. G. (Bill) [D-NC-8] | D | NC | 1994-07-26 | 0 |
| 103-hr-4776,R000229 | Veterans' Employment Act of 1994 103-hr-4776 | R000229 | Rep. Richardson, Bill [D-NM-3] | D | NM | 1994-07-26 | 0 |
| 103-hr-4776,S000851 | Veterans' Employment Act of 1994 103-hr-4776 | S000851 | Rep. Stenholm, Charles W. [D-TX-17] | D | TX | 1994-07-26 | 0 |
| 103-hr-4776,P000152 | Veterans' Employment Act of 1994 103-hr-4776 | P000152 | Rep. Payne, Lewis F., Jr. [D-VA-5] | D | VA | 1994-07-26 | 0 |
| 103-hr-4776,P000066 | Veterans' Employment Act of 1994 103-hr-4776 | P000066 | Rep. Parker, Mike [D-MS-4] | D | MS | 1994-07-26 | 0 |
| 103-hr-4776,B000490 | Veterans' Employment Act of 1994 103-hr-4776 | B000490 | Rep. Bishop, Sanford D., Jr. [D-GA-2] | D | GA | 1994-07-21 | 0 |
| 103-hr-4776,S001044 | Veterans' Employment Act of 1994 103-hr-4776 | S001044 | Rep. Stump, Bob [R-AZ-3] | R | AZ | 1994-07-18 | 1 |
| 103-hr-4776,H001015 | Veterans' Employment Act of 1994 103-hr-4776 | H001015 | Rep. Hutchinson, Tim [R-AR-3] | R | AR | 1994-07-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);