roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 114 and result = "Conference Report Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, 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,159 | 114 | senate | 2 | 159 | 2016-12-08 | On the Conference Report S. 2943 | Conference Report to Accompany S. 2943 -- An original bill to authorize appropriations for fiscal year 2017 for military activities of the Department of Defense, for military construction, and for defense activities of the Department of Energy, to prescribe military personnel strengths for such fiscal year, and for other purposes. | Conference Report Agreed to | 114-s-2943 | S | 2943 | 92 | 7 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00159.xml | |
| 114,senate,2,129 | 114 | senate | 2 | 129 | 2016-07-13 | On the Conference Report S. 524 | Conference Report to Accompany S. 524 -- To authorize the Attorney General and Secretary of Health and Human Services to award grants to address the national epidemics of prescription opioid abuse and heroin use, and to provide for the establishment of an inter-agency task force to review, modify, and update best practices for pain management and prescribing pain medication, and for other purposes. | Conference Report Agreed to | 114-s-524 | S | 524 | 92 | 2 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00129.xml | |
| 114,senate,2,22 | 114 | senate | 2 | 22 | 2016-02-11 | On the Conference Report H.R. 644 | Conference Report to Accompany H.R. 644 -- An act to reauthorize trade facilitation and trade enforcement functions and activities, and for other purposes. | Conference Report Agreed to | 114-hr-644 | H.R | 644 | 75 | 20 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1142/vote_114_2_00022.xml | |
| 114,senate,1,334 | 114 | senate | 1 | 334 | 2015-12-09 | On the Conference Report S. 1177 | Conference Report to Accompany S.1177 -- An original bill to reauthorize the Elementary and Secondary Education Act of 1965 to ensure that every child achieves. | Conference Report Agreed to | 114-s-1177 | S | 1177 | 85 | 12 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00334.xml | |
| 114,senate,1,331 | 114 | senate | 1 | 331 | 2015-12-03 | On the Conference Report H.R. 22 | Conference Report to Accompany H.R. 22 -- An act to authorize funds for Federal-aid highways, highway safety programs, and transit programs, and for other purposes. | Conference Report Agreed to | 114-hr-22 | H.R | 22 | 83 | 16 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00331.xml | |
| 114,senate,1,277 | 114 | senate | 1 | 277 | 2015-10-07 | On the Conference Report H.R. 1735 | Conference Report to Accompany H.R. 1735 -- An act to authorize appropriations for fiscal year 2016 for military activities of the Department of Defense, for military construction, and for defense activities of the Department of Energy, to prescribe military personnel strengths for such fiscal year, and for other purposes. | Conference Report Agreed to | 114-hr-1735 | H.R | 1735 | 70 | 27 | 0 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00277.xml | |
| 114,senate,1,171 | 114 | senate | 1 | 171 | 2015-05-05 | On the Conference Report S.Con.Res. 11 | 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. | Conference Report Agreed to | 114-sconres-11 | S.Con.Res | 11 | 51 | 48 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1141/vote_114_1_00171.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);