congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where is_current = 0 and party = "Liberal Republican" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_name, nickname, district, first_served, last_served, terms_count, served_until, first_served (date), last_served (date), birthday (date), served_until (date)
| bioguide_id | first_name | last_name | full_name ▼ | nickname | party | state | chamber | district | first_served | last_served | is_current | opensecrets_id | fec_ids | govtrack_id | thomas_id | votesmart_id | lis_id | wikipedia_id | ballotpedia_id | birthday | gender | terms_count | served_until | trade_count | speech_count | bills_sponsored | vote_count | fec_total_received |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| B000579 | Alexander | Boarman | Alexander Boarman | Aleck | Liberal Republican | LA | House | 4 | 1871-03-04 | 1873-03-03 | 0 | [] | 401550 | Alexander Boarman | 1839-12-10 | M | 2 | 1873-03-03 | 0 | 0 | 0 | 0 | 0 | |||||
| S000151 | Carl | Schurz | Carl Schurz | Liberal Republican | MO | Senate | 1869-03-04 | 1875-03-03 | 0 | [] | 409658 | Carl Schurz | 1829-03-02 | M | 2 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| S001068 | Charles | Sumner | Charles Sumner | Liberal Republican | MA | Senate | 1851-12-01 | 1875-03-03 | 0 | [] | 410522 | Charles Sumner | 1811-01-06 | M | 5 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| B000864 | Frederick | Bromberg | Frederick Bromberg | Liberal Republican | AL | House | 1 | 1873-12-01 | 1875-03-03 | 0 | [] | 401821 | Frederick G. Bromberg | 1837-06-19 | M | 2 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| S000341 | George | Sheridan | George Sheridan | Liberal Republican | LA | House | -1 | 1873-12-01 | 1875-03-03 | 0 | [] | 409838 | George A. Sheridan | 1840-02-22 | M | 2 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| F000129 | Gustavus | Finkelnburg | Gustavus Finkelnburg | Liberal Republican | MO | House | 2 | 1869-03-04 | 1873-03-03 | 0 | [] | 404084 | Gustavus Finkelnburg | 1837-04-06 | M | 3 | 1873-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| B000527 | James | Blair | James Blair | Liberal Republican | MO | House | 8 | 1871-03-04 | 1873-03-03 | 0 | [] | 401502 | James G. Blair | 1825-01-01 | M | 2 | 1873-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| E000072 | John | Edwards | John Edwards | Liberal Republican | AR | House | 3 | 1871-03-04 | 1873-03-03 | 0 | [] | 403767 | John Edwards (Arkansas politician) | 1805-10-24 | M | 2 | 1873-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| F000077 | Reuben | Fenton | Reuben Fenton | Liberal Republican | NY | Senate | 1853-12-05 | 1875-03-03 | 0 | [] | 404035 | Reuben Fenton | 1819-07-04 | M | 4 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| T000286 | Thomas | Tipton | Thomas Tipton | Liberal Republican | NE | Senate | 1867-03-04 | 1875-03-03 | 0 | [] | 410859 | Thomas Tipton | 1817-08-05 | M | 2 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| H001027 | William | Hynes | William Hynes | Liberal Republican | AR | House | -1 | 1873-12-01 | 1875-03-03 | 0 | [] | 405862 | William Joseph Hynes | 1843-03-31 | M | 2 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| S000747 | William | Sprague | William Sprague | Liberal Republican | RI | Senate | 1863-12-07 | 1875-03-03 | 0 | [] | 410216 | William Sprague IV | 1830-09-12 | M | 3 | 1875-03-03 | 0 | 0 | 0 | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE congress_members (
bioguide_id TEXT PRIMARY KEY,
first_name TEXT,
last_name TEXT,
full_name TEXT,
nickname TEXT,
party TEXT,
state TEXT,
chamber TEXT,
district INTEGER,
first_served TEXT,
last_served TEXT,
is_current INTEGER,
opensecrets_id TEXT,
fec_ids TEXT,
govtrack_id INTEGER,
thomas_id TEXT,
votesmart_id INTEGER,
lis_id TEXT,
wikipedia_id TEXT,
ballotpedia_id TEXT,
birthday TEXT,
gender TEXT,
terms_count INTEGER,
served_until TEXT
, trade_count INTEGER DEFAULT 0, speech_count INTEGER DEFAULT 0, bills_sponsored INTEGER DEFAULT 0, vote_count INTEGER DEFAULT 0, fec_total_received INTEGER DEFAULT 0);
CREATE INDEX idx_cm_name ON congress_members(last_name, first_name);
CREATE INDEX idx_cm_party ON congress_members(party);
CREATE INDEX idx_cm_state ON congress_members(state);
CREATE INDEX idx_cm_chamber ON congress_members(chamber);
CREATE INDEX idx_cm_current ON congress_members(is_current);
CREATE INDEX idx_cm_current_trades ON congress_members(is_current DESC, trade_count DESC);