roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where congress = 112 and result = "Resolution Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 112,senate,1,103 | 112 | senate | 1 | 103 | 2011-06-29 | On the Resolution S.Res. 116 | S. Res. 116 as Amended -- A resolution to provide for expedited Senate consideration of certain nominations subject to advice and consent. | Resolution Agreed to | 112-sres-116 | S.Res | 116 | 89 | 8 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00103.xml | |
| 112,senate,1,63 | 112 | senate | 1 | 63 | 2011-05-03 | On the Resolution S.Res. 159 | S. Res. 159 -- A resolution honoring the members of the military and intelligence community who carried out the mission that killed Osama bin Laden, and for other purposes. | Resolution Agreed to | 112-sres-159 | S.Res | 159 | 97 | 0 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00063.xml | |
| 112,senate,1,2 | 112 | senate | 1 | 2 | 2011-01-27 | On the Resolution S.Res. 28 | S. Res. 28 -- A resolution to establish as a standing order of the Senate that a Senator publicly disclose a notice of intent to objecting to any measure or matter. | Resolution Agreed to | 112-sres-28 | S.Res | 28 | 92 | 4 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00002.xml | |
| 112,senate,1,3 | 112 | senate | 1 | 3 | 2011-01-27 | On the Resolution S.Res. 29 | S. Res. 29 -- A resolution to permit the waiving of the reading of an amendment if the text and adequate notice are provided. | Resolution Agreed to | 112-sres-29 | S.Res | 29 | 81 | 15 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00003.xml | |
| 112,senate,1,1 | 112 | senate | 1 | 1 | 2011-01-26 | On the Resolution S.Res. 14 | S.Res. 14 -- A resolution honoring the victims and heroes of the shooting on January 8, 2011 in Tucson, Arizona. | Resolution Agreed to | 112-sres-14 | S.Res | 14 | 97 | 0 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00001.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);