roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where congress = 116 and result = "Veto Sustained" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, yea_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,84 | 116 | senate | 2 | 84 | 2020-05-07 | On Overriding the Veto S.J.Res. 68 | Shall the Joint Resolution S.J. Res. 68 Pass, the Objections of the President of the United States to the Contrary Notwithstanding? -- A joint resolution to direct the removal of United States Armed Forces from hostilities against the Islamic Republic of Iran that have not been authorized by Congress. | Veto Sustained | 116-sjres-68 | S.J.Res | 68 | 49 | 44 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00084.xml | |
| 116,senate,1,325 | 116 | senate | 1 | 325 | 2019-10-17 | On Overriding the Veto S.J.Res. 54 | Shall the Joint Resolution S.J. Res. 54 pass, the Objections of the President of the United States to the contrary notwithstanding? -- A joint resolution relating to a national emergency declared by the President on February 15, 2019. | Veto Sustained | 116-sjres-54 | S.J.Res | 54 | 53 | 36 | 0 | 11 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00325.xml | |
| 116,senate,1,231 | 116 | senate | 1 | 231 | 2019-07-29 | On Overriding the Veto S.J.Res. 36 | Shall the Joint Resolution S.J. Res. 36 pass, the objections of the President of the United States to the contrary notwithstanding -- A joint resolution providing for congressional disapproval of the proposed transfer to the Kingdom of Saudi Arabia, the United Kingdom of Great Britain and Northern Ireland, the Kingdom of Spain, and the Italian Republic of certain defense articles and services. | Veto Sustained | 116-sjres-36 | S.J.Res | 36 | 45 | 40 | 0 | 15 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00231.xml | |
| 116,senate,1,232 | 116 | senate | 1 | 232 | 2019-07-29 | On Overriding the Veto S.J.Res. 37 | Shall the Joint Resolution S.J. Res. 37 pass, the objections of the President of the United States to the contrary notwithstanding -- A joint resolution providing for congressional disapproval of the proposed export to the United Arab Emirates, the United Kingdom of Great Britain and Northern Ireland, and the Republic of France of certain defense articles and services. | Veto Sustained | 116-sjres-37 | S.J.Res | 37 | 45 | 39 | 0 | 16 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00232.xml | |
| 116,senate,1,233 | 116 | senate | 1 | 233 | 2019-07-29 | On Overriding the Veto S.J.Res. 38 | Shall the joint resolution S.J. Res. 38 pass, the objections of the President of the United States to the contrary notwithstanding? -- A joint resolution providing for congressional disapproval of the proposed export to the Kingdom of Saudi Arabia and the United Kingdom of Great Britain and Northern Ireland of certain defense articles and services. | Veto Sustained | 116-sjres-38 | S.J.Res | 38 | 46 | 41 | 0 | 13 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00233.xml | |
| 116,senate,1,94 | 116 | senate | 1 | 94 | 2019-05-02 | On Overriding the Veto S.J.Res. 7 | Shall the Joint Resolution S.J. Res. 7 Pass, the Objections of the President of the United States Notwithstanding -- A joint resolution to direct the removal of United States Armed Forces from hostilities in the Republic of Yemen that have not been authorized by Congress. | Veto Sustained | 116-sjres-7 | S.J.Res | 7 | 53 | 45 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00094.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);