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 = "Motion to Discharge Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, yea_count, nay_count, present_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,292 | 118 | senate | 2 | 292 | 2024-11-20 | On the Motion to Discharge S.J.Res. 111 | Motion to Discharge S. J. Res. 111 from the Committee on Foreign Relations -- A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Israel of certain defense articles and services. | Motion to Discharge Rejected | 118-sjres-111 | S.J.Res | 111 | 18 | 79 | 1 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00292.xml | |
| 118,senate,2,293 | 118 | senate | 2 | 293 | 2024-11-20 | On the Motion to Discharge S.J.Res. 113 | Motion to Discharge S. J. Res. 113 from the Committee on Foreign Relations -- A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Israel of certain defense articles and services. | Motion to Discharge Rejected | 118-sjres-113 | S.J.Res | 113 | 19 | 78 | 1 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00293.xml | |
| 118,senate,2,294 | 118 | senate | 2 | 294 | 2024-11-20 | On the Motion to Discharge S.J.Res. 115 | Motion to Discharge S. J. Res. 115 from the Committee on Foreign Relations -- A joint resolution providing for congressional disapproval of the proposed license amendment for the export of certain defense articles, defense services, and technical data to Israel. | Motion to Discharge Rejected | 118-sjres-115 | S.J.Res | 115 | 17 | 80 | 1 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00294.xml | |
| 118,senate,2,62 | 118 | senate | 2 | 62 | 2024-02-29 | On the Motion to Discharge S.J.Res. 60 | Motion to Discharge S.J.Res. 60 from the Committee on Foreign Relations -- A joint resolution providing for congressional disapproval of the proposed foreign military sale to the Government of Turkiye of certain defense articles and services. | Motion to Discharge Rejected | 118-sjres-60 | S.J.Res | 60 | 13 | 79 | 0 | 8 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00062.xml | |
| 118,senate,1,333 | 118 | senate | 1 | 333 | 2023-12-07 | On the Motion to Discharge S.J.Res. 51 | Motion to Discharge S.J.Res. 51 -- A joint resolution directing the removal of United States Armed Forces from hostilities in Syria that have not been authorized by Congress. | Motion to Discharge Rejected | 118-sjres-51 | S.J.Res | 51 | 13 | 84 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1181/vote_118_1_00333.xml | |
| 118,senate,1,270 | 118 | senate | 1 | 270 | 2023-10-26 | On the Motion to Discharge S.J.Res. 44 | Motion to Discharge S.J. Res. 44 -- A joint resolution directing the removal of United States Armed Forces from hostilities in the Republic of Niger that have not been authorized by Congress. | Motion to Discharge Rejected | 118-sjres-44 | S.J.Res | 44 | 11 | 86 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1181/vote_118_1_00270.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);