roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where congress = 108 and result = "Motion to Table Failed" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, yea_count, nay_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,143 | 108 | senate | 2 | 143 | 2004-06-23 | On the Motion to Table S.Amdt. 3387 to S. 2400 (Ronald W. Reagan National Defense Authorization Act for Fiscal Year 2005) | Motion To Table Leahy Amdt. No. 3387 -- Relative to the treatment of foreign prisoners. | Motion to Table Failed | 45 | 50 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00143.xml | ||||
| 108,senate,1,405 | 108 | senate | 1 | 405 | 2003-10-23 | On the Motion to Table S.Amdt. 1900 to H.R. 2989 (Transportation, Treasury, and Independent Agencies Appropriations Act, 2004) | Motion To Table Dorgan Amdt. No. 1900 -- To prohibit the enforcement of the ban on travel to Cuba. | Motion to Table Failed | 36 | 59 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00405.xml | ||||
| 108,senate,1,382 | 108 | senate | 1 | 382 | 2003-10-15 | On the Motion to Table S.Amdt. 1834 to S. 1689 (Emergency Supplemental Appropriations for Iraq and Afghanistan Security and Reconstruction Act, 2004) | Motion To Table Reed Amdt. No. 1834 -- To increase the end strength of the Army and to structure the additional forces for constabulary duty. | Motion to Table Failed | 45 | 52 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00382.xml | ||||
| 108,senate,1,267 | 108 | senate | 1 | 267 | 2003-07-09 | On the Motion to Table S.Amdt. 1141 to S.Amdt. 1136 to S. 925 (Foreign Relations Authorization Act, Fiscal Year 2004) | Motion To Table Boxer Amdt. No. 1141 -- To prohibit the application of certain restrictive eligibility requirements to foreign nongovernmental organizations with respect to the provision of assistance under part I of the Foreign Assistance Act of 1961. | Motion to Table Failed | 43 | 53 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00267.xml | ||||
| 108,senate,1,261 | 108 | senate | 1 | 261 | 2003-06-26 | On the Motion to Table S.Amdt. 1060 to S. 1 (Prescription Drug and Medicare Improvement Act of 2003) | Motion To Table Feinstein Amdt. No. 1060 -- To provide for an income-related increase in the part B premium for individuals with income in excess of $75,000 and married couples with income in excess of $150,000. | Motion to Table Failed | 38 | 59 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00261.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);