roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where congress = 110 and result = "Cloture on the Motion to Proceed Rejected" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 110,senate,2,195 | 110 | senate | 2 | 195 | 2008-07-31 | On Cloture on the Motion to Proceed S. 3001 | Motion to Invoke Cloture on the Motion to Proceed to Consider S. 3001 -- An original bill to authorize appropriations for fiscal year 2009 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, and for other purposes. | Cloture on the Motion to Proceed Rejected | 110-s-3001 | S | 3001 | 51 | 39 | 0 | 10 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1102/vote_110_2_00195.xml | |
| 110,senate,2,160 | 110 | senate | 2 | 160 | 2008-06-26 | On Cloture on the Motion to Proceed H.R. 6331 | Motion to Invoke Cloture on the Motion to Proceed to Consider H.R. 6331 -- A bill to amend titles XVIII and XIX of the Social Security Act to extend expiring provisions under the Medicare Program, to improve beneficiary access to preventive and mental health services, to enhance low-income benefit programs, and to maintain access to care in rural areas, including pharmacy access, and for other purposes. | Cloture on the Motion to Proceed Rejected | 110-hr-6331 | H.R | 6331 | 58 | 40 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1102/vote_110_2_00160.xml | |
| 110,senate,1,339 | 110 | senate | 1 | 339 | 2007-09-18 | On Cloture on the Motion to Proceed S. 1257 | Motion to Invoke Cloture on the Motion to Proceed to S. 1257 -- A bill to provide the District of Columbia a voting seat and the State of Utah an additional seat in the House of Representatives. | Cloture on the Motion to Proceed Rejected | 110-s-1257 | S | 1257 | 57 | 42 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1101/vote_110_1_00339.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);