roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where congress = 108 and result = "Motion Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, yea_count, present_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 108,senate,2,157 | 108 | senate | 2 | 157 | 2004-07-15 | On the Motion (DeWine Amdt. No. 3563) | DeWine Amdt. No. 3563 -- To protect the public health by providing the Food and Drug Administration with certain authority to regulate tobacco products, to eliminate the Federal quota and price support programs for tobacco, and to provide assistance to quota holders, tobacco producers, and tobacco-dependent communities. | Motion Agreed to | 78 | 15 | 1 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00157.xml | ||||
| 108,senate,2,16 | 108 | senate | 2 | 16 | 2004-02-25 | On the Motion (Motion To Invoke Cloture On The Motion To Proceed To S. 1805 ) | Motion To Invoke Cloture On The Motion To Proceed To S. 1805 -- A bill to prohibit civil liability actions from being brought or continued against manufacturers, distributors, dealers, or importers of firearms or ammunition for damages resulting from the misuse of their products by others. | Motion Agreed to | 108-s-1805 | S | 1805 | 75 | 22 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00016.xml | |
| 108,senate,1,458 | 108 | senate | 1 | 458 | 2003-11-24 | On the Motion (Motion To Waive CBA RE: H. R. 1 - Conference Report) | Motion To Waive CBA RE: H. R. 1 - Conference Report -- An act to amend title XVIII of the Social Security Act to provide for a voluntary prescription drug benefit under the medicare program and to strengthen and improve the medicare program, and for other purposes. | Motion Agreed to | 108-hr-1 | H.R | 1 | 61 | 39 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00458.xml | |
| 108,senate,1,409 | 108 | senate | 1 | 409 | 2003-10-23 | On the Motion (Motion To Waive RE: Dodd Amdt. No. 1928) | Motion To Waive RE: Dodd Amdt. No. 1928 -- To fund the Election Assistance Commission for fiscal year 2004. | Motion Agreed to | 63 | 31 | 1 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00409.xml | ||||
| 108,senate,1,359 | 108 | senate | 1 | 359 | 2003-09-23 | On the Motion (Motion To Table Boxer Amdt. No. 1753) | Motion To Table Boxer Amdt. No. 1753 -- To strike section 333 relating to a special judicial appeals process for cases involving timber harvesting in the Tongass National Forest. | Motion Agreed to | 52 | 44 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00359.xml | ||||
| 108,senate,1,351 | 108 | senate | 1 | 351 | 2003-09-17 | On the Motion (Motion to Disagree To The Amendment Of The House To S.3 ) | Motion to Disagree To The Amendment Of The House To S.3 -- A bill to prohibit the procedure commonly known as partial-birth abortion. | Motion Agreed to | 108-s-3 | S | 3 | 93 | 0 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00351.xml | |
| 108,senate,1,349 | 108 | senate | 1 | 349 | 2003-09-16 | On the Motion (Motion To Table Feinstein Amdt. No. 1655) | Motion To Table Feinstein Amdt. No. 1655 -- To prohibit the use of funds for Department of Energy activities relating to the Robust Nuclear Earth Penetrator, Advanced Weapons Concepts, modification of the readiness posture of the Nevada Test Site, and the Modern Pit Facility, and to make the amount of funds made available by the prohibition for debt reduction. | Motion Agreed to | 53 | 41 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00349.xml | ||||
| 108,senate,1,165 | 108 | senate | 1 | 165 | 2003-05-15 | On the Motion (Motion to Waive C.B.A. re: Ensign Amdt. No. 622, As Modified) | Motion to Waive C.B.A. re: Ensign Amdt. No. 622, As Modified -- To encourage the investment of foreign earnings within the United States for productive business investments and job creation. | Motion Agreed to | 75 | 25 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00165.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);