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 for Attendance Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, question, description, 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,107 | 113 | senate | 2 | 107 | 2014-04-10 | On the Motion for Attendance PN1182 | Motion to Instruct the Sgt. at Arms -- Michelle T. Friedland, of California, to be United States Circuit Judge for the Ninth Circuit | Motion for Attendance Agreed to | 113-pn-1182 | PN | 1182 | 55 | 37 | 0 | 8 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00107.xml | |
| 113,senate,1,215 | 113 | senate | 1 | 215 | 2013-10-09 | On the Motion for Attendance (Motion to Instruct the Sgt. at Arms) | Motion to Instruct the Sgt. at Arms | Motion for Attendance Agreed to | 78 | 18 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00215.xml | ||||
| 113,senate,1,214 | 113 | senate | 1 | 214 | 2013-10-08 | On the Motion for Attendance (Motion to Instruct the Sgt. at Arms) | Motion to Instruct the Sgt. at Arms | Motion for Attendance Agreed to | 84 | 14 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00214.xml | ||||
| 113,senate,1,172 | 113 | senate | 1 | 172 | 2013-07-15 | On the Motion for Attendance S. 1238 | Motion to Instruct the Sergeant at Arms -- A bill to amend the Higher Education Act of 1965 to extend the current reduced interest rate for undergraduate Federal Direct Stafford Loans for 1 year, to modify required distribution rules for pension plans, and for other purposes. | Motion for Attendance Agreed to | 113-s-1238 | S | 1238 | 69 | 28 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1131/vote_113_1_00172.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);