roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where congress = 117 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, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 117,senate,2,349 | 117 | senate | 2 | 349 | 2022-09-27 | On Cloture on the Motion to Proceed H.R. 6833 | Motion to Invoke Cloture: Motion to Proceed to H.R. 6833 -- A bill to amend title XXVII of the Public Health Service Act, the Internal Revenue Code of 1986, and the Employee Retirement Income Security Act of 1974 to establish requirements with respect to cost-sharing for certain insulin products, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 117-hr-6833 | H.R | 6833 | 72 | 23 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1172/vote_117_2_00349.xml | |
| 117,senate,2,177 | 117 | senate | 2 | 177 | 2022-05-16 | On Cloture on the Motion to Proceed H.R. 7691 | Motion to Invoke Cloture: Motion to Proceed to H.R. 7691 -- A bill making emergency supplemental appropriations for assistance for the situation in Ukraine for the fiscal year ending September 30, 2022, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 117-hr-7691 | H.R | 7691 | 81 | 11 | 0 | 8 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1172/vote_117_2_00177.xml | |
| 117,senate,2,66 | 117 | senate | 2 | 66 | 2022-02-28 | On Cloture on the Motion to Proceed H.R. 3076 | Motion to Invoke Cloture: Motion to Proceed to H.R. 3076 -- A bill to provide stability to and enhance the services of the United States Postal Service, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 117-hr-3076 | H.R | 3076 | 74 | 20 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1172/vote_117_2_00066.xml | |
| 117,senate,1,472 | 117 | senate | 1 | 472 | 2021-11-17 | On Cloture on the Motion to Proceed H.R. 4350 | Motion to Invoke Cloture: Motion to Proceed to H.R. 4350 -- To authorize appropriations for fiscal year 2022 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 | 117-hr-4350 | H.R | 4350 | 84 | 15 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1171/vote_117_1_00472.xml | |
| 117,senate,1,285 | 117 | senate | 1 | 285 | 2021-07-28 | On Cloture on the Motion to Proceed H.R. 3684 | Upon Reconsideration, Motion to Invoke Cloture on the Motion to Proceed to H.R. 3684 -- A bill to authorize funds for Federal-aid highways, highway safety programs, and transit programs, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 117-hr-3684 | H.R | 3684 | 67 | 32 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1171/vote_117_1_00285.xml | |
| 117,senate,1,192 | 117 | senate | 1 | 192 | 2021-05-17 | On Cloture on the Motion to Proceed S. 1260 | Motion to Invoke Cloture on the Motion to Proceed to S. 1260 -- A bill to establish a new Directorate for Technology and Innovation in the National Science Foundation, to establish a regional technology hub program, to require a strategy and report on economic security, science, research, innovation, manufacturing, and job creation, to establish a critical supply chain resiliency program, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 117-s-1260 | S | 1260 | 86 | 11 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1171/vote_117_1_00192.xml | |
| 117,senate,1,172 | 117 | senate | 1 | 172 | 2021-04-27 | On Cloture on the Motion to Proceed S. 914 | Motion to Invoke Cloture: Motion to Proceed to S. 914 -- A bill to amend the Safe Drinking Water Act and the Federal Water Pollution Control Act to reauthorize programs under those Acts, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 117-s-914 | S | 914 | 92 | 2 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1171/vote_117_1_00172.xml | |
| 117,senate,1,151 | 117 | senate | 1 | 151 | 2021-04-14 | On Cloture on the Motion to Proceed S. 937 | Motion to Invoke Cloture Re: Motion to Proceed to S. 937 -- A bill to facilitate the expedited review of COVID-19 hate crimes, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 117-s-937 | S | 937 | 92 | 6 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1171/vote_117_1_00151.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);