roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 109 and result = "Resolution Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 109,senate,1,222 | 109 | senate | 1 | 222 | 2005-09-07 | On the Resolution S.Res. 234 | S. Res. 234 -- A resolution relative to the death of William H. Rehnquist, Chief Justice of the United States. | Resolution Agreed to | 109-sres-234 | S.Res | 234 | 95 | 0 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00222.xml | |
| 109,senate,1,221 | 109 | senate | 1 | 221 | 2005-09-06 | On the Resolution S.Res. 233 | S. Res. 233 -- A resolution expressing the condolences of the Nation to the victims of Hurricane Katrina, commending the resiliency of the people of the States of Louisiana, Mississippi, and Alabama, and committing to stand by them in the relief and recovery efforts. | Resolution Agreed to | 109-sres-233 | S.Res | 233 | 94 | 0 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00221.xml | |
| 109,senate,1,201 | 109 | senate | 1 | 201 | 2005-07-25 | On the Resolution S.Res. 207 | S. Res. 207 -- A resolution recognizing and honoring the 15th anniversary of the enactment of the Americans with Disabilities Act of 1990. | Resolution Agreed to | 109-sres-207 | S.Res | 207 | 87 | 0 | 0 | 13 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00201.xml | |
| 109,senate,1,173 | 109 | senate | 1 | 173 | 2005-07-11 | On the Resolution S.Res. 193 | S.Res. 193 -- A resolution expressing sympathy for the people of the United Kingdom in the aftermath of the deadly terrorist attacks on London on July 7, 2005. | Resolution Agreed to | 109-sres-193 | S.Res | 193 | 76 | 0 | 0 | 24 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00173.xml | |
| 109,senate,1,88 | 109 | senate | 1 | 88 | 2005-04-11 | On the Resolution S.Con.Res. 25 | S. Con. Res. 25 -- A concurrent resolution expressing the sense of Congress regarding the application of Airbus for launch aid. | Resolution Agreed to | 109-sconres-25 | S.Con.Res | 25 | 96 | 0 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00088.xml | |
| 109,senate,1,82 | 109 | senate | 1 | 82 | 2005-04-05 | On the Resolution S.Res. 95 | S. Res. 95 -- A resolution relating to the death of the Holy Father, Pope John Paul II. | Resolution Agreed to | 109-sres-95 | S.Res | 95 | 98 | 0 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00082.xml | |
| 109,senate,1,4 | 109 | senate | 1 | 4 | 2005-02-07 | On the Resolution S.Res. 38 | S. Res. 38 -- A resolution commending the people of Iraq on the January 30, 2005, national elections. | Resolution Agreed to | 109-sres-38 | S.Res | 38 | 93 | 0 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1091/vote_109_1_00004.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);