roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 116 and result = "Cloture on the Motion to Proceed Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 116,senate,2,127 | 116 | senate | 2 | 127 | 2020-06-25 | On Cloture on the Motion to Proceed S. 4049 | Motion to Invoke Cloture: Motion to Proceed to S. 4049 -- An original bill to authorize appropriations for fiscal year 2021 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 | 116-s-4049 | S | 4049 | 90 | 7 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00127.xml | |
| 116,senate,2,114 | 116 | senate | 2 | 114 | 2020-06-08 | On Cloture on the Motion to Proceed H.R. 1957 | Motion to Invoke Cloture: Motion to Proceed to H.R. 1957 -- A bill to amend the Internal Revenue Code of 1986 to modernize and improve the Internal Revenue Service, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 116-hr-1957 | H.R | 1957 | 80 | 17 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00114.xml | |
| 116,senate,2,63 | 116 | senate | 2 | 63 | 2020-03-02 | On Cloture on the Motion to Proceed S. 2657 | Motion to Invoke Cloture: Motion to Proceed to S. 2657 -- A bill to support innovation in advanced geothermal research and development, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 116-s-2657 | S | 2657 | 84 | 3 | 0 | 13 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00063.xml | |
| 116,senate,1,330 | 116 | senate | 1 | 330 | 2019-10-22 | On Cloture on the Motion to Proceed H.R. 3055 | Motion to Invoke Cloture: Motion to Proceed to H.R. 3055 -- A bill making appropriations for the Departments of Commerce and Justice, Science, and Related Agencies for the fiscal year ending September 30, 2020, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 116-hr-3055 | H.R | 3055 | 92 | 2 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00330.xml | |
| 116,senate,1,176 | 116 | senate | 1 | 176 | 2019-06-19 | On Cloture on the Motion to Proceed S. 1790 | Motion to Invoke Cloture: Motion to Proceed to S. 1790 -- An original bill to authorize appropriations for fiscal year 2020 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 | 116-s-1790 | S | 1790 | 89 | 10 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00176.xml | |
| 116,senate,1,17 | 116 | senate | 1 | 17 | 2019-02-05 | On Cloture on the Motion to Proceed S. 47 | Motion to Invoke Cloture on the Motion to Proceed to S. 47 -- A bill to provide for the management of the natural resources of the United States, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 116-s-47 | S | 47 | 99 | 1 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00017.xml | |
| 116,senate,1,11 | 116 | senate | 1 | 11 | 2019-01-28 | On Cloture on the Motion to Proceed S. 1 | Upon Reconsideration, Motion to Invoke Cloture on the Motion to Proceed to S. 1 -- A bill to make improvements to certain defense and security assistance provisions and to authorize the appropriation of funds to Israel, to reauthorize the United States-Jordan Defense Cooperation Act of 2015, and to halt the wholesale slaughter of the Syrian people, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 116-s-1 | S | 1 | 74 | 19 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00011.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);