roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where chamber = "senate", congress = 111 and result = "Cloture on the Motion to Proceed Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: date, question, bill_id, legislation_type, legislation_number, yea_count, nay_count, not_voting_count, date (date)
result 1
- Cloture on the Motion to Proceed Rejected · 6 ✖
congress 1
- 111 · 6 ✖
chamber 1
- senate · 6 ✖
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 111,senate,2,269 | 111 | senate | 2 | 269 | 2010-12-09 | On Cloture on the Motion to Proceed H.R. 847 | Motion to Invoke Cloture on the Motion to Proceed to H.R. 847 -- A bill to amend the Public Health Service Act to extend and improve protections and services to individuals directly impacted by the terrorist attack in New York City on September 11, 2001, and for other purposes. | Cloture on the Motion to Proceed Rejected | 111-hr-847 | H.R | 847 | 57 | 42 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1112/vote_111_2_00269.xml | |
| 111,senate,2,270 | 111 | senate | 2 | 270 | 2010-12-09 | On Cloture on the Motion to Proceed S. 3454 | Upon Reconsideration, Motion to Invoke Cloture on the Motion to Proceed to S. 3454 -- An original bill to authorize appropriations for fiscal year 2011 for military activities of the Department of Defense, for military construction, and for defense activities of the Department of Energy, to prescribe military personnel strengths for such fiscal year, and for other purposes. | Cloture on the Motion to Proceed Rejected | 111-s-3454 | S | 3454 | 57 | 40 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1112/vote_111_2_00270.xml | |
| 111,senate,2,266 | 111 | senate | 2 | 266 | 2010-12-08 | On Cloture on the Motion to Proceed S. 3991 | Motion to Invoke Cloture on the Motion to Proceed to S. 3991 -- A bill to provide collective bargaining rights for public safety officers employed by States or their political subdivisions. | Cloture on the Motion to Proceed Rejected | 111-s-3991 | S | 3991 | 55 | 43 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1112/vote_111_2_00266.xml | |
| 111,senate,2,267 | 111 | senate | 2 | 267 | 2010-12-08 | On Cloture on the Motion to Proceed S. 3985 | Motion to Invoke Cloture on the Motion to Proceed to S. 3985 -- A bill to amend the Internal Revenue Code of 1986 to extend certain expiring provisions, and for other purposes. | Cloture on the Motion to Proceed Rejected | 111-s-3985 | S | 3985 | 53 | 45 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1112/vote_111_2_00267.xml | |
| 111,senate,2,127 | 111 | senate | 2 | 127 | 2010-04-28 | On Cloture on the Motion to Proceed S. 3217 | Second Motion to Invoke Cloture on the Motion to Proceed to Consider S. 3217 -- An original bill to promote the financial stability of the United States by improving accountability and transparency in the financial system, to end "too big to fail", to protect the American taxpayer by ending bailouts, to protect consumers from abusive financial services practices, and for other purposes. | Cloture on the Motion to Proceed Rejected | 111-s-3217 | S | 3217 | 56 | 42 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1112/vote_111_2_00127.xml | |
| 111,senate,2,126 | 111 | senate | 2 | 126 | 2010-04-27 | On Cloture on the Motion to Proceed S. 3217 | Upon Reconsideration Motion to Invoke Cloture on the Motion to Proceed to S. 3217 -- An original bill to promote the financial stability of the United States by improving accountability and transparency in the financial system, to end "too big to fail", to protect the American taxpayer by ending bailouts, to protect consumers from abusive financial services practices, and for other purposes. | Cloture on the Motion to Proceed Rejected | 111-s-3217 | S | 3217 | 57 | 41 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1112/vote_111_2_00126.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);