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 = "Motion to Proceed Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, legislation_number, yea_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,85 | 114 | senate | 2 | 85 | 2016-05-24 | On the Motion to Proceed S.J.Res. 28 | Motion to Proceed Re: 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. | Motion to Proceed Agreed to | 114-sjres-28 | S.J.Res | 28 | 57 | 40 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00085.xml | |
| 114,senate,1,299 | 114 | senate | 1 | 299 | 2015-11-05 | On the Motion to Proceed H.R. 2029 | Motion to Proceed to H.R. 2029 -- A bill making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2016, and for other purposes. | Motion to Proceed Agreed to | 114-hr-2029 | H.R | 2029 | 93 | 0 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00299.xml | |
| 114,senate,1,296 | 114 | senate | 1 | 296 | 2015-11-03 | On the Motion to Proceed S.J.Res. 22 | Motion to Proceed to 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. | Motion to Proceed Agreed to | 114-sjres-22 | S.J.Res | 22 | 55 | 43 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00296.xml | |
| 114,senate,1,252 | 114 | senate | 1 | 252 | 2015-07-24 | On the Motion to Proceed H.R. 22 | Motion to Proceed to H.R. 22 -- A bill to amend the Internal Revenue Code of 1986 to exempt employees with health coverage under TRICARE or the Veterans Administration from being taken into account for purposes of determining the employers to which the employer mandate applies under the Patient Protection and Affordable Care Act. | Motion to Proceed Agreed to | 114-hr-22 | H.R | 22 | 51 | 26 | 0 | 23 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00252.xml | |
| 114,senate,1,170 | 114 | senate | 1 | 170 | 2015-05-05 | On the Motion to Proceed S.Con.Res. 11 | Motion to Proceed Re: Conference Report to Accompany S. Con. Res. 11 -- An original concurrent resolution setting forth the congressional budget for the United States Government for fiscal year 2016 and setting forth the appropriate budgetary levels for fiscal years 2017 through 2025. | Motion to Proceed Agreed to | 114-sconres-11 | S.Con.Res | 11 | 53 | 44 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00170.xml | |
| 114,senate,1,66 | 114 | senate | 1 | 66 | 2015-03-03 | On the Motion to Proceed S.J.Res. 8 | Motion to Proceed to 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. | Motion to Proceed Agreed to | 114-sjres-8 | S.J.Res | 8 | 53 | 45 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00066.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);