roll_call_votes
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
3 rows where congress = 111 and result = "Point of Order Not Well Taken" sorted by date descending
This data as json, CSV (advanced)
Suggested facets: date, question, yea_count, nay_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 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);