roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where chamber = "senate", congress = 106 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, yea_count, present_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 106,senate,2,288 | 106 | senate | 2 | 288 | 2000-10-27 | On the Motion to Proceed H.R. 2415 | Motion To Proceed To Consider H.R. 2415 Conference Report -- A bill to enhance security of United States missions and personnel overseas, to authorize appropriations for the Department of State for fiscal year 2000, and for other purposes. | Motion to Proceed Agreed to | 106-hr-2415 | H.R | 2415 | 87 | 1 | 1 | 11 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1062/vote_106_2_00288.xml | |
| 106,senate,2,286 | 106 | senate | 2 | 286 | 2000-10-26 | On the Motion to Proceed H.R. 2614 | Motion To Proceed To consider H.R. 2614 Conference Report -- A bill to amend the Small Business Investment Act to make improvements to the certified development company program, and for other purposes. | Motion to Proceed Agreed to | 106-hr-2614 | H.R | 2614 | 55 | 40 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1062/vote_106_2_00286.xml | |
| 106,senate,2,279 | 106 | senate | 2 | 279 | 2000-10-19 | On the Motion to Proceed H.R. 2415 | Motion To Proceed To H.R. 2415 Conference Report -- A bill to enhance security of United States missions and personnel overseas, to authorize appropriations for the Department of State for fiscal year 2000, and for other purposes. | Motion to Proceed Agreed to | 106-hr-2415 | H.R | 2415 | 89 | 0 | 1 | 10 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1062/vote_106_2_00279.xml | |
| 106,senate,2,233 | 106 | senate | 2 | 233 | 2000-09-07 | On the Motion to Proceed H.R. 4444 | Motion To Proceed To Consideration Of H.R. 4444 -- To authorize extension of nondiscriminatory treatment (normal trade relations treatment) to the People's Republic of China, and to establish a framework for relations between the United States and the People's Republic of China. | Motion to Proceed Agreed to | 106-hr-4444 | H.R | 4444 | 92 | 5 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1062/vote_106_2_00233.xml | |
| 106,senate,1,369 | 106 | senate | 1 | 369 | 1999-11-18 | On the Motion to Proceed H.R. 3194 | Motion to Proceed to Consider Conference Report to Accompany H.R.3194 -- An act making consolidated appropriations for the fiscal year ending September 30, 2000, and for other purposes. | Motion to Proceed Agreed to | 106-hr-3194 | H.R | 3194 | 80 | 8 | 0 | 12 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00369.xml | |
| 106,senate,1,332 | 106 | senate | 1 | 332 | 1999-10-20 | On the Motion to Proceed S. 1692 | Motion to Proceed to Consideration of S.1692 -- A bill to amend title 18, United States Code, to ban partial birth abortions. | Motion to Proceed Agreed to | 106-s-1692 | S | 1692 | 52 | 48 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00332.xml | |
| 106,senate,1,324 | 106 | senate | 1 | 324 | 1999-10-13 | On the Motion to Proceed Treaty Doc. 105-28 | Motion to Proceed Executive Session to Consider Treaty Doc. 105-28 -- Comprehensive Nuclear Test-Ban Treaty, opened for signature and signed by the United States at New York on September 24, 1996. Treaty includes two Annexes, a Protocol, and two Annexes to the Protocol | Motion to Proceed Agreed to | 28-treatydoc-105 | Treaty Doc | 105-28 | 55 | 45 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00324.xml | |
| 106,senate,1,287 | 106 | senate | 1 | 287 | 1999-09-23 | On the Motion to Proceed S.Amdt. 1603 to H.R. 2466 (Department of the Interior and Related Agencies Appropriations Act, 2000) | Motion to Proceed to Lott Motion to Reconsider Roll Call No.271 -- To prohibit the use of funds for the purpose of issuing a notice of rulemaking with respect to the valuation of crude oil for royalty purposes until September 30, 2000. | Motion to Proceed Agreed to | 60 | 39 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00287.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);