roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where chamber = "senate" and result = "Motion to Adjourn Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, legislation_type, legislation_number, 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,1,272 | 119 | senate | 1 | 272 | 2025-05-21 | On the Motion to Adjourn S.J.Res. 55 | Motion to Adjourn -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Highway Traffic Safety Administration relating to "Federal Motor Vehicle Safety Standards; Fuel System Integrity of Hydrogen Vehicles; Compressed Hydrogen Storage System Integrity; Incorporation by Reference". | Motion to Adjourn Rejected | 119-sjres-55 | S.J.Res | 55 | 46 | 51 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1191/vote_119_1_00272.xml | |
| 118,senate,2,130 | 118 | senate | 2 | 130 | 2024-04-17 | On the Motion to Adjourn (Motion to Adjourn the Court of Impeachment until April 30, 2024 until 12:00 Noon) | Motion to Adjourn the Court of Impeachment until April 30, 2024 until 12:00 Noon | Motion to Adjourn Rejected | 49 | 51 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00130.xml | ||||
| 118,senate,2,134 | 118 | senate | 2 | 134 | 2024-04-17 | On the Motion to Adjourn (Motion to Adjourn the Court of Impeachment Until April 30, 2024 at 12:00 Noon) | Motion to Adjourn the Court of Impeachment Until April 30, 2024 at 12:00 Noon | Motion to Adjourn Rejected | 49 | 51 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00134.xml | ||||
| 118,senate,2,135 | 118 | senate | 2 | 135 | 2024-04-17 | On the Motion to Adjourn (Motion to Adjourn the Court of Impeachment until 12 Noon May 1, 2024) | Motion to Adjourn the Court of Impeachment until 12 Noon May 1, 2024 | Motion to Adjourn Rejected | 49 | 51 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00135.xml | ||||
| 118,senate,2,136 | 118 | senate | 2 | 136 | 2024-04-17 | On the Motion to Adjourn (Motion to Adjourn the Court of Impeachment Until Nov. 6, 2024 at 7:00 a.m.) | Motion to Adjourn the Court of Impeachment Until Nov. 6, 2024 at 7:00 a.m. | Motion to Adjourn Rejected | 49 | 51 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00136.xml | ||||
| 117,senate,1,75 | 117 | senate | 1 | 75 | 2021-03-05 | On the Motion to Adjourn H.R. 1319 | Motion to Adjourn Until 10:00 A.M. Tomorrow -- A bill to provide for reconciliation pursuant to title II of S. Con. Res. 5. | Motion to Adjourn Rejected | 117-hr-1319 | H.R | 1319 | 49 | 50 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1171/vote_117_1_00075.xml | |
| 115,senate,1,293 | 115 | senate | 1 | 293 | 2017-12-01 | On the Motion to Adjourn H.R. 1 | Schumer Motion to Adjourn Until Noon Monday -- To provide for reconciliation pursuant to titles II and V of the concurrent resolution on the budget for fiscal year 2018. | Motion to Adjourn Rejected | 115-hr-1 | H.R | 1 | 48 | 52 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1151/vote_115_1_00293.xml | |
| 115,senate,1,108 | 115 | senate | 1 | 108 | 2017-04-06 | On the Motion to Adjourn PN55 | Schumer Motion to Adjourn Until 5:00 P.M. -- Neil M. Gorsuch, of Colorado, to be an Associate Justice of the Supreme Court of the United States | Motion to Adjourn Rejected | 115-pn-55 | PN | 55 | 48 | 52 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1151/vote_115_1_00108.xml | |
| 113,senate,1,240 | 113 | senate | 1 | 240 | 2013-11-21 | On the Motion to Adjourn PN527 | McConnell Motion to Adjourn until 5 p.m. -- Patricia Ann Millett, of Virginia, to be United States Circuit Judge for the District of Columbia Circuit | Motion to Adjourn Rejected | 113-pn-527 | PN | 527 | 46 | 54 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00240.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);