roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where congress = 114 and result = "Motion to Table Failed" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 114,senate,2,122 | 114 | senate | 2 | 122 | 2016-07-07 | On the Motion to Table S.Amdt. 4936 to S.Amdt. 4935 to S. 764 (Defund Planned Parenthood Act of 2015) | Motion to Table McConnell Amdt. No. 4936 -- To change the enactment date. | Motion to Table Failed | 31 | 62 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00122.xml | ||||
| 114,senate,2,114 | 114 | senate | 2 | 114 | 2016-06-29 | On the Motion to Table S. 2328 | Motion to Table the Motion to Concur in the House Amendment with Amendment No. 4865 to S. 2328 -- A bill to reauthorize and amend the National Sea Grant College Program Act, and for other purposes. | Motion to Table Failed | 114-s-2328 | S | 2328 | 44 | 54 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00114.xml | |
| 114,senate,2,109 | 114 | senate | 2 | 109 | 2016-06-23 | On the Motion to Table H.R. 2578 | Motion to Table the Motion to Commit H.R. 2578 with Instructions (Amdt. No. 4858) -- A bill making appropriations for the Departments of Commerce and Justice, Science, and Related Agencies for the fiscal year ending September 30, 2016, and for other purposes. | Motion to Table Failed | 114-hr-2578 | H.R | 2578 | 46 | 52 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00109.xml | |
| 114,senate,1,337 | 114 | senate | 1 | 337 | 2015-12-18 | On the Motion to Table H.R. 2029 | Motion to Table the First House Amendment to the Senate Amendment to H.R. 2029 -- A bill making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2016, and for other purposes. | Motion to Table Failed | 114-hr-2029 | H.R | 2029 | 31 | 67 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00337.xml | |
| 114,senate,1,206 | 114 | senate | 1 | 206 | 2015-06-10 | On the Motion to Table S.Amdt. 1986 to H.R. 1735 (Military Construction Authorization Act for Fiscal Year 2016) | Motion to Table Kirk Amdt. No. 1986 -- To reauthorize and reform the Export-Import Bank of the United States. | Motion to Table Failed | 31 | 65 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00206.xml | ||||
| 114,senate,1,60 | 114 | senate | 1 | 60 | 2015-02-27 | On the Motion to Table S.Amdt. 258 to S.Amdt. 257 to H.R. 240 (Department of Homeland Security Appropriations Act, 2015) | Motion to Table Amdt. No. 258 -- Of a perfecting nature. | Motion to Table Failed | 34 | 65 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00060.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);