roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where result = "Veto Overridden" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 116,senate,2,292 | 116 | senate | 2 | 292 | 2021-01-01 | On Overriding the Veto H.R. 6395 | Shall the Bill H.R. 6395 Pass, the Objections of the President of the United States to the Contrary Notwithstanding? -- To authorize appropriations for fiscal year 2021 for military activities of the Department of Defense, for military construction, and for defense activities of the Department of Energy, to prescribe military personnel strengths for such fiscal year, and for other purposes. | Veto Overridden | 116-hr-6395 | H.R | 6395 | 81 | 13 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00292.xml | |
| 114,senate,2,148 | 114 | senate | 2 | 148 | 2016-09-28 | On Overriding the Veto S. 2040 | Shall the Bill S. 2040 Pass, the Objections of the President of the United States to the Contrary Notwithstanding? -- A bill to deter terrorism, provide justice for victims, and for other purposes. | Veto Overridden | 114-s-2040 | S | 2040 | 97 | 1 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00148.xml | |
| 110,senate,2,177 | 110 | senate | 2 | 177 | 2008-07-15 | On Overriding the Veto H.R. 6331 | Shall H.R. 6331 Pass, the objections of the President of the United States to the contrary notwithstanding? -- A bill to amend titles XVIII and XIX of the Social Security Act to extend expiring provisions under the Medicare Program, to improve beneficiary access to preventive and mental health services, to enhance low-income benefit programs, and to maintain access to care in rural areas, including pharmacy access, and for other purposes. | Veto Overridden | 110-hr-6331 | H.R | 6331 | 70 | 26 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1102/vote_110_2_00177.xml | |
| 110,senate,2,151 | 110 | senate | 2 | 151 | 2008-06-18 | On Overriding the Veto H.R. 6124 | Upon Reconsideration Shall H.R. 6124 Pass, the Objections of the President to the Contrary Notwithstanding? -- A bill to provide for the continuation of agricultural and other programs of the Department of Agriculture through fiscal year 2012, and for other purposes. | Veto Overridden | 110-hr-6124 | H.R | 6124 | 80 | 14 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1102/vote_110_2_00151.xml | |
| 110,senate,2,140 | 110 | senate | 2 | 140 | 2008-05-22 | On Overriding the Veto H.R. 2419 | Upon Reconsideration Shall the Bill H.R. 2419 Pass, the Objections of the President of the United States to the Contrary Not Withstanding? -- A bill to provide for the continuation of agricultural programs through fiscal year 2012, and for other purposes. | Veto Overridden | 110-hr-2419 | H.R | 2419 | 82 | 13 | 1 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1102/vote_110_2_00140.xml | |
| 110,senate,1,406 | 110 | senate | 1 | 406 | 2007-11-08 | On Overriding the Veto H.R. 1495 | Shall H.R. 1495 Pass, the Objections of the President of the United States to the Contrary Notwithstanding? -- A bill to provide for the conservation and development of water and related resources, to authorize the Secretary of the Army to construct various projects for improvements to rivers and harbors of the United States, and for other purposes. | Veto Overridden | 110-hr-1495 | H.R | 1495 | 79 | 14 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1101/vote_110_1_00406.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);