roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where congress = 112 and result = "Cloture on the Motion to Proceed Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, question, bill_id, legislation_number, yea_count, nay_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112,senate,2,181 | 112 | senate | 2 | 181 | 2012-07-19 | On Cloture on the Motion to Proceed S. 3364 | Motion to Invoke Cloture on the Motion to Proceed to S. 3364 -- A bill to provide an incentive for businesses to bring jobs back to America. | Cloture on the Motion to Proceed Rejected | 112-s-3364 | S | 3364 | 56 | 42 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00181.xml | |
| 112,senate,2,180 | 112 | senate | 2 | 180 | 2012-07-17 | On Cloture on the Motion to Proceed S. 3369 | Upon Reconsideration Motion to Invoke Cloture on the Motion to Proceed to Consider S.3369 -- A bill to amend the Federal Election Campaign Act of 1971 to provide for additional disclosure requirements for corporations, labor organizations, Super PACs and other entities, and for other purposes. | Cloture on the Motion to Proceed Rejected | 112-s-3369 | S | 3369 | 53 | 45 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00180.xml | |
| 112,senate,2,179 | 112 | senate | 2 | 179 | 2012-07-16 | On Cloture on the Motion to Proceed S. 3369 | Motion to Invoke Cloture on the Motion to Proceed to S.3369 -- A bill to amend the Federal Election Campaign Act of 1971 to provide for additional disclosure requirements for corporations, labor organizations, Super PACs and other entities, and for other purposes. | Cloture on the Motion to Proceed Rejected | 112-s-3369 | S | 3369 | 51 | 44 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00179.xml | |
| 112,senate,2,115 | 112 | senate | 2 | 115 | 2012-06-05 | On Cloture on the Motion to Proceed S. 3220 | Motion to Invoke Cloture on the Motion to Proceed to Consider S. 3220 -- A bill to amend the Fair Labor Standards Act of 1938 to provide more effective remedies to victims of discrimination in the payment of wages on the basis of sex, and for other purposes. | Cloture on the Motion to Proceed Rejected | 112-s-3220 | S | 3220 | 52 | 47 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00115.xml | |
| 112,senate,2,89 | 112 | senate | 2 | 89 | 2012-05-08 | On Cloture on the Motion to Proceed S. 2343 | Motion to Invoke Cloture on the Motion to Proceed to Consider S. 2343 -- A bill to amend the Higher Education Act of 1965 to extend the reduced interest rate for Federal Direct Stafford Loans, and for other purposes. | Cloture on the Motion to Proceed Rejected | 112-s-2343 | S | 2343 | 52 | 45 | 1 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00089.xml | |
| 112,senate,2,65 | 112 | senate | 2 | 65 | 2012-04-16 | On Cloture on the Motion to Proceed S. 2230 | Motion to Invoke Cloture on the Motion to Proceed to Consider S. 2230 -- A bill to reduce the deficit by imposing a minimum effective tax rate for high-income taxpayers. | Cloture on the Motion to Proceed Rejected | 112-s-2230 | S | 2230 | 51 | 45 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00065.xml | |
| 112,senate,1,177 | 112 | senate | 1 | 177 | 2011-10-20 | On Cloture on the Motion to Proceed S. 1723 | Motion to Invoke Cloture on the Motion to Proceed to S. 1723 -- A bill to provide for teacher and first responder stabilization. | Cloture on the Motion to Proceed Rejected | 112-s-1723 | S | 1723 | 50 | 50 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00177.xml | |
| 112,senate,1,178 | 112 | senate | 1 | 178 | 2011-10-20 | On Cloture on the Motion to Proceed S. 1726 | Motion to Invoke Cloture on the Motion to Proceed to S. 1726 -- A bill to repeal the imposition of withholding on certain payments made to vendors by government entities. | Cloture on the Motion to Proceed Rejected | 112-s-1726 | S | 1726 | 57 | 43 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00178.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);