roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 116 and result = "Resolution Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 116,senate,2,32 | 116 | senate | 2 | 32 | 2020-01-31 | On the Resolution S.Res. 488 | S. Res. 488 -- A resolution to provide for related procedures concerning the articles of impeachment against Donald John Trump, President of the United States. | Resolution Agreed to | 116-sres-488 | S.Res | 488 | 53 | 47 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00032.xml | |
| 116,senate,2,26 | 116 | senate | 2 | 26 | 2020-01-22 | On the Resolution S.Res. 483 | S. Res. 483 -- A resolution to provide for related procedures concerning the articles of impeachment against Donald John Trump, President of the United States. | Resolution Agreed to | 116-sres-483 | S.Res | 483 | 53 | 47 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1162/vote_116_2_00026.xml | |
| 116,senate,1,303 | 116 | senate | 1 | 303 | 2019-09-25 | On the Resolution S.Res. 331 | S. Res. 331 -- A resolution instructing the managers on the part of the Senate on the bill S. 1790 (116th Congress) to insist upon the inclusion of the provisions of S. 2118 (116th Congress) (relating to the prohibition of United States persons from dealing in certain information and communications technology or services from foreign adversaries and requiring the approval of Congress to terminate certain export controls in effect with respect to Huawei Technologies Co. Ltd.). | Resolution Agreed to | 116-sres-331 | S.Res | 331 | 91 | 4 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00303.xml | |
| 116,senate,1,304 | 116 | senate | 1 | 304 | 2019-09-25 | On the Resolution S.Res. 332 | S. Res. 332 -- A resolution instructing the managers on the part of the Senate on the conference on the bill S. 1790 (116th Congress) to insist upon the provisions contained in section 630A of the House amendment (relating to the repeal of a requirement of reduction of Survivor Benefit Plan survivor annuities by amounts of dependency and indemnity compensation). | Resolution Agreed to | 116-sres-332 | S.Res | 332 | 94 | 0 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00304.xml | |
| 116,senate,1,306 | 116 | senate | 1 | 306 | 2019-09-25 | On the Resolution S.Res. 335 | S. Res. 335 -- A resolution instructing the managers on the part of the Senate on the bill S. 1790 (116th Congress) to insist upon the members of the conference to include the provisions contained in section 2906 of the Senate bill (relating to replenishment of certain military construction funds). | Resolution Agreed to | 116-sres-335 | S.Res | 335 | 52 | 42 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00306.xml | |
| 116,senate,1,307 | 116 | senate | 1 | 307 | 2019-09-25 | On the Resolution S.Res. 336 | S. Res. 336 -- A resolution instructing the managers on the part of the Senate on the bill S. 1790 (116th Congress) to insist upon the members of the conference to consider potential commonsense solutions regarding family and medical leave, including voluntary compensatory time programs and incentives through the tax code. | Resolution Agreed to | 116-sres-336 | S.Res | 336 | 55 | 39 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00307.xml | |
| 116,senate,1,132 | 116 | senate | 1 | 132 | 2019-06-04 | On the Resolution S.Res. 212 | S. Res. 212 -- A resolution celebrating the 100th anniversary of the passage and ratification of the 19th Amendment, providing for women's suffrage, to the Constitution of the United States. | Resolution Agreed to | 116-sres-212 | S.Res | 212 | 93 | 0 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1161/vote_116_1_00132.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);