roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where congress = 106 and result = "Concurrent Resolution Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, legislation_type, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 106,senate,2,84 | 106 | senate | 2 | 84 | 2000-04-13 | On the Concurrent Resolution H.Con.Res. 303 | House Concurrent Resolution 303 -- A concurrent resolution providing for a conditional adjournment of the House of Representatives and a conditional adjournment or recess of the Senate. | Concurrent Resolution Agreed to | 106-hconres-303 | H.Con.Res | 303 | 55 | 43 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1062/vote_106_2_00084.xml | |
| 106,senate,2,79 | 106 | senate | 2 | 79 | 2000-04-07 | On the Concurrent Resolution H.Con.Res. 290 | H. CON. RES. 290 -- A concurrent resolution establishing the congressional budget for the United States Government for fiscal year 2001, revising the congressional budget for the United States Government for fiscal year 2000, and setting forth appropriate budgetary levels for each of fiscal years 2002 through 2005. | Concurrent Resolution Agreed to | 106-hconres-290 | H.Con.Res | 290 | 51 | 45 | 1 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1062/vote_106_2_00079.xml | |
| 106,senate,1,92 | 106 | senate | 1 | 92 | 1999-04-27 | On the Concurrent Resolution H.Con.Res. 92 | H.Con.Res. 92 -- A concurrent resolution expressing the sense of Congress with respect to the tragic shooting at Columbine High School in Littleton, Colorado. | Concurrent Resolution Agreed to | 106-hconres-92 | H.Con.Res | 92 | 99 | 0 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00092.xml | |
| 106,senate,1,57 | 106 | senate | 1 | 57 | 1999-03-23 | On the Concurrent Resolution S.Con.Res. 21 | S.Con.Res. 21 -- A concurrent resolution authorizing the President of the United States to conduct military air operations and missile strikes against the Federal Republic of Yugoslavia (Serbia and Montenegro). | Concurrent Resolution Agreed to | 106-sconres-21 | S.Con.Res | 21 | 58 | 41 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00057.xml | |
| 106,senate,1,38 | 106 | senate | 1 | 38 | 1999-03-11 | On the Concurrent Resolution S.Con.Res. 5 | S.Con.Res. 5 -- A concurrent resolution expressing congressional opposition to the unilateral declaration of a Palestinian state and urging the President to assert clearly United States opposition to such a unilateral declaration of statehood. | Concurrent Resolution Agreed to | 106-sconres-5 | S.Con.Res | 5 | 98 | 1 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00038.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);