congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where chamber = "Senate", party = "Democrat" and state = "WY" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_name, nickname, thomas_id, terms_count, bills_sponsored, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| M000445 | Gale | McGee | Gale McGee | Democrat | WY | Senate | 1959-01-07 | 1977-01-03 | 0 | [] | 407444 | 01396 | Gale W. McGee | 1915-03-17 | M | 4 | 1977-01-03 | 0 | 0 | 67 | 0 | 0 | ||||||
| S000157 | Henry | Schwartz | Henry Schwartz | Harry | Democrat | WY | Senate | 1937-01-05 | 1943-01-03 | 0 | [] | 409664 | Harry Schwartz (politician) | 1869-05-18 | M | 2 | 1943-01-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| H000561 | John | Hickey | John Hickey | Democrat | WY | Senate | 1961-01-03 | 1963-01-03 | 0 | [] | 405423 | Joe Hickey (politician) | 1911-08-22 | M | 1 | 1963-01-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| K000098 | John | Kendrick | John Kendrick | Democrat | WY | Senate | 1917-04-02 | 1933-11-03 | 0 | [] | 406266 | John B. Kendrick | 1857-09-06 | M | 3 | 1933-11-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| O000088 | Joseph | O’Mahoney | Joseph O’Mahoney | Democrat | WY | Senate | 1933-12-18 | 1961-01-03 | 0 | [] | 408296 | Joseph C. O'Mahoney | 1884-11-05 | M | 5 | 1961-01-03 | 0 | 0 | 0 | 0 | 0 | |||||||
| H000975 | Lester | Hunt | Lester Hunt | Democrat | WY | Senate | 1949-01-03 | 1954-06-19 | 0 | [] | 405819 | Lester C. Hunt | 1892-07-08 | M | 1 | 1954-06-19 | 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);