roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where result = "McCarthy" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: date, 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,house,1,20 | 118 | house | 1 | 20 | 2023-01-07 | Election of the Speaker | Yea-and-Nay | Yea-and-Nay | McCarthy | 0 | 0 | 6 | 0 | https://clerk.house.gov/evs/2023/roll020.xml | |||
| 118,house,1,15 | 118 | house | 1 | 15 | 2023-01-06 | Election of the Speaker | Yea-and-Nay | Yea-and-Nay | McCarthy | 0 | 0 | 0 | 3 | https://clerk.house.gov/evs/2023/roll015.xml | |||
| 118,house,1,16 | 118 | house | 1 | 16 | 2023-01-06 | Election of the Speaker | Yea-and-Nay | Yea-and-Nay | McCarthy | 0 | 0 | 0 | 2 | https://clerk.house.gov/evs/2023/roll016.xml | |||
| 118,house,1,18 | 118 | house | 1 | 18 | 2023-01-06 | Election of the Speaker | Yea-and-Nay | Yea-and-Nay | McCarthy | 0 | 0 | 2 | 0 | https://clerk.house.gov/evs/2023/roll018.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);