congress_members
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where party = "Anti-Lecompton Democrat" sorted by full_name
This data as json, CSV (advanced)
Suggested facets: first_name, district, first_served, terms_count, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| A000058 | Garnett | Adrain | Garnett Adrain | Anti-Lecompton Democrat | NJ | House | 3 | 1857-12-07 | 1861-03-03 | 0 | [] | 400718 | Garnett Adrain | 1815-12-15 | M | 3 | 1861-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| C000435 | Horace | Clark | Horace Clark | Anti-Lecompton Democrat | NY | House | 8 | 1857-12-07 | 1861-03-03 | 0 | [] | 402573 | Horace F. Clark | 1815-11-29 | M | 3 | 1861-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| R000254 | Jetur | Riggs | Jetur Riggs | Anti-Lecompton Democrat | NJ | House | 4 | 1859-12-05 | 1861-03-03 | 0 | [] | 409230 | Jetur R. Riggs | 1809-06-20 | M | 2 | 1861-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| D000118 | John | Davis | John Davis | Anti-Lecompton Democrat | IN | House | 7 | 1851-12-01 | 1861-03-03 | 0 | [] | 403253 | John G. Davis | 1810-10-10 | M | 6 | 1861-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| H000321 | John | Haskin | John Haskin | Anti-Lecompton Democrat | NY | House | 9 | 1857-12-07 | 1861-03-03 | 0 | [] | 405194 | John B. Haskin | 1821-08-27 | M | 3 | 1861-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| R000175 | John | Reynolds | John Reynolds | Anti-Lecompton Democrat | NY | House | 14 | 1859-12-05 | 1861-03-03 | 0 | [] | 409151 | John Hazard Reynolds | 1819-06-21 | M | 2 | 1861-03-03 | 0 | 0 | 0 | 0 | 0 | ||||||
| S000158 | John | Schwartz | John Schwartz | Anti-Lecompton Democrat | PA | House | 8 | 1859-12-05 | 1861-03-03 | 0 | [] | 409665 | John Schwartz | 1793-10-27 | M | 2 | 1861-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);