roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where congress = 106 and result = "Cloture on the Motion to Proceed Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, yea_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,231 | 106 | senate | 2 | 231 | 2000-07-27 | On Cloture on the Motion to Proceed H.R. 4444 | Motion to Invoke Cloture on Motion to Proceed to 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. | Cloture on the Motion to Proceed Agreed to | 106-hr-4444 | H.R | 4444 | 86 | 12 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1062/vote_106_2_00231.xml | |
| 106,senate,2,51 | 106 | senate | 2 | 51 | 2000-03-30 | On Cloture on the Motion to Proceed S. 2285 | Motion To Invoke Cloture On Motion To Proceed To S. 2285 -- A bill instituting a Federal fuels tax holiday. | Cloture on the Motion to Proceed Agreed to | 106-s-2285 | S | 2285 | 86 | 11 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1062/vote_106_2_00051.xml | |
| 106,senate,1,341 | 106 | senate | 1 | 341 | 1999-10-26 | On Cloture on the Motion to Proceed H.R. 434 | Motion to Invoke Cloture on Motion to Proceed to H.R.434 -- An act to authorize a new trade and investment policy for sub-Sahara Africa, expand trade benefits to the countries in the Caribbean Basin, renew the generalized system of preferences, and reauthorize the trade adjustment assistance programs. | Cloture on the Motion to Proceed Agreed to | 106-hr-434 | H.R | 434 | 90 | 8 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00341.xml | |
| 106,senate,1,270 | 106 | senate | 1 | 270 | 1999-09-13 | On Cloture on the Motion to Proceed S.J.Res. 33 | Motion to Invoke Cloture on the Motion to Proceed to S.J.Res.33 -- A joint resolution deploring the actions of President Clinton regarding granting clemency to FALN terrorists. | Cloture on the Motion to Proceed Agreed to | 106-sjres-33 | S.J.Res | 33 | 93 | 0 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00270.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);