roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where congress = 112 and result = "Motion to Proceed Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, yea_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112,senate,2,205 | 112 | senate | 2 | 205 | 2012-11-27 | On the Motion to Proceed Treaty Doc. 112-7 | Motion to Proceed to Executive Session to Consider Treaty Doc. 112-7 -- The Convention on the Rights of Persons with Disabilities, adopted by the United Nations General Assembly on December 13, 2006, and signed by the United States of America on June 30, 2009 (the "Convention") | Motion to Proceed Agreed to | 7-treatydoc-112 | Treaty Doc | 112-7 | 61 | 36 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00205.xml | |
| 112,senate,2,201 | 112 | senate | 2 | 201 | 2012-11-13 | On the Motion to Proceed S. 3525 | Motion to Proceed to S.3525 -- A bill to protect and enhance opportunities for recreational hunting, fishing, and shooting, and for other purposes. | Motion to Proceed Agreed to | 112-s-3525 | S | 3525 | 92 | 5 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00201.xml | |
| 112,senate,2,195 | 112 | senate | 2 | 195 | 2012-09-20 | On the Motion to Proceed H.J.Res. 117 | Motion to Proceed to H.J. Res. 117 -- A joint resolution making continuing appropriations for fiscal year 2013, and for other purposes. | Motion to Proceed Agreed to | 112-hjres-117 | H.J.Res | 117 | 67 | 31 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00195.xml | |
| 112,senate,2,192 | 112 | senate | 2 | 192 | 2012-09-12 | On the Motion to Proceed S. 3457 | Motion to Proceed to Consider S.3457 -- A bill to require the Secretary of Veterans Affairs to establish a veterans jobs corps, and for other purposes. | Motion to Proceed Agreed to | 112-s-3457 | S | 3457 | 84 | 8 | 0 | 8 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00192.xml | |
| 112,senate,1,107 | 112 | senate | 1 | 107 | 2011-07-11 | On the Motion to Proceed S. 1323 | Motion to Proceed to Consider S. 1323 -- A bill to express the sense of the Senate on shared sacrifice in resolving the budget deficit. | Motion to Proceed Agreed to | 112-s-1323 | S | 1323 | 69 | 27 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00107.xml | |
| 112,senate,1,40 | 112 | senate | 1 | 40 | 2011-03-14 | On the Motion to Proceed S. 493 | Motion to Invoke Cloture on the Motion to Proceed to S. 493 -- A bill to reauthorize and improve the SBIR and STTR programs, and for other purposes. | Motion to Proceed Agreed to | 112-s-493 | S | 493 | 84 | 12 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00040.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);