congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where party = "Progressive" and state = "WI" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| G000118 | Bernard | Gehrmann | Bernard Gehrmann | Progressive | WI | House | 10 | 1935-01-03 | 1943-01-03 | 0 | [] | 404490 | Bernard J. Gehrmann | 1880-02-13 | M | 5 | 1943-01-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| S000137 | George | Schneider | George Schneider | Progressive | WI | House | 8 | 1923-12-03 | 1939-01-03 | 0 | [] | 409645 | George J. Schneider | 1877-10-30 | M | 9 | 1939-01-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| B000598 | Gerald | Boileau | Gerald Boileau | Progressive | WI | House | 7 | 1931-12-07 | 1939-01-03 | 0 | [] | 401566 | Gerald J. Boileau | 1900-01-15 | M | 5 | 1939-01-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| S000079 | Harry | Sauthoff | Harry Sauthoff | Progressive | WI | House | 2 | 1935-01-03 | 1945-01-03 | 0 | [] | 409591 | Harry Sauthoff | 1879-06-03 | M | 6 | 1945-01-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| L000005 | Robert | La Follette | Robert La Follette | Progressive | WI | Senate | 1925-12-07 | 1947-01-03 | 0 | [] | 406515 | Robert M. La Follette Jr. | 1895-02-06 | M | 4 | 1947-01-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| A000176 | Thomas | Amlie | Thomas Amlie | Progressive | WI | House | 1 | 1931-12-07 | 1939-01-03 | 0 | [] | 400831 | Thomas Ryum Amlie | 1897-04-17 | M | 5 | 1939-01-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);