roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where congress = 118 and result = "Veto Sustained" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, yea_count, nay_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,61 | 118 | senate | 2 | 61 | 2024-02-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 under chapter 8 of title 5, United States Code, of the rule submitted by the Federal Highway Administration relating to "Waiver of Buy America Requirements for Electric Vehicle Chargers". | Veto Sustained | 118-sjres-38 | S.J.Res | 38 | 50 | 47 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00061.xml | |
| 118,senate,2,5 | 118 | senate | 2 | 5 | 2024-01-10 | On Overriding the Veto S.J.Res. 32 | Shall the Joint Resolution (S.J. Res. 32) Pass, the Objections of the President of the United States to the Contrary Notwithstanding? -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Bureau of Consumer Financial Protection relating to "Small Business Lending Under the Equal Credit Opportunity Act (Regulation B)". | Veto Sustained | 118-sjres-32 | S.J.Res | 32 | 54 | 45 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00005.xml | |
| 118,senate,1,242 | 118 | senate | 1 | 242 | 2023-09-28 | On Overriding the Veto S.J.Res. 9 | Shall the Joint Resolution S.J.Res.9 Pass, the Objections of the President of the United States to the Contrary Notwithstanding -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to "Endangered and Threatened Wildlife and Plants; Lesser Prairie-Chicken; Threatened Status with Section 4(d) Rule for the Northern Distinct Population Segment and Endangered Status for the Southern Distinct Population Segment". | Veto Sustained | 118-sjres-9 | S.J.Res | 9 | 47 | 46 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1181/vote_118_1_00242.xml | |
| 118,senate,1,243 | 118 | senate | 1 | 243 | 2023-09-28 | On Overriding the Veto S.J.Res. 24 | Shall the Joint Resolution S.J.Res.24 Pass, the Objections of the President of the United States to the Contrary Notwithstanding -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the United States Fish and Wildlife Service relating to "Endangered and Threatened Wildlife and Plants; Endangered Species Status for Northern Long-Eared Bat". | Veto Sustained | 118-sjres-24 | S.J.Res | 24 | 47 | 45 | 0 | 8 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1181/vote_118_1_00243.xml | |
| 118,senate,1,167 | 118 | senate | 1 | 167 | 2023-06-21 | On Overriding the Veto S.J.Res. 11 | Shall the Joint Resolution Pass, the Objections of the President of the United States to the Contrary Notwithstanding? -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Environmental Protection Agency relating to "Control of Air Pollution From New Motor Vehicles: Heavy-Duty Engine and Vehicle Standards". | Veto Sustained | 118-sjres-11 | S.J.Res | 11 | 50 | 50 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1181/vote_118_1_00167.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);