roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where congress = 106 and result = "Resolution Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: yea_count, nay_count, 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,1,293 | 106 | senate | 1 | 293 | 1999-09-27 | On the Resolution S.Res. 186 | S.Res.186 -- A resolution expressing the sense of the Senate regarding reauthorizing the Elementary and Secondary Education Act of 1965. | Resolution Agreed to | 106-sres-186 | S.Res | 186 | 51 | 42 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00293.xml | |
| 106,senate,1,222 | 106 | senate | 1 | 222 | 1999-07-26 | On the Resolution S.Res. 160 | S.RES.160 -- A resolution to restore enforcement of Rule 16. | Resolution Agreed to | 106-sres-160 | S.Res | 160 | 53 | 45 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00222.xml | |
| 106,senate,1,99 | 106 | senate | 1 | 99 | 1999-05-05 | On the Resolution S.Res. 94 | S.Res.94 -- A resolution commending the efforts of the Reverend Jesse Jackson to secure the release of the soldiers held by the Federal Republic of Yugoslavia. | Resolution Agreed to | 106-sres-94 | S.Res | 94 | 92 | 0 | 5 | 3 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00099.xml | |
| 106,senate,1,97 | 106 | senate | 1 | 97 | 1999-04-30 | On the Resolution S.Res. 33 | S.Res.33 -- A resolution designating May 1999 as "National Military Appreciation Month". | Resolution Agreed to | 106-sres-33 | S.Res | 33 | 93 | 0 | 0 | 7 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00097.xml | |
| 106,senate,1,29 | 106 | senate | 1 | 29 | 1999-03-02 | On the Resolution S.Res. 7 | S. Res. 7 As Amended -- A resolution to amend Senate Resolution 208 of the 105th Congress to increase funding of the Special Committee on the Year 2000 Technology-related Problems. | Resolution Agreed to | 106-sres-7 | S.Res | 7 | 92 | 6 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00029.xml | |
| 106,senate,1,27 | 106 | senate | 1 | 27 | 1999-02-25 | On the Resolution S.Res. 45 | S. Res.45 -- A resolution expressing the sense of the Senate regarding the human rights situation in the People's Republic of China. | Resolution Agreed to | 106-sres-45 | S.Res | 45 | 99 | 0 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00027.xml | |
| 106,senate,1,8 | 106 | senate | 1 | 8 | 1999-01-28 | On the Resolution (S.Res. 30 as amended) | S.Res. 30 as amended | Resolution Agreed to | 54 | 44 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00008.xml | ||||
| 106,senate,1,1 | 106 | senate | 1 | 1 | 1999-01-08 | On the Resolution (S.Res.16) | S.Res.16 | Resolution Agreed to | 100 | 0 | 0 | 0 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1061/vote_106_1_00001.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);