roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where chamber = "senate", congress = 113 and result = "Motion to Reconsider Agreed to" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 113,senate,2,5 | 113 | senate | 2 | 5 | 2014-01-09 | On the Motion to Reconsider PN529 | Motion to Reconsider the Motion to Invoke Cloture on the Nomination of Robert Wilkins, to be U.S. Circuit Judge -- Robert Leon Wilkins, of the District of Columbia, to be United States Circuit Judge for the District of Columbia Circuit | Motion to Reconsider Agreed to | 113-pn-529 | PN | 529 | 54 | 40 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00005.xml | |
| 113,senate,1,249 | 113 | senate | 1 | 249 | 2013-12-10 | On the Motion to Reconsider PN408 | Motion to Reconsider the Motion to Invoke Cloture on the Nomination of Melvin L. Watt to be Director of the Federal Housing Finance Agency -- Melvin L. Watt, of North Carolina, to be Director of the Federal Housing Finance Agency for a term of five years | Motion to Reconsider Agreed to | 113-pn-408 | PN | 408 | 54 | 42 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00249.xml | |
| 113,senate,1,254 | 113 | senate | 1 | 254 | 2013-12-10 | On the Motion to Reconsider PN528 | Motion to Reconsider the Motion to Invoke Cloture on the Nomination of Cornelia Pillard to be U.S. Circuit Judge -- Cornelia T. L. Pillard, of the District of Columbia, to be United States Circuit Judge for the District of Columbia Circuit | Motion to Reconsider Agreed to | 113-pn-528 | PN | 528 | 54 | 44 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00254.xml | |
| 113,senate,1,241 | 113 | senate | 1 | 241 | 2013-11-21 | On the Motion to Reconsider PN527 | Motion to Reconsider the Motion to Invoke Cloture on the Nomination of Patricia Ann Millett -- Patricia Ann Millett, of Virginia, to be United States Circuit Judge for the District of Columbia Circuit | Motion to Reconsider Agreed to | 113-pn-527 | PN | 527 | 57 | 43 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00241.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);