roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where congress = 118 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 118,senate,2,326 | 118 | senate | 2 | 326 | 2024-12-18 | On Cloture on the Motion to Proceed H.R. 82 | Motion to Invoke Cloture: Motion to Proceed to H.R. 82 -- A bill to amend title II of the Social Security Act to repeal the Government pension offset and windfall elimination provisions. | Cloture on the Motion to Proceed Agreed to | 118-hr-82 | H.R | 82 | 73 | 27 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00326.xml | |
| 118,senate,2,157 | 118 | senate | 2 | 157 | 2024-05-01 | On Cloture on the Motion to Proceed H.R. 3935 | Motion to Invoke Cloture: Motion to Proceed to H.R. 3935 -- A bill to amend title 49, United States Code, to reauthorize and improve the Federal Aviation Administration and other civil aviation programs, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 118-hr-3935 | H.R | 3935 | 89 | 10 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00157.xml | |
| 118,senate,2,41 | 118 | senate | 2 | 41 | 2024-02-08 | On Cloture on the Motion to Proceed H.R. 815 | Upon Reconsideration, Motion to Invoke Cloture on the Motion to Proceed to H.R. 815 -- A bill to amend title 38, United States Code, to make certain improvements relating to the eligibility of veterans to receive reimbursement for emergency treatment furnished through the Veterans Community Care program, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 118-hr-815 | H.R | 815 | 67 | 32 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00041.xml | |
| 118,senate,2,9 | 118 | senate | 2 | 9 | 2024-01-16 | On Cloture on the Motion to Proceed H.R. 2872 | Motion to Invoke Cloture: Motion to Proceed to H.R. 2872 -- To amend the Permanent Electronic Duck Stamp Act of 2013 to allow the Secretary of the Interior to issue electronic stamps under such Act, and for other purposes. | Cloture on the Motion to Proceed Agreed to | 118-hr-2872 | H.R | 2872 | 68 | 13 | 0 | 19 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00009.xml | |
| 118,senate,1,78 | 118 | senate | 1 | 78 | 2023-03-29 | On Cloture on the Motion to Proceed S. 870 | Motion to Invoke Cloture: Motion to Proceed to S. 870 -- A bill to amend the Federal Fire Prevention and Control Act of 1974 to authorize appropriations for the United States Fire Administration and firefighter assistance grant programs. | Cloture on the Motion to Proceed Agreed to | 118-s-870 | S | 870 | 96 | 0 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1181/vote_118_1_00078.xml | |
| 118,senate,1,61 | 118 | senate | 1 | 61 | 2023-03-16 | On Cloture on the Motion to Proceed S. 316 | Motion to Invoke Cloture: Motion to Proceed to S. 316 -- A bill to repeal the authorizations for use of military force against Iraq. | Cloture on the Motion to Proceed Agreed to | 118-s-316 | S | 316 | 68 | 27 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1181/vote_118_1_00061.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);