roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 115 and result = "Cloture on the Motion to Proceed Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 115,senate,2,140 | 115 | senate | 2 | 140 | 2018-06-25 | On Cloture on the Motion to Proceed H.R. 2 | Motion to Invoke Cloture on the Motion to Proceed to H.R. 2 -- A bill to provide for the reform and continuation of agricultural and other programs of the Department of Agriculture through fiscal year 2023, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 115-hr-2 | H.R | 2 | 89 | 3 | 0 | 8 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1152/vote_115_2_00140.xml | |
| 115,senate,2,129 | 115 | senate | 2 | 129 | 2018-06-18 | On Cloture on the Motion to Proceed H.R. 5895 | Motion to Invoke Cloture on the Motion to Proceed to H.R. 5895 -- A bill making appropriations for energy and water development and related agencies for the fiscal year ending September 30, 2019, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 115-hr-5895 | H.R | 5895 | 92 | 3 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1152/vote_115_2_00129.xml | |
| 115,senate,2,119 | 115 | senate | 2 | 119 | 2018-06-07 | On Cloture on the Motion to Proceed H.R. 5515 | Motion to Invoke Cloture on the Motion to Proceed to H.R. 5515 -- To authorize appropriations for fiscal year 2019 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 Agreed to | 115-hr-5515 | H.R | 5515 | 92 | 4 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1152/vote_115_2_00119.xml | |
| 115,senate,2,57 | 115 | senate | 2 | 57 | 2018-03-19 | On Cloture on the Motion to Proceed H.R. 1865 | Motion to Invoke Cloture on the Motion to Proceed to H.R. 1865 -- A bill to amend the Communications Act of 1934 to clarify that section 230 of such Act does not prohibit the enforcement against providers and users of interactive computer services of Federal and State criminal and civil law relating to sexual exploitation of children or sex trafficking, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 115-hr-1865 | H.R | 1865 | 94 | 2 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1152/vote_115_2_00057.xml | |
| 115,senate,2,32 | 115 | senate | 2 | 32 | 2018-02-12 | On Cloture on the Motion to Proceed H.R. 2579 | Motion to Invoke Cloture on the Motion to Proceed to the Consideration of H.R. 2579 -- A bill to amend the Internal Revenue Code of 1986 to allow the premium tax credit with respect to unsubsidized COBRA continuation coverage. | Cloture on the Motion to Proceed Agreed to | 115-hr-2579 | H.R | 2579 | 97 | 1 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1152/vote_115_2_00032.xml | |
| 115,senate,1,193 | 115 | senate | 1 | 193 | 2017-09-11 | On Cloture on the Motion to Proceed H.R. 2810 | Motion to Invoke Cloture on the Motion to Proceed to the Consideration of H.R. 2810 -- To authorize appropriations for fiscal year 2018 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 Agreed to | 115-hr-2810 | H.R | 2810 | 89 | 3 | 0 | 8 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1151/vote_115_1_00193.xml | |
| 115,senate,1,185 | 115 | senate | 1 | 185 | 2017-08-03 | On Cloture on the Motion to Proceed H.R. 2430 | Motion to Invoke Cloture: Re: Motion to Proceed to Consideration of H.R. 2430 -- A bill to amend the Federal Food, Drug, and Cosmetic Act to revise and extend the user-fee programs for prescription drugs, medical devices, generic drugs, and biosimilar biological products, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 115-hr-2430 | H.R | 2430 | 96 | 1 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1151/vote_115_1_00185.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);