roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where congress = 107 and result = "Joint Resolution Passed" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 107,senate,2,253 | 107 | senate | 2 | 253 | 2002-11-19 | On the Joint Resolution H.J.Res. 124 | H.J.Res. 124 -- A joint resolution making further continuing appropriations for the fiscal year 2003, and for other purposes. | Joint Resolution Passed | 107-hjres-124 | H.J.Res | 124 | 92 | 2 | 0 | 6 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1072/vote_107_2_00253.xml | |
| 107,senate,2,237 | 107 | senate | 2 | 237 | 2002-10-11 | On the Joint Resolution H.J.Res. 114 | H.J.Res. 114 -- A joint resolution to authorize the use of United States Armed Forces against Iraq. | Joint Resolution Passed | 107-hjres-114 | H.J.Res | 114 | 77 | 23 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1072/vote_107_2_00237.xml | |
| 107,senate,1,296 | 107 | senate | 1 | 296 | 2001-10-11 | On the Joint Resolution S.J.Res. 25 | S.J.Res. 25 -- A joint resolution designating September 11 as "National Day of Remembrance". | Joint Resolution Passed | 107-sjres-25 | S.J.Res | 25 | 100 | 0 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1071/vote_107_1_00296.xml | |
| 107,senate,1,291 | 107 | senate | 1 | 291 | 2001-10-03 | On the Joint Resolution H.J.Res. 51 | H.J. Res. 51 -- A joint resolution approving the extension of nondiscriminatory treatment with respect to the products of the Socialist Republic of Vietnam. | Joint Resolution Passed | 107-hjres-51 | H.J.Res | 51 | 88 | 12 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1071/vote_107_1_00291.xml | |
| 107,senate,1,281 | 107 | senate | 1 | 281 | 2001-09-14 | On the Joint Resolution S.J.Res. 23 | S.J. Res. 23 -- A joint resolution to authorize the use of United States Armed Forces against those responsible for the recent attacks launched against the United States. | Joint Resolution Passed | 107-sjres-23 | S.J.Res | 23 | 98 | 0 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1071/vote_107_1_00281.xml | |
| 107,senate,1,277 | 107 | senate | 1 | 277 | 2001-09-12 | On the Joint Resolution S.J.Res. 22 | S.J.Res. 22 -- A joint resolution expressing the sense of the Senate and House of Representatives regarding the terrorist attacks launched against the Unites States on September 11, 2001. | Joint Resolution Passed | 107-sjres-22 | S.J.Res | 22 | 100 | 0 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1071/vote_107_1_00277.xml | |
| 107,senate,1,15 | 107 | senate | 1 | 15 | 2001-03-06 | On the Joint Resolution S.J.Res. 6 | S.J.Res. 6 -- A joint resolution providing for congressional disapproval of the rule submitted by the Department of Labor under chapter 8 of title 5, United States Code, relating to ergonomics. | Joint Resolution Passed | 107-sjres-6 | S.J.Res | 6 | 56 | 44 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1071/vote_107_1_00015.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);