roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where congress = 116 and result = "Motion to Discharge Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 116,senate,2,261 | 116 | senate | 2 | 261 | 2020-12-09 | On the Motion to Discharge S.J.Res. 77 | Motion to Discharge S.J. Res. 77 -- A joint resolution providing for congressional disapproval of the proposed foreign military sale to the United Arab Emirates of certain defense articles and services. | Motion to Discharge Rejected | 116-sjres-77 | S.J.Res | 77 | 46 | 50 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00261.xml | |
| 116,senate,2,262 | 116 | senate | 2 | 262 | 2020-12-09 | On the Motion to Discharge S.J.Res. 78 | Motion to Discharge S.J. Res. 78 -- A joint resolution providing for congressional disapproval of the proposed foreign military sale to the United Arab Emirates of certain defense articles and services. | Motion to Discharge Rejected | 116-sjres-78 | S.J.Res | 78 | 47 | 49 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00262.xml | |
| 116,senate,1,161 | 116 | senate | 1 | 161 | 2019-06-13 | On the Motion to Discharge S.J.Res. 20 | Motion to Discharge S.J.Res. 20 -- A joint resolution relating to the disapproval of the proposed sale to the Government of Bahrain of certain defense articles and services. | Motion to Discharge Rejected | 116-sjres-20 | S.J.Res | 20 | 43 | 56 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00161.xml | |
| 116,senate,1,162 | 116 | senate | 1 | 162 | 2019-06-13 | On the Motion to Discharge S.J.Res. 26 | Motion to Discharge S.J.Res. 26 -- A joint resolution relating to the disapproval of the proposed sale to the Government of Qatar of certain defense articles and services. | Motion to Discharge Rejected | 116-sjres-26 | S.J.Res | 26 | 42 | 57 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00162.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);