roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 112 and result = "Conference Report Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, present_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,2,229 | 112 | senate | 2 | 229 | 2012-12-21 | On the Conference Report H.R. 4310 | Conference Report to Accompany H. R. 4310 -- To authorize appropriations for fiscal year 2013 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 | 112-hr-4310 | H.R | 4310 | 81 | 14 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00229.xml | |
| 112,senate,2,172 | 112 | senate | 2 | 172 | 2012-06-29 | On the Conference Report H.R. 4348 | Conference Report to Accompany H.R. 4348 -- Amended during conference: "An act to authorize funds for Federal-aid highways, highway safety programs, and transit programs, and for other purposes." | Conference Report Agreed to | 112-hr-4348 | H.R | 4348 | 74 | 19 | 1 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00172.xml | |
| 112,senate,2,22 | 112 | senate | 2 | 22 | 2012-02-17 | On the Conference Report H.R. 3630 | Conference Report to Accompany H.R. 3630 -- A bill to extend the payroll tax holiday, unemployment compensation, Medicare physician payment, provide for the consideration of the Keystone XL pipeline, and for other purposes. | Conference Report Agreed to | 112-hr-3630 | H.R | 3630 | 60 | 36 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00022.xml | |
| 112,senate,2,15 | 112 | senate | 2 | 15 | 2012-02-06 | On the Conference Report H.R. 658 | Conference Report to Accompany H.R. 658 -- A bill to amend title 49, United States Code, to authorize appropriations for the Federal Aviation Administration for fiscal years 2011 through 2014, to streamline programs, create efficiencies, reduce waste, and improve aviation safety and capacity, to provide stable funding for the national aviation system, and for other purposes. | Conference Report Agreed to | 112-hr-658 | H.R | 658 | 75 | 20 | 0 | 5 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1122/vote_112_2_00015.xml | |
| 112,senate,1,235 | 112 | senate | 1 | 235 | 2011-12-17 | On the Conference Report H.R. 2055 | Conference Report to Accompany H.R. 2055 -- A bill making appropriations for military construction, the Department of Veterans Affairs, and related agencies for the fiscal year ending September 30, 2012, and for other purposes. | Conference Report Agreed to | 112-hr-2055 | H.R | 2055 | 67 | 32 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00235.xml | |
| 112,senate,1,230 | 112 | senate | 1 | 230 | 2011-12-15 | On the Conference Report H.R. 1540 | Conference Report To Accompany H.R. 1540 -- To authorize appropriations for fiscal year 2012 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 | 112-hr-1540 | H.R | 1540 | 86 | 13 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00230.xml | |
| 112,senate,1,208 | 112 | senate | 1 | 208 | 2011-11-17 | On the Conference Report H.R. 2112 | Conference Report to Accompany H.R. 2112 -- An act making consolidated appropriations for the Departments of Agriculture, Commerce, Justice, Transportation, and Housing and Urban Development, and related programs for the fiscal year ending September 30, 2012, and for other purposes. | Conference Report Agreed to | 112-hr-2112 | H.R | 2112 | 70 | 30 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1121/vote_112_1_00208.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);