roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where chamber = "senate", congress = 109 and result = "Motion to Proceed Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 109,senate,2,26 | 109 | senate | 2 | 26 | 2006-03-01 | On the Motion to Proceed H.R. 3199 | Motion to Proceed to Consider the Motion to Reconsider the Vote by which the Motion to Invoke Cloture on the Conference Report to Accompany H.R. 3199 was Not Agreed To (RCV 358). -- A bill to extend and modify authorities needed to combat terrorism, and for other purposes. | Motion to Proceed Agreed to | 109-hr-3199 | H.R | 3199 | 86 | 13 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1092/vote_109_2_00026.xml | |
| 109,senate,1,359 | 109 | senate | 1 | 359 | 2005-12-19 | On the Motion to Proceed H.R. 2863 | Motion to Proceed to the Conference Report to Accompany H.R. 2863 -- A bill making appropriations for the Department of Defense for the fiscal year ending September 30, 2006, and for other purposes. | Motion to Proceed Agreed to | 109-hr-2863 | H.R | 2863 | 94 | 1 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00359.xml | |
| 109,senate,1,360 | 109 | senate | 1 | 360 | 2005-12-19 | On the Motion to Proceed H.R. 1815 | Motion to Proceed to Conference Report to Accompany H.R. 1815 -- To authorize appropriations for fiscal year 2006 for military activities of the Department of Defense, for military construction, and for defense activities of the Department of Energy, to prescribe military personnel strengths for such fiscal year. | Motion to Proceed Agreed to | 109-hr-1815 | H.R | 1815 | 95 | 0 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00360.xml | |
| 109,senate,1,361 | 109 | senate | 1 | 361 | 2005-12-19 | On the Motion to Proceed S. 1932 | Motion to Proceed to Conference Report to Accompany S. 1932 -- An original bill to provide for reconciliation pursuant to section 202(a) of the concurrent resolution on the budget for fiscal year 2006 (H. Con. Res. 95). | Motion to Proceed Agreed to | 109-s-1932 | S | 1932 | 86 | 9 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00361.xml | |
| 109,senate,1,169 | 109 | senate | 1 | 169 | 2005-06-29 | On the Motion to Proceed S. 1307 | Motion To Proceed To Consider S. 1307 -- A bill to implement the Dominican Republic-Central America-United States Free Trade Agreement. | Motion to Proceed Agreed to | 109-s-1307 | S | 1307 | 61 | 34 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00169.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);