roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 119 and result = "Motion to Proceed Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 119,senate,2,35 | 119 | senate | 2 | 35 | 2026-02-10 | On the Motion to Proceed S.J.Res. 95 | Motion to Proceed to S. J. Res. 95 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Internal Revenue Service relating to "Interim Guidance Simplifying Application of the Corporate Alternative Minimum Tax to Partnerships". | Motion to Proceed Rejected | 119-sjres-95 | S.J.Res | 95 | 47 | 51 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1192/vote_119_2_00035.xml | |
| 119,senate,2,8 | 119 | senate | 2 | 8 | 2026-01-13 | On the Motion to Proceed S.J.Res. 84 | Motion to Proceed to S.J. Res. 84 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Centers for Medicare & Medicaid Services relating to "Patient Protection and Affordable Care Act; Market Integrity and Affordability". | Motion to Proceed Rejected | 119-sjres-84 | S.J.Res | 84 | 47 | 52 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1192/vote_119_2_00008.xml | |
| 119,senate,2,4 | 119 | senate | 2 | 4 | 2026-01-07 | On the Motion to Proceed S.J.Res. 86 | Motion to Proceed to S.J.Res. 86 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to "Air Plan Approval; South Dakota; Regional Haze Plan for the Second Implementation Period". | Motion to Proceed Rejected | 119-sjres-86 | S.J.Res | 86 | 43 | 50 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1192/vote_119_2_00004.xml | |
| 119,senate,1,622 | 119 | senate | 1 | 622 | 2025-11-19 | On the Motion to Proceed S.J.Res. 76 | Motion to Proceed to S.J.Res. 76 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to "Extension of Deadlines in Standards of Performance for New, Reconstructed, and Modified Sources and Emissions Guidelines for Existing Sources: Oil and Natural Gas Sector Climate Review Final Rule". | Motion to Proceed Rejected | 119-sjres-76 | S.J.Res | 76 | 46 | 51 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00622.xml | |
| 119,senate,1,597 | 119 | senate | 1 | 597 | 2025-10-29 | On the Motion to Proceed S.J.Res. 69 | Motion to Proceed to S.J.Res. 69 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to "Record of Decision for the Barred Owl Management Strategy; Washington, Oregon, and California". | Motion to Proceed Rejected | 119-sjres-69 | S.J.Res | 69 | 25 | 72 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00597.xml | |
| 119,senate,1,520 | 119 | senate | 1 | 520 | 2025-09-16 | On the Motion to Proceed S.J.Res. 60 | Motion to Proceed to S. J. Res. 60 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to "Emissions Budget and Allowance Allocations for Indiana Under the Revised Cross-State Air Pollution Rule Update". | Motion to Proceed Rejected | 119-sjres-60 | S.J.Res | 60 | 47 | 51 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00520.xml | |
| 119,senate,1,521 | 119 | senate | 1 | 521 | 2025-09-16 | On the Motion to Proceed S.Con.Res. 22 | Motion to Proceed to S. Con. Res. 22 -- A concurrent resolution setting forth the congressional budget for the United States Government for fiscal year 2026 and setting forth the appropriate budgetary levels for fiscal years 2027 through 2035. | Motion to Proceed Rejected | 119-sconres-22 | S.Con.Res | 22 | 36 | 62 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00521.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);