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 = "Motion Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, yea_count, nay_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,252 | 113 | senate | 2 | 252 | 2014-07-31 | On the Motion (Motion to Waive All Applicable Budgetary Discipline Re: S.2648) | Motion to Waive All Applicable Budgetary Discipline Re: S.2648 -- A bill making emergency supplemental appropriations for the fiscal year ending September 30, 2014, and for other purposes. | Motion Rejected | 113-s-2648 | S | 2648 | 50 | 44 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00252.xml | |
| 113,senate,2,229 | 113 | senate | 2 | 229 | 2014-07-17 | On the Motion (Motion to Waive All Applicable Budgetary Discipline re: Coburn Amdt. No. 3549) | Motion to Waive All Applicable Budgetary Discipline re: Coburn Amdt. No. 3549 -- To allow the Secretary to extend the deadline for collecting terrorism loss risk-spreading premiums if the mandatory recoupment is more than $1,000,000,000. | Motion Rejected | 48 | 49 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00229.xml | ||||
| 113,senate,2,46 | 113 | senate | 2 | 46 | 2014-02-27 | On the Motion (Motion to Waive All Applicable Budgetary Discipline Re: S.1982) | Motion to Waive All Applicable Budgetary Discipline Re: S.1982 -- A bill to improve the provision of medical services and benefits to veterans, and for other purposes. | Motion Rejected | 113-s-1982 | S | 1982 | 56 | 41 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00046.xml | |
| 113,senate,1,87 | 113 | senate | 1 | 87 | 2013-03-23 | On the Motion (Motion to Waive CBA Re: Lee Amdt. No. 673) | Motion to Waive CBA Re: Lee Amdt. No. 673 -- To create a point of order against legislation that would further restrict the right of law-abiding Americans to own a firearm. | Motion Rejected | 50 | 49 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00087.xml | ||||
| 113,senate,1,59 | 113 | senate | 1 | 59 | 2013-03-22 | On the Motion (Motion to Waive CBA Re: Blunt Amdt. No. 261) | Motion to Waive CBA Re: Blunt Amdt. No. 261 -- To create a point of order against legislation that would create a Federal tax or fee on carbon emissions. | Motion Rejected | 53 | 46 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00059.xml | ||||
| 113,senate,1,64 | 113 | senate | 1 | 64 | 2013-03-22 | On the Motion (Motion to Waive CBA Re: Rubio Amdt. No. 292) | Motion to Waive CBA Re: Rubio Amdt. No. 292 -- To express the sense of the Senate to enact Child Interstate Abortion Notification Act. | Motion Rejected | 48 | 51 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00064.xml | ||||
| 113,senate,1,68 | 113 | senate | 1 | 68 | 2013-03-22 | On the Motion (Motion to Waive CBA Re: Burr Amdt. No. 697) | Motion to Waive CBA Re: Burr Amdt. No. 697 -- To create a point of order against legislation that would raise taxes on veterans, and for other purposes. | Motion Rejected | 45 | 54 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00068.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);