roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where chamber = "senate", congress = 108 and result = "Resolution Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, legislation_type, 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,208 | 108 | senate | 2 | 208 | 2004-10-09 | On the Resolution S.Res. 445 | S. Res. 445 As Amended. -- A resolution to eliminate certain restrictions on service of a Senator on the Senate Select Committee on Intelligence. | Resolution Agreed to | 108-sres-445 | S.Res | 445 | 79 | 6 | 0 | 15 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00208.xml | |
| 108,senate,2,209 | 108 | senate | 2 | 209 | 2004-10-09 | On the Resolution S.Res. 454 | S. Res. 454 -- A resolution expressing the sense of the Senate that the 108th Congress should provide the necessary funds to make disaster assistance available for all customarily eligible agricultural producers as emergency spending and not funded by cuts to the farm bill. | Resolution Agreed to | 108-sres-454 | S.Res | 454 | 71 | 14 | 0 | 15 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00209.xml | |
| 108,senate,2,151 | 108 | senate | 2 | 151 | 2004-06-24 | On the Resolution S.Res. 393 | S. Res. 393 -- A resolution expressing the sense of the Senate in support of United States policy for a Middle East peace process. | Resolution Agreed to | 108-sres-393 | S.Res | 393 | 95 | 3 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00151.xml | |
| 108,senate,2,111 | 108 | senate | 2 | 111 | 2004-06-09 | On the Resolution S.Res. 373 | S. Res. 373 -- A resolution relative to the death of Ronald Wilson Reagan, a former President of the United States. | Resolution Agreed to | 108-sres-373 | S.Res | 373 | 98 | 0 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00111.xml | |
| 108,senate,2,86 | 108 | senate | 2 | 86 | 2004-05-10 | On the Resolution S.Res. 356 | S. Res. 356 -- A resolution condemning the abuse of Iraqi prisoners at Abu Ghraib prison, urging a full and complete investigation to ensure justice is served, and expressing support for all Americans serving nobly in Iraq. | Resolution Agreed to | 108-sres-356 | S.Res | 356 | 92 | 0 | 0 | 8 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00086.xml | |
| 108,senate,2,43 | 108 | senate | 2 | 43 | 2004-03-11 | On the Resolution S.Res. 319 | S. Res. 319 -- A resolution expressing the sense of the Senate with respect to the deadly terrorist attacks against the people of Spain that occurred on March 11, 2004. | Resolution Agreed to | 108-sres-319 | S.Res | 319 | 96 | 0 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1082/vote_108_2_00043.xml | |
| 108,senate,1,129 | 108 | senate | 1 | 129 | 2003-04-09 | On the Resolution S.Con.Res. 31 | S.Con.Res. 31 -- A concurrent resolution expressing the outrage of Congress at the treatment of certain American prisoners of war by the Government of Iraq. | Resolution Agreed to | 108-sconres-31 | S.Con.Res | 31 | 99 | 0 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00129.xml | |
| 108,senate,1,61 | 108 | senate | 1 | 61 | 2003-03-20 | On the Resolution S.Res. 95 | S.Res. 95 -- A resolution commending the President and the Armed Forces of the United States of America. | Resolution Agreed to | 108-sres-95 | S.Res | 95 | 99 | 0 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00061.xml | |
| 108,senate,1,39 | 108 | senate | 1 | 39 | 2003-03-04 | On the Resolution S.Res. 71 | S. Res. 71 As Amended -- A resolution expressing the support for the Pledge of Allegiance. | Resolution Agreed to | 108-sres-71 | S.Res | 71 | 94 | 0 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00039.xml | |
| 108,senate,1,30 | 108 | senate | 1 | 30 | 2003-02-05 | On the Resolution S.Res. 45 | S. Res. 45 -- A resolution commemorating the Columbia Astronauts. | Resolution Agreed to | 108-sres-45 | S.Res | 45 | 95 | 0 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1081/vote_108_1_00030.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);