roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where congress = 107 and result = "Motion to Proceed Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, question, bill_id, legislation_type, legislation_number, nay_count, not_voting_count, date (date)
| Link | congress | chamber | session | roll_call_number | date ▲ | question | vote_type | description | result | bill_id | legislation_type | legislation_number | yea_count | nay_count | present_count | not_voting_count | source_url |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 107,senate,2,209 | 107 | senate | 2 | 209 | 2002-09-03 | On the Motion to Proceed H.R. 5005 | Motion to Proceed to Consider H.R. 5005 -- A bill to establish the Department of Homeland Security, and for other purposes. | Motion to Proceed Agreed to | 107-hr-5005 | H.R | 5005 | 94 | 0 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1072/vote_107_2_00209.xml | |
| 107,senate,2,198 | 107 | senate | 2 | 198 | 2002-07-30 | On the Motion to Proceed H.R. 3009 | Motion to Proceed to Consider Conference Report on H.R. 3009 -- A bill to extend the Andean Trade Preference Act, to grant additional trade benefits under that Act, and for other purposes. | Motion to Proceed Agreed to | 107-hr-3009 | H.R | 3009 | 66 | 33 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1072/vote_107_2_00198.xml | |
| 107,senate,2,167 | 107 | senate | 2 | 167 | 2002-07-09 | On the Motion to Proceed S.J.Res. 34 | Motion to Proceed to Consider S.J. Res. 34 -- A joint resolution approving the site at Yucca Mountain, Nevada, for the development of a repository for the disposal of high-level radioactive waste and spent nuclear fuel, pursuant to the Nuclear Waste Policy Act of 1982. | Motion to Proceed Agreed to | 107-sjres-34 | S.J.Res | 34 | 60 | 39 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1072/vote_107_2_00167.xml | |
| 107,senate,2,100 | 107 | senate | 2 | 100 | 2002-05-01 | On the Motion to Proceed H.R. 3009 | Motion to Proceed to the Consideration of H.R. 3009 -- A bill to extend the Andean Trade Preference Act, to grant additional trade benefits under that Act, and for other purposes. | Motion to Proceed Agreed to | 107-hr-3009 | H.R | 3009 | 77 | 21 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1072/vote_107_2_00100.xml | |
| 107,senate,1,193 | 107 | senate | 1 | 193 | 2001-06-21 | On the Motion to Proceed S. 1052 | Motion to Proceed to Consider S.1052 -- A bill to amend the Public Health Service Act and the Employee Retirement Income Security Act of 1974 to protect consumers in managed care plans and other health coverage. | Motion to Proceed Agreed to | 107-s-1052 | S | 1052 | 98 | 0 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1071/vote_107_1_00193.xml |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE roll_call_votes (
congress INTEGER NOT NULL,
chamber TEXT NOT NULL,
session INTEGER,
roll_call_number INTEGER NOT NULL,
date TEXT,
question TEXT,
vote_type TEXT,
description TEXT,
result TEXT,
bill_id TEXT,
legislation_type TEXT,
legislation_number TEXT,
yea_count INTEGER,
nay_count INTEGER,
present_count INTEGER,
not_voting_count INTEGER,
source_url TEXT,
PRIMARY KEY (congress, chamber, session, roll_call_number)
);
CREATE INDEX idx_rcv_date ON roll_call_votes(date);
CREATE INDEX idx_rcv_bill ON roll_call_votes(bill_id);
CREATE INDEX idx_rcv_congress ON roll_call_votes(congress);
CREATE INDEX idx_rcv_result ON roll_call_votes(result);
CREATE INDEX idx_rcv_compound ON roll_call_votes(congress, chamber, session, roll_call_number);