roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where congress = 114 and result = "Joint Resolution Passed" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 114,senate,2,86 | 114 | senate | 2 | 86 | 2016-05-25 | On the Joint Resolution S.J.Res. 28 | S.J. Res. 28 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Secretary of Agriculture relating to inspection of fish of the order Siluriformes. | Joint Resolution Passed | 114-sjres-28 | S.J.Res | 28 | 55 | 43 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00086.xml | |
| 114,senate,2,84 | 114 | senate | 2 | 84 | 2016-05-24 | On the Joint Resolution H.J.Res. 88 | H.J. Res. 88 -- A joint resolution disapproving the rule submitted by the Department of Labor relating to the definition of the term "Fiduciary". | Joint Resolution Passed | 114-hjres-88 | H.J.Res | 88 | 56 | 41 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00084.xml | |
| 114,senate,1,306 | 114 | senate | 1 | 306 | 2015-11-17 | On the Joint Resolution S.J.Res. 24 | S.J.Res. 24 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of a rule submitted by the Environmental Protection Agency relating to "Carbon Pollution Emission Guidelines for Existing Stationary Sources: Electric Utility Generating Units". | Joint Resolution Passed | 114-sjres-24 | S.J.Res | 24 | 52 | 46 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00306.xml | |
| 114,senate,1,307 | 114 | senate | 1 | 307 | 2015-11-17 | On the Joint Resolution S.J.Res. 23 | S.J.Res. 23 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of a rule submitted by the Environmental Protection Agency relating to "Standards of Performance for Greenhouse Gas Emissions from New, Modified, and Reconstructed Stationary Sources: Electric Utility Generating Units". | Joint Resolution Passed | 114-sjres-23 | S.J.Res | 23 | 52 | 46 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00307.xml | |
| 114,senate,1,297 | 114 | senate | 1 | 297 | 2015-11-04 | On the Joint Resolution S.J.Res. 22 | S. J. Res. 22 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the Corps of Engineers and the Environmental Protection Agency relating to the definition of "waters of the United States" under the Federal Water Pollution Control Act. | Joint Resolution Passed | 114-sjres-22 | S.J.Res | 22 | 53 | 44 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00297.xml | |
| 114,senate,1,67 | 114 | senate | 1 | 67 | 2015-03-04 | On the Joint Resolution S.J.Res. 8 | S.J.Res.8 -- A joint resolution providing for congressional disapproval under chapter 8 of title 5, United States Code, of the rule submitted by the National Labor Relations Board relating to representation case procedures. | Joint Resolution Passed | 114-sjres-8 | S.J.Res | 8 | 53 | 46 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00067.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);