roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where chamber = "senate", congress = 118 and result = "Motion to Table Agreed to" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, question, bill_id, legislation_type, legislation_number, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 118,senate,2,107 | 118 | senate | 2 | 107 | 2024-03-23 | On the Motion to Table H.R. 2882 | Motion to Table the Motion to Concur in the House Amendment to the Senate Amendment to H.R. 2882 with Cruz Amdt No. 1804 -- A bill to reauthorize the Morris K. Udall and Stewart L. Udall Trust Fund, and for other purposes. | Motion to Table Agreed to | 118-hr-2882 | H.R | 2882 | 51 | 47 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00107.xml | |
| 118,senate,2,108 | 118 | senate | 2 | 108 | 2024-03-23 | On the Motion to Table H.R. 2882 | Motion to Table the Motion to Concur in the House Amendment to the Senate Amendment to H.R. 2882 with Tuberville Amdt 1781 -- A bill to reauthorize the Morris K. Udall and Stewart L. Udall Trust Fund, and for other purposes. | Motion to Table Agreed to | 118-hr-2882 | H.R | 2882 | 51 | 47 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00108.xml | |
| 118,senate,2,110 | 118 | senate | 2 | 110 | 2024-03-23 | On the Motion to Table H.R. 2882 | Motion to Table the Motion to Concur in the House Amdt to the Senate Amdt to H.R. 2882 with Johnson Amdt No. 1706 -- A bill to reauthorize the Morris K. Udall and Stewart L. Udall Trust Fund, and for other purposes. | Motion to Table Agreed to | 118-hr-2882 | H.R | 2882 | 51 | 47 | 0 | 2 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00110.xml | |
| 118,senate,2,8 | 118 | senate | 2 | 8 | 2024-01-16 | On the Motion to Table S.Res. 504 | Motion to Table the Motion to Discharge S. Res. 504 from the Committee on Foreign Relations -- A resolution requesting information on Israel's human rights practices pursuant to section 502B(c) of the Foreign Assistance Act of 1961. | Motion to Table Agreed to | 118-sres-504 | S.Res | 504 | 72 | 11 | 0 | 17 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1182/vote_118_2_00008.xml | |
| 118,senate,1,309 | 118 | senate | 1 | 309 | 2023-11-14 | On the Motion to Table H.R. 6126 | Motion to Table Motion to Proceed to H.R. 6126 -- A bill making emergency supplemental appropriations to respond to the attacks in Israel for the fiscal year ending September 30, 2024, and for other purposes. | Motion to Table Agreed to | 118-hr-6126 | H.R | 6126 | 51 | 48 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1181/vote_118_1_00309.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);