roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 113 and result = "Cloture on the Motion to Proceed Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, yea_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 113,senate,2,228 | 113 | senate | 2 | 228 | 2014-07-16 | On Cloture on the Motion to Proceed S. 2578 | Motion to Invoke Cloture on the Motion to Proceed to S.2578 -- A bill to ensure that employers cannot interfere in their employees' birth control and other health care decisions. | Cloture on the Motion to Proceed Rejected | 113-s-2578 | S | 2578 | 56 | 43 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00228.xml | |
| 113,senate,2,185 | 113 | senate | 2 | 185 | 2014-06-11 | On Cloture on the Motion to Proceed S. 2432 | Motion to Invoke Cloture on the Motion to Proceed to S.2432 -- A bill to amend the Higher Education Act of 1965 to provide for the refinancing of certain Federal student loans, and for other purposes. | Cloture on the Motion to Proceed Rejected | 113-s-2432 | S | 2432 | 56 | 38 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00185.xml | |
| 113,senate,2,117 | 113 | senate | 2 | 117 | 2014-04-30 | On Cloture on the Motion to Proceed S. 2223 | Motion to Invoke Cloture on the Motion to Proceed to S. 2223 -- A bill to provide for an increase in the Federal minimum wage and to amend the Internal Revenue Code of 1986 to extend increased expensing limitations and the treatment of certain real property as section 179 property. | Cloture on the Motion to Proceed Rejected | 113-s-2223 | S | 2223 | 54 | 42 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00117.xml | |
| 113,senate,2,103 | 113 | senate | 2 | 103 | 2014-04-09 | On Cloture on the Motion to Proceed S. 2199 | Motion to Invoke Cloture on the Motion to Proceed to S. 2199 -- 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 | 113-s-2199 | S | 2199 | 53 | 44 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00103.xml | |
| 113,senate,1,216 | 113 | senate | 1 | 216 | 2013-10-12 | On Cloture on the Motion to Proceed S. 1569 | Motion to Invoke Cloture on the Motion to Proceed to S. 1569 -- A bill to ensure the complete and timely payment of the obligations of the United States Government until December 31, 2014. | Cloture on the Motion to Proceed Rejected | 113-s-1569 | S | 1569 | 53 | 45 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00216.xml | |
| 113,senate,1,26 | 113 | senate | 1 | 26 | 2013-02-28 | On Cloture on the Motion to Proceed S. 16 | Motion to Invoke Cloture on the Motion to Proceed to S.16 -- A bill to provide for a sequester replacement. | Cloture on the Motion to Proceed Rejected | 113-s-16 | S | 16 | 38 | 62 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00026.xml | |
| 113,senate,1,27 | 113 | senate | 1 | 27 | 2013-02-28 | On Cloture on the Motion to Proceed S. 388 | Motion to Invoke Cloture on the Motion to Proceed to S.388 -- A bill to appropriately limit sequestration, to eliminate tax loopholes, and for other purposes. | Cloture on the Motion to Proceed Rejected | 113-s-388 | S | 388 | 51 | 49 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00027.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);