roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where result = "Point of Order Not Well Taken" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: session, date, question, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 113,senate,2,353 | 113 | senate | 2 | 353 | 2014-12-13 | On the Point of Order H.R. 83 | Is the Point of Order Well Taken Re: Cruz Constitutional Point of Order -- To require the Secretary of the Interior to assemble a team of technical, policy, and financial experts to address the energy needs of the insular areas of the United States and the Freely Associated States through the development of energy action plans aimed at promoting access to affordable, reliable energy, including increasing use of indigenous clean-energy resources, and for other purposes. | Point of Order Not Well Taken | 113-hr-83 | H.R | 83 | 22 | 74 | 0 | 4 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1132/vote_113_2_00353.xml | |
| 111,senate,1,389 | 111 | senate | 1 | 389 | 2009-12-23 | On the Point of Order S.Amdt. 2786 to H.R. 3590 (Patient Protection and Affordable Care Act) | Is The Ensign Point of Order Well Taken? -- In the nature of a substitute. | Point of Order Not Well Taken | 39 | 60 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1111/vote_111_1_00389.xml | ||||
| 111,senate,1,392 | 111 | senate | 1 | 392 | 2009-12-23 | On the Point of Order S.Amdt. 2786 to H.R. 3590 (Patient Protection and Affordable Care Act) | Is the Hutchison Constitutional Point of Order Well Taken? -- In the nature of a substitute. | Point of Order Not Well Taken | 39 | 60 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1111/vote_111_1_00392.xml | ||||
| 111,senate,1,67 | 111 | senate | 1 | 67 | 2009-02-25 | On the Point of Order S. 160 | Is The Constitutional Point of Order Well Taken? -- A bill to provide the District of Columbia a voting seat and the State of Utah an additional seat in the House of Representatives. | Point of Order Not Well Taken | 111-s-160 | S | 160 | 36 | 62 | 0 | 1 | https://www.senate.gov/legislative/LIS/roll_call_votes/vote1111/vote_111_1_00067.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);