diff options
author | Ben Burwell <ben@benburwell.com> | 2015-03-29 00:45:49 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2015-03-29 00:45:49 -0400 |
commit | 475275e0bb1d7e494ff3579595bf0e8dcda8474a (patch) | |
tree | 5fe16d30a93fcf9a67fdd9ece3782e6f054a851f | |
parent | 69c3a754d8e81bd71821efbc03da5b5a6a91d885 (diff) |
Add visualizing congress with D3 post
-rw-r--r-- | _posts/2015-03-29-visualizing-congress-with-d3.markdown | 72 | ||||
-rw-r--r-- | assets/data/legislators-current.json | 1 | ||||
-rw-r--r-- | assets/images/vis_ndgt0.jpg | bin | 0 -> 17538 bytes | |||
-rw-r--r-- | assets/images/vis_ndgt1.jpg | bin | 0 -> 18275 bytes | |||
-rw-r--r-- | assets/images/vis_ndgt2.jpg | bin | 0 -> 32276 bytes | |||
-rw-r--r-- | assets/scripts/d3/gender_terms_v0.js | 16 | ||||
-rw-r--r-- | assets/scripts/d3/gender_terms_v1.js | 38 | ||||
-rw-r--r-- | assets/scripts/d3/party_affiliation_v0.js | 62 | ||||
-rw-r--r-- | assets/scripts/d3/religion_v0.js | 97 | ||||
-rw-r--r-- | assets/scripts/d3/religion_v1.js | 60 | ||||
-rw-r--r-- | assets/stylesheets/site.scss | 16 |
11 files changed, 362 insertions, 0 deletions
diff --git a/_posts/2015-03-29-visualizing-congress-with-d3.markdown b/_posts/2015-03-29-visualizing-congress-with-d3.markdown new file mode 100644 index 0000000..f94b43c --- /dev/null +++ b/_posts/2015-03-29-visualizing-congress-with-d3.markdown @@ -0,0 +1,72 @@ +--- +title: Visualizing Congress with D3.js +description: Learning D3.js with Congress visualizations. +layout: post +category: writing +date: 2015-03-29 00:00:00 +--- + +<style> +.d3container { + width: 100%; + margin-top: 2em; + margin-bottom: 2em; +} +</style> + +I've been wanting to learn [D3.js](http://d3js.org/) for a while now, so I decided to create some visualizations of the United States Congress, inspired by Neil deGrasse Tyson: + +<div class="center"> +<img src="/assets/images/vis_ndgt0.jpg"> +<img src="/assets/images/vis_ndgt1.jpg"><br> +<img src="/assets/images/vis_ndgt2.jpg"><br> +</div> + +It wasn't hard to find some [open-source Congress data](https://github.com/unitedstates/congress-legislators), and converting the [YAML](https://github.com/unitedstates/congress-legislators/blob/master/legislators-current.yaml) to [JSON](/assets/data/legislators-current.json) was [practically a one-liner in Ruby](https://gist.github.com/benburwell/20e76f70645c8003b088#file-yaml-to-json-rb). Armed with my trusty JSON data, I set off to learn the basics of D3. + +Conveniently, D3 packages some of the base functionality that we often turn to jQuery for, eliminating the need to include yet another library. Using CSS selectors to query the DOM, adding nodes and attributes, and fetching JSON data are just a few such functions. + +D3 also comes with some pretty neat built-in plotting functions. I wanted to make a bubble chart to show the gender and number of terms of each legislator. My first attempt looked something like this: + +<div class="d3container" id="d3gender_terms_v0"></div> + +I used green dots for legislators who identified as female and blue dots for legislators who identified as male. [The code for this](/assets/scripts/d3/gender_terms_v0.js) is very simple, and it doesn't produce a totally awesome result. What I wanted to do next was to bundle all of the circles together in a meaningful way. + +Fortunately, D3 has a layout feature that allows you to easily use some pre-built layouts such as `d3.layout.pack()`. The unfortunate part is that I found the documentation rather hard to use and the particular data structure required by D3 to use the `pack()` layout was hard to track down as someone very new to D3. It turns out that this layout is a type of [hierarchical layout](https://github.com/mbostock/d3/wiki/Hierarchy-Layout), which expects an object with an array of `children`, a `value`, `depth`, and `parent`, all of which are used depending on the particular type of layout used. In the case of the `pack()` layout, D3 computes an *x*-coordinate, a *y*-coordinate, and a radius based on the `value` of each datum. + +While sorting the data does not produce an optimal packing, it does help visualize the makeup of Congress. I wanted to put the legislators who had the largest number of terms in the center of the pack. I also used the `d3.scale.category10()` function to produce a color value for each gender automatically. The [resulting code](/assets/scripts/d3/gender_terms_v1.js) produces a very nice bubble chart: + +<div class="d3container" id="d3gender_terms_v1"></div> + +Let's take advantage of some other data that are available to us and see the proportions in which different religions are prevalent. The dataset we're using only has religion data on about a third of the current legislators, so we can start off by making a bar graph of the proportions within that subset: + +<div class="d3container" id="d3religion_v0"></div> + +As you might expect, [the code for the bar graph](/assets/scripts/d3/religion_v0.js) is fairly simple. One interesting thing that we can do here is to create a linear scale specifying the domain and range. Essentially, this gives us a way to compute the appropriate width of the bars as a function of the actual data value. The most complex part of this visualization is the `transform()` function, which prepares the raw data for use in D3. This function is present due to the added challenge I gave myself of only transforming the dataset client-side. + +<aside><p><em>n.b.</em> — While transforming the data client-side on load adds to the page rendering time, I wanted to see how many sorts of visualizations I could make using just one dataset. In a production environment, it would probably make sense to flatten and transform the data as necessary for each visualization server-side, though an analysis of download time vs. time spent transforming the data for different visualizations would be necessary due to browser caching.</p></aside> + +We can also make [a quick donut chart](/assets/scripts/d3/religion_v1.js) to show the subset of legislators that we examined in our bar graph. + +<div class="d3container" id="d3religion_v1"></div> + +As you may have noticed, there is some overlap in what religion people identify as. Should "Roman Catholic" really get a separate bar from "Christian"? Or "Catholic"? This seems like a great opportunity to use another hierarchical representation. However, our data source does not contain any hierarchical data about religions. So let's find something else to visualize! + +Since we have information on each legislator's terms, let's see what we get by making a [partition layout](https://github.com/mbostock/d3/wiki/Partition-Layout) of their party affiliation. Since there are currently over 500 legislators in the U.S. Congress, we'll take a random 10% sample so that things don't get too out of hand: + +<div class="d3container" id="d3party_affiliation_v0"></div> + +Since the random sample is being taken in the client, you should see a new chart if you refresh the page. You can check out [the source code](/assets/scripts/d3/party_affiliation_v0.js) for full details. + +<hr> + +After a brief exploration of D3, it's clear that it's an extremely powerful if not completely intuitive library for building rich data-driven documents. I'm excited to continue learning more about D3 and using it in my own projects. You should definitely take a look at [Mike Bostock's site](http://bost.ocks.org/mike/) for some much cooler applications of D3 from its creator. There's also a [gallery](https://github.com/mbostock/d3/wiki/Gallery) as well as [tons of other examples](http://bl.ocks.org/mbostock). And of course, you can check out the [D3 source code on GitHub](https://github.com/mbostock/d3). + +Thanks for reading! If you have any comments, let me know [@bburwell](https://twitter.com/bburwell). + +<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script> +<script src="/assets/scripts/d3/gender_terms_v0.js"></script> +<script src="/assets/scripts/d3/gender_terms_v1.js"></script> +<script src="/assets/scripts/d3/religion_v0.js"></script> +<script src="/assets/scripts/d3/religion_v1.js"></script> +<script src="/assets/scripts/d3/party_affiliation_v0.js"></script> diff --git a/assets/data/legislators-current.json b/assets/data/legislators-current.json new file mode 100644 index 0000000..42a2c6a --- /dev/null +++ b/assets/data/legislators-current.json @@ -0,0 +1 @@ +{"legislators":[{"id":{"bioguide":"B000944","thomas":"00136","lis":"S307","govtrack":400050,"opensecrets":"N00003535","votesmart":27018,"fec":["H2OH13033","S6OH00163"],"cspan":5051,"wikipedia":"Sherrod Brown","house_history":9996,"ballotpedia":"Sherrod Brown","maplight":7573,"washington_post":"gIQA3O2w9O","icpsr":29389},"name":{"first":"Sherrod","last":"Brown","official_full":"Sherrod Brown"},"bio":{"birthday":"1952-11-09","gender":"M","religion":"Lutheran"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"OH","district":13,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"OH","district":13,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"OH","district":13,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OH","district":13,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OH","district":13,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OH","district":13,"party":"Democrat","url":"http://www.house.gov/sherrodbrown"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OH","district":13,"party":"Democrat","url":"http://www.house.gov/sherrodbrown"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"OH","class":1,"party":"Democrat","url":"http://brown.senate.gov/","address":"713 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-2315","fax":"202-228-6321","contact_form":"http://www.brown.senate.gov/contact/","office":"713 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"OH","party":"Democrat","class":1,"url":"http://www.brown.senate.gov","address":"713 Hart Senate Office Building Washington DC 20510","phone":"202-224-2315","fax":"202-228-6321","contact_form":"http://www.brown.senate.gov/contact","office":"713 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.brown.senate.gov/rss/feeds/?type=all&"}]},{"id":{"bioguide":"C000127","thomas":"00172","lis":"S275","govtrack":300018,"opensecrets":"N00007836","votesmart":27122,"fec":["S8WA00194","H2WA01054"],"cspan":26137,"wikipedia":"Maria Cantwell","house_history":10608,"ballotpedia":"Maria Cantwell","maplight":4541,"washington_post":"gIQAZxKkDP","icpsr":39310},"name":{"first":"Maria","last":"Cantwell","official_full":"Maria Cantwell"},"bio":{"birthday":"1958-10-13","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"WA","district":1,"party":"Democrat"},{"type":"sen","start":"2001-01-03","end":"2006-12-09","state":"WA","class":1,"party":"Democrat","url":"http://cantwell.senate.gov"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"WA","class":1,"party":"Democrat","url":"http://cantwell.senate.gov","address":"311 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-3441","fax":"202-228-0514","contact_form":"http://www.cantwell.senate.gov/contact/","office":"311 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"WA","party":"Democrat","class":1,"url":"http://www.cantwell.senate.gov","address":"311 Hart Senate Office Building Washington DC 20510","phone":"202-224-3441","fax":"202-228-0514","contact_form":"http://www.cantwell.senate.gov/public/index.cfm/email-maria","office":"311 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.cantwell.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"C000141","thomas":"00174","lis":"S308","govtrack":400064,"opensecrets":"N00001955","votesmart":26888,"icpsr":15408,"fec":["H6MD03177","S6MD03177"],"cspan":4004,"wikipedia":"Ben Cardin","house_history":10629,"ballotpedia":"Ben Cardin","maplight":7556,"washington_post":"gIQAGMu99O"},"name":{"first":"Benjamin","middle":"L.","last":"Cardin","official_full":"Benjamin L. Cardin"},"bio":{"birthday":"1943-10-05","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MD","district":3,"party":"Democrat","url":"http://www.house.gov/cardin"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MD","district":3,"party":"Democrat","url":"http://www.house.gov/cardin"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"MD","class":1,"party":"Democrat","url":"http://cardin.senate.gov/","address":"509 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-4524","fax":"202-224-1651","contact_form":"http://www.cardin.senate.gov/contact/","office":"509 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"MD","party":"Democrat","class":1,"url":"http://www.cardin.senate.gov","address":"509 Hart Senate Office Building Washington DC 20510","phone":"202-224-4524","fax":"202-224-1651","contact_form":"http://www.cardin.senate.gov/contact/","office":"509 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.cardin.senate.gov/rss/feeds/?type=all"}]},{"id":{"bioguide":"C000174","thomas":"00179","lis":"S277","govtrack":300019,"opensecrets":"N00012508","votesmart":22421,"icpsr":15015,"fec":["S8DE00079"],"cspan":663,"wikipedia":"Tom Carper","house_history":10671,"ballotpedia":"Tom Carper","maplight":4542,"washington_post":"gIQA3bm69O"},"name":{"first":"Thomas","middle":"Richard","last":"Carper","official_full":"Thomas R. Carper"},"bio":{"birthday":"1947-01-23","gender":"M","religion":"Presbyterian"},"terms":[{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"DE","district":0,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"DE","district":0,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"DE","district":0,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"DE","district":0,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"DE","district":0,"party":"Democrat"},{"type":"sen","start":"2001-01-03","end":"2006-12-09","state":"DE","class":1,"party":"Democrat","url":"http://carper.senate.gov"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"DE","class":1,"party":"Democrat","url":"http://carper.senate.gov","address":"513 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-2441","fax":"202-228-2190","contact_form":"http://www.carper.senate.gov/contact/","office":"513 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"DE","party":"Democrat","class":1,"url":"http://www.carper.senate.gov","address":"513 Hart Senate Office Building Washington DC 20510","phone":"202-224-2441","fax":"202-228-2190","contact_form":"http://www.carper.senate.gov/public/index.cfm/email-senator-carper","office":"513 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.carper.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"C001070","thomas":"01828","lis":"S309","govtrack":412246,"opensecrets":"N00027503","votesmart":2541,"fec":["S6PA00217"],"cspan":47036,"wikipedia":"Bob Casey, Jr.","ballotpedia":"Bob Casey, Jr.","maplight":4724,"washington_post":"gIQABeor9O","icpsr":40703},"name":{"first":"Robert","middle":"P.","last":"Casey","nickname":"Bob","suffix":"Jr.","official_full":"Robert P. Casey, Jr."},"bio":{"gender":"M","birthday":"1960-04-13"},"terms":[{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"PA","class":1,"party":"Democrat","url":"http://casey.senate.gov/","address":"393 RUSSELL SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-6324","fax":"202-228-0604","contact_form":"http://www.casey.senate.gov/contact/","office":"393 Russell Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"PA","party":"Democrat","class":1,"url":"http://www.casey.senate.gov","address":"393 Russell Senate Office Building Washington DC 20510","phone":"202-224-6324","fax":"202-228-0604","contact_form":"http://www.casey.senate.gov/contact/","office":"393 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.casey.senate.gov/rss/feeds/?all"}]},{"id":{"bioguide":"C001071","thomas":"01825","lis":"S310","govtrack":412248,"opensecrets":"N00027441","votesmart":65905,"fec":["S6TN00216","S4TN00187"],"cspan":1021114,"wikipedia":"Bob Corker","ballotpedia":"Bob Corker","maplight":4726,"washington_post":"gIQADOuy9O","icpsr":40705},"name":{"first":"Bob","last":"Corker","official_full":"Bob Corker"},"bio":{"birthday":"1952-08-24","gender":"M"},"terms":[{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"TN","class":1,"party":"Republican","url":"http://corker.senate.gov/","address":"185 DIRKSEN SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-3344","fax":"202-228-0566","contact_form":"http://www.corker.senate.gov/public/index.cfm?p=ContactMe","office":"185 Dirksen Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"TN","party":"Republican","class":1,"url":"http://www.corker.senate.gov","address":"425 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-3344","fax":"202-228-0566","contact_form":"http://www.corker.senate.gov/public/index.cfm/emailme","office":"425 Dirksen Senate Office Building","state_rank":"junior","rss_url":"http://www.corker.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"F000062","thomas":"01332","lis":"S221","govtrack":300043,"opensecrets":"N00007364","votesmart":53273,"fec":["S0CA00199"],"cspan":13061,"wikipedia":"Dianne Feinstein","house_history":13044,"ballotpedia":"Dianne Feinstein","maplight":4564,"washington_post":"gIQAnrCyDP","icpsr":49300},"name":{"first":"Dianne","last":"Feinstein","official_full":"Dianne Feinstein"},"bio":{"birthday":"1933-06-22","gender":"F","religion":"Jewish"},"terms":[{"type":"sen","start":"1992-11-10","end":"1994-12-01","state":"CA","class":1,"party":"Democrat"},{"type":"sen","start":"1995-01-04","end":"2000-12-15","state":"CA","class":1,"party":"Democrat"},{"type":"sen","start":"2001-01-03","end":"2006-12-09","state":"CA","class":1,"party":"Democrat","url":"http://feinstein.senate.gov"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"CA","class":1,"party":"Democrat","url":"http://feinstein.senate.gov","address":"331 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-3841","fax":"202-228-3954","contact_form":"http://www.feinstein.senate.gov/public/index.cfm/e-mail-me","office":"331 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"CA","party":"Democrat","class":1,"url":"http://www.feinstein.senate.gov","address":"331 Hart Senate Office Building Washington DC 20510","phone":"202-224-3841","fax":"202-228-3954","contact_form":"https://www.feinstein.senate.gov/public/index.cfm/e-mail-me","office":"331 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.feinstein.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"H000338","thomas":"01351","lis":"S118","govtrack":300052,"opensecrets":"N00009869","votesmart":53352,"icpsr":14503,"fec":["S6UT00063","P00003806"],"cspan":189,"wikipedia":"Orrin Hatch","ballotpedia":"Orrin Hatch","maplight":4571,"washington_post":"gIQAzJiz9O"},"name":{"first":"Orrin","middle":"G.","last":"Hatch","official_full":"Orrin G. Hatch"},"bio":{"birthday":"1934-03-22","gender":"M","religion":"Latter Day Saints"},"terms":[{"type":"sen","start":"1977-01-04","end":"1982-12-23","state":"UT","class":1,"party":"Republican"},{"type":"sen","start":"1983-01-03","end":"1988-10-22","state":"UT","class":1,"party":"Republican"},{"type":"sen","start":"1989-01-03","end":"1994-12-01","state":"UT","class":1,"party":"Republican"},{"type":"sen","start":"1995-01-04","end":"2000-12-15","state":"UT","class":1,"party":"Republican"},{"type":"sen","start":"2001-01-03","end":"2006-12-09","state":"UT","class":1,"party":"Republican","url":"http://hatch.senate.gov/"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"UT","class":1,"party":"Republican","url":"http://hatch.senate.gov/","address":"104 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-5251","fax":"202-224-6331","contact_form":"http://www.hatch.senate.gov/public/index.cfm/contact?p=Email-Orrin","office":"104 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"UT","party":"Republican","class":1,"url":"http://www.hatch.senate.gov","address":"104 Hart Senate Office Building Washington DC 20510","phone":"202-224-5251","fax":"202-224-6331","contact_form":"http://www.hatch.senate.gov/public/index.cfm/contact?p=Email-Orrin","office":"104 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.hatch.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"K000367","thomas":"01826","lis":"S311","govtrack":412242,"opensecrets":"N00027500","votesmart":65092,"fec":["S6MN00267"],"cspan":83701,"wikipedia":"Amy Klobuchar","house_history":16558,"ballotpedia":"Amy Klobuchar","maplight":4721,"washington_post":"gIQA5G259O","icpsr":40700},"name":{"first":"Amy","middle":"Jean","last":"Klobuchar","official_full":"Amy Klobuchar"},"bio":{"birthday":"1960-05-25","gender":"F"},"terms":[{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"MN","class":1,"party":"Democrat","url":"http://klobuchar.senate.gov/","address":"302 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-3244","fax":"202-228-2186","contact_form":"http://www.klobuchar.senate.gov/emailamy.cfm","office":"302 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"MN","party":"Democrat","class":1,"url":"http://www.klobuchar.senate.gov","address":"302 Hart Senate Office Building Washington DC 20510","phone":"202-224-3244","fax":"202-228-2186","contact_form":"http://www.klobuchar.senate.gov/public/email-amy","office":"302 Hart Senate Office Building","state_rank":"senior"}]},{"id":{"bioguide":"M001170","thomas":"01820","lis":"S312","govtrack":412243,"opensecrets":"N00027694","votesmart":2109,"fec":["S6MO00305","P80005721"],"cspan":1012014,"wikipedia":"Claire McCaskill","house_history":18811,"ballotpedia":"Claire McCaskill","maplight":4722,"washington_post":"gIQAiqnb9O","icpsr":40701},"name":{"first":"Claire","last":"McCaskill","official_full":"Claire McCaskill"},"bio":{"birthday":"1953-07-24","gender":"F"},"terms":[{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"MO","class":1,"party":"Democrat","url":"http://mccaskill.senate.gov/","address":"506 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-6154","fax":"202-228-6326","contact_form":"http://www.mccaskill.senate.gov/?p=contact","office":"506 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"MO","party":"Democrat","class":1,"url":"http://www.mccaskill.senate.gov","address":"506 Hart Senate Office Building Washington DC 20510","phone":"202-224-6154","fax":"202-228-6326","contact_form":"http://www.mccaskill.senate.gov/?p=contact","office":"506 Hart Senate Office Building","state_rank":"senior","rss_url":"http://mccaskill.senate.gov/rss/?p=news"}]},{"id":{"bioguide":"M000639","thomas":"00791","lis":"S306","govtrack":400272,"opensecrets":"N00000699","votesmart":26961,"fec":["H2NJ13075","S6NJ00289"],"cspan":29608,"house_history":18124,"wikipedia":"Bob Menendez","ballotpedia":"Bob Menendez","maplight":7568,"washington_post":"gIQAYgYw6O","icpsr":29373},"name":{"first":"Robert","last":"Menéndez","nickname":"Bob","official_full":"Robert Menendez"},"other_names":[{"last":"Menendez"}],"bio":{"birthday":"1954-01-01","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NJ","district":13,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NJ","district":13,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NJ","district":13,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NJ","district":13,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NJ","district":13,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NJ","district":13,"party":"Democrat","url":"http://menendez.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-01-16","state":"NJ","district":13,"party":"Democrat","url":"http://menendez.house.gov"},{"type":"sen","start":"2006-01-18","end":"2006-12-09","state":"NJ","class":1,"party":"Democrat","url":"http://menendez.senate.gov/"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"NJ","class":1,"party":"Democrat","url":"http://menendez.senate.gov/","address":"528 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-4744","fax":"202-228-2197","contact_form":"http://menendez.senate.gov/contact/","office":"528 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"NJ","party":"Democrat","class":1,"url":"http://menendez.senate.gov","address":"528 Hart Senate Office Building Washington DC 20510","phone":"202-224-4744","fax":"202-228-2197","contact_form":"http://www.menendez.senate.gov/contact","office":"528 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.menendez.senate.gov/rss/feeds/index.cfm?type=news"}]},{"id":{"bioguide":"N000032","thomas":"00859","lis":"S282","govtrack":300078,"opensecrets":"N00009926","votesmart":1606,"icpsr":14651,"fec":["S8FL00166"],"cspan":1931,"wikipedia":"Bill Nelson","house_history":18875,"ballotpedia":"Bill Nelson (Florida)","maplight":4595,"washington_post":"gIQAlLuy9O"},"name":{"first":"Bill","last":"Nelson","official_full":"Bill Nelson"},"bio":{"birthday":"1942-09-29","gender":"M","religion":"Presbyterian"},"terms":[{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"FL","district":9,"party":"Democrat"},{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"FL","district":9,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"FL","district":11,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"FL","district":11,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"FL","district":11,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"FL","district":11,"party":"Democrat"},{"type":"sen","start":"2001-01-03","end":"2006-12-09","state":"FL","class":1,"party":"Democrat","url":"http://billnelson.senate.gov/"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"FL","class":1,"party":"Democrat","url":"http://billnelson.senate.gov/","address":"716 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-5274","fax":"202-228-2183","contact_form":"http://www.billnelson.senate.gov/contact/index.cfm","office":"716 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"FL","party":"Democrat","class":1,"url":"http://www.billnelson.senate.gov","address":"716 Hart Senate Office Building Washington DC 20510","phone":"202-224-5274","fax":"202-228-2183","contact_form":"http://www.billnelson.senate.gov/contact-bill","office":"716 Hart Senate Office Building","state_rank":"senior"}]},{"id":{"bioguide":"S000033","thomas":"01010","lis":"S313","govtrack":400357,"opensecrets":"N00000528","votesmart":27110,"fec":["H8VT01016","S4VT00033"],"cspan":994,"wikipedia":"Bernie Sanders","ballotpedia":"Bernie Sanders","maplight":7545,"washington_post":"gIQABiDjMP","icpsr":29147,"house_history":21173},"name":{"first":"Bernard","last":"Sanders","nickname":"Bernie","official_full":"Bernard Sanders"},"bio":{"birthday":"1941-09-08","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"VT","district":0,"party":"Independent"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"VT","district":0,"party":"Independent"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"VT","district":0,"party":"Independent"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"VT","district":0,"party":"Independent"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"VT","district":0,"party":"Independent"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"VT","district":0,"party":"Independent"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"VT","district":0,"party":"Independent","url":"http://bernie.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"VT","district":0,"party":"Independent","url":"http://bernie.house.gov"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"VT","class":1,"party":"Independent","url":"http://sanders.senate.gov/","address":"332 DIRKSEN SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-5141","fax":"202-228-0776","contact_form":"http://www.sanders.senate.gov/contact/","office":"332 Dirksen Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"VT","party":"Independent","caucus":"Democrat","class":1,"url":"http://www.sanders.senate.gov","address":"332 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-5141","fax":"202-228-0776","contact_form":"http://www.sanders.senate.gov/contact/comment","office":"332 Dirksen Senate Office Building","state_rank":"junior","rss_url":"http://www.sanders.senate.gov/rss/"}]},{"id":{"bioguide":"S000770","thomas":"01531","lis":"S284","govtrack":300093,"opensecrets":"N00004118","votesmart":515,"fec":["S8MI00281","H6MI08163"],"cspan":45451,"wikipedia":"Debbie Stabenow","ballotpedia":"Debbie Stabenow","maplight":4609,"washington_post":"gIQA5t8DAP","icpsr":29732,"house_history":22090},"name":{"first":"Debbie","middle":"Ann","last":"Stabenow","official_full":"Debbie Stabenow"},"bio":{"birthday":"1950-04-29","gender":"F","religion":"United Methodist"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MI","district":8,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MI","district":8,"party":"Democrat"},{"type":"sen","start":"2001-01-03","end":"2006-12-09","state":"MI","class":1,"party":"Democrat","url":"http://stabenow.senate.gov/"},{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"MI","class":1,"party":"Democrat","url":"http://stabenow.senate.gov/","address":"133 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-4822","fax":"202-228-0325","contact_form":"http://www.stabenow.senate.gov/?p=contact","office":"133 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"MI","party":"Democrat","class":1,"url":"http://www.stabenow.senate.gov","address":"133 Hart Senate Office Building Washington DC 20510","phone":"202-224-4822","fax":"202-228-0325","contact_form":"http://www.stabenow.senate.gov/?p=contact","office":"133 Hart Senate Office Building","state_rank":"senior","rss_url":"http://stabenow.senate.gov/rss/?p=news"}]},{"id":{"bioguide":"T000464","thomas":"01829","lis":"S314","govtrack":412244,"opensecrets":"N00027605","votesmart":20928,"fec":["S6MT00162"],"cspan":1020176,"wikipedia":"Jon Tester","ballotpedia":"Jon Tester","maplight":4723,"washington_post":"gIQAw67AAP","icpsr":40702},"name":{"first":"Jon","last":"Tester","official_full":"Jon Tester"},"bio":{"birthday":"1956-08-21","gender":"M"},"terms":[{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"MT","class":1,"party":"Democrat","url":"http://tester.senate.gov/","address":"724 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-2644","fax":"202-224-8594","contact_form":"http://www.tester.senate.gov/Contact/index.cfm","office":"724 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"MT","party":"Democrat","class":1,"url":"http://www.tester.senate.gov","address":"706 Hart Senate Office Building Washington DC 20510","phone":"202-224-2644","fax":"202-224-8594","contact_form":"http://www.tester.senate.gov/?p=email_senator","office":"706 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.tester.senate.gov/rss/?p=hot_topic"}]},{"id":{"bioguide":"W000802","thomas":"01823","lis":"S316","govtrack":412247,"opensecrets":"N00027533","votesmart":2572,"fec":["S6RI00221"],"cspan":92235,"wikipedia":"Sheldon Whitehouse","ballotpedia":"Sheldon Whitehouse","maplight":4725,"washington_post":"gIQA7KHw9O","icpsr":40704},"name":{"first":"Sheldon","last":"Whitehouse","official_full":"Sheldon Whitehouse"},"bio":{"gender":"M","birthday":"1955-10-20"},"terms":[{"type":"sen","start":"2007-01-04","end":"2013-01-03","state":"RI","class":1,"party":"Democrat","url":"http://whitehouse.senate.gov/","address":"717 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-2921","fax":"202-228-6362","contact_form":"http://www.whitehouse.senate.gov/contact/","office":"717 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"RI","party":"Democrat","class":1,"url":"http://www.whitehouse.senate.gov","address":"530 Hart Senate Office Building Washington DC 20510","phone":"202-224-2921","fax":"202-228-6362","contact_form":"http://www.whitehouse.senate.gov/contact","office":"530 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.whitehouse.senate.gov/rss/feeds/?type=all&cachebuster=1"}]},{"id":{"bioguide":"B001261","thomas":"01881","lis":"S317","govtrack":412251,"opensecrets":"N00006236","votesmart":52662,"fec":["S6WY00068"],"cspan":1024777,"wikipedia":"John Barrasso","ballotpedia":"John Barrasso","maplight":7577,"washington_post":"gIQASOzBAP","icpsr":40707},"name":{"first":"John","middle":"A.","last":"Barrasso","official_full":"John Barrasso"},"bio":{"birthday":"1952-07-21","gender":"M"},"terms":[{"type":"sen","start":"2007-06-25","end":"2013-01-03","state":"WY","class":1,"party":"Republican","url":"http://barrasso.senate.gov","address":"307 DIRKSEN SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-6441","fax":"202-224-1724","contact_form":"http://www.barrasso.senate.gov/public/index.cfm?FuseAction=ContactUs.ContactForm","office":"307 Dirksen Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"WY","party":"Republican","class":1,"url":"http://www.barrasso.senate.gov","address":"307 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-6441","fax":"202-224-1724","contact_form":"http://www.barrasso.senate.gov/public/index.cfm?FuseAction=ContactUs.ContactForm","office":"307 Dirksen Senate Office Building","state_rank":"junior","rss_url":"http://www.barrasso.senate.gov/public/index.cfm?FuseAction=Rss.Feed"}]},{"id":{"bioguide":"W000437","thomas":"01226","lis":"S318","govtrack":400432,"opensecrets":"N00003280","votesmart":21926,"fec":["H4MS01078","S8MS00196"],"cspan":18203,"wikipedia":"Roger Wicker","ballotpedia":"Roger Wicker","maplight":7588,"washington_post":"gIQAC9ZCAP","icpsr":29534,"house_history":23734},"name":{"first":"Roger","middle":"F.","last":"Wicker","official_full":"Roger F. Wicker"},"bio":{"birthday":"1951-07-05","gender":"M","religion":"Southern Baptist"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MS","district":1,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MS","district":1,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MS","district":1,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MS","district":1,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MS","district":1,"party":"Republican","url":"http://www.house.gov/wicker"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MS","district":1,"party":"Republican","url":"http://www.house.gov/wicker"},{"type":"rep","start":"2007-01-04","end":"2007-12-31","state":"MS","district":1,"party":"Republican","url":"http://www.house.gov/wicker"},{"type":"sen","start":"2007-12-31","end":"2013-01-03","state":"MS","class":1,"party":"Republican","url":"http://wicker.senate.gov","address":"555 DIRKSEN SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-6253","fax":"202-228-0378","contact_form":"http://www.wicker.senate.gov/public/index.cfm?FuseAction=Contact.EMailSenatorWicker","office":"555 Dirksen Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"MS","party":"Republican","class":1,"url":"http://www.wicker.senate.gov","address":"555 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-6253","fax":"202-228-0378","contact_form":"http://www.wicker.senate.gov/public/index.cfm/contact","office":"555 Dirksen Senate Office Building","state_rank":"junior"}]},{"id":{"bioguide":"A000360","thomas":"01695","lis":"S289","govtrack":300002,"opensecrets":"N00009888","votesmart":15691,"fec":["S2TN00058","P60003225"],"cspan":5,"wikipedia":"Lamar Alexander","ballotpedia":"Lamar Alexander","maplight":4527,"washington_post":"gIQAzZQL9O","icpsr":40304},"name":{"first":"Lamar","last":"Alexander","official_full":"Lamar Alexander"},"bio":{"birthday":"1940-07-03","gender":"M","religion":"Presbyterian"},"terms":[{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"TN","class":2,"party":"Republican","url":"http://alexander.senate.gov/"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"TN","class":2,"party":"Republican","url":"http://www.alexander.senate.gov","address":"455 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-4944","fax":"202-228-3398","contact_form":"http://www.alexander.senate.gov/public/index.cfm?p=Email","office":"455 Dirksen Senate Office Building","state_rank":"senior","rss_url":"http://www.alexander.senate.gov/public/?a=rss.feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"TN","class":2,"party":"Republican","url":"http://www.alexander.senate.gov","address":"455 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-4944","fax":"202-228-3398","contact_form":"http://www.alexander.senate.gov/public/index.cfm?p=Email","office":"455 Dirksen Senate Office Building","state_rank":"senior","rss_url":"http://www.alexander.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"C000567","thomas":"00213","lis":"S136","govtrack":300023,"opensecrets":"N00003328","votesmart":53312,"icpsr":14009,"fec":["S8MS00055"],"cspan":1200,"wikipedia":"Thad Cochran","house_history":11160,"ballotpedia":"Thad Cochran","maplight":4546,"washington_post":"gIQAJk599O"},"name":{"first":"Thad","last":"Cochran","official_full":"Thad Cochran"},"bio":{"birthday":"1937-12-07","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1973-01-03","end":"1974-12-20","state":"MS","district":4,"party":"Republican"},{"type":"rep","start":"1975-01-14","end":"1976-10-01","state":"MS","district":4,"party":"Republican"},{"type":"rep","start":"1977-01-04","end":"1978-10-15","state":"MS","district":4,"party":"Republican"},{"type":"sen","start":"1979-01-15","end":"1984-10-12","state":"MS","class":2,"party":"Republican"},{"type":"sen","start":"1985-01-03","end":"1990-10-28","state":"MS","class":2,"party":"Republican"},{"type":"sen","start":"1991-01-03","end":"1996-10-04","state":"MS","class":2,"party":"Republican"},{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"MS","class":2,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"MS","class":2,"party":"Republican","url":"http://cochran.senate.gov"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"MS","class":2,"party":"Republican","url":"http://www.cochran.senate.gov","address":"113 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-5054","fax":"202-224-9450","contact_form":"http://www.cochran.senate.gov/public/index.cfm/email-me","office":"113 Dirksen Senate Office Building","state_rank":"senior","rss_url":"http://www.cochran.senate.gov/public/index.cfm/rss/feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"MS","class":2,"party":"Republican","url":"http://www.cochran.senate.gov","address":"113 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-5054","fax":"202-224-9450","contact_form":"http://www.cochran.senate.gov/public/index.cfm/email-me","office":"113 Dirksen Senate Office Building","state_rank":"senior","rss_url":"http://www.cochran.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"C001035","thomas":"01541","lis":"S252","govtrack":300025,"opensecrets":"N00000491","votesmart":379,"fec":["S6ME00159"],"cspan":45738,"wikipedia":"Susan Collins","house_history":11742,"ballotpedia":"Susan Collins","maplight":4548,"washington_post":"gIQAPvDu9O","icpsr":49703},"name":{"first":"Susan","middle":"M.","last":"Collins","official_full":"Susan M. Collins"},"bio":{"birthday":"1952-12-07","gender":"F","religion":"Catholic"},"terms":[{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"ME","class":2,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"ME","class":2,"party":"Republican","url":"http://collins.senate.gov"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"ME","class":2,"party":"Republican","url":"http://www.collins.senate.gov","address":"413 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-2523","fax":"202-224-2693","contact_form":"http://www.collins.senate.gov/public/index.cfm/email","office":"413 Dirksen Senate Office Building","state_rank":"senior","rss_url":"http://www.collins.senate.gov/public/?a=rss.feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"ME","class":2,"party":"Republican","url":"http://www.collins.senate.gov","address":"413 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-2523","fax":"202-224-2693","contact_form":"http://www.collins.senate.gov/public/index.cfm/email","office":"413 Dirksen Senate Office Building","state_rank":"senior","rss_url":"http://www.collins.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"C001056","thomas":"01692","lis":"S287","govtrack":300027,"opensecrets":"N00024852","votesmart":15375,"fec":["S2TX00106"],"cspan":93131,"wikipedia":"John Cornyn","ballotpedia":"John Cornyn","maplight":4550,"washington_post":"gIQAy80L9O","icpsr":40305},"name":{"first":"John","last":"Cornyn","official_full":"John Cornyn"},"bio":{"birthday":"1952-02-02","gender":"M","religion":"Church of Christ"},"leadership_roles":[{"title":"Minority Whip","chamber":"senate","start":"2013-01-03","end":"2015-01-03"},{"title":"Majority Whip","chamber":"senate","start":"2015-01-03"}],"terms":[{"type":"sen","start":"2002-01-01","end":"2002-11-22","state":"TX","class":2,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"TX","class":2,"party":"Republican","url":"http://cornyn.senate.gov/"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"TX","class":2,"party":"Republican","url":"http://www.cornyn.senate.gov","address":"517 Hart Senate Office Building Washington DC 20510","phone":"202-224-2934","fax":"202-228-2856","contact_form":"http://www.cornyn.senate.gov/public/index.cfm?p=ContactForm","office":"517 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.cornyn.senate.gov/public/?a=rss.feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"TX","class":2,"party":"Republican","url":"http://www.cornyn.senate.gov","address":"517 Hart Senate Office Building Washington DC 20510","phone":"202-224-2934","fax":"202-228-2856","contact_form":"http://www.cornyn.senate.gov/public/index.cfm?p=ContactForm","office":"517 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.cornyn.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"D000563","thomas":"00326","lis":"S253","govtrack":300038,"opensecrets":"N00004981","votesmart":26847,"icpsr":15021,"fec":["S6IL00151","H2IL20026"],"cspan":6741,"wikipedia":"Dick Durbin","house_history":12527,"ballotpedia":"Dick Durbin","maplight":4560,"washington_post":"gIQArl8V9O"},"name":{"first":"Richard","middle":"J.","last":"Durbin","official_full":"Richard J. Durbin"},"bio":{"birthday":"1944-11-21","gender":"M","religion":"Roman Catholic"},"leadership_roles":[{"title":"Minority Whip","chamber":"senate","start":"2005-01-04","end":"2006-12-09"},{"title":"Majority Whip","chamber":"senate","start":"2007-01-04","end":"2009-01-06"},{"title":"Majority Whip","chamber":"senate","start":"2009-01-06","end":"2011-01-05"},{"title":"Majority Whip","chamber":"senate","start":"2011-01-05","end":"2013-01-03"},{"title":"Majority Whip","chamber":"senate","start":"2013-01-03","end":"2015-01-03"},{"title":"Minority Whip","chamber":"senate","start":"2015-01-03"}],"terms":[{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"IL","district":20,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"IL","district":20,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"IL","district":20,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"IL","district":20,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"IL","district":20,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"IL","district":20,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"IL","district":20,"party":"Democrat"},{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"IL","class":2,"party":"Democrat"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"IL","class":2,"party":"Democrat","url":"http://durbin.senate.gov"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"IL","class":2,"party":"Democrat","url":"http://www.durbin.senate.gov","address":"711 Hart Senate Office Building Washington DC 20510","phone":"202-224-2152","fax":"202-228-0400","contact_form":"http://www.durbin.senate.gov/public/index.cfm/contact","office":"711 Hart Senate Office Building","state_rank":"senior","rss_url":"http://durbin.senate.gov/public/index.cfm/rss/feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"IL","class":2,"party":"Democrat","url":"http://www.durbin.senate.gov","address":"711 Hart Senate Office Building Washington DC 20510","phone":"202-224-2152","fax":"202-228-0400","contact_form":"http://www.durbin.senate.gov/public/index.cfm/contact","office":"711 Hart Senate Office Building","state_rank":"senior","rss_url":"http://durbin.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"E000285","thomas":"01542","lis":"S254","govtrack":300041,"opensecrets":"N00006249","votesmart":558,"fec":["S6WY00126"],"cspan":45824,"wikipedia":"Mike Enzi","ballotpedia":"Mike Enzi","maplight":4562,"washington_post":"gIQAAWfCAP","icpsr":49706},"name":{"first":"Michael","middle":"B.","last":"Enzi","official_full":"Michael B. Enzi"},"bio":{"birthday":"1944-02-01","gender":"M","religion":"Presbyterian"},"terms":[{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"WY","class":2,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"WY","class":2,"party":"Republican","url":"http://enzi.senate.gov"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"WY","class":2,"party":"Republican","url":"http://www.enzi.senate.gov","address":"379A Russell Senate Office Building Washington DC 20510","phone":"202-224-3424","fax":"202-228-0359","contact_form":"http://www.enzi.senate.gov/public/index.cfm/contact?p=e-mail-senator-enzi","office":"379a Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.enzi.senate.gov/public/index.cfm/rss/feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"WY","class":2,"party":"Republican","url":"http://www.enzi.senate.gov","address":"379A Russell Senate Office Building Washington DC 20510","phone":"202-224-3424","fax":"202-228-0359","contact_form":"http://www.enzi.senate.gov/public/index.cfm/contact?p=e-mail-senator-enzi","office":"379a Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.enzi.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"G000359","thomas":"00452","lis":"S293","govtrack":300047,"opensecrets":"N00009975","votesmart":21992,"fec":["S0SC00149","H4SC03087"],"cspan":36782,"wikipedia":"Lindsey Graham","house_history":14015,"ballotpedia":"Lindsey Graham","maplight":4566,"washington_post":"gIQAEdOu9O","icpsr":29566},"name":{"first":"Lindsey","middle":"O.","last":"Graham","official_full":"Lindsey Graham"},"bio":{"birthday":"1955-07-09","gender":"M","religion":"Southern Baptist"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"SC","district":3,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"SC","district":3,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"SC","district":3,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"SC","district":3,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"SC","class":2,"party":"Republican","url":"http://lgraham.senate.gov/"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"SC","class":2,"party":"Republican","url":"http://www.lgraham.senate.gov","address":"290 Russell Senate Office Building Washington DC 20510","phone":"202-224-5972","fax":"202-224-3808","contact_form":"http://www.lgraham.senate.gov/public/index.cfm?FuseAction=Contact.EmailSenatorGraham","office":"290 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.lgraham.senate.gov/public/index.cfm?FuseAction=Rss.Feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"SC","class":2,"party":"Republican","url":"http://www.lgraham.senate.gov","address":"290 Russell Senate Office Building Washington DC 20510","phone":"202-224-5972","fax":"202-224-3808","contact_form":"http://www.lgraham.senate.gov/public/index.cfm?FuseAction=Contact.EmailSenatorGraham","office":"290 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.lgraham.senate.gov/public/index.cfm?FuseAction=Rss.Feed"}]},{"id":{"bioguide":"I000024","thomas":"00583","lis":"S236","govtrack":300055,"opensecrets":"N00005582","votesmart":27027,"icpsr":15424,"fec":["S4OK00083","H6OK01102"],"cspan":5619,"wikipedia":"Jim Inhofe","house_history":15645,"ballotpedia":"Jim Inhofe","maplight":4573,"washington_post":"gIQASu669O"},"name":{"first":"James","middle":"M.","last":"Inhofe","nickname":"Jim","official_full":"James M. Inhofe"},"bio":{"birthday":"1934-11-17","gender":"M","religion":"Presbyterian"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"OK","district":1,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"OK","district":1,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"OK","district":1,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-11-15","state":"OK","district":1,"party":"Republican"},{"type":"sen","start":"1994-01-01","end":"1996-10-04","state":"OK","class":2,"party":"Republican"},{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"OK","class":2,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"OK","class":2,"party":"Republican","url":"http://inhofe.senate.gov/"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"OK","class":2,"party":"Republican","url":"http://www.inhofe.senate.gov","address":"205 Russell Senate Office Building Washington DC 20510","phone":"202-224-4721","fax":"202-228-0380","contact_form":"http://www.inhofe.senate.gov/contact","office":"205 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.inhofe.senate.gov/rss/feeds/?type=all&cachebuster=eea6c4d7%2d939c%2d5c1e%2db6c7aa3b8b291208"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"OK","class":2,"party":"Republican","url":"http://www.inhofe.senate.gov","address":"205 Russell Senate Office Building Washington DC 20510","phone":"202-224-4721","fax":"202-228-0380","contact_form":"http://www.inhofe.senate.gov/contact","office":"205 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.inhofe.senate.gov/rss/feeds/?type=all&cachebuster=eea6c4d7%2d939c%2d5c1e%2db6c7aa3b8b291208"}]},{"id":{"bioguide":"M000355","thomas":"01395","lis":"S174","govtrack":300072,"opensecrets":"N00003389","votesmart":53298,"icpsr":14921,"fec":["S2KY00012"],"cspan":2351,"wikipedia":"Mitch McConnell","ballotpedia":"Mitch McConnell","maplight":4590,"washington_post":"gIQAYR2b9O"},"name":{"first":"Mitch","last":"McConnell","official_full":"Mitch McConnell"},"bio":{"birthday":"1942-02-20","gender":"M","religion":"Baptist"},"leadership_roles":[{"title":"Minority Leader","chamber":"senate","start":"2007-01-04","end":"2009-01-06"},{"title":"Minority Leader","chamber":"senate","start":"2009-01-06","end":"2011-01-05"},{"title":"Minority Leader","chamber":"senate","start":"2011-01-05","end":"2013-01-03"},{"title":"Minority Leader","chamber":"senate","start":"2013-01-03","end":"2015-01-03"},{"title":"Majority Leader","chamber":"senate","start":"2015-01-03"}],"terms":[{"type":"sen","start":"1985-01-03","end":"1990-10-28","state":"KY","class":2,"party":"Republican"},{"type":"sen","start":"1991-01-03","end":"1996-10-04","state":"KY","class":2,"party":"Republican"},{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"KY","class":2,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"KY","class":2,"party":"Republican","url":"http://mcconnell.senate.gov/"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"KY","class":2,"party":"Republican","url":"http://www.mcconnell.senate.gov","address":"317 Russell Senate Office Building Washington DC 20510","phone":"202-224-2541","fax":"202-224-2499","contact_form":"http://www.mcconnell.senate.gov/public/index.cfm?p=ContactForm","office":"317 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.mcconnell.senate.gov/public/?a=rss.feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"KY","class":2,"party":"Republican","url":"http://www.mcconnell.senate.gov","address":"317 Russell Senate Office Building Washington DC 20510","phone":"202-224-2541","fax":"202-224-2499","contact_form":"http://www.mcconnell.senate.gov/public/index.cfm?p=ContactForm","office":"317 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.mcconnell.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"M001176","thomas":"01900","lis":"S322","govtrack":412325,"opensecrets":"N00029303","votesmart":23644,"fec":["S8OR00207"],"cspan":1029842,"wikipedia":"Jeff Merkley","ballotpedia":"Jeff Merkley","maplight":7604,"washington_post":"gIQAosnb9O","icpsr":40908},"name":{"first":"Jeff","last":"Merkley","official_full":"Jeff Merkley"},"bio":{"birthday":"1956-10-24","gender":"M"},"terms":[{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"OR","class":2,"party":"Democrat","url":"http://www.merkley.senate.gov","address":"313 Hart Senate Office Building Washington DC 20510","phone":"202-224-3753","fax":"202-228-3997","contact_form":"http://www.merkley.senate.gov/contact/","office":"313 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.merkley.senate.gov/rss/"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"OR","class":2,"party":"Democrat","url":"http://www.merkley.senate.gov","address":"313 Hart Senate Office Building Washington DC 20510","phone":"202-224-3753","fax":"202-228-3997","contact_form":"http://www.merkley.senate.gov/contact/","office":"313 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.merkley.senate.gov/rss/"}]},{"id":{"bioguide":"R000122","thomas":"00949","lis":"S259","govtrack":300081,"opensecrets":"N00000362","votesmart":27060,"fec":["S6RI00163","H0RI02071"],"cspan":24239,"wikipedia":"Jack Reed (politician)","house_history":20232,"ballotpedia":"Jack Reed","maplight":4597,"washington_post":"gIQAT2gt9O","icpsr":29142},"name":{"first":"John","middle":"F.","last":"Reed","nickname":"Jack","official_full":"Jack Reed"},"bio":{"birthday":"1949-11-12","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"RI","district":2,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"RI","district":2,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"RI","district":2,"party":"Democrat"},{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"RI","class":2,"party":"Democrat"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"RI","class":2,"party":"Democrat","url":"http://reed.senate.gov/"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"RI","class":2,"party":"Democrat","url":"http://www.reed.senate.gov","address":"728 Hart Senate Office Building Washington DC 20510","phone":"202-224-4642","fax":"202-224-4680","contact_form":"http://www.reed.senate.gov/contact/","office":"728 Hart Senate Office Building","state_rank":"senior","rss_url":"https://www.reed.senate.gov//rss/feeds/?type=all"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"RI","class":2,"party":"Democrat","url":"http://www.reed.senate.gov","address":"728 Hart Senate Office Building Washington DC 20510","phone":"202-224-4642","fax":"202-224-4680","contact_form":"http://www.reed.senate.gov/contact/","office":"728 Hart Senate Office Building","state_rank":"senior","rss_url":"https://www.reed.senate.gov//rss/feeds/?type=all"}]},{"id":{"bioguide":"R000584","thomas":"01896","lis":"S323","govtrack":412322,"opensecrets":"N00029441","votesmart":2919,"fec":["S8ID00092"],"cspan":1020034,"wikipedia":"Jim Risch","ballotpedia":"Jim Risch","maplight":7581,"washington_post":"gIQAWIdW9O","icpsr":40902},"name":{"first":"James","last":"Risch","official_full":"James E. Risch"},"bio":{"birthday":"1943-05-03","gender":"M"},"terms":[{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"ID","class":2,"party":"Republican","url":"http://www.risch.senate.gov","address":"483 Russell Senate Office Building Washington DC 20510","phone":"202-224-2752","fax":"202-224-2573","contact_form":"http://www.risch.senate.gov/public/index.cfm?p=Email","office":"483 Russell Senate Office Building","state_rank":"junior"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"ID","class":2,"party":"Republican","url":"http://www.risch.senate.gov","address":"483 Russell Senate Office Building Washington DC 20510","phone":"202-224-2752","fax":"202-224-2573","contact_form":"http://www.risch.senate.gov/public/index.cfm?p=Email","office":"483 Russell Senate Office Building","state_rank":"junior"}]},{"id":{"bioguide":"R000307","thomas":"00968","lis":"S260","govtrack":300083,"opensecrets":"N00005285","votesmart":26866,"icpsr":14852,"fec":["S6KS00080","H0KS01016"],"cspan":16354,"wikipedia":"Pat Roberts","house_history":20465,"ballotpedia":"Pat Roberts","maplight":4599,"washington_post":"gIQAUECAAP"},"name":{"first":"Pat","last":"Roberts","official_full":"Pat Roberts"},"bio":{"birthday":"1936-04-20","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"KS","district":1,"party":"Republican"},{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"KS","class":2,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"KS","class":2,"party":"Republican","url":"http://roberts.senate.gov/"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"KS","class":2,"party":"Republican","url":"http://www.roberts.senate.gov","address":"109 Hart Senate Office Building Washington DC 20510","phone":"202-224-4774","fax":"202-224-3514","contact_form":"http://www.roberts.senate.gov/public/index.cfm?p=EmailPat","office":"109 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.roberts.senate.gov/public/?a=rss.feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"KS","class":2,"party":"Republican","url":"http://www.roberts.senate.gov","address":"109 Hart Senate Office Building Washington DC 20510","phone":"202-224-4774","fax":"202-224-3514","contact_form":"http://www.roberts.senate.gov/public/index.cfm?p=EmailPat","office":"109 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.roberts.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"S001141","thomas":"01548","lis":"S261","govtrack":300088,"opensecrets":"N00003062","votesmart":443,"fec":["S6AL00195"],"cspan":44441,"wikipedia":"Jeff Sessions","ballotpedia":"Jeff Sessions","maplight":4604,"washington_post":"gIQAHXOBAP","icpsr":49700},"name":{"first":"Jefferson","middle":"B.","last":"Sessions","nickname":"Jeff","official_full":"Jeff Sessions"},"bio":{"birthday":"1946-12-24","gender":"M","religion":"Methodist"},"terms":[{"type":"sen","start":"1997-01-07","end":"2002-11-22","state":"AL","class":2,"party":"Republican"},{"type":"sen","start":"2003-01-07","end":"2009-01-03","state":"AL","class":2,"party":"Republican","url":"http://sessions.senate.gov/"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"AL","class":2,"party":"Republican","url":"http://www.sessions.senate.gov","address":"326 Russell Senate Office Building Washington DC 20510","phone":"202-224-4124","fax":"202-224-3149","contact_form":"http://www.sessions.senate.gov/public/index.cfm/contact-jeff","office":"326 Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.sessions.senate.gov/public/index.cfm?fuseaction=rss.feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"AL","class":2,"party":"Republican","url":"http://www.sessions.senate.gov","address":"326 Russell Senate Office Building Washington DC 20510","phone":"202-224-4124","fax":"202-224-3149","contact_form":"http://www.sessions.senate.gov/public/index.cfm/contact-jeff","office":"326 Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.sessions.senate.gov/public/index.cfm?fuseaction=rss.feed"}]},{"id":{"bioguide":"S001181","thomas":"01901","lis":"S324","govtrack":412323,"opensecrets":"N00024790","votesmart":1663,"fec":["S0NH00219"],"cspan":22850,"wikipedia":"Jeanne Shaheen","ballotpedia":"Jeanne Shaheen","maplight":7356,"washington_post":"gIQAZP1b9O","icpsr":40906,"house_history":22618},"name":{"first":"Jeanne","last":"Shaheen","official_full":"Jeanne Shaheen"},"bio":{"gender":"F","birthday":"1947-01-28"},"terms":[{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"NH","class":2,"party":"Democrat","url":"http://www.shaheen.senate.gov","address":"520 Hart Senate Office Building Washington DC 20510","phone":"202-224-2841","contact_form":"http://www.shaheen.senate.gov/contact/","office":"520 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.shaheen.senate.gov/rss/","fax":"202-228-3194"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"NH","class":2,"party":"Democrat","url":"http://www.shaheen.senate.gov","address":"520 Hart Senate Office Building Washington DC 20510","phone":"202-224-2841","contact_form":"http://www.shaheen.senate.gov/contact/","office":"520 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.shaheen.senate.gov/rss/","fax":"202-228-3194"}]},{"id":{"bioguide":"U000039","thomas":"01567","lis":"S326","govtrack":400413,"opensecrets":"N00006561","votesmart":22658,"fec":["H8NM03097","S8NM00184"],"cspan":10075,"wikipedia":"Tom Udall","house_history":20879,"ballotpedia":"Tom Udall","maplight":7602,"washington_post":"gIQAv2eM9O","icpsr":29924},"name":{"first":"Tom","middle":"S.","last":"Udall","official_full":"Tom Udall"},"bio":{"birthday":"1948-05-18","gender":"M","religion":"Latter Day Saints"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NM","district":3,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NM","district":3,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NM","district":3,"party":"Democrat","url":"http://www.house.gov/tomudall"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NM","district":3,"party":"Democrat","url":"http://www.house.gov/tomudall"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NM","district":3,"party":"Democrat","url":"http://tomudall.house.gov"},{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"NM","class":2,"party":"Democrat","url":"http://www.tomudall.senate.gov","address":"110 Hart Senate Office Building Washington DC 20510","phone":"202-224-6621","contact_form":"http://www.tomudall.senate.gov/?p=contact","office":"110 Hart Senate Office Building","state_rank":"senior","rss_url":"http://tomudall.senate.gov/rss/?p=blog"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"NM","class":2,"party":"Democrat","url":"http://www.tomudall.senate.gov","address":"110 Hart Senate Office Building Washington DC 20510","phone":"202-224-6621","contact_form":"http://www.tomudall.senate.gov/?p=contact","office":"110 Hart Senate Office Building","state_rank":"senior","rss_url":"http://tomudall.senate.gov/rss/?p=blog"}],"family":[{"name":"Stewart Lee Udall","relation":"son"},{"name":"Morris K. Udall","relation":"nephew"},{"name":"Mark Udall","relation":"cousin"},{"name":"Gordon H. Smith","relation":"cousin"}]},{"id":{"bioguide":"W000805","thomas":"01897","lis":"S327","govtrack":412321,"opensecrets":"N00002097","votesmart":535,"fec":["S6VA00093","P80003023"],"cspan":7630,"wikipedia":"Mark Warner","ballotpedia":"Mark Warner","maplight":7576,"washington_post":"gIQAUqPM9O","icpsr":40909},"name":{"first":"Mark","last":"Warner","official_full":"Mark R. Warner"},"bio":{"gender":"M","birthday":"1954-12-15"},"terms":[{"type":"sen","start":"2009-01-06","end":"2015-01-03","state":"VA","class":2,"party":"Democrat","url":"http://www.warner.senate.gov","address":"475 Russell Senate Office Building Washington DC 20510","phone":"202-224-2023","fax":"202-224-6295","contact_form":"http://www.warner.senate.gov/public//index.cfm?p=ContactPage#form_f9db6196-2dc7-4cda-8add-f8435a71318a","office":"475 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.warner.senate.gov/public/?a=rss.feed"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"VA","class":2,"party":"Democrat","url":"http://www.warner.senate.gov","address":"475 Russell Senate Office Building Washington DC 20510","phone":"202-224-2023","fax":"202-224-6295","contact_form":"http://www.warner.senate.gov/public//index.cfm?p=ContactPage#form_f9db6196-2dc7-4cda-8add-f8435a71318a","office":"475 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.warner.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"G000555","thomas":"01866","lis":"S331","govtrack":412223,"opensecrets":"N00027658","votesmart":65147,"fec":["H6NY20167","S0NY00410"],"cspan":1022862,"wikipedia":"Kirsten Gillibrand","house_history":14269,"ballotpedia":"Kirsten Gillibrand","maplight":7373,"washington_post":"gIQAz4Kt9O","icpsr":20735},"name":{"first":"Kirsten","middle":"E.","last":"Gillibrand","official_full":"Kirsten E. Gillibrand"},"bio":{"gender":"F","birthday":"1966-12-09"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":20,"party":"Democrat","url":"http://gillibrand.house.gov"},{"type":"rep","start":"2009-01-06","end":"2009-01-26","state":"NY","district":20,"party":"Democrat","url":"http://gillibrand.house.gov"},{"type":"sen","start":"2009-01-27","end":"2013-01-03","state":"NY","class":1,"party":"Democrat","url":"http://gillibrand.senate.gov","address":"478 RUSSELL SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-4451","fax":"202-225-1168","contact_form":"http://www.gillibrand.senate.gov/contact/","office":"478 Russell Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"NY","party":"Democrat","class":1,"url":"http://www.gillibrand.senate.gov","address":"478 Russell Senate Office Building Washington DC 20510","phone":"202-224-4451","fax":"202-225-1168","contact_form":"http://www.gillibrand.senate.gov/contact/","office":"478 Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.gillibrand.senate.gov/rss/"}]},{"id":{"bioguide":"F000457","thomas":"01969","lis":"S332","govtrack":412378,"opensecrets":"N00029016","votesmart":108924,"fec":["S8MN00438"],"cspan":23334,"wikipedia":"Al Franken","ballotpedia":"Al Franken","maplight":7587,"washington_post":"gIQAnCqo9O","icpsr":40904},"name":{"first":"Alan","middle":"Stuart","last":"Franken","nickname":"Al","official_full":"Al Franken"},"bio":{"birthday":"1951-05-21","gender":"M"},"terms":[{"type":"sen","start":"2009-07-07","end":"2015-01-03","state":"MN","class":2,"party":"Democrat","url":"http://www.franken.senate.gov","address":"309 Hart Senate Office Building Washington DC 20510","phone":"202-224-5641","contact_form":"http://www.franken.senate.gov/?p=email_al","fax":"202-224-0044","office":"309 Hart Senate Office Building","state_rank":"junior","rss_url":"http://franken.senate.gov/rss/?p=hot_topic"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"MN","class":2,"party":"Democrat","url":"http://www.franken.senate.gov","address":"309 Hart Senate Office Building Washington DC 20510","phone":"202-224-5641","contact_form":"http://www.franken.senate.gov/?p=email_al","office":"309 Hart Senate Office Building","state_rank":"junior","rss_url":"http://franken.senate.gov/rss/?p=hot_topic"}]},{"id":{"bioguide":"C001088","thomas":"01984","lis":"S337","govtrack":412390,"opensecrets":"N00031820","votesmart":122834,"fec":["S0DE00092"],"cspan":9269028,"wikipedia":"Chris Coons","ballotpedia":"Chris Coons","maplight":7297,"washington_post":"gIQAaKfTKP","icpsr":40916},"name":{"first":"Chris","middle":"Andrew","last":"Coons","official_full":"Christopher A. Coons"},"bio":{"birthday":"1963-09-09","gender":"M"},"terms":[{"type":"sen","start":"2010-11-15","end":"2015-01-03","state":"DE","class":2,"party":"Democrat","url":"http://www.coons.senate.gov","address":"127A Russell Senate Office Building Washington DC 20510","phone":"202-224-5042","contact_form":"http://www.coons.senate.gov/contact/","office":"127a Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.coons.senate.gov/rss/feeds/?type=all"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"DE","class":2,"party":"Democrat","url":"http://www.coons.senate.gov","address":"127A Russell Senate Office Building Washington DC 20510","phone":"202-224-5042","contact_form":"http://www.coons.senate.gov/contact/","office":"127a Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.coons.senate.gov/rss/feeds/?type=all"}]},{"id":{"bioguide":"M001183","thomas":"01983","lis":"S338","govtrack":412391,"opensecrets":"N00032838","votesmart":7547,"fec":["S0WV00090"],"cspan":62864,"wikipedia":"Joe Manchin","ballotpedia":"Joe Manchin III","maplight":7414,"washington_post":"gIQA82bVBP","icpsr":40915},"name":{"first":"Joe","last":"Manchin","suffix":"III","official_full":"Joe Manchin, III"},"bio":{"birthday":"1947-08-24","gender":"M"},"terms":[{"type":"sen","start":"2010-11-15","end":"2013-01-03","state":"WV","class":1,"party":"Democrat","url":"http://manchin.senate.gov/","address":"303 HART SENATE OFFICE BUILDING WASHINGTON DC 20510","phone":"202-224-3954","contact_form":"http://www.manchin.senate.gov/contact_form.cfm","office":"303 Hart Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"WV","party":"Democrat","class":1,"url":"http://www.manchin.senate.gov","address":"306 Hart Senate Office Building Washington DC 20510","phone":"202-224-3954","contact_form":"http://www.manchin.senate.gov/public/index.cfm/contact-form","office":"306 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.manchin.senate.gov/public/index.cfm/rss/feed","fax":"202-228-0002"}]},{"id":{"bioguide":"A000055","thomas":"01460","govtrack":400004,"opensecrets":"N00003028","votesmart":441,"fec":["H6AL04098"],"cspan":45516,"wikipedia":"Robert Aderholt","house_history":8333,"ballotpedia":"Robert B. Aderholt","maplight":4124,"washington_post":"gIQAw6QSAP","icpsr":29701},"name":{"first":"Robert","last":"Aderholt","official_full":"Robert B. Aderholt","middle":"B."},"bio":{"birthday":"1965-07-22","gender":"M","religion":"Protestant"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"AL","district":4,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"AL","district":4,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"AL","district":4,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"AL","district":4,"party":"Republican","url":"http://www.house.gov/aderholt"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"AL","district":4,"party":"Republican","url":"http://www.house.gov/aderholt"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"AL","district":4,"party":"Republican","url":"http://aderholt.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"AL","district":4,"party":"Republican","url":"http://aderholt.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AL","district":4,"party":"Republican","url":"http://aderholt.house.gov","address":"2264 Rayburn HOB; Washington DC 20515-0104","phone":"202-225-4876","fax":"202-225-5587","contact_form":"http://aderholt.house.gov/?sectionid=195&sectiontree=195","office":"2264 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AL","party":"Republican","district":4,"url":"http://aderholt.house.gov","address":"2369 Rayburn HOB; Washington DC 20515-0104","phone":"202-225-4876","fax":"202-225-5587","contact_form":"http://aderholt.house.gov/email-me2/","office":"2369 Rayburn House Office Building","rss_url":"http://aderholt.house.gov/common/rss//index.cfm?rss=20"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AL","party":"Republican","district":4,"url":"http://aderholt.house.gov","address":"235 Cannon HOB; Washington DC 20515-0104","phone":"202-225-4876","fax":"202-225-5587","contact_form":"http://aderholt.house.gov/email-me2/","office":"235 Cannon House Office Building","rss_url":"http://aderholt.house.gov/common/rss//index.cfm?rss=20"}]},{"id":{"bioguide":"A000367","thomas":"02029","govtrack":412438,"opensecrets":"N00031938","votesmart":105566,"fec":["H0MI03126"],"cspan":1033767,"wikipedia":"Justin Amash","house_history":8769,"ballotpedia":"Justin Amash","maplight":5792,"washington_post":"gIQAMkzZKP","icpsr":21143},"name":{"first":"Justin","last":"Amash","official_full":"Justin Amash"},"bio":{"birthday":"1980-04-18","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":3,"party":"Republican","url":"http://amash.house.gov/","address":"114 Cannon HOB; Washington DC 20515-2203","phone":"202-225-3831","fax":"202-225-5144","office":"114 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Republican","district":3,"url":"http://amash.house.gov","address":"114 Cannon HOB; Washington DC 20515-2203","phone":"202-225-3831","fax":"202-225-5144","office":"114 Cannon House Office Building","rss_url":"http://amash.house.gov/rss.xml","contact_form":"https://amash.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Republican","district":3,"url":"http://amash.house.gov","address":"114 Cannon HOB; Washington DC 20515-2203","phone":"202-225-3831","fax":"202-225-5144","office":"114 Cannon House Office Building","rss_url":"http://amash.house.gov/rss.xml","contact_form":"https://amash.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"A000368","thomas":"02075","lis":"S340","govtrack":412493,"opensecrets":"N00030980","votesmart":42352,"fec":["S0NH00235"],"cspan":95241,"wikipedia":"Kelly Ayotte","house_history":8771,"ballotpedia":"Kelly A. Ayotte","maplight":7358,"washington_post":"gIQA6LfTKP","icpsr":41106},"name":{"first":"Kelly","last":"Ayotte","official_full":"Kelly Ayotte"},"bio":{"birthday":"1968-06-27","gender":"F"},"terms":[{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"NH","class":3,"party":"Republican","url":"http://www.ayotte.senate.gov","address":"144 Russell Senate Office Building Washington DC 20510","phone":"202-224-3324","contact_form":"http://www.ayotte.senate.gov/?p=contact","office":"144 Russell Senate Office Building","state_rank":"junior","rss_url":"http://ayotte.senate.gov/rss/?p=news","fax":"202-224-4952"}]},{"id":{"bioguide":"B001230","thomas":"01558","lis":"S354","govtrack":400013,"opensecrets":"N00004367","votesmart":3470,"fec":["H8WI00018","S2WI00219"],"cspan":57884,"wikipedia":"Tammy Baldwin","house_history":10361,"ballotpedia":"Tammy Baldwin","maplight":7524,"washington_post":"gIQAgHwPAP","icpsr":29940},"name":{"first":"Tammy","last":"Baldwin","official_full":"Tammy Baldwin"},"bio":{"birthday":"1962-02-11","gender":"F"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"WI","district":2,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"WI","district":2,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"WI","district":2,"party":"Democrat","url":"http://tammybaldwin.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WI","district":2,"party":"Democrat","url":"http://tammybaldwin.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WI","district":2,"party":"Democrat","url":"http://tammybaldwin.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WI","district":2,"party":"Democrat","url":"http://tammybaldwin.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WI","district":2,"party":"Democrat","url":"http://tammybaldwin.house.gov","address":"2446 Rayburn HOB; Washington DC 20515-4902","phone":"202-225-2906","fax":"202-225-6942","contact_form":"http://www.house.gov/formbaldwin/IMA/get_address.htm","office":"2446 Rayburn House Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"WI","party":"Democrat","class":1,"url":"http://www.baldwin.senate.gov","address":"717 Hart Washington DC 20510","phone":"202-224-5653","fax":"202-225-6942","contact_form":"http://www.baldwin.senate.gov/contact","office":"717 Hart","state_rank":"junior","rss_url":"http://www.baldwin.senate.gov/rss/feeds/?type=all"}]},{"id":{"bioguide":"B001269","thomas":"02054","govtrack":412469,"opensecrets":"N00025495","votesmart":47143,"fec":["H2PA11098"],"cspan":29618,"house_history":10432,"wikipedia":"Lou Barletta","ballotpedia":"Lou Barletta","maplight":6622,"washington_post":"gIQA3fVUKP","icpsr":21171},"name":{"first":"Lou","last":"Barletta","official_full":"Lou Barletta"},"bio":{"birthday":"1956-01-28","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":11,"party":"Republican","url":"http://barletta.house.gov/","address":"510 Cannon HOB; Washington DC 20515-3811","phone":"202-225-6511","fax":"202-225-0764","office":"510 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":11,"url":"http://barletta.house.gov","address":"115 Cannon HOB; Washington DC 20515-3811","phone":"202-225-6511","fax":"202-225-0764","office":"115 Cannon House Office Building","rss_url":"http://barletta.house.gov/common/rss//index.cfm?rss=25","contact_form":"https://barletta.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":11,"url":"http://barletta.house.gov","address":"115 Cannon HOB; Washington DC 20515-3811","phone":"202-225-6511","fax":"202-225-0764","office":"115 Cannon House Office Building","rss_url":"http://barletta.house.gov/common/rss//index.cfm?rss=25","contact_form":"https://barletta.house.gov/contact/email-me"}]},{"id":{"bioguide":"B000213","thomas":"00062","govtrack":400018,"opensecrets":"N00005656","votesmart":27082,"icpsr":15085,"fec":["H4TX06117","S4TX00094"],"cspan":5248,"wikipedia":"Joe Barton","house_history":9049,"maplight":4136,"washington_post":"gIQAhoxEAP"},"name":{"first":"Joe","middle":"Linus","last":"Barton","official_full":"Joe Barton"},"bio":{"birthday":"1949-09-15","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":6,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":6,"party":"Republican","url":"http://www.house.gov/barton"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":6,"party":"Republican","url":"http://www.house.gov/barton"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":6,"party":"Republican","url":"http://joebarton.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":6,"party":"Republican","url":"http://joebarton.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":6,"party":"Republican","url":"http://joebarton.house.gov","address":"2109 Rayburn HOB; Washington DC 20515-4306","phone":"202-225-2002","fax":"202-225-3052","contact_form":"http://joebarton.house.gov/ContactJoe.aspx?Type=Email","office":"2109 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":6,"url":"http://joebarton.house.gov","address":"2107 Rayburn HOB; Washington DC 20515-4306","phone":"202-225-2002","fax":"202-225-3052","contact_form":"https://joebarton.house.gov/contact1/","office":"2107 Rayburn House Office Building","rss_url":"http://joebarton.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":6,"url":"http://joebarton.house.gov","address":"2107 Rayburn HOB; Washington DC 20515-4306","phone":"202-225-2002","fax":"202-225-3052","contact_form":"https://joebarton.house.gov/contact1/","office":"2107 Rayburn House Office Building","rss_url":"http://joebarton.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"B001270","thomas":"01996","govtrack":412404,"opensecrets":"N00031877","votesmart":28963,"fec":["H0CA33117"],"cspan":62502,"wikipedia":"Karen Bass","house_history":10433,"maplight":5487,"washington_post":"gIQA45LZKP","icpsr":21110},"name":{"first":"Karen","last":"Bass","official_full":"Karen Bass"},"bio":{"birthday":"1953-10-03","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":33,"party":"Democrat","url":"http://karenbass.house.gov/","address":"408 Cannon HOB; Washington DC 20515-0533","phone":"202-225-7084","fax":"202- 225-2422","office":"408 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":37,"url":"http://bass.house.gov","address":"408 Cannon HOB; Washington DC 20515-0537","phone":"202-225-7084","fax":"202- 225-2422","office":"408 Cannon House Office Building","rss_url":"http://bass.house.gov/rss.xml","contact_form":"https://bass.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":37,"url":"http://bass.house.gov","address":"408 Cannon HOB; Washington DC 20515-0537","phone":"202-225-7084","fax":"202- 225-2422","office":"408 Cannon House Office Building","rss_url":"http://bass.house.gov/rss.xml","contact_form":"https://bass.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"B000287","thomas":"00070","govtrack":400021,"opensecrets":"N00009774","votesmart":26754,"fec":["H2CA30143"],"cspan":26567,"wikipedia":"Xavier Becerra","house_history":9147,"ballotpedia":"Xavier Becerra","maplight":4139,"washington_post":"gIQAenAR9O","icpsr":29316},"name":{"first":"Xavier","last":"Becerra","official_full":"Xavier Becerra"},"bio":{"birthday":"1958-01-26","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CA","district":30,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":30,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":30,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":30,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":30,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":31,"party":"Democrat","url":"http://www.house.gov/becerra"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":31,"party":"Democrat","url":"http://www.house.gov/becerra"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":31,"party":"Democrat","url":"http://becerra.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":31,"party":"Democrat","url":"http://becerra.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":31,"party":"Democrat","url":"http://becerra.house.gov","address":"1226 Longworth HOB; Washington DC 20515-0531","phone":"202-225-6235","fax":"202-225-2202","contact_form":"http://becerra.house.gov/HoR/CA31/Hidden+Content/Email+Signup+Form.htm","office":"1226 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":34,"url":"http://becerra.house.gov","address":"1226 Longworth HOB; Washington DC 20515-0534","phone":"202-225-6235","fax":"202-225-2202","contact_form":"http://becerraforms.house.gov/forms/writeyourrep/","office":"1226 Longworth House Office Building","rss_url":"http://becerra.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":34,"url":"http://becerra.house.gov","address":"1226 Longworth HOB; Washington DC 20515-0534","phone":"202-225-6235","fax":"202-225-2202","contact_form":"http://becerraforms.house.gov/forms/writeyourrep/","office":"1226 Longworth House Office Building","rss_url":"http://becerra.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"B001271","thomas":"02027","govtrack":412436,"opensecrets":"N00031934","votesmart":123056,"fec":["H0MI01088"],"cspan":61860,"wikipedia":"Dan Benishek","house_history":10434,"ballotpedia":"Dan Benishek","maplight":5782,"washington_post":"gIQAOvErKP","icpsr":21141},"name":{"first":"Dan","last":"Benishek","official_full":"Dan Benishek"},"bio":{"birthday":"1952-04-20","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":1,"party":"Republican","url":"http://benishek.house.gov/","address":"514 Cannon HOB; Washington DC 20515-2201","phone":"202-225-4735","fax":"202- 225-4744","office":"514 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Republican","district":1,"url":"http://benishek.house.gov","address":"514 Cannon HOB; Washington DC 20515-2201","phone":"202-225-4735","fax":"202- 225-4744","office":"514 Cannon House Office Building","rss_url":"http://benishek.house.gov/rss.xml","contact_form":"https://benishek.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Republican","district":1,"url":"http://benishek.house.gov","address":"514 Cannon HOB; Washington DC 20515-2201","phone":"202-225-4735","fax":"202- 225-4744","office":"514 Cannon House Office Building","rss_url":"http://benishek.house.gov/rss.xml","contact_form":"https://benishek.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"B001267","thomas":"01965","lis":"S330","govtrack":412330,"opensecrets":"N00030608","votesmart":110942,"fec":["S0CO00211"],"cspan":1031622,"wikipedia":"Michael Bennet","ballotpedia":"Michael Bennet","maplight":7284,"washington_post":"gIQA8vao9O","icpsr":40910},"name":{"first":"Michael","middle":"F.","last":"Bennet","official_full":"Michael F. Bennet"},"bio":{"gender":"M","birthday":"1964-11-28"},"terms":[{"type":"sen","start":"2009-01-22","end":"2010-12-22","state":"CO","class":3,"party":"Democrat","url":"http://bennet.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"CO","class":3,"party":"Democrat","url":"http://www.bennet.senate.gov","address":"458 Russell Senate Office Building Washington DC 20510","phone":"202-224-5852","fax":"202-228-5036","contact_form":"http://www.bennet.senate.gov/contact/email","office":"458 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.bennet.senate.gov/rss/feeds/?type=news"}]},{"id":{"bioguide":"B001257","thomas":"01838","govtrack":412250,"opensecrets":"N00027462","votesmart":17318,"fec":["H6FL09070"],"cspan":1022873,"wikipedia":"Gus Bilirakis","house_history":10413,"ballotpedia":"Gus M. Bilirakis","maplight":4728,"washington_post":"gIQAjtHPAP","icpsr":20758},"name":{"first":"Gus","last":"Bilirakis","official_full":"Gus M. Bilirakis","middle":"M."},"bio":{"birthday":"1963-02-08","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":9,"party":"Republican","url":"http://bilirakis.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":9,"party":"Republican","url":"http://bilirakis.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":9,"party":"Republican","url":"http://bilirakis.house.gov","address":"407 Cannon HOB; Washington DC 20515-0909","phone":"202-225-5755","fax":"202-225-4085","contact_form":"http://bilirakis.house.gov/index.php?option=com_content&task=view&id=212&Itemid=44","office":"407 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":12,"url":"http://bilirakis.house.gov","address":"2313 Rayburn HOB; Washington DC 20515-0912","phone":"202-225-5755","fax":"202-225-4085","contact_form":"https://bilirakis.house.gov/email-congressman-bilirakis/","office":"2313 Rayburn House Office Building","rss_url":"http://bilirakis.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":12,"url":"http://bilirakis.house.gov","address":"2112 Rayburn HOB; Washington DC 20515-0912","phone":"202-225-5755","fax":"202-225-4085","contact_form":"https://bilirakis.house.gov/email-congressman-bilirakis/","office":"2112 Rayburn House Office Building","rss_url":"http://bilirakis.house.gov/index.php?format=feed&type=rss"}],"family":[{"name":"Michael Bilirakis","relation":"son"}]},{"id":{"bioguide":"B001250","thomas":"01753","govtrack":400029,"opensecrets":"N00025292","votesmart":50544,"fec":["H2UT01094"],"cspan":1003621,"wikipedia":"Rob Bishop","house_history":10399,"ballotpedia":"Rob Bishop","maplight":4147,"washington_post":"gIQALHQPAP","icpsr":20357},"name":{"first":"Rob","last":"Bishop","official_full":"Rob Bishop"},"bio":{"birthday":"1951-07-13","gender":"M","religion":"Latter Day Saints"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"UT","district":1,"party":"Republican","url":"http://www.house.gov/robbishop"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"UT","district":1,"party":"Republican","url":"http://www.house.gov/robbishop"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"UT","district":1,"party":"Republican","url":"http://www.house.gov/robbishop"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"UT","district":1,"party":"Republican","url":"http://www.house.gov/robbishop"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"UT","district":1,"party":"Republican","url":"http://www.house.gov/robbishop","address":"123 Cannon HOB; Washington DC 20515-4401","phone":"202-225-0453","fax":"202-225-5857","contact_form":"http://robbishop.house.gov/ZipAuth.aspx","office":"123 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"UT","party":"Republican","district":1,"url":"http://robbishop.house.gov","address":"123 Cannon HOB; Washington DC 20515-4401","phone":"202-225-0453","fax":"202-225-5857","contact_form":"https://robbishop.house.gov/contact/contactform.htm","office":"123 Cannon House Office Building","rss_url":"http://robbishop.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"UT","party":"Republican","district":1,"url":"http://robbishop.house.gov","address":"123 Cannon HOB; Washington DC 20515-4401","phone":"202-225-0453","fax":"202-225-5857","contact_form":"https://robbishop.house.gov/contact/contactform.htm","office":"123 Cannon House Office Building","rss_url":"http://robbishop.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"B000490","thomas":"00091","govtrack":400030,"opensecrets":"N00002674","votesmart":26817,"fec":["H2GA02031"],"cspan":26194,"wikipedia":"Sanford Bishop","maplight":4145,"washington_post":"gIQATrCOAP","icpsr":29339,"house_history":7697},"name":{"first":"Sanford","middle":"D.","last":"Bishop","suffix":"Jr.","official_full":"Sanford D. Bishop Jr."},"bio":{"birthday":"1947-02-04","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"GA","district":2,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"GA","district":2,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"GA","district":2,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"GA","district":2,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"GA","district":2,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"GA","district":2,"party":"Democrat","url":"http://www.house.gov/bishop"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"GA","district":2,"party":"Democrat","url":"http://www.house.gov/bishop"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"GA","district":2,"party":"Democrat","url":"http://bishop.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"GA","district":2,"party":"Democrat","url":"http://bishop.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":2,"party":"Democrat","url":"http://bishop.house.gov","address":"2429 Rayburn HOB; Washington DC 20515-1002","phone":"202-225-3631","fax":"202-225-2203","contact_form":"http://bishop.house.gov/display.cfm?section_id=13","office":"2429 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Democrat","district":2,"url":"http://bishop.house.gov","address":"2429 Rayburn HOB; Washington DC 20515-1002","phone":"202-225-3631","fax":"202-225-2203","contact_form":"http://bishop.house.gov/contact","office":"2429 Rayburn House Office Building","rss_url":"http://bishop.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Democrat","district":2,"url":"http://bishop.house.gov","address":"2407 Rayburn HOB; Washington DC 20515-1002","phone":"202-225-3631","fax":"202-225-2203","contact_form":"http://bishop.house.gov/contact","office":"2407 Rayburn House Office Building","rss_url":"http://bishop.house.gov/rss.xml"}]},{"id":{"bioguide":"B001273","thomas":"02063","govtrack":412478,"opensecrets":"N00031539","votesmart":25292,"fec":["H0TN06257"],"cspan":9268964,"wikipedia":"Diane Black","house_history":10436,"maplight":6080,"washington_post":"gIQAtZuYKP","icpsr":21180},"name":{"first":"Diane","last":"Black","official_full":"Diane Black"},"bio":{"birthday":"1951-01-16","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":6,"party":"Republican","url":"http://black.house.gov/","address":"1531 Longworth HOB; Washington DC 20515-4206","phone":"202-225-4231","fax":"202- 225-6887","office":"1531 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Republican","district":6,"url":"http://black.house.gov","address":"1531 Longworth HOB; Washington DC 20515-4206","phone":"202-225-4231","fax":"202- 225-6887","office":"1531 Longworth House Office Building","rss_url":"http://black.house.gov/rss.xml","contact_form":"https://black.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Republican","district":6,"url":"http://black.house.gov","address":"1131 Longworth HOB; Washington DC 20515-4206","phone":"202-225-4231","fax":"202- 225-6887","office":"1131 Longworth House Office Building","rss_url":"http://black.house.gov/rss.xml","contact_form":"https://black.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"B001243","thomas":"01748","govtrack":400032,"opensecrets":"N00003105","votesmart":25186,"fec":["H2TN06030"],"cspan":31226,"wikipedia":"Marsha Blackburn","house_history":10385,"ballotpedia":"Marsha Blackburn","maplight":4148,"washington_post":"gIQALZuKAP","icpsr":20351},"name":{"first":"Marsha","middle":"W.","last":"Blackburn","official_full":"Marsha Blackburn"},"bio":{"birthday":"1952-06-06","gender":"F","religion":"Presbyterian"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TN","district":7,"party":"Republican","url":"http://www.house.gov/blackburn"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TN","district":7,"party":"Republican","url":"http://www.house.gov/blackburn"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TN","district":7,"party":"Republican","url":"http://www.house.gov/blackburn"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TN","district":7,"party":"Republican","url":"http://www.house.gov/blackburn"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":7,"party":"Republican","url":"http://www.house.gov/blackburn","address":"217 Cannon HOB; Washington DC 20515-4207","phone":"202-225-2811","fax":"202-225-3004","contact_form":"http://blackburn.house.gov/contactform/","office":"217 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Republican","district":7,"url":"http://blackburn.house.gov","address":"217 Cannon HOB; Washington DC 20515-4207","phone":"202-225-2811","fax":"202-225-3004","contact_form":"https://blackburn.house.gov/contactform/email.htm","office":"217 Cannon House Office Building","rss_url":"http://blackburn.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Republican","district":7,"url":"http://blackburn.house.gov","address":"2266 Rayburn HOB; Washington DC 20515-4207","phone":"202-225-2811","fax":"202-225-3004","contact_form":"https://blackburn.house.gov/contactform/email.htm","office":"2266 Rayburn House Office Building","rss_url":"http://blackburn.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"B000574","thomas":"00099","govtrack":400033,"opensecrets":"N00007727","votesmart":367,"fec":["H6OR03064"],"cspan":43809,"wikipedia":"Earl Blumenauer","house_history":9518,"ballotpedia":"Earl Blumenauer","maplight":4149,"washington_post":"gIQAqvaOAP","icpsr":29588},"name":{"first":"Earl","last":"Blumenauer","official_full":"Earl Blumenauer"},"bio":{"birthday":"1948-08-16","gender":"M"},"terms":[{"type":"rep","start":"1996-05-21","end":"1996-10-04","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OR","district":3,"party":"Democrat","url":"http://www.house.gov/blumenauer"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OR","district":3,"party":"Democrat","url":"http://www.house.gov/blumenauer"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OR","district":3,"party":"Democrat","url":"http://blumenauer.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OR","district":3,"party":"Democrat","url":"http://blumenauer.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OR","district":3,"party":"Democrat","url":"http://blumenauer.house.gov","address":"1502 Longworth HOB; Washington DC 20515-3703","phone":"202-225-4811","fax":"202-225-8941","contact_form":"http://blumenauer.house.gov/index.php?option=com_email_form&Itemid=206","office":"1502 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OR","party":"Democrat","district":3,"url":"http://blumenauer.house.gov","address":"1111 Longworth HOB; Washington DC 20515-3703","phone":"202-225-4811","fax":"202-225-8941","contact_form":"https://forms.house.gov/blumenauer/webforms/issue_subscribe.html","office":"1111 Longworth House Office Building","rss_url":"http://blumenauer.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OR","party":"Democrat","district":3,"url":"http://blumenauer.house.gov","address":"1111 Longworth HOB; Washington DC 20515-3703","phone":"202-225-4811","fax":"202-225-8941","contact_form":"https://forms.house.gov/blumenauer/webforms/issue_subscribe.html","office":"1111 Longworth House Office Building","rss_url":"http://blumenauer.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"B001277","thomas":"02076","lis":"S341","govtrack":412490,"opensecrets":"N00031685","votesmart":1568,"fec":["S0CT00177"],"cspan":21799,"wikipedia":"Richard Blumenthal","ballotpedia":"Richard Blumenthal","maplight":7294,"washington_post":"gIQAeNwz6O","icpsr":41101},"name":{"first":"Richard","last":"Blumenthal","official_full":"Richard Blumenthal"},"bio":{"birthday":"1946-02-13","gender":"M"},"terms":[{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"CT","class":3,"party":"Democrat","url":"http://www.blumenthal.senate.gov","address":"724 Hart Senate Office Building Washington DC 20510","phone":"202-224-2823","contact_form":"https://www.blumenthal.senate.gov/contact/","office":"724 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.blumenthal.senate.gov/rss/feeds/?type=all","fax":"202-224-9673"}]},{"id":{"bioguide":"B000575","thomas":"01464","lis":"S342","govtrack":400034,"opensecrets":"N00005195","votesmart":418,"fec":["H6MO07128","S0MO00183"],"cspan":45465,"wikipedia":"Roy Blunt","house_history":9520,"ballotpedia":"Roy Blunt","maplight":7347,"washington_post":"gIQAUcQL9O","icpsr":29735},"name":{"first":"Roy","last":"Blunt","official_full":"Roy Blunt"},"bio":{"birthday":"1950-01-10","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MO","district":7,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MO","district":7,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MO","district":7,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MO","district":7,"party":"Republican","url":"http://www.house.gov/blunt"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MO","district":7,"party":"Republican","url":"http://www.house.gov/blunt"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MO","district":7,"party":"Republican","url":"http://www.house.gov/blunt"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MO","district":7,"party":"Republican","url":"http://blunt.house.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"MO","class":3,"party":"Republican","url":"http://www.blunt.senate.gov","address":"260 Russell Senate Office Building Washington DC 20510","phone":"202-224-5721","contact_form":"http://www.blunt.senate.gov/public/index.cfm/contact-form?p=contact-roy","office":"260 Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.blunt.senate.gov/public/?a=rss.feed","fax":"202-224-8149"}]},{"id":{"bioguide":"B000589","thomas":"00102","govtrack":400036,"opensecrets":"N00003675","votesmart":27015,"fec":["H0OH08029"],"cspan":16740,"wikipedia":"John Boehner","house_history":9538,"ballotpedia":"John A. Boehner","maplight":4152,"washington_post":"gIQAzRvL9O","icpsr":29137},"name":{"first":"John","middle":"A.","last":"Boehner","official_full":"John A. Boehner"},"bio":{"birthday":"1949-11-17","gender":"M","religion":"Roman Catholic"},"leadership_roles":[{"title":"Speaker","chamber":"house","start":"2011-01-05","end":"2013-01-03"},{"title":"Speaker","chamber":"house","start":"2013-01-03","end":"2015-01-03"},{"title":"Speaker","chamber":"house","start":"2015-01-06"}],"terms":[{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"OH","district":8,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"OH","district":8,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"OH","district":8,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"OH","district":8,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OH","district":8,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OH","district":8,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OH","district":8,"party":"Republican","url":"http://johnboehner.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OH","district":8,"party":"Republican","url":"http://johnboehner.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OH","district":8,"party":"Republican","url":"http://johnboehner.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OH","district":8,"party":"Republican","url":"http://johnboehner.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":8,"party":"Republican","url":"http://johnboehner.house.gov","address":"1011 Longworth HOB; Washington DC 20515-3508","phone":"202-225-6205","fax":"202-225-0704","contact_form":"http://www.johnboehner.house.gov/Contact/","office":"1011 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":8,"url":"http://boehner.house.gov","address":"1011 Longworth HOB; Washington DC 20515-3508","phone":"202-225-6205","fax":"202-225-0704","contact_form":"http://boehner.house.gov/contact/","office":"1011 Longworth House Office Building","rss_url":"http://boehner.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":8,"url":"http://johnboehner.house.gov","address":"1011 Longworth HOB; Washington DC 20515-3508","phone":"202-225-6205","fax":"202-225-0704","contact_form":"http://boehner.house.gov/contact/","office":"1011 Longworth House Office Building","rss_url":"http://boehner.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"B001236","thomas":"01687","lis":"S343","govtrack":400040,"opensecrets":"N00013873","votesmart":27958,"fec":["H2AR03176","S0AR00150"],"cspan":92069,"wikipedia":"John Boozman","house_history":10372,"ballotpedia":"John Boozman","maplight":7271,"washington_post":"gIQAxKQPAP","icpsr":20101},"name":{"first":"John","last":"Boozman","official_full":"John Boozman"},"bio":{"birthday":"1950-12-10","gender":"M"},"terms":[{"type":"rep","start":"2001-11-29","end":"2002-11-22","state":"AR","district":3,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"AR","district":3,"party":"Republican","url":"http://www.house.gov/boozman"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"AR","district":3,"party":"Republican","url":"http://www.house.gov/boozman"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"AR","district":3,"party":"Republican","url":"http://www.house.gov/boozman"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"AR","district":3,"party":"Republican","url":"http://www.boozman.house.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"AR","class":3,"party":"Republican","url":"http://www.boozman.senate.gov","address":"320 Hart Senate Office Building Washington DC 20510","phone":"202-224-4843","contact_form":"http://www.boozman.senate.gov/public/index.cfm/e-mail-me","office":"320 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.boozman.senate.gov/public/index.cfm/rss/feed","fax":"202-228-1371"}]},{"id":{"bioguide":"B001245","thomas":"01723","govtrack":400041,"opensecrets":"N00024866","votesmart":1751,"fec":["H2GU00033"],"cspan":1003568,"wikipedia":"Madeleine Bordallo","house_history":10389,"maplight":6363},"name":{"first":"Madeleine","middle":"Z.","last":"Bordallo","official_full":"Madeleine Z. Bordallo"},"bio":{"birthday":"1933-05-31","gender":"F","religion":"Catholic"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"GU","district":0,"party":"Democrat","url":"http://www.house.gov/bordallo"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"GU","district":0,"party":"Democrat","url":"http://www.house.gov/bordallo"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"GU","district":0,"party":"Democrat","url":"http://www.house.gov/bordallo"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"GU","district":0,"party":"Democrat","url":"http://www.house.gov/bordallo"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GU","district":0,"party":"Democrat","url":"http://www.house.gov/bordallo","address":"2441 Rayburn HOB; Washington DC 20515-5301","phone":"202-225-1188","fax":"202-226-0341","contact_form":"http://www.house.gov/bordallo/IMA/issue.htm","office":"2441 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GU","party":"Democrat","district":0,"url":"http://bordallo.house.gov","address":"2441 Rayburn HOB; Washington DC 20515-5301","phone":"202-225-1188","fax":"202-226-0341","contact_form":"https://bordallo.house.gov/contact-me","office":"2441 Rayburn House Office Building","rss_url":"http://bordallo.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GU","party":"Democrat","district":0,"url":"http://bordallo.house.gov","address":"2441 Rayburn HOB; Washington DC 20515-5301","phone":"202-225-1188","fax":"202-226-0341","contact_form":"https://bordallo.house.gov/contact-me","office":"2441 Rayburn House Office Building","rss_url":"http://bordallo.house.gov/rss.xml"}]},{"id":{"bioguide":"B001255","thomas":"01787","govtrack":400636,"opensecrets":"N00026595","votesmart":35514,"fec":["H4LA07029"],"cspan":1013047,"wikipedia":"Charles Boustany","house_history":10409,"ballotpedia":"Charles Boustany Jr.","maplight":4639,"washington_post":"gIQAiMQPAP","icpsr":20514},"name":{"first":"Charles","middle":"W.","last":"Boustany","suffix":"Jr.","official_full":"Charles W. Boustany Jr."},"bio":{"birthday":"1956-02-21","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"LA","district":7,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"LA","district":7,"party":"Republican","url":"http://www.house.gov/boustany"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"LA","district":7,"party":"Republican","url":"http://www.house.gov/boustany"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"LA","district":7,"party":"Republican","url":"http://www.house.gov/boustany","address":"1431 Longworth HOB; Washington DC 20515-1807","phone":"202-225-2031","fax":"202-225-5724","contact_form":"http://boustany.house.gov/ContactCharles.asp","office":"1431 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"LA","party":"Republican","district":3,"url":"http://boustany.house.gov","address":"1431 Longworth HOB; Washington DC 20515-1803","phone":"202-225-2031","fax":"202-225-5724","contact_form":"https://boustanyforms.house.gov/contact-me/","office":"1431 Longworth House Office Building","rss_url":"http://www.house.gov/common/rss/index.cfm?rss=82"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"LA","party":"Republican","district":3,"url":"http://boustany.house.gov","address":"1431 Longworth HOB; Washington DC 20515-1803","phone":"202-225-2031","fax":"202-225-5724","contact_form":"https://boustanyforms.house.gov/contact-me/","office":"1431 Longworth House Office Building","rss_url":"http://www.house.gov/common/rss/index.cfm?rss=82"}]},{"id":{"bioguide":"B000711","thomas":"00116","lis":"S223","govtrack":300011,"opensecrets":"N00006692","votesmart":53274,"icpsr":15011,"fec":["S2CA00286","H2CA06028","P80003247"],"cspan":2470,"house_history":9704,"wikipedia":"Barbara Boxer","ballotpedia":"Barbara Boxer","maplight":4536,"washington_post":"gIQArxPM9O"},"name":{"first":"Barbara","last":"Boxer","official_full":"Barbara Boxer"},"bio":{"birthday":"1940-11-11","gender":"F","religion":"Jewish"},"terms":[{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"CA","district":6,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"CA","district":6,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"CA","district":6,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"CA","district":6,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"CA","district":6,"party":"Democrat"},{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"CA","class":3,"party":"Democrat"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"CA","class":3,"party":"Democrat","url":"http://boxer.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"CA","class":3,"party":"Democrat","url":"http://boxer.senate.gov"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"CA","class":3,"party":"Democrat","url":"http://www.boxer.senate.gov","address":"112 Hart Senate Office Building Washington DC 20510","phone":"202-224-3553","fax":"202-224-0454","contact_form":"https://www.boxer.senate.gov/contact/shareyourviews.html","office":"112 Hart Senate Office Building","state_rank":"junior"}]},{"id":{"bioguide":"B000755","thomas":"01468","govtrack":400046,"opensecrets":"N00005883","votesmart":361,"fec":["H6TX08100"],"cspan":45749,"wikipedia":"Kevin Brady","house_history":9754,"maplight":4163,"washington_post":"gIQATjbPAP","icpsr":29760},"name":{"first":"Kevin","middle":"P.","last":"Brady","official_full":"Kevin Brady"},"bio":{"birthday":"1955-04-11","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":8,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":8,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":8,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":8,"party":"Republican","url":"http://www.house.gov/brady"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":8,"party":"Republican","url":"http://www.house.gov/brady"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":8,"party":"Republican","url":"http://www.house.gov/brady"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":8,"party":"Republican","url":"http://www.house.gov/brady"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":8,"party":"Republican","url":"http://www.house.gov/brady","address":"301 Cannon HOB; Washington DC 20515-4308","phone":"202-225-4901","fax":"202-225-5524","contact_form":"http://www.house.gov/brady/contact_page.html","office":"301 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":8,"url":"http://kevinbrady.house.gov","address":"301 Cannon HOB; Washington DC 20515-4308","phone":"202-225-4901","fax":"202-225-5524","contact_form":"https://kevinbrady.house.gov/contact-form","office":"301 Cannon House Office Building","rss_url":"http://kevinbrady.house.gov/common/rss/index.cfm?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":8,"url":"http://kevinbrady.house.gov","address":"301 Cannon HOB; Washington DC 20515-4308","phone":"202-225-4901","fax":"202-225-5524","contact_form":"https://kevinbrady.house.gov/contact-form","office":"301 Cannon House Office Building","rss_url":"http://kevinbrady.house.gov/common/rss/index.cfm?rss=49"}]},{"id":{"bioguide":"B001227","thomas":"01469","govtrack":400047,"opensecrets":"N00001619","votesmart":2519,"fec":["H8PA01153"],"cspan":55227,"wikipedia":"Bob Brady","house_history":10355,"ballotpedia":"Robert A. Brady","maplight":4162,"washington_post":"gIQATngIAP","icpsr":29777},"name":{"first":"Robert","middle":"Alan","last":"Brady","official_full":"Robert A. Brady"},"bio":{"birthday":"1945-04-07","gender":"M"},"terms":[{"type":"rep","start":"1998-05-19","end":"1998-12-19","state":"PA","district":1,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"PA","district":1,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"PA","district":1,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"PA","district":1,"party":"Democrat","url":"http://www.house.gov/robertbrady"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"PA","district":1,"party":"Democrat","url":"http://www.house.gov/robertbrady"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"PA","district":1,"party":"Democrat","url":"http://www.house.gov/robertbrady"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"PA","district":1,"party":"Democrat","url":"http://www.brady.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":1,"party":"Democrat","url":"http://www.brady.house.gov","address":"102 Cannon HOB; Washington DC 20515-3801","phone":"202-225-4731","fax":"202-225-0088","contact_form":"http://www.house.gov/formrobertbrady/issue.htm","office":"102 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Democrat","district":1,"url":"http://brady.house.gov","address":"102 Cannon HOB; Washington DC 20515-3801","phone":"202-225-4731","fax":"202-225-0088","contact_form":"https://brady.house.gov/contact-me/email-me","office":"102 Cannon House Office Building","rss_url":"http://brady.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Democrat","district":1,"url":"http://brady.house.gov","address":"102 Cannon HOB; Washington DC 20515-3801","phone":"202-225-4731","fax":"202-225-0088","contact_form":"https://brady.house.gov/contact-me/email-me","office":"102 Cannon House Office Building","rss_url":"http://brady.house.gov/rss.xml"}]},{"id":{"bioguide":"B001274","thomas":"01987","govtrack":412395,"opensecrets":"N00030910","votesmart":121610,"fec":["H0AL05163"],"cspan":94888,"wikipedia":"Mo Brooks","house_history":10438,"ballotpedia":"Mo Brooks","maplight":5394,"washington_post":"gIQAdMkz6O","icpsr":21193},"name":{"first":"Mo","last":"Brooks","official_full":"Mo Brooks"},"bio":{"birthday":"1954-04-29","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AL","district":5,"party":"Republican","url":"http://brooks.house.gov/","address":"1641 Longworth HOB; Washington DC 20515-0105","phone":"202-225-4801","fax":"202-225-4392","office":"1641 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AL","party":"Republican","district":5,"url":"http://brooks.house.gov","contact_form":"https://brooks.house.gov/email-me","address":"1230 Longworth HOB; Washington DC 20515-0105","phone":"202-225-4801","fax":"202-225-4392","office":"1230 Longworth House Office Building","rss_url":"http://brooks.house.gov/rss/press-releases.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AL","party":"Republican","district":5,"url":"http://brooks.house.gov","contact_form":"https://brooks.house.gov/email-me","address":"1230 Longworth HOB; Washington DC 20515-0105","phone":"202-225-4801","fax":"202-225-4392","office":"1230 Longworth House Office Building","rss_url":"http://brooks.house.gov/rss/press-releases.xml"}]},{"id":{"bioguide":"B000911","thomas":"00132","govtrack":400048,"opensecrets":"N00002713","votesmart":26797,"fec":["H2FL03056","S0FL00403"],"cspan":26192,"wikipedia":"Corrine Brown","ballotpedia":"Corrine Brown","maplight":6330,"washington_post":"gIQAvFwPAP","icpsr":29328,"house_history":7695},"name":{"first":"Corrine","last":"Brown","official_full":"Corrine Brown"},"bio":{"birthday":"1946-11-11","gender":"F","religion":"Baptist"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"FL","district":3,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"FL","district":3,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"FL","district":3,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"FL","district":3,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"FL","district":3,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"FL","district":3,"party":"Democrat","url":"http://www.house.gov/corrinebrown"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"FL","district":3,"party":"Democrat","url":"http://www.house.gov/corrinebrown"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":3,"party":"Democrat","url":"http://www.house.gov/corrinebrown"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":3,"party":"Democrat","url":"http://www.house.gov/corrinebrown"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":3,"party":"Democrat","url":"http://www.house.gov/corrinebrown","address":"2336 Rayburn HOB; Washington DC 20515-0903","phone":"202-225-0123","fax":"202-225-2256","contact_form":"http://www.house.gov/corrinebrown/IMA/issue.shtml","office":"2336 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":5,"url":"http://corrinebrown.house.gov","address":"2111 Rayburn HOB; Washington DC 20515-0905","phone":"202-225-0123","fax":"202-225-2256","contact_form":"https://forms.house.gov/corrinebrown/webforms/contact-me.shtml","office":"2111 Rayburn House Office Building","rss_url":"http://corrinebrown.house.gov/index.php?option=com_ninjarsssyndicator&feed_id=1&format=raw"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":5,"url":"http://corrinebrown.house.gov","address":"2111 Rayburn HOB; Washington DC 20515-0905","phone":"202-225-0123","fax":"202-225-2256","contact_form":"https://forms.house.gov/corrinebrown/webforms/contact-me.shtml","office":"2111 Rayburn House Office Building","rss_url":"http://corrinebrown.house.gov/index.php?option=com_ninjarsssyndicator&feed_id=1&format=raw"}]},{"id":{"bioguide":"B001260","thomas":"01840","govtrack":412196,"opensecrets":"N00027626","votesmart":66247,"fec":["H6FL13148"],"cspan":1021626,"wikipedia":"Vern Buchanan","house_history":10419,"ballotpedia":"Vern Buchanan","maplight":4680,"washington_post":"gIQA8OnhDP","icpsr":20709},"name":{"first":"Vern","last":"Buchanan","official_full":"Vern Buchanan"},"bio":{"gender":"M","birthday":"1951-05-08"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":13,"party":"Republican","url":"http://buchanan.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":13,"party":"Republican","url":"http://buchanan.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":13,"party":"Republican","url":"http://buchanan.house.gov","address":"221 Cannon HOB; Washington DC 20515-0913","phone":"202-225-5015","fax":"202-226-0828","contact_form":"http://buchanan.house.gov/contact.shtml","office":"221 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":16,"url":"http://buchanan.house.gov","address":"2104 Rayburn HOB; Washington DC 20515-0916","phone":"202-225-5015","fax":"202-226-0828","contact_form":"https://buchanan.house.gov/email-me","office":"2104 Rayburn House Office Building","rss_url":"http://buchanan.house.gov/index.php?option=com_bca-rss-syndicator&feed_id=2"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":16,"url":"http://buchanan.house.gov","address":"2104 Rayburn HOB; Washington DC 20515-0916","phone":"202-225-5015","fax":"202-226-0828","contact_form":"https://buchanan.house.gov/email-me","office":"2104 Rayburn House Office Building","rss_url":"http://buchanan.house.gov/index.php?option=com_bca-rss-syndicator&feed_id=2"}]},{"id":{"bioguide":"B001275","thomas":"02018","govtrack":412427,"opensecrets":"N00031227","votesmart":120335,"fec":["H0IN08114"],"cspan":61837,"wikipedia":"Larry Bucshon","house_history":10439,"ballotpedia":"Larry Bucshon","maplight":5705,"washington_post":"gIQAD7JXKP","icpsr":21132},"name":{"first":"Larry","last":"Bucshon","official_full":"Larry Bucshon"},"bio":{"birthday":"1962-05-31","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IN","district":8,"party":"Republican","url":"http://bucshon.house.gov/","address":"1123 Longworth HOB; Washington DC 20515-1408","phone":"202-225-4636","fax":"202-225-3284","office":"1123 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Republican","district":8,"url":"http://bucshon.house.gov","address":"1005 Longworth HOB; Washington DC 20515-1408","phone":"202-225-4636","fax":"202-225-3284","office":"1005 Longworth House Office Building","rss_url":"http://bucshon.house.gov/rss.xml","contact_form":"https://bucshon.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Republican","district":8,"url":"http://bucshon.house.gov","address":"1005 Longworth HOB; Washington DC 20515-1408","phone":"202-225-4636","fax":"202-225-3284","office":"1005 Longworth House Office Building","rss_url":"http://bucshon.house.gov/rss.xml","contact_form":"https://bucshon.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"B001248","thomas":"01751","govtrack":400052,"opensecrets":"N00025219","votesmart":50120,"fec":["H2TX26093"],"cspan":1003620,"wikipedia":"Michael C. Burgess","house_history":10395,"maplight":4168,"washington_post":"gIQAyRzBAP","icpsr":20355},"name":{"first":"Michael","middle":"C.","last":"Burgess","official_full":"Michael C. Burgess"},"bio":{"birthday":"1950-12-23","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":26,"party":"Republican","url":"http://www.house.gov/burgess"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":26,"party":"Republican","url":"http://www.house.gov/burgess"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":26,"party":"Republican","url":"http://burgess.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":26,"party":"Republican","url":"http://burgess.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":26,"party":"Republican","url":"http://burgess.house.gov","address":"2241 Rayburn HOB; Washington DC 20515-4326","phone":"202-225-7772","fax":"202-225-2919","contact_form":"https://forms.house.gov/wyr/welcome.shtml","office":"2241 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":26,"url":"http://burgess.house.gov","address":"2336 Rayburn HOB; Washington DC 20515-4326","phone":"202-225-7772","fax":"202-225-2919","contact_form":"http://burgess.house.gov/contact/356345.htm","office":"2336 Rayburn House Office Building","rss_url":"http://burgess.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":26,"url":"http://burgess.house.gov","address":"2336 Rayburn HOB; Washington DC 20515-4326","phone":"202-225-7772","fax":"202-225-2919","contact_form":"http://burgess.house.gov/contact/356345.htm","office":"2336 Rayburn House Office Building","rss_url":"http://burgess.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"B001135","thomas":"00153","lis":"S300","govtrack":400054,"opensecrets":"N00002221","votesmart":21787,"fec":["S4NC00089","H2NC05074"],"cspan":31054,"house_history":10236,"wikipedia":"Richard Burr","ballotpedia":"Richard Burr","maplight":4169,"washington_post":"gIQAMX709O","icpsr":29548},"name":{"first":"Richard","middle":"M.","last":"Burr","official_full":"Richard Burr"},"bio":{"birthday":"1955-11-30","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NC","district":5,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NC","district":5,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NC","district":5,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NC","district":5,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NC","district":5,"party":"Republican","url":"http://www.house.gov/burr"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"NC","class":3,"party":"Republican","url":"http://burr.senate.gov"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"NC","class":3,"party":"Republican","url":"http://www.burr.senate.gov","address":"217 Russell Senate Office Building Washington DC 20510","phone":"202-224-3154","fax":"202-228-2981","contact_form":"http://www.burr.senate.gov/public/index.cfm?FuseAction=Contact.ContactForm","office":"217 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.burr.senate.gov/public/index.cfm?fuseaction=rss.feed"}]},{"id":{"bioguide":"B001251","thomas":"01761","govtrack":400616,"opensecrets":"N00027035","votesmart":41077,"fec":["H4NC01046"],"cspan":1013540,"wikipedia":"G. K. Butterfield","house_history":10401,"ballotpedia":"G.K. Butterfield","maplight":4621,"washington_post":"gIQAA20hDP","icpsr":20340},"name":{"first":"George","middle":"Kenneth","last":"Butterfield","suffix":"Jr.","nickname":"G.K.","official_full":"G. K. Butterfield"},"bio":{"birthday":"1947-04-27","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"2004-07-21","end":"2004-12-09","state":"NC","district":1,"party":"Democrat","url":"http://www.house.gov/butterfield/"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NC","district":1,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NC","district":1,"party":"Democrat","url":"http://www.house.gov/butterfield"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NC","district":1,"party":"Democrat","url":"http://www.house.gov/butterfield"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NC","district":1,"party":"Democrat","url":"http://www.house.gov/butterfield","address":"2305 Rayburn HOB; Washington DC 20515-3301","phone":"202-225-3101","fax":"202-225-3354","contact_form":"http://butterfield.house.gov/contactinfo.asp","office":"2305 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Democrat","district":1,"url":"http://butterfield.house.gov","address":"2305 Rayburn HOB; Washington DC 20515-3301","phone":"202-225-3101","fax":"202-225-3354","contact_form":"https://butterfield.house.gov/email-congressman-butterfield","office":"2305 Rayburn House Office Building","rss_url":"http://butterfield.house.gov/rss/press-releases.xml/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Democrat","district":1,"url":"http://butterfield.house.gov","address":"2305 Rayburn HOB; Washington DC 20515-3301","phone":"202-225-3101","fax":"202-225-3354","contact_form":"https://butterfield.house.gov/email-congressman-butterfield","office":"2305 Rayburn House Office Building","rss_url":"http://butterfield.house.gov/rss/press-releases.xml/"}]},{"id":{"bioguide":"C000059","thomas":"00165","govtrack":400057,"opensecrets":"N00007099","votesmart":26777,"fec":["H2CA37023"],"cspan":26709,"wikipedia":"Ken Calvert","house_history":10517,"maplight":4172,"washington_post":"gIQAORoVBP","icpsr":29323},"name":{"first":"Ken","middle":"S.","last":"Calvert","official_full":"Ken Calvert"},"bio":{"birthday":"1953-06-08","gender":"M","religion":"Protestant"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CA","district":43,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":43,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":43,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":43,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":43,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":44,"party":"Republican","url":"http://www.house.gov/calvert"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":44,"party":"Republican","url":"http://www.house.gov/calvert"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":44,"party":"Republican","url":"http://calvert.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":44,"party":"Republican","url":"http://calvert.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":44,"party":"Republican","url":"http://calvert.house.gov","address":"2269 Rayburn HOB; Washington DC 20515-0544","phone":"202-225-1986","fax":"202-225-2004","contact_form":"http://calvert.house.gov/awenhnjafe.asp","office":"2269 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":42,"url":"http://calvert.house.gov","address":"2269 Rayburn HOB; Washington DC 20515-0542","phone":"202-225-1986","fax":"202-225-2004","contact_form":"https://calvert.house.gov/contactform/","office":"2269 Rayburn House Office Building","rss_url":"http://calvert.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":42,"url":"http://calvert.house.gov","address":"2205 Rayburn HOB; Washington DC 20515-0542","phone":"202-225-1986","fax":"202-225-2004","contact_form":"https://calvert.house.gov/contactform/","office":"2205 Rayburn House Office Building","rss_url":"http://calvert.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"C001047","thomas":"01676","govtrack":400061,"opensecrets":"N00009771","votesmart":11701,"fec":["H0WV02138","S4WV00159"],"cspan":83737,"wikipedia":"Shelley Moore Capito","house_history":11762,"ballotpedia":"Shelley Moore Capito","maplight":4176,"washington_post":"gIQA3s9PAP","icpsr":20146,"lis":"S372"},"name":{"first":"Shelley","middle":"Moore","last":"Capito","official_full":"Shelley Moore Capito"},"bio":{"birthday":"1953-11-26","gender":"F","religion":"Presbyterian"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"WV","district":2,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"WV","district":2,"party":"Republican","url":"http://www.house.gov/capito"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WV","district":2,"party":"Republican","url":"http://www.house.gov/capito"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WV","district":2,"party":"Republican","url":"http://capito.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WV","district":2,"party":"Republican","url":"http://capito.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WV","district":2,"party":"Republican","url":"http://capito.house.gov","address":"2443 Rayburn HOB; Washington DC 20515-4802","phone":"202-225-2711","fax":"202-225-7856","contact_form":"https://forms.house.gov/wyr/welcome.shtml","office":"2443 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WV","party":"Republican","district":2,"url":"http://capito.house.gov","address":"2366 Rayburn HOB; Washington DC 20515-4802","phone":"202-225-2711","fax":"202-225-7856","contact_form":"https://capitoforms.house.gov/email-shelley/","office":"2366 Rayburn House Office Building","rss_url":"http://capito.house.gov/common/rss//index.cfm?rss=85"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"WV","class":2,"state_rank":"junior","party":"Republican","url":"http://www.capito.senate.gov","address":"5 Russell Senate Courtyard Washington DC 20510","office":"5 Russell Senate Courtyard","phone":"202-224-6472"}],"family":[{"name":"Arch Alfred Moore Jr.","relation":"daughter"}]},{"id":{"bioguide":"C001036","thomas":"01471","govtrack":400062,"opensecrets":"N00007232","votesmart":16886,"fec":["H8CA22089"],"cspan":54075,"wikipedia":"Lois Capps","house_history":11744,"maplight":4177,"washington_post":"gIQAarASAP","icpsr":29774},"name":{"first":"Lois","last":"Capps","official_full":"Lois Capps"},"bio":{"birthday":"1938-01-10","gender":"F","religion":"Lutheran"},"terms":[{"type":"rep","start":"1998-03-10","end":"1998-12-19","state":"CA","district":22,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":22,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":22,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":23,"party":"Democrat","url":"http://www.house.gov/capps"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":23,"party":"Democrat","url":"http://www.house.gov/capps"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":23,"party":"Democrat","url":"http://www.house.gov/capps"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":23,"party":"Democrat","url":"http://www.house.gov/capps"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":23,"party":"Democrat","url":"http://www.house.gov/capps","address":"2231 Rayburn HOB; Washington DC 20515-0523","phone":"202-225-3601","fax":"202-225-5632","contact_form":"http://www.house.gov/capps/contact/send_an_email.shtml","office":"2231 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":24,"url":"http://capps.house.gov","address":"2231 Rayburn HOB; Washington DC 20515-0524","phone":"202-225-3601","fax":"202-225-5632","contact_form":"https://capps.house.gov/contact-me/email-me","office":"2231 Rayburn House Office Building","rss_url":"http://capps.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":24,"url":"http://capps.house.gov","address":"2231 Rayburn HOB; Washington DC 20515-0524","phone":"202-225-3601","fax":"202-225-5632","contact_form":"https://capps.house.gov/contact-me/email-me","office":"2231 Rayburn House Office Building","rss_url":"http://capps.house.gov/rss.xml"}],"family":[{"name":"Walter Capps","relation":"wife"}]},{"id":{"bioguide":"C001037","thomas":"01564","govtrack":400063,"opensecrets":"N00000267","votesmart":18883,"fec":["H8MA08071","S0MA00117"],"cspan":56760,"wikipedia":"Mike Capuano","house_history":11746,"ballotpedia":"Michael Capuano","maplight":4178,"washington_post":"gIQAzL6PAP","icpsr":29919},"name":{"first":"Michael","middle":"E.","last":"Capuano","official_full":"Michael E. Capuano"},"bio":{"birthday":"1952-01-09","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MA","district":8,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MA","district":8,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MA","district":8,"party":"Democrat","url":"http://www.house.gov/capuano"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MA","district":8,"party":"Democrat","url":"http://www.house.gov/capuano"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MA","district":8,"party":"Democrat","url":"http://www.house.gov/capuano"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MA","district":8,"party":"Democrat","url":"http://www.house.gov/capuano"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MA","district":8,"party":"Democrat","url":"http://www.house.gov/capuano","address":"1414 Longworth HOB; Washington DC 20515-2108","phone":"202-225-5111","fax":"202-225-9322","contact_form":"http://www.house.gov/capuano/contact/email.shtml","office":"1414 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MA","party":"Democrat","district":7,"url":"http://www.house.gov/capuano","address":"1414 Longworth HOB; Washington DC 20515-2107","phone":"202-225-5111","fax":"202-225-9322","contact_form":"http://www.house.gov/capuano/contact/email.shtml","office":"1414 Longworth House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","party":"Democrat","district":7,"url":"http://capuano.house.gov","address":"1414 Longworth HOB; Washington DC 20515-2107","phone":"202-225-5111","fax":"202-225-9322","contact_form":"http://www.house.gov/capuano/contact/email.shtml","office":"1414 Longworth House Office Building"}]},{"id":{"bioguide":"C001083","thomas":"01999","govtrack":412407,"opensecrets":"N00030736","votesmart":53658,"fec":["H0DE01017"],"cspan":94948,"wikipedia":"John C. Carney, Jr.","house_history":11825,"ballotpedia":"John C. Carney Jr.","maplight":5546,"washington_post":"gIQABIMZKP","icpsr":21113},"name":{"first":"John","last":"Carney","official_full":"John C. Carney Jr.","middle":"C."},"bio":{"birthday":"1956-05-20","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"DE","district":0,"party":"Democrat","url":"http://johncarney.house.gov/","address":"1429 Longworth HOB; Washington DC 20515-0801","phone":"202-225-4165","fax":"202-225-2291","contact_form":"https://forms.house.gov/carney/webforms/email-me.shtml","office":"1429 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"DE","party":"Democrat","district":0,"url":"http://johncarney.house.gov","address":"1406 Longworth HOB; Washington DC 20515-0800","phone":"202-225-4165","fax":"202-225-2291","contact_form":"https://forms.house.gov/carney/webforms/email-me.shtml","office":"1406 Longworth House Office Building","rss_url":"http://johncarney.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"DE","party":"Democrat","district":0,"url":"http://johncarney.house.gov","address":"1406 Longworth HOB; Washington DC 20515-0800","phone":"202-225-4165","fax":"202-225-2291","contact_form":"https://forms.house.gov/carney/webforms/email-me.shtml","office":"1406 Longworth House Office Building","rss_url":"http://johncarney.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"C001072","thomas":"01889","govtrack":412258,"opensecrets":"N00029513","votesmart":84917,"fec":["H8IN07184"],"cspan":1027364,"wikipedia":"André Carson","house_history":11806,"ballotpedia":"Andre Carson","maplight":7021,"washington_post":"gIQAPh8PAP","icpsr":20757},"name":{"first":"André","last":"Carson","official_full":"André Carson"},"bio":{"birthday":"1974-10-16","gender":"M"},"terms":[{"type":"rep","start":"2008-03-13","end":"2009-01-03","state":"IN","district":7,"party":"Democrat","url":"http://carson.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IN","district":7,"party":"Democrat","url":"http://carson.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IN","district":7,"party":"Democrat","url":"http://carson.house.gov/","address":"425 Cannon HOB; Washington DC 20515-1407","phone":"202-225-4011","fax":"202-225-5633","contact_form":"http://carson.house.gov/contact.me.shtml","office":"425 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Democrat","district":7,"url":"http://carson.house.gov","address":"2453 Rayburn HOB; Washington DC 20515-1407","phone":"202-225-4011","fax":"202-225-5633","contact_form":"https://carson.house.gov/contact/email-me","office":"2453 Rayburn House Office Building","rss_url":"http://carson.house.gov/index.php?option=com_bca-rss-syndicator&feed_id=1"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Democrat","district":7,"url":"http://carson.house.gov","address":"2453 Rayburn HOB; Washington DC 20515-1407","phone":"202-225-4011","fax":"202-225-5633","contact_form":"https://carson.house.gov/contact/email-me","office":"2453 Rayburn House Office Building","rss_url":"http://carson.house.gov/index.php?option=com_bca-rss-syndicator&feed_id=1"}],"family":[{"name":"Julia Carson","relation":"grandson"}]},{"id":{"bioguide":"C001051","thomas":"01752","govtrack":400068,"opensecrets":"N00025095","votesmart":49296,"fec":["H2TX31044"],"cspan":1004257,"wikipedia":"John Carter (Texas)","house_history":11770,"ballotpedia":"John Carter","maplight":4182,"washington_post":"gIQAcLQNAP","icpsr":20356},"name":{"first":"John","middle":"R.","last":"Carter","official_full":"John R. Carter"},"bio":{"birthday":"1941-11-06","gender":"M","religion":"Christian"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":31,"party":"Republican","url":"http://www.house.gov/carter"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":31,"party":"Republican","url":"http://www.house.gov/carter"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":31,"party":"Republican","url":"http://carter.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":31,"party":"Republican","url":"http://carter.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":31,"party":"Republican","url":"http://carter.house.gov","address":"409 Cannon HOB; Washington DC 20515-4331","phone":"202-225-3864","fax":"202-225-5886","contact_form":"https://forms.house.gov/wyr/welcome.shtml","office":"409 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":31,"url":"http://carter.house.gov","address":"409 Cannon HOB; Washington DC 20515-4331","phone":"202-225-3864","fax":"202-225-5886","contact_form":"https://carter.house.gov/email-john2","office":"409 Cannon House Office Building","rss_url":"http://carter.house.gov/common/rss/?rss=40"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":31,"url":"http://carter.house.gov","address":"2110 Rayburn HOB; Washington DC 20515-4331","phone":"202-225-3864","fax":"202-225-5886","contact_form":"https://carter.house.gov/email-john2","office":"2110 Rayburn House Office Building","rss_url":"http://carter.house.gov/common/rss/?rss=40"}]},{"id":{"bioguide":"C001075","thomas":"01925","govtrack":412269,"opensecrets":"N00030245","votesmart":69494,"fec":["H8LA00017"],"cspan":1030546,"wikipedia":"Bill Cassidy","house_history":11811,"ballotpedia":"Bill Cassidy","maplight":7026,"washington_post":"gIQAPBLkDP","icpsr":20919,"lis":"S373"},"name":{"first":"Bill","last":"Cassidy","official_full":"Bill Cassidy"},"bio":{"gender":"M","birthday":"1957-09-28"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"LA","district":6,"party":"Republican","url":"http://cassidy.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"LA","district":6,"party":"Republican","url":"http://cassidy.house.gov","address":"1535 Longworth HOB; Washington DC 20515-1806","phone":"202-225-3901","fax":"202-225-7313","contact_form":"https://forms.house.gov/cassidy/contact-form.shtml","office":"1535 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"LA","party":"Republican","district":6,"url":"http://cassidy.house.gov","address":"1131 Longworth HOB; Washington DC 20515-1806","phone":"202-225-3901","fax":"202-225-7313","contact_form":"https://cassidy.house.gov/contact/email-me","office":"1131 Longworth House Office Building","rss_url":"http://cassidy.house.gov/rss.xml"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"LA","class":2,"state_rank":"junior","party":"Republican","url":"http://www.cassidy.senate.gov","address":"B85 Russell Senate Office Building Washington DC 20510","office":"B85 Russell Senate Office Building","phone":"202-224-5824"}]},{"id":{"bioguide":"C001066","thomas":"01839","govtrack":412195,"opensecrets":"N00027514","votesmart":53825,"fec":["H6FL11126","H6FL11134"],"cspan":1022874,"wikipedia":"Kathy Castor","house_history":11796,"ballotpedia":"Kathy Castor","maplight":4679,"washington_post":"gIQAEoCLAP","icpsr":20708},"name":{"first":"Kathy","last":"Castor","official_full":"Kathy Castor"},"bio":{"gender":"F","birthday":"1966-08-20"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":11,"party":"Democrat","url":"http://castor.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":11,"party":"Democrat","url":"http://castor.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":11,"party":"Democrat","url":"http://castor.house.gov","address":"137 Cannon HOB; Washington DC 20515-0911","phone":"202-225-3376","fax":"202-225-5652","contact_form":"https://forms.house.gov/wyr/welcome.shtml","office":"137 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":14,"url":"http://castor.house.gov","address":"205 Cannon HOB; Washington DC 20515-0914","phone":"202-225-3376","fax":"202-225-5652","contact_form":"https://castor.house.gov/contact/contactform.htm","office":"205 Cannon House Office Building","rss_url":"http://castor.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":14,"url":"http://castor.house.gov","address":"205 Cannon HOB; Washington DC 20515-0914","phone":"202-225-3376","fax":"202-225-5652","contact_form":"https://castor.house.gov/contact/contactform.htm","office":"205 Cannon House Office Building","rss_url":"http://castor.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"C000266","thomas":"00186","govtrack":400071,"opensecrets":"N00003689","votesmart":21790,"fec":["H8OH01043"],"cspan":36705,"wikipedia":"Steve Chabot","house_history":10791,"ballotpedia":"Steve Chabot","maplight":4185,"washington_post":"gIQAiE5TKP","icpsr":29550},"name":{"first":"Steve","middle":"J.","last":"Chabot","official_full":"Steve Chabot"},"bio":{"birthday":"1953-01-22","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"OH","district":1,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"OH","district":1,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OH","district":1,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OH","district":1,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OH","district":1,"party":"Republican","url":"http://www.house.gov/chabot"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OH","district":1,"party":"Republican","url":"http://www.house.gov/chabot"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OH","district":1,"party":"Republican","url":"http://www.house.gov/chabot"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":1,"party":"Republican","url":"http://chabot.house.gov/","address":"2351 Rayburn HOB; Washington DC 20515-3501","phone":"202-225-2216","fax":"202-225-3012","office":"2351 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":1,"url":"http://chabot.house.gov","address":"2371 Rayburn HOB; Washington DC 20515-3501","phone":"202-225-2216","fax":"202-225-3012","office":"2371 Rayburn House Office Building","rss_url":"http://chabot.house.gov/common/rss/index.cfm?rss=49","contact_form":"https://chabot.house.gov/forms/writeyourrep/?zip5=45202&zip4=3003"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":1,"url":"http://chabot.house.gov","address":"2371 Rayburn HOB; Washington DC 20515-3501","phone":"202-225-2216","fax":"202-225-3012","office":"2371 Rayburn House Office Building","rss_url":"http://chabot.house.gov/common/rss/index.cfm?rss=49","contact_form":"https://chabot.house.gov/forms/writeyourrep/?zip5=45202&zip4=3003"}]},{"id":{"bioguide":"C001076","thomas":"01956","govtrack":412270,"opensecrets":"N00028958","votesmart":103482,"fec":["H8UT03089"],"cspan":1031362,"wikipedia":"Jason Chaffetz","house_history":11813,"ballotpedia":"Jason Chaffetz","maplight":7175,"washington_post":"gIQAm9WMAP","icpsr":20949},"name":{"first":"Jason","last":"Chaffetz","official_full":"Jason Chaffetz"},"bio":{"birthday":"1967-03-26","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"UT","district":3,"party":"Republican","url":"http://chaffetz.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"UT","district":3,"party":"Republican","url":"http://chaffetz.house.gov","address":"1032 Longworth HOB; Washington DC 20515-4403","phone":"202-225-7751","fax":"202-225-5629","contact_form":"https://forms.house.gov/chaffetz/contact-form.shtml","office":"1032 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"UT","party":"Republican","district":3,"url":"http://chaffetz.house.gov","address":"2464 Rayburn HOB; Washington DC 20515-4403","phone":"202-225-7751","fax":"202-225-5629","contact_form":"https://chaffetz.house.gov/contact-me/email-me","office":"2464 Rayburn House Office Building","rss_url":"http://chaffetz.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"UT","party":"Republican","district":3,"url":"http://chaffetz.house.gov","address":"2236 Rayburn HOB; Washington DC 20515-4403","phone":"202-225-7751","fax":"202-225-5629","contact_form":"https://chaffetz.house.gov/contact-me/email-me","office":"2236 Rayburn House Office Building","rss_url":"http://chaffetz.house.gov/rss.xml"}]},{"id":{"bioguide":"C001080","thomas":"01970","govtrack":412379,"opensecrets":"N00030600","votesmart":16539,"fec":["H0CA32101"],"cspan":92573,"wikipedia":"Judy Chu","house_history":11820,"maplight":5484,"washington_post":"gIQA1yiFAP","icpsr":20955},"name":{"first":"Judy","middle":"M.","last":"Chu","official_full":"Judy Chu"},"bio":{"birthday":"1953-07-07","gender":"F"},"terms":[{"type":"rep","start":"2009-07-16","end":"2010-12-22","state":"CA","district":32,"party":"Democrat","url":"http://chu.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":32,"party":"Democrat","url":"http://chu.house.gov/","address":"1520 Longworth HOB; Washington DC 20515-0532","phone":"202-225-5464","fax":"202-225-5467","contact_form":"https://forms.house.gov/chu/contact-form.shtml","office":"1520 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":27,"url":"http://chu.house.gov","address":"1520 Longworth HOB; Washington DC 20515-0527","phone":"202-225-5464","fax":"202-225-5467","contact_form":"http://chu.house.gov/connect-with-me/email-judy","office":"1520 Longworth House Office Building","rss_url":"http://chu.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":27,"url":"http://chu.house.gov","address":"2423 Rayburn HOB; Washington DC 20515-0527","phone":"202-225-5464","fax":"202-225-5467","contact_form":"http://chu.house.gov/connect-with-me/email-judy","office":"2423 Rayburn House Office Building","rss_url":"http://chu.house.gov/rss.xml"}]},{"id":{"bioguide":"C001084","thomas":"02055","govtrack":412470,"opensecrets":"N00032019","votesmart":7349,"fec":["H0RI01073"],"cspan":1033865,"wikipedia":"David Cicilline","house_history":11826,"ballotpedia":"David N. Cicilline","maplight":6030,"washington_post":"gIQA6P5YKP","icpsr":21172},"name":{"first":"David","last":"Cicilline","official_full":"David N. Cicilline","middle":"N."},"bio":{"birthday":"1961-07-15","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"RI","district":1,"party":"Democrat","url":"http://cicilline.house.gov/","address":"128 Cannon HOB; Washington DC 20515-3901","phone":"202-225-4911","fax":"202- 225-3290","office":"128 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"RI","party":"Democrat","district":1,"url":"http://cicilline.house.gov","address":"128 Cannon HOB; Washington DC 20515-3901","phone":"202-225-4911","fax":"202- 225-3290","office":"128 Cannon House Office Building","rss_url":"http://cicilline.house.gov/rss.xml","contact_form":"https://cicilline.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"RI","party":"Democrat","district":1,"url":"http://cicilline.house.gov","address":"2244 Rayburn HOB; Washington DC 20515-3901","phone":"202-225-4911","fax":"202- 225-3290","office":"2244 Rayburn House Office Building","rss_url":"http://cicilline.house.gov/rss.xml","contact_form":"https://cicilline.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"C001067","thomas":"01864","govtrack":412221,"opensecrets":"N00026961","votesmart":44741,"fec":["H4NY11138"],"cspan":1022875,"wikipedia":"Yvette Clarke","house_history":11798,"ballotpedia":"Yvette D. Clarke","maplight":4703,"washington_post":"gIQAOxvIAP","icpsr":20733},"name":{"first":"Yvette","middle":"D.","last":"Clarke","official_full":"Yvette D. Clarke"},"bio":{"birthday":"1964-11-21","gender":"F"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":11,"party":"Democrat","url":"http://clarke.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":11,"party":"Democrat","url":"http://clarke.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":11,"party":"Democrat","url":"http://clarke.house.gov","address":"1029 Longworth HOB; Washington DC 20515-3211","phone":"202-225-6231","fax":"202-226-0112","contact_form":"http://clarke.house.gov/contactform_zipcheck.shtml","office":"1029 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":9,"url":"http://clarke.house.gov","address":"2351 Rayburn HOB; Washington DC 20515-3209","phone":"202-225-6231","fax":"202-226-0112","contact_form":"https://clarke.house.gov/contact/email-me","office":"2351 Rayburn House Office Building","rss_url":"http://clarke.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":9,"url":"http://clarke.house.gov","address":"2351 Rayburn HOB; Washington DC 20515-3209","phone":"202-225-6231","fax":"202-226-0112","contact_form":"https://clarke.house.gov/contact/email-me","office":"2351 Rayburn House Office Building","rss_url":"http://clarke.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"C001049","thomas":"01654","govtrack":400074,"opensecrets":"N00012460","votesmart":8967,"fec":["H0MO01066"],"cspan":88332,"wikipedia":"William Lacy Clay, Jr.","house_history":11766,"maplight":4188,"washington_post":"gIQA1BJQAP","icpsr":20147},"name":{"first":"Wm.","middle":"Lacy","last":"Clay","suffix":"Jr.","official_full":"Wm. Lacy Clay"},"bio":{"birthday":"1956-07-27","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MO","district":1,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MO","district":1,"party":"Democrat","url":"http://www.house.gov/clay"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MO","district":1,"party":"Democrat","url":"http://www.house.gov/clay"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MO","district":1,"party":"Democrat","url":"http://www.house.gov/clay"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MO","district":1,"party":"Democrat","url":"http://www.house.gov/clay"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MO","district":1,"party":"Democrat","url":"http://www.house.gov/clay","address":"2418 Rayburn HOB; Washington DC 20515-2501","phone":"202-225-2406","fax":"202-226-3717","contact_form":"http://lacyclay.house.gov/contact.htm","office":"2418 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MO","party":"Democrat","district":1,"url":"http://lacyclay.house.gov","address":"2418 Rayburn HOB; Washington DC 20515-2501","phone":"202-225-2406","fax":"202-226-3717","contact_form":"http://lacyclay.house.gov/contact-form/","office":"2418 Rayburn House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MO","party":"Democrat","district":1,"url":"http://lacyclay.house.gov","address":"2428 Rayburn HOB; Washington DC 20515-2501","phone":"202-225-2406","fax":"202-226-3717","contact_form":"http://lacyclay.house.gov/contact-form/","office":"2428 Rayburn House Office Building"}],"family":[{"name":"William Lacy Clay Sr.","relation":"son"}]},{"id":{"bioguide":"C001061","thomas":"01790","govtrack":400639,"opensecrets":"N00026790","votesmart":39507,"fec":["H4MO05234"],"cspan":10933,"wikipedia":"Emanuel Cleaver","house_history":11786,"maplight":4642,"washington_post":"gIQANj8PAP","icpsr":20517},"name":{"first":"Emanuel","last":"Cleaver","suffix":"II","official_full":"Emanuel Cleaver"},"bio":{"birthday":"1944-10-26","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MO","district":5,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MO","district":5,"party":"Democrat","url":"http://www.house.gov/cleaver"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MO","district":5,"party":"Democrat","url":"http://www.house.gov/cleaver"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MO","district":5,"party":"Democrat","url":"http://www.house.gov/cleaver","address":"1433 Longworth HOB; Washington DC 20515-2505","phone":"202-225-4535","fax":"202-225-4403","contact_form":"http://www.house.gov/cleaver/IMA/issue.htm","office":"1433 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MO","party":"Democrat","district":5,"url":"http://cleaver.house.gov","address":"2335 Rayburn HOB; Washington DC 20515-2505","phone":"202-225-4535","fax":"202-225-4403","contact_form":"https://cleaver.house.gov/contact/email-me","office":"2335 Rayburn House Office Building","rss_url":"http://cleaver.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MO","party":"Democrat","district":5,"url":"http://cleaver.house.gov","address":"2335 Rayburn HOB; Washington DC 20515-2505","phone":"202-225-4535","fax":"202-225-4403","contact_form":"https://cleaver.house.gov/contact/email-me","office":"2335 Rayburn House Office Building","rss_url":"http://cleaver.house.gov/rss.xml"}]},{"id":{"bioguide":"C000537","thomas":"00208","govtrack":400075,"opensecrets":"N00002408","votesmart":27066,"fec":["H2SC02042"],"cspan":21607,"wikipedia":"Jim Clyburn","house_history":11119,"ballotpedia":"James E. Clyburn","maplight":4189,"washington_post":"gIQAv50L9O","icpsr":39301},"name":{"first":"James","middle":"E.","last":"Clyburn","nickname":"Jim","official_full":"James E. Clyburn"},"bio":{"birthday":"1940-07-21","gender":"M","religion":"African Methodist Episcopal"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"SC","district":6,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"SC","district":6,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"SC","district":6,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"SC","district":6,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"SC","district":6,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"SC","district":6,"party":"Democrat","url":"http://www.house.gov/clyburn"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"SC","district":6,"party":"Democrat","url":"http://www.house.gov/clyburn"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"SC","district":6,"party":"Democrat","url":"http://clyburn.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"SC","district":6,"party":"Democrat","url":"http://clyburn.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"SC","district":6,"party":"Democrat","url":"http://clyburn.house.gov","address":"2135 Rayburn HOB; Washington DC 20515-4006","phone":"202-225-3315","fax":"202-225-2313","contact_form":"http://clyburn.house.gov/contact.cfm","office":"2135 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"SC","party":"Democrat","district":6,"url":"http://clyburn.house.gov","address":"242 Cannon HOB; Washington DC 20515-4006","phone":"202-225-3315","fax":"202-225-2313","contact_form":"https://clyburn.house.gov/contact-me/email-me","office":"242 Cannon House Office Building","rss_url":"http://clyburn.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"SC","party":"Democrat","district":6,"url":"http://clyburn.house.gov","address":"242 Cannon HOB; Washington DC 20515-4006","phone":"202-225-3315","fax":"202-225-2313","contact_form":"https://clyburn.house.gov/contact-me/email-me","office":"242 Cannon House Office Building","rss_url":"http://clyburn.house.gov/rss.xml"}],"family":[{"name":"George Washington Murray","relation":"relative"}]},{"id":{"bioguide":"C000542","thomas":"00209","lis":"S212","govtrack":402675,"opensecrets":"N00003845","votesmart":53291,"icpsr":14806,"fec":["S0IN00053"],"cspan":6080,"wikipedia":"Dan Coats","house_history":11126,"ballotpedia":"Dan Coats","maplight":7322,"washington_post":"gIQAGGdaAP"},"name":{"first":"Daniel","middle":"Ray","last":"Coats","official_full":"Daniel Coats"},"bio":{"birthday":"1943-05-16","gender":"M"},"terms":[{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"IN","district":4,"party":"Republican"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"IN","district":4,"party":"Republican"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"IN","district":4,"party":"Republican"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"IN","district":4,"party":"Republican"},{"type":"sen","start":"1989-01-03","end":"1992-10-09","state":"IN","class":3,"party":"Republican"},{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"IN","class":3,"party":"Republican"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"IN","class":3,"party":"Republican","url":"http://www.coats.senate.gov","address":"493 Russell Senate Office Building Washington DC 20510","phone":"202-224-5623","contact_form":"http://www.coats.senate.gov/contact/","office":"493 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.coats.senate.gov/rss/feeds/?type=all&","fax":"202-228-1820"}]},{"id":{"bioguide":"C001077","thomas":"01912","govtrack":412271,"opensecrets":"N00024753","votesmart":1535,"fec":["H8CO06138","H2CO00019"],"cspan":1031340,"wikipedia":"Mike Coffman","house_history":11815,"ballotpedia":"Mike Coffman","maplight":6962,"washington_post":"gIQA5XQQAP","icpsr":20906},"name":{"first":"Mike","last":"Coffman","official_full":"Mike Coffman"},"bio":{"gender":"M","birthday":"1955-03-19"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CO","district":6,"party":"Republican","url":"http://coffman.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CO","district":6,"party":"Republican","url":"http://coffman.house.gov","address":"1222 Longworth HOB; Washington DC 20515-0606","phone":"202-225-7882","fax":"202-226-4623","contact_form":"https://forms.house.gov/coffman/contact-form.shtml","office":"1222 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CO","party":"Republican","district":6,"url":"http://coffman.house.gov","address":"2443 Rayburn HOB; Washington DC 20515-0606","phone":"202-225-7882","fax":"202-226-4623","contact_form":"https://coffman.house.gov/contact/email-me","office":"2443 Rayburn House Office Building","rss_url":"http://coffman.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CO","party":"Republican","district":6,"url":"http://coffman.house.gov","address":"2443 Rayburn HOB; Washington DC 20515-0606","phone":"202-225-7882","fax":"202-226-4623","contact_form":"https://coffman.house.gov/contact/email-me","office":"2443 Rayburn House Office Building","rss_url":"http://coffman.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"C001068","thomas":"01878","govtrack":412236,"opensecrets":"N00003225","votesmart":24340,"fec":["H6TN09068"],"cspan":1022876,"wikipedia":"Steve Cohen","house_history":11800,"maplight":4718,"washington_post":"gIQAxQaQAP","icpsr":20748},"name":{"first":"Steve","last":"Cohen","official_full":"Steve Cohen"},"bio":{"birthday":"1949-05-24","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TN","district":9,"party":"Democrat","url":"http://cohen.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TN","district":9,"party":"Democrat","url":"http://cohen.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":9,"party":"Democrat","url":"http://cohen.house.gov","address":"1005 Longworth HOB; Washington DC 20515-4209","phone":"202-225-3265","fax":"202-225-5663","contact_form":"http://cohen.house.gov/index.php?option=com_email_form&Itemid=113","office":"1005 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Democrat","district":9,"url":"http://cohen.house.gov","address":"2404 Rayburn HOB; Washington DC 20515-4209","phone":"202-225-3265","fax":"202-225-5663","contact_form":"https://cohen.house.gov/contact-me/email-me","office":"2404 Rayburn House Office Building","rss_url":"http://cohen.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Democrat","district":9,"url":"http://cohen.house.gov","address":"2404 Rayburn HOB; Washington DC 20515-4209","phone":"202-225-3265","fax":"202-225-5663","contact_form":"https://cohen.house.gov/contact-me/email-me","office":"2404 Rayburn House Office Building","rss_url":"http://cohen.house.gov/rss.xml"}]},{"id":{"bioguide":"C001053","thomas":"01742","govtrack":400077,"opensecrets":"N00025726","votesmart":46034,"fec":["H2OK04055"],"cspan":1003609,"wikipedia":"Tom Cole","house_history":11774,"ballotpedia":"Tom Cole","maplight":4191,"washington_post":"gIQATSaQAP","icpsr":20344},"name":{"first":"Tom","last":"Cole","official_full":"Tom Cole"},"bio":{"birthday":"1949-04-28","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OK","district":4,"party":"Republican","url":"http://www.house.gov/cole"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OK","district":4,"party":"Republican","url":"http://www.house.gov/cole"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OK","district":4,"party":"Republican","url":"http://www.house.gov/cole"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OK","district":4,"party":"Republican","url":"http://www.house.gov/cole"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OK","district":4,"party":"Republican","url":"http://www.house.gov/cole","address":"2458 Rayburn HOB; Washington DC 20515-3604","phone":"202-225-6165","fax":"202-225-3512","contact_form":"http://www.cole.house.gov/contact-tom.html","office":"2458 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OK","party":"Republican","district":4,"url":"http://cole.house.gov","address":"2458 Rayburn HOB; Washington DC 20515-3604","phone":"202-225-6165","fax":"202-225-3512","contact_form":"https://coleforms.house.gov/contact/default.aspx","office":"2458 Rayburn House Office Building","rss_url":"http://cole.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OK","party":"Republican","district":4,"url":"http://cole.house.gov","address":"2467 Rayburn HOB; Washington DC 20515-3604","phone":"202-225-6165","fax":"202-225-3512","contact_form":"https://coleforms.house.gov/contact/default.aspx","office":"2467 Rayburn House Office Building","rss_url":"http://cole.house.gov/rss.xml"}]},{"id":{"bioguide":"C001062","thomas":"01805","govtrack":400655,"opensecrets":"N00026041","votesmart":49935,"fec":["H4TX19136","H3TX19021"],"cspan":1004595,"wikipedia":"Mike Conaway","house_history":11788,"ballotpedia":"Mike Conaway","maplight":4657,"washington_post":"gIQAkUaQAP","icpsr":20531},"name":{"first":"K.","middle":"Michael","last":"Conaway","official_full":"K. Michael Conaway"},"bio":{"birthday":"1948-06-11","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":11,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":11,"party":"Republican","url":"http://www.house.gov/conaway"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":11,"party":"Republican","url":"http://www.house.gov/conaway"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":11,"party":"Republican","url":"http://www.house.gov/conaway","address":"2430 Rayburn HOB; Washington DC 20515-4311","phone":"202-225-3605","fax":"202-225-1783","contact_form":"http://conaway.house.gov/Contact/default.aspx#email","office":"2430 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":11,"url":"http://conaway.house.gov","address":"2430 Rayburn HOB; Washington DC 20515-4311","phone":"202-225-3605","fax":"202-225-1783","contact_form":"https://conaway.house.gov/forms/writeyourrep/default.aspx","office":"2430 Rayburn House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":11,"url":"http://conaway.house.gov","address":"2430 Rayburn HOB; Washington DC 20515-4311","phone":"202-225-3605","fax":"202-225-1783","contact_form":"https://conaway.house.gov/forms/writeyourrep/default.aspx","office":"2430 Rayburn House Office Building"}]},{"id":{"bioguide":"C001078","thomas":"01959","govtrack":412272,"opensecrets":"N00029891","votesmart":95078,"fec":["H8VA11062"],"cspan":1015936,"wikipedia":"Gerry Connolly","house_history":11817,"maplight":7184,"washington_post":"gIQA3zDRAP","icpsr":20952},"name":{"first":"Gerald","middle":"E.","last":"Connolly","official_full":"Gerald E. Connolly"},"bio":{"birthday":"1950-03-30","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"VA","district":11,"party":"Democrat","url":"http://connolly.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VA","district":11,"party":"Democrat","url":"http://connolly.house.gov","address":"424 Cannon HOB; Washington DC 20515-4611","phone":"202-225-1492","fax":"202-225-3071","contact_form":"https://forms.house.gov/connolly/contact-form.shtml","office":"424 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VA","party":"Democrat","district":11,"url":"http://connolly.house.gov","address":"424 Cannon HOB; Washington DC 20515-4611","phone":"202-225-1492","fax":"202-225-3071","contact_form":"https://forms.house.gov/connolly/contact-form.shtml","office":"424 Cannon House Office Building","rss_url":"http://connolly.house.gov/common/rss//index.cfm?rss=44"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","party":"Democrat","district":11,"url":"http://connolly.house.gov","address":"2238 Rayburn HOB; Washington DC 20515-4611","phone":"202-225-1492","fax":"202-225-3071","contact_form":"https://forms.house.gov/connolly/contact-form.shtml","office":"2238 Rayburn House Office Building","rss_url":"http://connolly.house.gov/common/rss//index.cfm?rss=44"}]},{"id":{"bioguide":"C000714","thomas":"00229","govtrack":400080,"opensecrets":"N00004029","votesmart":26904,"icpsr":10713,"fec":["H6MI01028"],"cspan":1824,"wikipedia":"John Conyers","house_history":11348,"ballotpedia":"John Conyers, Jr.","maplight":4192,"washington_post":"gIQA4cvo9O"},"name":{"first":"John","last":"Conyers","suffix":"Jr.","official_full":"John Conyers Jr."},"bio":{"birthday":"1929-05-16","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1965-01-04","end":"1966-10-22","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1967-01-10","end":"1968-10-14","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1969-01-03","end":"1971-01-02","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1971-01-21","end":"1972-10-18","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1973-01-03","end":"1974-12-20","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1975-01-14","end":"1976-10-01","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1977-01-04","end":"1978-10-15","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"MI","district":1,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"MI","district":14,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MI","district":14,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MI","district":14,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MI","district":14,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MI","district":14,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MI","district":14,"party":"Democrat","url":"http://www.house.gov/conyers"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MI","district":14,"party":"Democrat","url":"http://www.house.gov/conyers"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MI","district":14,"party":"Democrat","url":"http://www.house.gov/conyers"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MI","district":14,"party":"Democrat","url":"http://www.house.gov/conyers"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":14,"party":"Democrat","url":"http://www.house.gov/conyers","address":"2426 Rayburn HOB; Washington DC 20515-2214","phone":"202-225-5126","fax":"202-225-0072","contact_form":"http://conyers.house.gov/index.cfm?FuseAction=Contact.OnlineContactForm","office":"2426 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Democrat","district":13,"url":"http://conyers.house.gov","address":"2426 Rayburn HOB; Washington DC 20515-2213","phone":"202-225-5126","fax":"202-225-0072","contact_form":"https://conyers.house.gov/index.cfm/online-contact-form","office":"2426 Rayburn House Office Building","rss_url":"http://conyers.house.gov/index.cfm/rss/feed"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Democrat","district":13,"url":"http://conyers.house.gov","address":"2426 Rayburn HOB; Washington DC 20515-2213","phone":"202-225-5126","fax":"202-225-0072","contact_form":"https://conyers.house.gov/index.cfm/online-contact-form","office":"2426 Rayburn House Office Building","rss_url":"http://conyers.house.gov/index.cfm/rss/feed"}]},{"id":{"bioguide":"C000754","thomas":"00231","govtrack":400081,"opensecrets":"N00003132","votesmart":48891,"icpsr":15019,"fec":["H2TN05131","H2TN04027","S4TN00096"],"cspan":1201,"wikipedia":"Jim Cooper","house_history":11401,"ballotpedia":"Jim Cooper","maplight":4193,"washington_post":"gIQABq669O"},"name":{"first":"Jim","last":"Cooper","official_full":"Jim Cooper"},"bio":{"birthday":"1954-06-19","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"TN","district":4,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"TN","district":4,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"TN","district":4,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"TN","district":4,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"TN","district":4,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"TN","district":4,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TN","district":5,"party":"Democrat","url":"http://www.house.gov/cooper"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TN","district":5,"party":"Democrat","url":"http://www.house.gov/cooper"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TN","district":5,"party":"Democrat","url":"http://cooper.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TN","district":5,"party":"Democrat","url":"http://cooper.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":5,"party":"Democrat","url":"http://cooper.house.gov","address":"1536 Longworth HOB; Washington DC 20515-4205","phone":"202-225-4311","fax":"202-226-1035","contact_form":"http://cooper.house.gov/index.php?option=com_content&task=view&id=117&Itemid=61","office":"1536 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Democrat","district":5,"url":"http://cooper.house.gov","address":"1536 Longworth HOB; Washington DC 20515-4205","phone":"202-225-4311","fax":"202-226-1035","contact_form":"https://cooper.house.gov/contact/email-me","office":"1536 Longworth House Office Building","rss_url":"http://cooper.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Democrat","district":5,"url":"http://cooper.house.gov","address":"1536 Longworth HOB; Washington DC 20515-4205","phone":"202-225-4311","fax":"202-226-1035","contact_form":"https://cooper.house.gov/contact/email-me","office":"1536 Longworth House Office Building","rss_url":"http://cooper.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"C001059","thomas":"01774","govtrack":400618,"opensecrets":"N00026341","votesmart":3577,"fec":["H4CA20082"],"cspan":19599,"house_history":11782,"wikipedia":"Jim Costa","maplight":4623,"washington_post":"gIQAwvJSAP","icpsr":20501},"name":{"first":"Jim","last":"Costa","official_full":"Jim Costa"},"bio":{"birthday":"1952-04-13","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":20,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":20,"party":"Democrat","url":"http://www.house.gov/costa"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":20,"party":"Democrat","url":"http://www.house.gov/costa"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":20,"party":"Democrat","url":"http://www.house.gov/costa","address":"1314 Longworth HOB; Washington DC 20515-0520","phone":"202-225-3341","fax":"202-225-9308","contact_form":"http://www.house.gov/formcosta/issue.htm","office":"1314 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":16,"url":"http://costa.house.gov","address":"1314 Longworth HOB; Washington DC 20515-0516","phone":"202-225-3341","fax":"202-225-9308","contact_form":"http://www.house.gov/formcosta/issue.htm","office":"1314 Longworth House Office Building","rss_url":"http://costa.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":16,"url":"http://costa.house.gov","address":"1314 Longworth HOB; Washington DC 20515-0516","phone":"202-225-3341","fax":"202-225-9308","contact_form":"http://www.house.gov/formcosta/issue.htm","office":"1314 Longworth House Office Building","rss_url":"http://costa.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"C001069","thomas":"01836","govtrack":412193,"opensecrets":"N00024842","votesmart":30333,"fec":["H2CT02112"],"cspan":1021284,"house_history":11802,"wikipedia":"Joe Courtney (politician)","ballotpedia":"Joe Courtney","maplight":4677,"washington_post":"gIQAQONRAP","icpsr":20706},"name":{"first":"Joe","last":"Courtney","official_full":"Joe Courtney"},"bio":{"birthday":"1953-04-06","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CT","district":2,"party":"Democrat","url":"http://courtney.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CT","district":2,"party":"Democrat","url":"http://courtney.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CT","district":2,"party":"Democrat","url":"http://courtney.house.gov","address":"215 Cannon HOB; Washington DC 20515-0702","phone":"202-225-2076","fax":"202-225-4977","contact_form":"http://courtney.house.gov/email/","office":"215 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CT","party":"Democrat","district":2,"url":"http://courtney.house.gov","address":"2348 Rayburn HOB; Washington DC 20515-0702","phone":"202-225-2076","fax":"202-225-4977","contact_form":"https://courtney.house.gov/email-joe1","office":"2348 Rayburn House Office Building","rss_url":"http://courtney.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CT","party":"Democrat","district":2,"url":"http://courtney.house.gov","address":"2348 Rayburn HOB; Washington DC 20515-0702","phone":"202-225-2076","fax":"202-225-4977","contact_form":"https://courtney.house.gov/email-joe1","office":"2348 Rayburn House Office Building","rss_url":"http://courtney.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"C000880","thomas":"00250","lis":"S266","govtrack":300030,"opensecrets":"N00006267","votesmart":26830,"fec":["S8ID00027","H2ID02034"],"cspan":26440,"wikipedia":"Mike Crapo","house_history":11556,"ballotpedia":"Mike Crapo","maplight":4553,"washington_post":"gIQA3hslDP","icpsr":29345},"name":{"first":"Michael","middle":"D.","last":"Crapo","official_full":"Mike Crapo"},"bio":{"birthday":"1951-05-20","gender":"M","religion":"Latter Day Saints"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"ID","district":2,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"ID","district":2,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"ID","district":2,"party":"Republican"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"ID","class":3,"party":"Republican","url":"http://crapo.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"ID","class":3,"party":"Republican","url":"http://crapo.senate.gov"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"ID","class":3,"party":"Republican","url":"http://www.crapo.senate.gov","address":"239 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-6142","fax":"202-228-1375","contact_form":"http://www.crapo.senate.gov/contact/email.cfm","office":"239 Dirksen Senate Office Building","state_rank":"senior"}]},{"id":{"bioguide":"C001087","thomas":"01989","govtrack":412400,"opensecrets":"N00030770","votesmart":119208,"fec":["H0AR01083"],"cspan":623259,"wikipedia":"Rick Crawford (politician)","house_history":11831,"ballotpedia":"Rick Crawford","maplight":5400,"washington_post":"gIQAlMfVKP","icpsr":21106},"name":{"first":"Eric","middle":"A.","last":"Crawford","official_full":"Eric A. \"Rick\" Crawford","nickname":"Rick"},"bio":{"birthday":"1966-01-22","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AR","district":1,"party":"Republican","url":"http://crawford.house.gov/","address":"1408 Longworth HOB; Washington DC 20515-0401","phone":"202-225-4076","fax":"202-225-5602","office":"1408 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AR","party":"Republican","district":1,"url":"http://crawford.house.gov","address":"1711 Longworth HOB; Washington DC 20515-0401","phone":"202-225-4076","fax":"202-225-5602","office":"1711 Longworth House Office Building","rss_url":"http://crawford.house.gov/news/rss.aspx","contact_form":"http://crawford.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AR","party":"Republican","district":1,"url":"http://crawford.house.gov","address":"1711 Longworth HOB; Washington DC 20515-0401","phone":"202-225-4076","fax":"202-225-5602","office":"1711 Longworth House Office Building","rss_url":"http://crawford.house.gov/news/rss.aspx","contact_form":"http://crawford.house.gov/contact/"}]},{"id":{"bioguide":"C001045","thomas":"01643","govtrack":400086,"opensecrets":"N00012739","votesmart":31130,"fec":["H0FL04066"],"cspan":1007679,"wikipedia":"Ander Crenshaw","house_history":11758,"ballotpedia":"Ander Crenshaw","maplight":4197,"washington_post":"gIQASSNRAP","icpsr":20111},"name":{"first":"Ander","last":"Crenshaw","official_full":"Ander Crenshaw"},"bio":{"birthday":"1944-09-01","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"FL","district":4,"party":"Independent"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"FL","district":4,"party":"Republican","url":"http://crenshaw.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"FL","district":4,"party":"Republican","url":"http://crenshaw.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":4,"party":"Republican","url":"http://crenshaw.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":4,"party":"Republican","url":"http://crenshaw.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":4,"party":"Republican","url":"http://crenshaw.house.gov","address":"440 Cannon HOB; Washington DC 20515-0904","phone":"202-225-2501","fax":"202-225-2504","contact_form":"https://forms.house.gov/wyr/welcome.shtml","office":"440 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":4,"url":"http://crenshaw.house.gov","address":"440 Cannon HOB; Washington DC 20515-0904","phone":"202-225-2501","fax":"202-225-2504","contact_form":"https://forms.house.gov/write/crenshaw/email-me.shtml","office":"440 Cannon House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":4,"url":"http://crenshaw.house.gov","address":"2161 Rayburn HOB; Washington DC 20515-0904","phone":"202-225-2501","fax":"202-225-2504","contact_form":"https://forms.house.gov/write/crenshaw/email-me.shtml","office":"2161 Rayburn House Office Building"}]},{"id":{"bioguide":"C001038","thomas":"01604","govtrack":400087,"opensecrets":"N00001127","votesmart":4295,"fec":["H8NY07046"],"cspan":57880,"wikipedia":"Joseph Crowley","house_history":11748,"ballotpedia":"Joseph Crowley","maplight":4198,"washington_post":"gIQACIr09O","icpsr":29925},"name":{"first":"Joseph","last":"Crowley","official_full":"Joseph Crowley"},"bio":{"birthday":"1962-03-16","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":7,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":7,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":7,"party":"Democrat","url":"http://www.house.gov/crowley"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":7,"party":"Democrat","url":"http://www.house.gov/crowley"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":7,"party":"Democrat","url":"http://www.house.gov/crowley"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":7,"party":"Democrat","url":"http://www.house.gov/crowley"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":7,"party":"Democrat","url":"http://www.house.gov/crowley","address":"2404 Rayburn HOB; Washington DC 20515-3207","phone":"202-225-3965","fax":"202-225-1909","contact_form":"https://forms.house.gov/crowley/contact.shtml","office":"2404 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":14,"url":"http://crowley.house.gov","address":"1436 Longworth HOB; Washington DC 20515-3214","phone":"202-225-3965","fax":"202-225-1909","contact_form":"https://crowley.house.gov/contact-me/email-me","office":"1436 Longworth House Office Building","rss_url":"http://crowley.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":14,"url":"http://crowley.house.gov","address":"1436 Longworth HOB; Washington DC 20515-3214","phone":"202-225-3965","fax":"202-225-1909","contact_form":"https://crowley.house.gov/contact-me/email-me","office":"1436 Longworth House Office Building","rss_url":"http://crowley.house.gov/rss.xml"}]},{"id":{"bioguide":"C001063","thomas":"01807","govtrack":400657,"opensecrets":"N00024978","votesmart":5486,"fec":["H2TX23082"],"cspan":1013062,"wikipedia":"Henry Cuellar","house_history":11790,"maplight":4659,"washington_post":"gIQAHjjSAP","icpsr":20533},"name":{"first":"Henry","last":"Cuellar","official_full":"Henry Cuellar"},"bio":{"birthday":"1955-09-19","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":28,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":28,"party":"Democrat","url":"http://www.house.gov/cuellar"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":28,"party":"Democrat","url":"http://www.house.gov/cuellar"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":28,"party":"Democrat","url":"http://www.house.gov/cuellar","address":"2463 Rayburn HOB; Washington DC 20515-4328","phone":"202-225-1640","fax":"202-225-1641","contact_form":"http://cuellar.house.gov/Contact/SendMeAnEmail.htm","office":"2463 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":28,"url":"http://cuellar.house.gov","address":"2431 Rayburn HOB; Washington DC 20515-4328","phone":"202-225-1640","fax":"202-225-1641","contact_form":"https://cuellar.house.gov/forms/writeyourrep/default.aspx","office":"2431 Rayburn House Office Building","rss_url":"http://cuellar.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":28,"url":"http://cuellar.house.gov","address":"2209 Rayburn HOB; Washington DC 20515-4328","phone":"202-225-1640","fax":"202-225-1641","contact_form":"https://cuellar.house.gov/forms/writeyourrep/default.aspx","office":"2209 Rayburn House Office Building","rss_url":"http://cuellar.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"C001048","thomas":"01670","govtrack":400089,"opensecrets":"N00009738","votesmart":5488,"fec":["H0TX07055"],"cspan":88078,"wikipedia":"John Culberson","house_history":11764,"ballotpedia":"John Culberson","maplight":4200,"washington_post":"gIQArjZfAP","icpsr":20139},"name":{"first":"John","middle":"Abney","last":"Culberson","official_full":"John Abney Culberson"},"bio":{"birthday":"1956-08-24","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":7,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":7,"party":"Republican","url":"http://www.culberson.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":7,"party":"Republican","url":"http://www.culberson.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":7,"party":"Republican","url":"http://culberson.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":7,"party":"Republican","url":"http://culberson.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":7,"party":"Republican","url":"http://culberson.house.gov","address":"2352 Rayburn HOB; Washington DC 20515-4307","phone":"202-225-2571","fax":"202-225-4381","contact_form":"http://www.culberson.house.gov/contactinfo.aspx","office":"2352 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":7,"url":"http://culberson.house.gov","address":"2352 Rayburn HOB; Washington DC 20515-4307","phone":"202-225-2571","fax":"202-225-4381","contact_form":"https://culbersonforms.house.gov/forms/writeyourrep/default.aspx","office":"2352 Rayburn House Office Building","rss_url":"http://culberson.house.gov/rss/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":7,"url":"http://culberson.house.gov","address":"2372 Rayburn HOB; Washington DC 20515-4307","phone":"202-225-2571","fax":"202-225-4381","contact_form":"https://culbersonforms.house.gov/forms/writeyourrep/default.aspx","office":"2372 Rayburn House Office Building","rss_url":"http://culberson.house.gov/rss/"}]},{"id":{"bioguide":"C000984","thomas":"00256","govtrack":400090,"opensecrets":"N00001971","votesmart":345,"fec":["H6MD07160"],"cspan":43300,"wikipedia":"Elijah Cummings","house_history":11684,"ballotpedia":"Elijah Cummings","maplight":4201,"washington_post":"gIQAKaxDAP","icpsr":29587},"name":{"first":"Elijah","middle":"E.","last":"Cummings","official_full":"Elijah E. Cummings"},"bio":{"birthday":"1951-01-18","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1996-04-16","end":"1996-10-04","state":"MD","district":7,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MD","district":7,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MD","district":7,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MD","district":7,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MD","district":7,"party":"Democrat","url":"http://www.house.gov/cummings"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MD","district":7,"party":"Democrat","url":"http://www.house.gov/cummings"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MD","district":7,"party":"Democrat","url":"http://www.house.gov/cummings"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MD","district":7,"party":"Democrat","url":"http://www.house.gov/cummings"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MD","district":7,"party":"Democrat","url":"http://www.house.gov/cummings","address":"2235 Rayburn HOB; Washington DC 20515-2007","phone":"202-225-4741","fax":"202-225-3178","contact_form":"https://forms.house.gov/wyr/welcome.shtml","office":"2235 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MD","party":"Democrat","district":7,"url":"http://cummings.house.gov","address":"2235 Rayburn HOB; Washington DC 20515-2007","phone":"202-225-4741","fax":"202-225-3178","contact_form":"https://cummings.house.gov/contact-me/email-me","office":"2235 Rayburn House Office Building","rss_url":"http://cummings.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MD","party":"Democrat","district":7,"url":"http://cummings.house.gov","address":"2230 Rayburn HOB; Washington DC 20515-2007","phone":"202-225-4741","fax":"202-225-3178","contact_form":"https://cummings.house.gov/contact-me/email-me","office":"2230 Rayburn House Office Building","rss_url":"http://cummings.house.gov/rss.xml"}]},{"id":{"bioguide":"D000096","thomas":"01477","govtrack":400093,"opensecrets":"N00004884","votesmart":233,"fec":["H4IL07037"],"cspan":44325,"wikipedia":"Danny K. Davis","house_history":11949,"ballotpedia":"Danny K. Davis","maplight":4206,"washington_post":"gIQAgWpbKP","icpsr":29717},"name":{"first":"Danny","middle":"K.","last":"Davis","official_full":"Danny K. Davis"},"bio":{"birthday":"1941-09-06","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"IL","district":7,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"IL","district":7,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"IL","district":7,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"IL","district":7,"party":"Democrat","url":"http://www.house.gov/davis"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IL","district":7,"party":"Democrat","url":"http://www.house.gov/davis"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IL","district":7,"party":"Democrat","url":"http://www.house.gov/davis"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":7,"party":"Democrat","url":"http://www.house.gov/davis"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":7,"party":"Democrat","url":"http://www.house.gov/davis","address":"2159 Rayburn HOB; Washington DC 20515-1307","phone":"202-225-5006","fax":"202-225-5641","contact_form":"https://forms.house.gov/davis/webforms/issue_subscribe.htm","office":"2159 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":7,"url":"http://www.davis.house.gov","address":"2159 Rayburn HOB; Washington DC 20515-1307","phone":"202-225-5006","fax":"202-225-5641","contact_form":"https://davis.house.gov/email-me","office":"2159 Rayburn House Office Building","rss_url":"http://davis.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":7,"url":"http://www.davis.house.gov","address":"2159 Rayburn HOB; Washington DC 20515-1307","phone":"202-225-5006","fax":"202-225-5641","contact_form":"https://davis.house.gov/email-me","office":"2159 Rayburn House Office Building","rss_url":"http://davis.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"D000598","thomas":"01641","govtrack":400097,"opensecrets":"N00009604","votesmart":8168,"fec":["H0CA49055"],"cspan":85595,"wikipedia":"Susan Davis (politician)","house_history":12571,"maplight":4204,"washington_post":"gIQAumASAP","icpsr":20108},"name":{"first":"Susan","middle":"A.","last":"Davis","official_full":"Susan A. Davis"},"bio":{"birthday":"1944-04-13","gender":"F","religion":"Jewish"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":49,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":53,"party":"Democrat","url":"http://www.house.gov/susandavis"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":53,"party":"Democrat","url":"http://www.house.gov/susandavis"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":53,"party":"Democrat","url":"http://www.house.gov/susandavis"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":53,"party":"Democrat","url":"http://www.house.gov/susandavis"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":53,"party":"Democrat","url":"http://www.house.gov/susandavis","address":"1526 Longworth HOB; Washington DC 20515-0553","phone":"202-225-2040","fax":"202-225-2948","contact_form":"http://www.house.gov/susandavis/contact.shtml","office":"1526 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":53,"url":"http://www.house.gov/susandavis","address":"1526 Longworth HOB; Washington DC 20515-0553","phone":"202-225-2040","fax":"202-225-2948","contact_form":"https://susandavisforms.house.gov/forms/writeyourrep/","office":"1526 Longworth House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":53,"url":"http://susandavis.house.gov","address":"1214 Longworth HOB; Washington DC 20515-0553","phone":"202-225-2040","fax":"202-225-2948","contact_form":"https://susandavisforms.house.gov/forms/writeyourrep/","office":"1214 Longworth House Office Building"}]},{"id":{"bioguide":"D000191","thomas":"00279","govtrack":400100,"opensecrets":"N00007781","votesmart":27037,"icpsr":15410,"fec":["H6OR04047","S6OR00151"],"cspan":6068,"wikipedia":"Peter DeFazio","house_history":12068,"ballotpedia":"Peter DeFazio","maplight":4210,"washington_post":"gIQAS87AAP"},"name":{"first":"Peter","middle":"A.","last":"DeFazio","official_full":"Peter A. DeFazio"},"bio":{"birthday":"1947-05-27","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"OR","district":4,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"OR","district":4,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"OR","district":4,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"OR","district":4,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"OR","district":4,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"OR","district":4,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OR","district":4,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OR","district":4,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OR","district":4,"party":"Democrat","url":"http://www.house.gov/defazio/"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OR","district":4,"party":"Democrat","url":"http://www.house.gov/defazio/"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OR","district":4,"party":"Democrat","url":"http://defazio.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OR","district":4,"party":"Democrat","url":"http://defazio.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OR","district":4,"party":"Democrat","url":"http://defazio.house.gov","address":"2134 Rayburn HOB; Washington DC 20515-3704","phone":"202-225-6416","fax":"202-225-0032","contact_form":"http://www.house.gov/formdefazio/contact.html","office":"2134 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OR","party":"Democrat","district":4,"url":"http://defazio.house.gov","address":"2134 Rayburn HOB; Washington DC 20515-3704","phone":"202-225-6416","contact_form":"https://defazio.house.gov/contact/email-me","office":"2134 Rayburn House Office Building","rss_url":"http://www.defazio.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OR","party":"Democrat","district":4,"url":"http://defazio.house.gov","address":"2134 Rayburn HOB; Washington DC 20515-3704","phone":"202-225-6416","contact_form":"https://defazio.house.gov/contact/email-me","office":"2134 Rayburn House Office Building","rss_url":"http://www.defazio.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"D000197","thomas":"01479","govtrack":400101,"opensecrets":"N00006134","votesmart":561,"fec":["H6CO01141"],"cspan":90293,"wikipedia":"Diana DeGette","house_history":12076,"ballotpedia":"Diana DeGette","maplight":4211,"washington_post":"gIQADVSDAP","icpsr":29710},"name":{"first":"Diana","middle":"L.","last":"DeGette","official_full":"Diana DeGette"},"bio":{"birthday":"1957-07-29","gender":"F","religion":"Presbyterian"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CO","district":1,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CO","district":1,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CO","district":1,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CO","district":1,"party":"Democrat","url":"http://www.house.gov/degette"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CO","district":1,"party":"Democrat","url":"http://www.house.gov/degette"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CO","district":1,"party":"Democrat","url":"http://www.house.gov/degette"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CO","district":1,"party":"Democrat","url":"http://www.house.gov/degette"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CO","district":1,"party":"Democrat","url":"http://www.house.gov/degette","address":"2335 Rayburn HOB; Washington DC 20515-0601","phone":"202-225-4431","fax":"202-225-5657","contact_form":"http://www.house.gov/formdegette/zip_auth.htm","office":"2335 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CO","party":"Democrat","district":1,"url":"http://degette.house.gov","address":"2368 Rayburn HOB; Washington DC 20515-0601","phone":"202-225-4431","fax":"202-225-5657","contact_form":"https://degette.house.gov/contact/send-me-an-email/email-me","office":"2368 Rayburn House Office Building","rss_url":"http://degette.house.gov/index.php?option=com_ninjarsssyndicator&feed_id=1&format=raw"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CO","party":"Democrat","district":1,"url":"http://degette.house.gov","address":"2368 Rayburn HOB; Washington DC 20515-0601","phone":"202-225-4431","fax":"202-225-5657","contact_form":"https://degette.house.gov/contact/send-me-an-email/email-me","office":"2368 Rayburn House Office Building","rss_url":"http://degette.house.gov/index.php?option=com_ninjarsssyndicator&feed_id=1&format=raw"}]},{"id":{"bioguide":"D000216","thomas":"00281","govtrack":400103,"opensecrets":"N00000615","votesmart":26788,"fec":["H0CT03072"],"cspan":19040,"wikipedia":"Rosa DeLauro","house_history":12101,"ballotpedia":"Rosa DeLauro","maplight":4212,"washington_post":"gIQAkOCT9O","icpsr":29109},"name":{"first":"Rosa","middle":"L.","last":"DeLauro","official_full":"Rosa L. DeLauro"},"bio":{"birthday":"1943-03-02","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"CT","district":3,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CT","district":3,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CT","district":3,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CT","district":3,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CT","district":3,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CT","district":3,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CT","district":3,"party":"Democrat","url":"http://www.house.gov/delauro"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CT","district":3,"party":"Democrat","url":"http://www.house.gov/delauro"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CT","district":3,"party":"Democrat","url":"http://www.house.gov/delauro"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CT","district":3,"party":"Democrat","url":"http://www.house.gov/delauro"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CT","district":3,"party":"Democrat","url":"http://www.house.gov/delauro","address":"2413 Rayburn HOB; Washington DC 20515-0703","phone":"202-225-3661","fax":"202-225-4890","contact_form":"http://delauro.house.gov/contact_form_email.cfm","office":"2413 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CT","party":"Democrat","district":3,"url":"http://delauro.house.gov","address":"2413 Rayburn HOB; Washington DC 20515-0703","phone":"202-225-3661","fax":"202-225-4890","contact_form":"https://forms.house.gov/delauro/webforms/contact_form_email.shtml","office":"2413 Rayburn House Office Building","rss_url":"http://delauro.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CT","party":"Democrat","district":3,"url":"http://delauro.house.gov","address":"2413 Rayburn HOB; Washington DC 20515-0703","phone":"202-225-3661","fax":"202-225-4890","contact_form":"https://forms.house.gov/delauro/webforms/contact_form_email.shtml","office":"2413 Rayburn House Office Building","rss_url":"http://delauro.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"D000612","thomas":"01995","govtrack":412403,"opensecrets":"N00031593","votesmart":28769,"fec":["H0CA19173"],"cspan":623287,"wikipedia":"Jeff Denham","house_history":12597,"maplight":5464,"washington_post":"gIQA6BMZKP","icpsr":21109},"name":{"first":"Jeff","last":"Denham","official_full":"Jeff Denham"},"bio":{"birthday":"1967-07-29","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":19,"party":"Republican","url":"http://denham.house.gov/","address":"1605 Longworth HOB; Washington DC 20515-0519","phone":"202-225-4540","fax":"202-225-3402","office":"1605 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":10,"url":"http://denham.house.gov","address":"1730 Longworth HOB; Washington DC 20515-0510","phone":"202-225-4540","fax":"202-225-3402","office":"1730 Longworth House Office Building","rss_url":"http://denham.house.gov/rss.xml","contact_form":"https://denham.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":10,"url":"http://denham.house.gov","address":"1730 Longworth HOB; Washington DC 20515-0510","phone":"202-225-4540","fax":"202-225-3402","office":"1730 Longworth House Office Building","rss_url":"http://denham.house.gov/rss.xml","contact_form":"https://denham.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"D000604","thomas":"01799","govtrack":400648,"opensecrets":"N00026171","votesmart":9121,"fec":["H4PA15087"],"cspan":1011395,"wikipedia":"Charlie Dent","house_history":12583,"ballotpedia":"Charles W. Dent","maplight":4651,"washington_post":"gIQAY7qLAP","icpsr":20526},"name":{"first":"Charles","middle":"W.","last":"Dent","official_full":"Charles W. Dent"},"bio":{"birthday":"1960-05-24","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"PA","district":15,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"PA","district":15,"party":"Republican","url":"http://dent.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"PA","district":15,"party":"Republican","url":"http://dent.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":15,"party":"Republican","url":"http://dent.house.gov","address":"1009 Longworth HOB; Washington DC 20515-3815","phone":"202-225-6411","fax":"202-226-0778","contact_form":"http://dent.house.gov/verifyemail.shtml","office":"1009 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":15,"url":"http://dent.house.gov","address":"2455 Rayburn HOB; Washington DC 20515-3815","phone":"202-225-6411","fax":"202-226-0778","contact_form":"https://dent.house.gov/?p=ContactForm","office":"2455 Rayburn House Office Building","rss_url":"http://dent.house.gov/?a=rss.feed"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":15,"url":"http://dent.house.gov","address":"2211 Rayburn HOB; Washington DC 20515-3815","phone":"202-225-6411","fax":"202-226-0778","contact_form":"https://dent.house.gov/?p=ContactForm","office":"2211 Rayburn House Office Building","rss_url":"http://dent.house.gov/?a=rss.feed"}]},{"id":{"bioguide":"D000616","thomas":"02062","govtrack":412477,"opensecrets":"N00030957","votesmart":123473,"fec":["H0TN04195"],"cspan":623517,"wikipedia":"Scott DesJarlais","house_history":12604,"maplight":6068,"washington_post":"gIQAQg5WKP","icpsr":21179},"name":{"first":"Scott","last":"DesJarlais","official_full":"Scott DesJarlais"},"bio":{"birthday":"1964-02-21","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":4,"party":"Republican","url":"http://desjarlais.house.gov/","address":"413 Cannon HOB; Washington DC 20515-4204","phone":"202-225-6831","fax":"202-226-5172","office":"413 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Republican","district":4,"url":"http://desjarlais.house.gov","address":"413 Cannon HOB; Washington DC 20515-4204","phone":"202-225-6831","fax":"202-226-5172","office":"413 Cannon House Office Building","rss_url":"http://desjarlais.house.gov/news/rss.aspx","contact_form":"http://desjarlais.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Republican","district":4,"url":"http://desjarlais.house.gov","address":"413 Cannon HOB; Washington DC 20515-4204","phone":"202-225-6831","fax":"202-226-5172","office":"413 Cannon House Office Building","rss_url":"http://desjarlais.house.gov/news/rss.aspx","contact_form":"http://desjarlais.house.gov/contact/email-me"}]},{"id":{"bioguide":"D000610","thomas":"01976","govtrack":412385,"opensecrets":"N00031317","votesmart":67151,"fec":["H0FL19080"],"cspan":9267613,"wikipedia":"Ted Deutch","house_history":12594,"ballotpedia":"Theodore E. Deutch","maplight":5599,"washington_post":"gIQAgpzZKP","icpsr":20959},"name":{"first":"Theodore","middle":"E.","last":"Deutch","official_full":"Theodore E. Deutch"},"bio":{"birthday":"1966-05-07","gender":"M"},"terms":[{"type":"rep","start":"2010-04-15","end":"2010-12-22","state":"FL","district":19,"party":"Democrat","url":"http://deutch.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":19,"party":"Democrat","url":"http://deutch.house.gov/","address":"1024 Longworth HOB; Washington DC 20515-0919","phone":"202-225-3001","fax":"202-225-5974","contact_form":"https://teddeutch.house.gov/Forms/WriteYourRep/default.aspx","office":"1024 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":21,"url":"http://teddeutch.house.gov","address":"1024 Longworth HOB; Washington DC 20515-0921","phone":"202-225-3001","fax":"202-225-5974","contact_form":"https://teddeutch.house.gov/forms/writeyourrep/default.aspx","office":"1024 Longworth House Office Building","rss_url":"http://teddeutch.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":21,"url":"http://teddeutch.house.gov","address":"2447 Rayburn HOB; Washington DC 20515-0921","phone":"202-225-3001","fax":"202-225-5974","contact_form":"https://teddeutch.house.gov/forms/writeyourrep/default.aspx","office":"2447 Rayburn House Office Building","rss_url":"http://teddeutch.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"D000600","thomas":"01717","govtrack":400108,"opensecrets":"N00025337","votesmart":24312,"fec":["H2FL25018"],"cspan":1003562,"wikipedia":"Mario Diaz-Balart","house_history":12575,"ballotpedia":"Mario Diaz-Balart","maplight":4218,"washington_post":"gIQAvrSaAP","icpsr":20316},"name":{"first":"Mario","last":"Diaz-Balart","official_full":"Mario Diaz-Balart"},"bio":{"birthday":"1961-09-25","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"FL","district":25,"party":"Republican","url":"http://www.house.gov/mariodiaz-balart"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"FL","district":25,"party":"Republican","url":"http://www.house.gov/mariodiaz-balart"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":25,"party":"Republican","url":"http://www.house.gov/mariodiaz-balart"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":25,"party":"Republican","url":"http://www.house.gov/mariodiaz-balart"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":21,"party":"Republican","url":"http://www.house.gov/mariodiaz-balart","address":"436 Cannon HOB; Washington DC 20515-0921","phone":"202-225-4211","fax":"202-225-8576","contact_form":"Http://mariodiaz-balart.house.gov//index.cfm?sectionid=11","office":"436 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":25,"url":"http://mariodiazbalart.house.gov","address":"436 Cannon HOB; Washington DC 20515-0925","phone":"202-225-4211","fax":"202-225-8576","contact_form":"http://mariodiazbalart.house.gov/contact-mario/write-rep-diaz-balart","office":"436 Cannon House Office Building","rss_url":"http://mariodiazbalart.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":25,"url":"http://mariodiazbalart.house.gov","address":"440 Cannon HOB; Washington DC 20515-0925","phone":"202-225-4211","fax":"202-225-8576","contact_form":"http://mariodiazbalart.house.gov/contact-mario/write-rep-diaz-balart","office":"440 Cannon House Office Building","rss_url":"http://mariodiazbalart.house.gov/rss.xml"}],"family":[{"name":"Lincoln Diaz Balart","relation":"brother"}]},{"id":{"bioguide":"D000399","thomas":"00303","govtrack":400111,"opensecrets":"N00006023","votesmart":21689,"fec":["H4TX10028"],"cspan":36810,"wikipedia":"Lloyd Doggett","house_history":12328,"maplight":4221,"washington_post":"gIQA0jEdKP","icpsr":29571},"name":{"first":"Lloyd","middle":"A.","last":"Doggett","official_full":"Lloyd Doggett"},"bio":{"birthday":"1946-10-06","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TX","district":10,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":10,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":10,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":10,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":10,"party":"Democrat","url":"http://www.house.gov/doggett"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":25,"party":"Democrat","url":"http://www.house.gov/doggett"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":25,"party":"Democrat","url":"http://www.house.gov/doggett"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":25,"party":"Democrat","url":"http://www.house.gov/doggett"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":25,"party":"Democrat","url":"http://www.house.gov/doggett","address":"201 Cannon HOB; Washington DC 20515-4325","phone":"202-225-4865","fax":"202-225-3073","contact_form":"http://www.house.gov/doggett/doggett_ima/doggett_get_address.shtml","office":"201 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":35,"url":"http://doggett.house.gov","address":"201 Cannon HOB; Washington DC 20515-4335","phone":"202-225-4865","fax":"202-225-3073","contact_form":"https://forms.house.gov/doggett/webforms/issue_subscribe.htm","office":"201 Cannon House Office Building","rss_url":"http://doggett.house.gov/index.php/component/ninjarsssyndicator/?feed_id=1&format=raw"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":35,"url":"http://doggett.house.gov","address":"2307 Rayburn HOB; Washington DC 20515-4335","phone":"202-225-4865","fax":"202-225-3073","contact_form":"https://forms.house.gov/doggett/webforms/issue_subscribe.htm","office":"2307 Rayburn House Office Building","rss_url":"http://doggett.house.gov/index.php/component/ninjarsssyndicator/?feed_id=1&format=raw"}]},{"id":{"bioguide":"D000607","thomas":"01850","lis":"S356","govtrack":412205,"opensecrets":"N00026586","votesmart":34212,"fec":["H4IN02101","S2IN00091"],"cspan":1012000,"wikipedia":"Joe Donnelly","house_history":12588,"ballotpedia":"Joe Donnelly","maplight":7444,"washington_post":"gIQAM8hOAP","icpsr":20717},"name":{"first":"Joe","last":"Donnelly","official_full":"Joe Donnelly"},"bio":{"gender":"M","birthday":"1955-09-28"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IN","district":2,"party":"Democrat","url":"http://donnelly.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IN","district":2,"party":"Democrat","url":"http://donnelly.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IN","district":2,"party":"Democrat","url":"http://donnelly.house.gov","address":"1530 Longworth HOB; Washington DC 20515-1402","phone":"202-225-3915","fax":"202-225-6798","contact_form":"http://donnelly.house.gov/issue_subscribe.shtml","office":"1530 Longworth House Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"IN","party":"Democrat","class":1,"url":"http://www.donnelly.senate.gov","address":"720 Hart Senate Office Building Washington DC 20510","phone":"202-224-4814","fax":"202-225-6798","contact_form":"http://www.donnelly.senate.gov/contact/email-joe","office":"720 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.donnelly.senate.gov/rss/feeds/?type=all"}]},{"id":{"bioguide":"D000482","thomas":"00316","govtrack":400114,"opensecrets":"N00001373","votesmart":21853,"fec":["H4PA18131"],"cspan":36774,"wikipedia":"Michael F. Doyle","house_history":12436,"ballotpedia":"Michael F. Doyle","maplight":4223,"washington_post":"gIQAlqEdKP","icpsr":29561},"name":{"first":"Michael","middle":"F.","last":"Doyle","suffix":"Jr.","nickname":"Mike","official_full":"Michael F. Doyle"},"bio":{"birthday":"1953-08-05","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"PA","district":18,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"PA","district":18,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"PA","district":18,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"PA","district":18,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"PA","district":14,"party":"Democrat","url":"http://www.house.gov/doyle"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"PA","district":14,"party":"Democrat","url":"http://www.house.gov/doyle"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"PA","district":14,"party":"Democrat","url":"http://www.house.gov/doyle"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"PA","district":14,"party":"Democrat","url":"http://www.house.gov/doyle"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":14,"party":"Democrat","url":"http://www.house.gov/doyle","address":"401 Cannon HOB; Washington DC 20515-3814","phone":"202-225-2135","fax":"202-225-3084","contact_form":"http://www.house.gov/doyle/email_mike.shtml","office":"401 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Democrat","district":14,"url":"http://doyle.house.gov","address":"239 Cannon HOB; Washington DC 20515-3814","phone":"202-225-2135","fax":"202-225-3084","contact_form":"https://doyle.house.gov/contact-me/email-me","office":"239 Cannon House Office Building","rss_url":"http://doyle.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Democrat","district":14,"url":"http://doyle.house.gov","address":"239 Cannon HOB; Washington DC 20515-3814","phone":"202-225-2135","fax":"202-225-3084","contact_form":"https://doyle.house.gov/contact-me/email-me","office":"239 Cannon House Office Building","rss_url":"http://doyle.house.gov/rss.xml"}]},{"id":{"bioguide":"D000614","thomas":"02072","govtrack":412488,"opensecrets":"N00030967","votesmart":126238,"fec":["H0WI07051"],"cspan":623570,"wikipedia":"Sean Duffy","house_history":12601,"ballotpedia":"Sean Duffy","maplight":6171,"washington_post":"gIQAx21QKP","icpsr":21189},"name":{"first":"Sean","last":"Duffy","official_full":"Sean P. Duffy","middle":"P."},"bio":{"birthday":"1971-10-03","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WI","district":7,"party":"Republican","url":"http://duffy.house.gov/","address":"1208 Longworth HOB; Washington DC 20515-4907","phone":"202-225-3365","office":"1208 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WI","party":"Republican","district":7,"url":"http://duffy.house.gov","address":"1208 Longworth HOB; Washington DC 20515-4907","phone":"202-225-3365","office":"1208 Longworth House Office Building","rss_url":"http://duffy.house.gov/rss.xml","contact_form":"http://duffy.house.gov/contact","fax":"202-225-3240"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WI","party":"Republican","district":7,"url":"http://duffy.house.gov","address":"1208 Longworth HOB; Washington DC 20515-4907","phone":"202-225-3365","office":"1208 Longworth House Office Building","rss_url":"http://duffy.house.gov/rss.xml","contact_form":"http://duffy.house.gov/contact","fax":"202-225-3240"}]},{"id":{"bioguide":"D000615","thomas":"02057","govtrack":412472,"opensecrets":"N00030752","votesmart":47967,"fec":["H0SC03077"],"cspan":62713,"wikipedia":"Jeff Duncan (politician)","house_history":12602,"ballotpedia":"Jeff Duncan","maplight":6047,"washington_post":"gIQAfghZKP","icpsr":21174},"name":{"first":"Jeff","last":"Duncan","official_full":"Jeff Duncan"},"bio":{"birthday":"1966-01-07","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"SC","district":3,"party":"Republican","url":"http://jeffduncan.house.gov/","address":"116 Cannon HOB; Washington DC 20515-4003","phone":"202-225-5301","fax":"202- 225-3216","office":"116 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"SC","party":"Republican","district":3,"url":"http://jeffduncan.house.gov","address":"116 Cannon HOB; Washington DC 20515-4003","phone":"202-225-5301","fax":"202- 225-3216","office":"116 Cannon House Office Building","rss_url":"http://jeffduncan.house.gov/rss.xml","contact_form":"https://jeffduncan.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"SC","party":"Republican","district":3,"url":"http://jeffduncan.house.gov","address":"106 Cannon HOB; Washington DC 20515-4003","phone":"202-225-5301","fax":"202- 225-3216","office":"106 Cannon House Office Building","rss_url":"http://jeffduncan.house.gov/rss.xml","contact_form":"https://jeffduncan.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"D000533","thomas":"00322","govtrack":400116,"opensecrets":"N00003209","votesmart":27069,"icpsr":15455,"fec":["H8TN02069"],"cspan":6114,"wikipedia":"Jimmy Duncan (U.S. politician)","house_history":12493,"maplight":4225,"washington_post":"gIQA7YKbKP"},"name":{"first":"John","middle":"J.","last":"Duncan","suffix":"Jr.","nickname":"Jimmy","official_full":"John J. Duncan Jr."},"bio":{"birthday":"1947-07-21","gender":"M","religion":"Presbyterian"},"terms":[{"type":"rep","start":"1988-11-08","end":"1989-01-03","state":"TN","district":2,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"TN","district":2,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"TN","district":2,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"TN","district":2,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TN","district":2,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TN","district":2,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TN","district":2,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TN","district":2,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TN","district":2,"party":"Republican","url":"http://www.house.gov/duncan"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TN","district":2,"party":"Republican","url":"http://www.house.gov/duncan"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TN","district":2,"party":"Republican","url":"http://www.house.gov/duncan/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TN","district":2,"party":"Republican","url":"http://www.house.gov/duncan/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":2,"party":"Republican","url":"http://www.house.gov/duncan/","address":"2207 Rayburn HOB; Washington DC 20515-4202","phone":"202-225-5435","fax":"202-225-6440","contact_form":"http://www.house.gov/duncan/contactform_zipcheck.shtml","office":"2207 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Republican","district":2,"url":"http://duncan.house.gov","address":"2207 Rayburn HOB; Washington DC 20515-4202","phone":"202-225-5435","fax":"202-225-6440","contact_form":"https://duncan.house.gov/contact-me/email-me","office":"2207 Rayburn House Office Building","rss_url":"http://duncan.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Republican","district":2,"url":"http://duncan.house.gov","address":"2207 Rayburn HOB; Washington DC 20515-4202","phone":"202-225-5435","fax":"202-225-6440","contact_form":"https://duncan.house.gov/contact-me/email-me","office":"2207 Rayburn House Office Building","rss_url":"http://duncan.house.gov/rss.xml"}],"family":[{"name":"John James Duncan","relation":"son"}]},{"id":{"bioguide":"E000290","thomas":"01894","govtrack":412263,"opensecrets":"N00028249","votesmart":65085,"fec":["H6MD04183"],"cspan":38535,"wikipedia":"Donna Edwards","house_history":12961,"maplight":6865,"washington_post":"gIQAqUKbKP","icpsr":20763},"name":{"first":"Donna","middle":"F.","last":"Edwards","official_full":"Donna F. Edwards"},"bio":{"birthday":"1958-06-28","gender":"F"},"terms":[{"type":"rep","start":"2008-06-19","end":"2009-01-03","state":"MD","district":4,"party":"Democrat","url":"http://donnaedwards.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MD","district":4,"party":"Democrat","url":"http://donnaedwards.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MD","district":4,"party":"Democrat","url":"http://donnaedwards.house.gov/","address":"318 Cannon HOB; Washington DC 20515-2004","phone":"202-225-8699","fax":"202-225-8714","contact_form":"http://www.house.gov/writerep","office":"318 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MD","party":"Democrat","district":4,"url":"http://donnaedwards.house.gov","address":"2445 Rayburn HOB; Washington DC 20515-2004","phone":"202-225-8699","fax":"202-225-8714","contact_form":"https://forms.house.gov/formdonnaedwards/issue_subscribe.shtml","office":"2445 Rayburn House Office Building","rss_url":"http://www.house.gov/common/rss/?rss=24"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MD","party":"Democrat","district":4,"url":"http://donnaedwards.house.gov","address":"2445 Rayburn HOB; Washington DC 20515-2004","phone":"202-225-8699","fax":"202-225-8714","contact_form":"https://forms.house.gov/formdonnaedwards/issue_subscribe.shtml","office":"2445 Rayburn House Office Building","rss_url":"http://www.house.gov/common/rss/?rss=24"}]},{"id":{"bioguide":"E000288","thomas":"01857","govtrack":412215,"opensecrets":"N00028257","votesmart":38982,"fec":["H6MN05183"],"cspan":1022556,"wikipedia":"Keith Ellison","house_history":12957,"ballotpedia":"Keith Ellison","maplight":4697,"washington_post":"gIQA98OxDP","icpsr":20727},"name":{"first":"Keith","middle":"Maurice","last":"Ellison","official_full":"Keith Ellison"},"bio":{"birthday":"1963-08-04","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MN","district":5,"party":"Democrat","url":"http://ellison.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MN","district":5,"party":"Democrat","url":"http://ellison.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MN","district":5,"party":"Democrat","url":"http://ellison.house.gov","address":"1027 Longworth HOB; Washington DC 20515-2305","phone":"202-225-4755","fax":"202-225-4886","contact_form":"http://ellison.house.gov/index.php?option=com_content&task=view&id=87","office":"1027 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MN","party":"Democrat","district":5,"url":"http://ellison.house.gov","address":"2244 Rayburn HOB; Washington DC 20515-2305","phone":"202-225-4755","fax":"202-225-4886","contact_form":"http://ellison.house.gov/contact","office":"2244 Rayburn House Office Building","rss_url":"http://ellison.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MN","party":"Democrat","district":5,"url":"http://ellison.house.gov","address":"2263 Rayburn HOB; Washington DC 20515-2305","phone":"202-225-4755","fax":"202-225-4886","contact_form":"http://ellison.house.gov/contact","office":"2263 Rayburn House Office Building","rss_url":"http://ellison.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"E000291","thomas":"02036","govtrack":412457,"opensecrets":"N00031513","votesmart":120897,"fec":["H0NC02059"],"cspan":1033793,"wikipedia":"Renee Ellmers","house_history":12963,"ballotpedia":"Renee Ellmers","maplight":5858,"washington_post":"gIQAATqZKP","icpsr":21159},"name":{"first":"Renee","last":"Ellmers","official_full":"Renee L. Ellmers","middle":"L."},"bio":{"birthday":"1964-02-09","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NC","district":2,"party":"Republican","url":"http://ellmers.house.gov/","address":"1533 Longworth HOB; Washington DC 20515-3302","phone":"202-225-4531","fax":"202- 225-5662","office":"1533 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Republican","district":2,"url":"http://ellmers.house.gov","address":"426 Cannon HOB; Washington DC 20515-3302","phone":"202-225-4531","fax":"202- 225-5662","office":"426 Cannon House Office Building","rss_url":"http://ellmers.house.gov/common/rss//index.cfm?rss=49","contact_form":"https://ellmersforms.house.gov/contact-us1"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Republican","district":2,"url":"http://ellmers.house.gov","address":"1210 Longworth HOB; Washington DC 20515-3302","phone":"202-225-4531","fax":"202- 225-5662","office":"1210 Longworth House Office Building","rss_url":"http://ellmers.house.gov/common/rss//index.cfm?rss=49","contact_form":"https://ellmersforms.house.gov/contact-us1"}]},{"id":{"bioguide":"E000179","thomas":"00344","govtrack":400122,"opensecrets":"N00001003","votesmart":26972,"icpsr":15603,"fec":["H8NY19058"],"cspan":6109,"wikipedia":"Eliot Engel","house_history":12815,"maplight":4230,"washington_post":"gIQAxS2pAP"},"name":{"first":"Eliot","middle":"L.","last":"Engel","official_full":"Eliot L. Engel"},"bio":{"birthday":"1947-02-18","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NY","district":19,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NY","district":19,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":17,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":17,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":17,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":17,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":17,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":17,"party":"Democrat","url":"http://www.house.gov/engel"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":17,"party":"Democrat","url":"http://www.house.gov/engel"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":17,"party":"Democrat","url":"http://www.house.gov/engel"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":17,"party":"Democrat","url":"http://www.house.gov/engel"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":17,"party":"Democrat","url":"http://www.house.gov/engel","address":"2161 Rayburn HOB; Washington DC 20515-3217","phone":"202-225-2464","fax":"202-225-5513","contact_form":"http://www.house.gov/writerep","office":"2161 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":16,"url":"http://engel.house.gov","address":"2161 Rayburn HOB; Washington DC 20515-3216","phone":"202-225-2464","fax":"202-225-5513","contact_form":"https://engel.house.gov/write-your-rep1","office":"2161 Rayburn House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":16,"url":"http://engel.house.gov","address":"2462 Rayburn HOB; Washington DC 20515-3216","phone":"202-225-2464","fax":"202-225-5513","contact_form":"https://engel.house.gov/write-your-rep1","office":"2462 Rayburn House Office Building"}]},{"id":{"bioguide":"E000215","thomas":"00355","govtrack":400124,"opensecrets":"N00007335","votesmart":26741,"fec":["H8CA12098"],"cspan":26130,"wikipedia":"Anna Eshoo","house_history":12867,"maplight":4232,"washington_post":"gIQAdlYxDP","icpsr":29312},"name":{"first":"Anna","middle":"G.","last":"Eshoo","official_full":"Anna G. Eshoo"},"bio":{"birthday":"1942-12-13","gender":"F","religion":"Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CA","district":14,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":14,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":14,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":14,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":14,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":14,"party":"Democrat","url":"http://www-eshoo.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":14,"party":"Democrat","url":"http://www-eshoo.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":14,"party":"Democrat","url":"http://eshoo.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":14,"party":"Democrat","url":"http://eshoo.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":14,"party":"Democrat","url":"http://eshoo.house.gov","address":"205 Cannon HOB; Washington DC 20515-0514","phone":"202-225-8104","fax":"202-225-8890","contact_form":"https://forms.house.gov/eshoo/webforms/issue_subscribe.htm","office":"205 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":18,"url":"http://eshoo.house.gov","address":"241 Cannon HOB; Washington DC 20515-0518","phone":"202-225-8104","fax":"202-225-8890","contact_form":"https://eshoo.house.gov/email-me/","office":"241 Cannon House Office Building","rss_url":"http://eshoo.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":18,"url":"http://eshoo.house.gov","address":"241 Cannon HOB; Washington DC 20515-0518","phone":"202-225-8104","fax":"202-225-8890","contact_form":"https://eshoo.house.gov/email-me/","office":"241 Cannon House Office Building","rss_url":"http://eshoo.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"F000460","thomas":"02067","govtrack":412482,"opensecrets":"N00031672","votesmart":116919,"fec":["H0TX27061"],"cspan":95180,"wikipedia":"Blake Farenthold","house_history":13565,"ballotpedia":"Blake Farenthold","maplight":6111,"washington_post":"gIQA6OqZKP","icpsr":21184},"name":{"first":"Blake","last":"Farenthold","official_full":"Blake Farenthold"},"bio":{"birthday":"1961-12-12","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":27,"party":"Republican","url":"http://farenthold.house.gov/","address":"2110 Rayburn HOB; Washington DC 20515-4327","phone":"202-225-7742","fax":"202-226-1134","office":"2110 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":27,"url":"http://farenthold.house.gov","address":"117 Cannon HOB; Washington DC 20515-4327","phone":"202-225-7742","fax":"202-226-1134","office":"117 Cannon House Office Building","contact_form":"http://farentholdforms.house.gov/contact/email.htm","rss_url":"http://farenthold.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":27,"url":"http://farenthold.house.gov","address":"1027 Longworth HOB; Washington DC 20515-4327","phone":"202-225-7742","fax":"202-226-1134","office":"1027 Longworth House Office Building","contact_form":"http://farentholdforms.house.gov/contact/email.htm","rss_url":"http://farenthold.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"F000030","thomas":"00368","govtrack":400129,"opensecrets":"N00007312","votesmart":26745,"fec":["H4CA17021"],"cspan":30645,"wikipedia":"Sam Farr","house_history":13001,"maplight":4237,"washington_post":"gIQAPPNqAP","icpsr":29313},"name":{"first":"Sam","last":"Farr","official_full":"Sam Farr"},"bio":{"birthday":"1941-07-04","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1993-06-08","end":"1994-12-01","state":"CA","district":17,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":17,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":17,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":17,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":17,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":17,"party":"Democrat","url":"http://www.house.gov/farr"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":17,"party":"Democrat","url":"http://www.house.gov/farr"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":17,"party":"Democrat","url":"http://www.house.gov/farr"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":17,"party":"Democrat","url":"http://www.house.gov/farr"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":17,"party":"Democrat","url":"http://www.house.gov/farr","address":"1126 Longworth HOB; Washington DC 20515-0517","phone":"202-225-2861","fax":"202-225-6791","contact_form":"http://www.farr.house.gov/index.php?option=com_content&task=view&id=202","office":"1126 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":20,"url":"http://www.farr.house.gov","address":"1126 Longworth HOB; Washington DC 20515-0520","phone":"202-225-2861","fax":"202-225-6791","contact_form":"https://forms.house.gov/farr/webforms/issue_subscribe.html","office":"1126 Longworth House Office Building","rss_url":"http://www.farr.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":20,"url":"http://www.farr.house.gov","address":"1126 Longworth HOB; Washington DC 20515-0520","phone":"202-225-2861","fax":"202-225-6791","contact_form":"https://forms.house.gov/farr/webforms/issue_subscribe.html","office":"1126 Longworth House Office Building","rss_url":"http://www.farr.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"F000043","thomas":"00371","govtrack":400130,"opensecrets":"N00001746","votesmart":21850,"fec":["H2PA02055"],"cspan":36763,"wikipedia":"Chaka Fattah","house_history":13018,"ballotpedia":"Chaka Fattah","maplight":4238,"washington_post":"gIQAvQNqAP","icpsr":29559},"name":{"first":"Chaka","last":"Fattah","official_full":"Chaka Fattah"},"bio":{"birthday":"1956-11-21","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"PA","district":2,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"PA","district":2,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"PA","district":2,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"PA","district":2,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"PA","district":2,"party":"Democrat","url":"http://www.house.gov/fattah"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"PA","district":2,"party":"Democrat","url":"http://www.house.gov/fattah"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"PA","district":2,"party":"Democrat","url":"http://www.house.gov/fattah"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"PA","district":2,"party":"Democrat","url":"http://www.house.gov/fattah"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":2,"party":"Democrat","url":"http://www.house.gov/fattah","address":"2301 Rayburn HOB; Washington DC 20515-3802","phone":"202-225-4001","fax":"202-225-5392","contact_form":"http://fattah.house.gov/?sectionid=8&sectiontree=8","office":"2301 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Democrat","district":2,"url":"http://fattah.house.gov","address":"2301 Rayburn HOB; Washington DC 20515-3802","phone":"202-225-4001","fax":"202-225-5392","contact_form":"https://fattahforms.house.gov/contact-rep-fattah","office":"2301 Rayburn House Office Building","rss_url":"http://www.house.gov/common/rss//index.cfm?rss=34"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Democrat","district":2,"url":"http://fattah.house.gov","address":"2301 Rayburn HOB; Washington DC 20515-3802","phone":"202-225-4001","fax":"202-225-5392","contact_form":"https://fattahforms.house.gov/contact-rep-fattah","office":"2301 Rayburn House Office Building","rss_url":"http://www.house.gov/common/rss//index.cfm?rss=34"}]},{"id":{"bioguide":"F000458","thomas":"02064","govtrack":412479,"opensecrets":"N00031141","votesmart":124659,"fec":["H0TN08246"],"cspan":9268967,"wikipedia":"Stephen Fincher","house_history":13562,"maplight":6085,"washington_post":"gIQAnqGVKP","icpsr":21181},"name":{"first":"Stephen","last":"Fincher","official_full":"Stephen Lee Fincher","middle":"Lee"},"bio":{"birthday":"1973-02-07","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":8,"party":"Republican","url":"http://fincher.house.gov/","address":"1118 Longworth HOB; Washington DC 20515-4208","phone":"202-225-4714","fax":"202-225-1765","office":"1118 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Republican","district":8,"url":"http://fincher.house.gov","address":"1118 Longworth HOB; Washington DC 20515-4208","phone":"202-225-4714","fax":"202-225-1765","office":"1118 Longworth House Office Building","rss_url":"http://fincher.house.gov/rss.xml","contact_form":"https://fincher.house.gov/contact/email-me#.U06uR_ldWVo"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Republican","district":8,"url":"http://fincher.house.gov","address":"2452 Rayburn HOB; Washington DC 20515-4208","phone":"202-225-4714","fax":"202-225-1765","office":"2452 Rayburn House Office Building","rss_url":"http://fincher.house.gov/rss.xml","contact_form":"https://fincher.house.gov/contact/email-me#.U06uR_ldWVo"}]},{"id":{"bioguide":"F000451","thomas":"01797","govtrack":400646,"opensecrets":"N00027229","votesmart":46971,"fec":["H4PA08074"],"cspan":33378,"house_history":13549,"wikipedia":"Mike Fitzpatrick","maplight":6790,"washington_post":"gIQApV5UKP","icpsr":20524},"name":{"first":"Michael","middle":"G.","last":"Fitzpatrick","official_full":"Michael G. Fitzpatrick"},"bio":{"birthday":"1963-06-28","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"PA","district":8,"party":"Republican"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":8,"party":"Republican","url":"http://fitzpatrick.house.gov/","address":"1224 Longworth HOB; Washington DC 20515-3808","phone":"202-225-4276","fax":"202- 225-9511","office":"1224 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":8,"url":"http://fitzpatrick.house.gov","address":"2400 Rayburn HOB; Washington DC 20515-3808","phone":"202-225-4276","fax":"202- 225-9511","office":"2400 Rayburn House Office Building","rss_url":"http://fitzpatrick.house.gov/rss.xml","contact_form":"https://fitzpatrick.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":8,"url":"http://fitzpatrick.house.gov","address":"2400 Rayburn HOB; Washington DC 20515-3808","phone":"202-225-4276","fax":"202- 225-9511","office":"2400 Rayburn House Office Building","rss_url":"http://fitzpatrick.house.gov/rss.xml","contact_form":"https://fitzpatrick.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"F000444","thomas":"01633","lis":"S358","govtrack":400134,"opensecrets":"N00009573","votesmart":28128,"fec":["H0AZ01184","S2AZ00141"],"cspan":87582,"house_history":13537,"wikipedia":"Jeff Flake","ballotpedia":"Jeff Flake","maplight":7417,"washington_post":"gIQAU2XIAP","icpsr":20100},"name":{"first":"Jeff","last":"Flake","official_full":"Jeff Flake"},"bio":{"birthday":"1962-12-31","gender":"M","religion":"Latter Day Saints"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"AZ","district":1,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"AZ","district":6,"party":"Republican","url":"http://www.house.gov/flake"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"AZ","district":6,"party":"Republican","url":"http://www.house.gov/flake"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"AZ","district":6,"party":"Republican","url":"http://flake.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"AZ","district":6,"party":"Republican","url":"http://flake.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AZ","district":6,"party":"Republican","url":"http://flake.house.gov","address":"240 Cannon HOB; Washington DC 20515-0306","phone":"202-225-2635","fax":"202-226-4386","contact_form":"http://www.house.gov/writerep","office":"240 Cannon House Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"AZ","party":"Republican","class":1,"url":"http://www.flake.senate.gov","address":"368 Russell Senate Office Building Washington DC 20510","phone":"202-224-4521","fax":"202-226-4386","contact_form":"http://www.flake.senate.gov/contact.cfm","office":"368 Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.flake.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"F000459","thomas":"02061","govtrack":412476,"opensecrets":"N00030815","votesmart":123456,"fec":["H0TN03254"],"cspan":95146,"wikipedia":"Chuck Fleischmann","house_history":13563,"maplight":6063,"washington_post":"gIQAav8tKP","icpsr":21178},"name":{"first":"Charles","last":"Fleischmann","official_full":"Charles J. \"Chuck\" Fleischmann","middle":"J.","nickname":"Chuck"},"bio":{"birthday":"1962-10-11","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":3,"party":"Republican","url":"http://fleischmann.house.gov/","address":"511 Cannon HOB; Washington DC 20515-4203","phone":"202-225-3271","fax":"202-225-3494","office":"511 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Republican","district":3,"url":"http://fleischmann.house.gov","address":"230 Cannon HOB; Washington DC 20515-4203","phone":"202-225-3271","fax":"202-225-3494","office":"230 Cannon House Office Building","rss_url":"http://fleischmann.house.gov/rss.xml","contact_form":"https://fleischmann.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Republican","district":3,"url":"http://fleischmann.house.gov","address":"230 Cannon HOB; Washington DC 20515-4203","phone":"202-225-3271","fax":"202-225-3494","office":"230 Cannon House Office Building","rss_url":"http://fleischmann.house.gov/rss.xml","contact_form":"https://fleischmann.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"F000456","thomas":"01924","govtrack":412275,"opensecrets":"N00029679","votesmart":108811,"fec":["H8LA04225"],"cspan":1031345,"wikipedia":"John Fleming (U.S. politician)","house_history":13559,"ballotpedia":"John Fleming (Louisiana)","maplight":7036,"washington_post":"gIQARR2pAP","icpsr":20918},"name":{"first":"John","last":"Fleming","official_full":"John Fleming"},"bio":{"gender":"M","birthday":"1951-07-05"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"LA","district":4,"party":"Republican","url":"http://fleming.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"LA","district":4,"party":"Republican","url":"http://fleming.house.gov","address":"416 Cannon HOB; Washington DC 20515-1804","phone":"202-225-2777","fax":"202-225-8039","contact_form":"https://forms.house.gov/fleming/contact-form.shtml","office":"416 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"LA","party":"Republican","district":4,"url":"http://fleming.house.gov","address":"416 Cannon HOB; Washington DC 20515-1804","phone":"202-225-2777","fax":"202-225-8039","contact_form":"https://fleming.house.gov/contact/contactform.htm","office":"416 Cannon House Office Building","rss_url":"http://fleming.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"LA","party":"Republican","district":4,"url":"http://fleming.house.gov","address":"2182 Rayburn HOB; Washington DC 20515-1804","phone":"202-225-2777","fax":"202-225-8039","contact_form":"https://fleming.house.gov/contact/contactform.htm","office":"2182 Rayburn House Office Building","rss_url":"http://fleming.house.gov/news/rss.aspx"}],"family":[{"name":"Henry Clay","relation":"relative"},{"name":"James Brown Clay","relation":"relative"}]},{"id":{"bioguide":"F000461","thomas":"02065","govtrack":412480,"opensecrets":"N00031545","votesmart":116906,"fec":["H0TX17104"],"cspan":623540,"wikipedia":"Bill Flores","house_history":13566,"maplight":6101,"washington_post":"gIQA9K9UKP","icpsr":21182},"name":{"first":"Bill","last":"Flores","official_full":"Bill Flores"},"bio":{"birthday":"1954-02-25","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":17,"party":"Republican","url":"http://flores.house.gov/","address":"1505 Longworth HOB; Washington DC 20515-4317","phone":"202-225-6105","fax":"202-225-0350","office":"1505 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":17,"url":"http://flores.house.gov","address":"1030 Longworth HOB; Washington DC 20515-4317","phone":"202-225-6105","fax":"202-225-0350","office":"1030 Longworth House Office Building","rss_url":"http://flores.house.gov/common/rss//index.cfm?rss=25","contact_form":"https://billflores.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":17,"url":"http://flores.house.gov","address":"1030 Longworth HOB; Washington DC 20515-4317","phone":"202-225-6105","fax":"202-225-0350","office":"1030 Longworth House Office Building","rss_url":"http://flores.house.gov/common/rss//index.cfm?rss=25","contact_form":"https://billflores.house.gov/contact/"}]},{"id":{"bioguide":"F000445","thomas":"01683","govtrack":400137,"opensecrets":"N00013799","votesmart":5146,"fec":["H2VA04052"],"cspan":89584,"wikipedia":"Randy Forbes","house_history":13539,"ballotpedia":"Randy Forbes","maplight":4244,"washington_post":"gIQAqP2pAP","icpsr":20143},"name":{"first":"J.","middle":"Randy","last":"Forbes","official_full":"J. Randy Forbes"},"bio":{"birthday":"1952-02-17","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"2001-06-26","end":"2002-11-22","state":"VA","district":4,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"VA","district":4,"party":"Republican","url":"http://www.house.gov/forbes"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"VA","district":4,"party":"Republican","url":"http://www.house.gov/forbes"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"VA","district":4,"party":"Republican","url":"http://www.house.gov/forbes"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"VA","district":4,"party":"Republican","url":"http://www.house.gov/forbes"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VA","district":4,"party":"Republican","url":"http://www.house.gov/forbes","address":"2438 Rayburn HOB; Washington DC 20515-4604","phone":"202-225-6365","fax":"202-226-1170","contact_form":"http://forbes.house.gov/zipauth.html","office":"2438 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VA","party":"Republican","district":4,"url":"http://forbes.house.gov","address":"2135 Rayburn HOB; Washington DC 20515-4604","phone":"202-225-6365","fax":"202-226-1170","contact_form":"https://forbes.house.gov/contact/contactform.htm","office":"2135 Rayburn House Office Building","rss_url":"http://forbes.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","party":"Republican","district":4,"url":"http://forbes.house.gov","address":"2135 Rayburn HOB; Washington DC 20515-4604","phone":"202-225-6365","fax":"202-226-1170","contact_form":"https://forbes.house.gov/contact/contactform.htm","office":"2135 Rayburn House Office Building","rss_url":"http://forbes.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"F000449","thomas":"01793","govtrack":400640,"opensecrets":"N00026631","votesmart":41929,"fec":["H4NE01064"],"cspan":1013049,"wikipedia":"Jeff Fortenberry","house_history":13545,"ballotpedia":"Jeff Fortenberry","maplight":4643,"washington_post":"gIQAfqrHAP","icpsr":20518},"name":{"first":"Jeff","middle":"Lane","last":"Fortenberry","official_full":"Jeff Fortenberry"},"bio":{"gender":"M","birthday":"1960-12-27"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NE","district":1,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NE","district":1,"party":"Republican","url":"http://fortenberry.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NE","district":1,"party":"Republican","url":"http://fortenberry.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NE","district":1,"party":"Republican","url":"http://fortenberry.house.gov","address":"1514 Longworth HOB; Washington DC 20515-2701","phone":"202-225-4806","fax":"202-225-5686","contact_form":"http://fortenberry.house.gov/contactform_zipcheck.shtml","office":"1514 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NE","party":"Republican","district":1,"url":"http://fortenberry.house.gov","address":"1514 Longworth HOB; Washington DC 20515-2701","phone":"202-225-4806","fax":"202-225-5686","contact_form":"https://fortenberry.house.gov/contact-me1","office":"1514 Longworth House Office Building","rss_url":"http://fortenberry.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NE","party":"Republican","district":1,"url":"http://fortenberry.house.gov","address":"1514 Longworth HOB; Washington DC 20515-2701","phone":"202-225-4806","fax":"202-225-5686","contact_form":"https://fortenberry.house.gov/contact-me1","office":"1514 Longworth House Office Building","rss_url":"http://fortenberry.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"F000450","thomas":"01791","govtrack":400643,"opensecrets":"N00026166","votesmart":6051,"fec":["H4NC05146"],"cspan":1013052,"wikipedia":"Virginia Foxx","house_history":13547,"ballotpedia":"Virginia Foxx","maplight":4646,"washington_post":"gIQARSNqAP","icpsr":20521},"name":{"first":"Virginia","last":"Foxx","official_full":"Virginia Foxx"},"bio":{"birthday":"1943-06-29","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NC","district":5,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NC","district":5,"party":"Republican","url":"http://foxx.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NC","district":5,"party":"Republican","url":"http://foxx.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NC","district":5,"party":"Republican","url":"http://foxx.house.gov","address":"1230 Longworth HOB; Washington DC 20515-3305","phone":"202-225-2071","fax":"202-225-2995","contact_form":"http://www.house.gov/formfoxx/IMA/issue_subscribe.htm","office":"1230 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Republican","district":5,"url":"http://foxx.house.gov","address":"2350 Rayburn HOB; Washington DC 20515-3305","phone":"202-225-2071","fax":"202-225-2995","contact_form":"https://foxx.house.gov/forms/writeyourrep/?zip5=&zip4=","office":"2350 Rayburn House Office Building","rss_url":"http://foxx.house.gov/common/rss/?rss=55"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Republican","district":5,"url":"http://foxx.house.gov","address":"2350 Rayburn HOB; Washington DC 20515-3305","phone":"202-225-2071","fax":"202-225-2995","contact_form":"https://foxx.house.gov/forms/writeyourrep/?zip5=&zip4=","office":"2350 Rayburn House Office Building","rss_url":"http://foxx.house.gov/common/rss/?rss=55"}]},{"id":{"bioguide":"F000448","thomas":"01707","govtrack":400141,"opensecrets":"N00006423","votesmart":28399,"fec":["H4AZ04024"],"cspan":1003550,"wikipedia":"Trent Franks","house_history":13543,"ballotpedia":"Trent Franks","maplight":4248,"washington_post":"gIQAbTtMAP","icpsr":20304},"name":{"first":"Trent","last":"Franks","official_full":"Trent Franks"},"bio":{"birthday":"1957-06-19","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"AZ","district":2,"party":"Republican","url":"http://www.house.gov/franks"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"AZ","district":2,"party":"Republican","url":"http://www.house.gov/franks"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"AZ","district":2,"party":"Republican","url":"http://www.house.gov/franks"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"AZ","district":2,"party":"Republican","url":"http://www.house.gov/franks"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AZ","district":2,"party":"Republican","url":"http://www.house.gov/franks","address":"2435 Rayburn HOB; Washington DC 20515-0302","phone":"202-225-4576","fax":"202-225-6328","contact_form":"https://forms.house.gov/franks/email_zipcheck.shtml","office":"2435 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AZ","party":"Republican","district":8,"url":"http://franks.house.gov","address":"2435 Rayburn HOB; Washington DC 20515-0308","phone":"202-225-4576","fax":"202-225-6328","contact_form":"https://franks.house.gov/contact-me/email-me","office":"2435 Rayburn House Office Building","rss_url":"http://franks.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","party":"Republican","district":8,"url":"http://franks.house.gov","address":"2435 Rayburn HOB; Washington DC 20515-0308","phone":"202-225-4576","fax":"202-225-6328","contact_form":"https://franks.house.gov/contact-me/email-me","office":"2435 Rayburn House Office Building","rss_url":"http://franks.house.gov/rss.xml"}]},{"id":{"bioguide":"F000372","thomas":"00414","govtrack":400142,"opensecrets":"N00000684","votesmart":22177,"fec":["H2NJ05014"],"cspan":37781,"wikipedia":"Rodney Frelinghuysen","house_history":13440,"maplight":4249,"washington_post":"gIQAFP2pAP","icpsr":29541},"name":{"first":"Rodney","middle":"P.","last":"Frelinghuysen","official_full":"Rodney P. Frelinghuysen"},"bio":{"birthday":"1946-04-29","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NJ","district":11,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NJ","district":11,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NJ","district":11,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NJ","district":11,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NJ","district":11,"party":"Republican","url":"http://www.house.gov/frelinghuysen"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NJ","district":11,"party":"Republican","url":"http://www.house.gov/frelinghuysen"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NJ","district":11,"party":"Republican","url":"http://frelinghuysen.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NJ","district":11,"party":"Republican","url":"http://frelinghuysen.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NJ","district":11,"party":"Republican","url":"http://frelinghuysen.house.gov","address":"2369 Rayburn HOB; Washington DC 20515-3011","phone":"202-225-5034","fax":"202-225-3186","contact_form":"http://frelinghuysen.house.gov/contactus/form.cfm","office":"2369 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Republican","district":11,"url":"http://frelinghuysen.house.gov","address":"2306 Rayburn HOB; Washington DC 20515-3011","phone":"202-225-5034","fax":"202-225-3186","contact_form":"https://frelinghuysenforms.house.gov/contact-form","office":"2306 Rayburn House Office Building","rss_url":"http://frelinghuysen.house.gov/common/rss/?rss=3"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Republican","district":11,"url":"http://frelinghuysen.house.gov","address":"2306 Rayburn HOB; Washington DC 20515-3011","phone":"202-225-5034","fax":"202-225-3186","contact_form":"https://frelinghuysenforms.house.gov/contact-form","office":"2306 Rayburn House Office Building","rss_url":"http://frelinghuysen.house.gov/common/rss/?rss=3"}],"family":[{"name":"Peter Hood Ballantine Frelinghuysen Jr.","relation":"son"},{"name":"Frederick Frelinghuysen","relation":"great great grandson"},{"name":"Theodore Frelinghuysen","relation":"great great great nephew"}]},{"id":{"bioguide":"F000455","thomas":"01895","govtrack":412327,"opensecrets":"N00030490","votesmart":110640,"fec":["H8OH11141"],"cspan":1030928,"house_history":13557,"wikipedia":"Marcia Fudge","ballotpedia":"Marcia L. Fudge","maplight":7138,"washington_post":"gIQAjN2pAP","icpsr":20941},"name":{"first":"Marcia","last":"Fudge","official_full":"Marcia L. Fudge","middle":"L."},"bio":{"gender":"F","birthday":"1952-10-29"},"terms":[{"type":"rep","start":"2008-11-19","end":"2009-01-03","state":"OH","district":11,"party":"Democrat","url":"http://fudge.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OH","district":11,"party":"Democrat","url":"http://fudge.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":11,"party":"Democrat","url":"http://fudge.house.gov/","address":"1019 Longworth HOB; Washington DC 20515-3511","phone":"202-225-7032","fax":"202-225-1339","contact_form":"https://forms.house.gov/fudge/contact-form.shtml","office":"1019 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Democrat","district":11,"url":"http://fudge.house.gov","address":"2344 Rayburn HOB; Washington DC 20515-3511","phone":"202-225-7032","fax":"202-225-1339","contact_form":"https://fudgeforms.house.gov/contact-form","office":"2344 Rayburn House Office Building","rss_url":"http://fudge.house.gov/common/rss//index.cfm?rss=25"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Democrat","district":11,"url":"http://fudge.house.gov","address":"2344 Rayburn HOB; Washington DC 20515-3511","phone":"202-225-7032","fax":"202-225-1339","contact_form":"https://fudgeforms.house.gov/contact-form","office":"2344 Rayburn House Office Building","rss_url":"http://fudge.house.gov/common/rss//index.cfm?rss=25"}]},{"id":{"bioguide":"G000559","thomas":"01973","govtrack":412382,"opensecrets":"N00030856","votesmart":29664,"fec":["H0CA10149"],"cspan":18413,"wikipedia":"John Garamendi","house_history":14276,"maplight":5456,"washington_post":"gIQAZT3s6O","icpsr":20958},"name":{"first":"John","last":"Garamendi","official_full":"John Garamendi"},"bio":{"birthday":"1945-01-24","gender":"M"},"terms":[{"type":"rep","start":"2009-11-03","end":"2010-12-22","state":"CA","district":10,"party":"Democrat","url":"http://garamendi.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":10,"party":"Democrat","url":"http://garamendi.house.gov/","address":"228 Cannon HOB; Washington DC 20515-0510","phone":"202-225-1880","fax":"202-225-5914","contact_form":"http://garamendi.house.gov/contact/email-me.shtml","office":"228 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":3,"url":"http://garamendi.house.gov","address":"2438 Rayburn HOB; Washington DC 20515-0503","phone":"202-225-1880","fax":"202-225-5914","contact_form":"https://garamendi.house.gov/contact-me/email-me","office":"2438 Rayburn House Office Building","rss_url":"http://garamendi.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":3,"url":"http://garamendi.house.gov","address":"2438 Rayburn HOB; Washington DC 20515-0503","phone":"202-225-1880","fax":"202-225-5914","contact_form":"https://garamendi.house.gov/contact-me/email-me","office":"2438 Rayburn House Office Building","rss_url":"http://garamendi.house.gov/rss.xml"}]},{"id":{"bioguide":"G000562","thomas":"01998","govtrack":412406,"opensecrets":"N00030780","votesmart":30004,"fec":["H0CO04122"],"cspan":623308,"wikipedia":"Cory Gardner","house_history":14279,"ballotpedia":"Cory Gardner","maplight":5517,"washington_post":"gIQAAaFWKP","icpsr":21112,"lis":"S377"},"name":{"first":"Cory","last":"Gardner","official_full":"Cory Gardner"},"bio":{"birthday":"1974-08-22","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CO","district":4,"party":"Republican","url":"http://gardner.house.gov/","address":"213 Cannon HOB; Washington DC 20515-0604","phone":"202-225-4676","office":"213 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CO","party":"Republican","district":4,"url":"http://gardner.house.gov","address":"213 Cannon HOB; Washington DC 20515-0604","phone":"202-225-4676","office":"213 Cannon House Office Building","rss_url":"http://gardner.house.gov/rss.xml","contact_form":"https://gardner.house.gov/contact-me","fax":"202-225-5870"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"CO","class":2,"state_rank":"junior","party":"Republican","url":"http://www.gardner.senate.gov","address":"B40B Dirksen Senate Office Building Washington DC 20510","office":"B40b Dirksen Senate Office Building","phone":"202-224-5941"}]},{"id":{"bioguide":"G000548","thomas":"01737","govtrack":400145,"opensecrets":"N00000743","votesmart":4430,"fec":["H8NJ05052"],"cspan":1003601,"wikipedia":"Scott Garrett","house_history":14255,"ballotpedia":"Scott Garrett","maplight":4251,"washington_post":"gIQAutKHAP","icpsr":20336},"name":{"first":"Scott","last":"Garrett","official_full":"Scott Garrett"},"bio":{"birthday":"1959-07-09","gender":"M"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NJ","district":5,"party":"Republican","url":"http://www.house.gov/garrett"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NJ","district":5,"party":"Republican","url":"http://www.house.gov/garrett"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NJ","district":5,"party":"Republican","url":"http://garrett.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NJ","district":5,"party":"Republican","url":"http://garrett.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NJ","district":5,"party":"Republican","url":"http://garrett.house.gov","address":"2244 Rayburn HOB; Washington DC 20515-3005","phone":"202-225-4465","fax":"202-225-9048","contact_form":"http://www.house.gov/formgarrett/contact.shtml","office":"2244 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Republican","district":5,"url":"http://garrett.house.gov","address":"2232 Rayburn HOB; Washington DC 20515-3005","phone":"202-225-4465","fax":"202-225-9048","contact_form":"https://garrettforms.house.gov/forms/writeyourrep/?zip5=07452&zip4=3321","office":"2232 Rayburn House Office Building","rss_url":"http://garrett.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Republican","district":5,"url":"http://garrett.house.gov","address":"2232 Rayburn HOB; Washington DC 20515-3005","phone":"202-225-4465","fax":"202-225-9048","contact_form":"https://garrettforms.house.gov/forms/writeyourrep/?zip5=07452&zip4=3321","office":"2232 Rayburn House Office Building","rss_url":"http://garrett.house.gov/rss.xml"}]},{"id":{"bioguide":"G000563","thomas":"02049","govtrack":412463,"opensecrets":"N00031128","votesmart":45466,"fec":["H0OH18077"],"cspan":1033844,"wikipedia":"Bob Gibbs","house_history":14280,"ballotpedia":"Bob Gibbs","maplight":5975,"washington_post":"gIQAlN3VKP","icpsr":21165},"name":{"first":"Bob","last":"Gibbs","official_full":"Bob Gibbs"},"bio":{"birthday":"1954-06-14","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":18,"party":"Republican","url":"http://gibbs.house.gov/","address":"329 Cannon HOB; Washington DC 20515-3518","phone":"202-225-6265","fax":"202-225-3394","office":"329 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":7,"url":"http://gibbs.house.gov","address":"329 Cannon HOB; Washington DC 20515-3507","phone":"202-225-6265","fax":"202-225-3394","office":"329 Cannon House Office Building","rss_url":"http://gibbs.house.gov/rss.xml","contact_form":"https://gibbs.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":7,"url":"http://gibbs.house.gov","address":"329 Cannon HOB; Washington DC 20515-3507","phone":"202-225-6265","fax":"202-225-3394","office":"329 Cannon House Office Building","rss_url":"http://gibbs.house.gov/rss.xml","contact_form":"https://gibbs.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"G000564","thomas":"02043","govtrack":412453,"opensecrets":"N00031998","votesmart":127042,"fec":["H0NY20095"],"cspan":1033827,"wikipedia":"Chris Gibson (New York politician)","house_history":14281,"maplight":5947,"washington_post":"gIQAHlhZKP","icpsr":21156},"name":{"first":"Christopher","middle":"P.","last":"Gibson","official_full":"Christopher P. Gibson"},"bio":{"birthday":"1964-05-13","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":20,"party":"Republican","url":"http://gibson.house.gov/","address":"502 Cannon HOB; Washington DC 20515-3220","phone":"202-225-5614","fax":"202-225-1168","office":"502 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Republican","district":19,"url":"http://gibson.house.gov","address":"1708 Longworth HOB; Washington DC 20515-3219","phone":"202-225-5614","fax":"202-225-1168","office":"1708 Longworth House Office Building","rss_url":"http://gibson.house.gov/news/rss.aspx","contact_form":"http://gibson.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Republican","district":19,"url":"http://gibson.house.gov","address":"1708 Longworth HOB; Washington DC 20515-3219","phone":"202-225-5614","fax":"202-225-1168","office":"1708 Longworth House Office Building","rss_url":"http://gibson.house.gov/news/rss.aspx","contact_form":"http://gibson.house.gov/contact/"}]},{"id":{"bioguide":"G000552","thomas":"01801","govtrack":400651,"opensecrets":"N00026148","votesmart":50029,"fec":["H4TX04039"],"cspan":1011394,"wikipedia":"Louie Gohmert","house_history":14263,"ballotpedia":"Louie Gohmert","maplight":4653,"washington_post":"gIQA0GxpAP","icpsr":20527},"name":{"first":"Louie","middle":"B.","last":"Gohmert","suffix":"Jr.","official_full":"Louie Gohmert"},"bio":{"birthday":"1953-08-18","gender":"M","religion":"Unknown"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":1,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":1,"party":"Republican","url":"http://gohmert.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":1,"party":"Republican","url":"http://gohmert.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":1,"party":"Republican","url":"http://gohmert.house.gov","address":"2440 Rayburn HOB; Washington DC 20515-4301","phone":"202-225-3035","fax":"202-226-1230","contact_form":"http://gohmert.house.gov/contact_louie.htm","office":"2440 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":1,"url":"http://gohmert.house.gov","address":"2243 Rayburn HOB; Washington DC 20515-4301","phone":"202-225-3035","fax":"202-226-1230","contact_form":"http://gohmert.house.gov/contact/","office":"2243 Rayburn House Office Building","rss_url":"http://gohmert.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":1,"url":"http://gohmert.house.gov","address":"2243 Rayburn HOB; Washington DC 20515-4301","phone":"202-225-3035","fax":"202-226-1230","contact_form":"http://gohmert.house.gov/contact/","office":"2243 Rayburn House Office Building","rss_url":"http://gohmert.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"G000289","thomas":"00446","govtrack":400154,"opensecrets":"N00009154","votesmart":27116,"fec":["H2VA06115"],"cspan":27025,"wikipedia":"Bob Goodlatte","house_history":13929,"ballotpedia":"Bob Goodlatte","maplight":4259,"washington_post":"gIQACAHpAP","icpsr":39308},"name":{"first":"Bob","middle":"W.","last":"Goodlatte","official_full":"Bob Goodlatte"},"bio":{"birthday":"1952-09-22","gender":"M","religion":"Christian Scientist"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"VA","district":6,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"VA","district":6,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"VA","district":6,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"VA","district":6,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"VA","district":6,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"VA","district":6,"party":"Republican","url":"http://www.house.gov/goodlatte"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"VA","district":6,"party":"Republican","url":"http://www.house.gov/goodlatte"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"VA","district":6,"party":"Republican","url":"http://www.house.gov/goodlatte"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"VA","district":6,"party":"Republican","url":"http://www.house.gov/goodlatte"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VA","district":6,"party":"Republican","url":"http://www.house.gov/goodlatte","address":"2240 Rayburn HOB; Washington DC 20515-4606","phone":"202-225-5431","fax":"202-225-9681","contact_form":"http://www.house.gov/goodlatte/emailbob.htm","office":"2240 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VA","party":"Republican","district":6,"url":"http://goodlatte.house.gov","address":"2309 Rayburn HOB; Washington DC 20515-4606","phone":"202-225-5431","fax":"202-225-9681","contact_form":"http://goodlatte.house.gov/contacts/new","office":"2309 Rayburn House Office Building","rss_url":"http://goodlatte.house.gov/press_releases.rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","party":"Republican","district":6,"url":"http://goodlatte.house.gov","address":"2309 Rayburn HOB; Washington DC 20515-4606","phone":"202-225-5431","fax":"202-225-9681","contact_form":"http://goodlatte.house.gov/contacts/new","office":"2309 Rayburn House Office Building","rss_url":"http://goodlatte.house.gov/press_releases.rss"}]},{"id":{"bioguide":"G000565","thomas":"01992","govtrack":412397,"opensecrets":"N00030771","votesmart":123491,"fec":["H0AZ01259"],"cspan":62470,"wikipedia":"Paul Gosar","house_history":14283,"ballotpedia":"Paul Gosar","maplight":5423,"washington_post":"gIQAzppVKP","icpsr":21103},"name":{"first":"Paul","last":"Gosar","official_full":"Paul A. Gosar","middle":"A."},"bio":{"birthday":"1958-11-22","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AZ","district":1,"party":"Republican","url":"http://gosar.house.gov/","address":"504 Cannon HOB; Washington DC 20515-0301","phone":"202-225-2315","fax":"200-226-9739","office":"504 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AZ","party":"Republican","district":4,"url":"http://gosar.house.gov","address":"504 Cannon HOB; Washington DC 20515-0304","phone":"202-225-2315","fax":"202-226-9739","office":"504 Cannon House Office Building","rss_url":"http://gosar.house.gov/rss.xml","contact_form":"https://gosar.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","party":"Republican","district":4,"url":"http://gosar.house.gov","address":"504 Cannon HOB; Washington DC 20515-0304","phone":"202-225-2315","fax":"202-226-9739","office":"504 Cannon House Office Building","rss_url":"http://gosar.house.gov/rss.xml","contact_form":"https://gosar.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"G000566","thomas":"02058","govtrack":412473,"opensecrets":"N00030880","votesmart":121782,"fec":["H0SC04257"],"cspan":9268950,"wikipedia":"Trey Gowdy","house_history":14284,"ballotpedia":"Trey Gowdy","maplight":6055,"washington_post":"gIQAAozZKP","icpsr":21175},"name":{"first":"Trey","last":"Gowdy","official_full":"Trey Gowdy"},"bio":{"birthday":"1964-08-22","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"SC","district":4,"party":"Republican","url":"http://gowdy.house.gov/","address":"1237 Longworth HOB; Washington DC 20515-4004","phone":"202-225-6030","fax":"202-226-1177","office":"1237 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"SC","party":"Republican","district":4,"url":"http://gowdy.house.gov","address":"1404 Longworth HOB; Washington DC 20515-4004","phone":"202-225-6030","fax":"202-226-1177","office":"1404 Longworth House Office Building","rss_url":"http://gowdy.house.gov/news/rss.aspx","contact_form":"https://gowdy.house.gov/forms/writeyourrep/default.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"SC","party":"Republican","district":4,"url":"http://gowdy.house.gov","address":"1404 Longworth HOB; Washington DC 20515-4004","phone":"202-225-6030","fax":"202-226-1177","office":"1404 Longworth House Office Building","rss_url":"http://gowdy.house.gov/news/rss.aspx","contact_form":"https://gowdy.house.gov/forms/writeyourrep/default.aspx"}]},{"id":{"bioguide":"G000377","thomas":"01487","govtrack":400157,"opensecrets":"N00008799","votesmart":334,"fec":["H6TX12060"],"cspan":45709,"wikipedia":"Kay Granger","house_history":14039,"maplight":4261,"washington_post":"gIQAJGdW9O","icpsr":29762},"name":{"first":"Kay","last":"Granger","official_full":"Kay Granger"},"bio":{"birthday":"1943-01-18","gender":"F","religion":"Methodist"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":12,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":12,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":12,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":12,"party":"Republican","url":"http://kaygranger.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":12,"party":"Republican","url":"http://kaygranger.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":12,"party":"Republican","url":"http://kaygranger.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":12,"party":"Republican","url":"http://kaygranger.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":12,"party":"Republican","url":"http://kaygranger.house.gov","address":"320 Cannon HOB; Washington DC 20515-4312","phone":"202-225-5071","fax":"202-225-5683","contact_form":"http://kaygranger.house.gov/?sectionid=46&sectiontree=46","office":"320 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":12,"url":"http://kaygranger.house.gov","address":"1026 Longworth HOB; Washington DC 20515-4312","phone":"202-225-5071","fax":"202-225-5683","contact_form":"http://kaygranger.house.gov/contact-kay/email-me","office":"1026 Longworth House Office Building","rss_url":"http://kaygranger.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":12,"url":"http://kaygranger.house.gov","address":"1026 Longworth HOB; Washington DC 20515-4312","phone":"202-225-5071","fax":"202-225-5683","contact_form":"http://kaygranger.house.gov/contact-kay/email-me","office":"1026 Longworth House Office Building","rss_url":"http://kaygranger.house.gov/rss.xml"}]},{"id":{"bioguide":"G000386","thomas":"00457","lis":"S153","govtrack":300048,"opensecrets":"N00001758","votesmart":53293,"icpsr":14226,"fec":["S0IA00028"],"cspan":1167,"wikipedia":"Chuck Grassley","house_history":14050,"ballotpedia":"Chuck Grassley","maplight":4567,"washington_post":"gIQAxsWx9O"},"name":{"first":"Charles","middle":"E.","last":"Grassley","nickname":"Chuck","official_full":"Chuck Grassley"},"bio":{"birthday":"1933-09-17","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1975-01-14","end":"1976-10-01","state":"IA","district":3,"party":"Republican"},{"type":"rep","start":"1977-01-04","end":"1978-10-15","state":"IA","district":3,"party":"Republican"},{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"IA","district":3,"party":"Republican"},{"type":"sen","start":"1981-01-05","end":"1986-10-18","state":"IA","class":3,"party":"Republican"},{"type":"sen","start":"1987-01-06","end":"1992-10-09","state":"IA","class":3,"party":"Republican"},{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"IA","class":3,"party":"Republican"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"IA","class":3,"party":"Republican","url":"http://grassley.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"IA","class":3,"party":"Republican","url":"http://grassley.senate.gov"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"IA","class":3,"party":"Republican","url":"http://www.grassley.senate.gov","address":"135 Hart Senate Office Building Washington DC 20510","phone":"202-224-3744","fax":"202-224-6020","contact_form":"http://www.grassley.senate.gov/constituents/questions-and-comments","office":"135 Hart Senate Office Building","state_rank":"senior","rss_url":"http://grassley.senate.gov/customcf/rss_feed.cfm"}]},{"id":{"bioguide":"G000546","thomas":"01656","govtrack":400158,"opensecrets":"N00013323","votesmart":9425,"fec":["H0MO06073"],"cspan":89873,"wikipedia":"Sam Graves","house_history":14251,"maplight":4262,"washington_post":"gIQAEvXIAP","icpsr":20124},"name":{"first":"Sam","middle":"B.","last":"Graves","official_full":"Sam Graves"},"bio":{"birthday":"1963-11-07","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MO","district":6,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MO","district":6,"party":"Republican","url":"http://www.house.gov/graves"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MO","district":6,"party":"Republican","url":"http://www.house.gov/graves"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MO","district":6,"party":"Republican","url":"http://www.house.gov/graves"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MO","district":6,"party":"Republican","url":"http://www.house.gov/graves"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MO","district":6,"party":"Republican","url":"http://www.house.gov/graves","address":"1415 Longworth HOB; Washington DC 20515-2506","phone":"202-225-7041","fax":"202-225-8221","contact_form":"http://www.house.gov/graves/contact.shtml","office":"1415 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MO","party":"Republican","district":6,"url":"http://graves.house.gov","address":"1415 Longworth HOB; Washington DC 20515-2506","phone":"202-225-7041","fax":"202-225-8221","contact_form":"https://gravesforms.house.gov/email-sam","office":"1415 Longworth House Office Building","rss_url":"http://graves.house.gov/common/rss/index.cfm?rss=25"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MO","party":"Republican","district":6,"url":"http://graves.house.gov","address":"1415 Longworth HOB; Washington DC 20515-2506","phone":"202-225-7041","fax":"202-225-8221","contact_form":"https://gravesforms.house.gov/email-sam","office":"1415 Longworth House Office Building","rss_url":"http://graves.house.gov/common/rss/index.cfm?rss=25"}]},{"id":{"bioguide":"G000560","thomas":"01979","govtrack":412388,"opensecrets":"N00030788","votesmart":31969,"fec":["H0GA09030"],"cspan":11519,"wikipedia":"Tom Graves","house_history":14278,"ballotpedia":"Tom Graves","maplight":5628,"washington_post":"gIQA82YuKP","icpsr":20962},"name":{"first":"Tom","last":"Graves","official_full":"Tom Graves"},"bio":{"birthday":"1970-02-03","gender":"M"},"terms":[{"type":"rep","start":"2010-06-08","end":"2010-12-22","state":"GA","district":9,"party":"Republican","url":"http://tomgraves.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":9,"party":"Republican","url":"http://tomgraves.house.gov/","address":"1113 Longworth HOB; Washington DC 20515-1010","phone":"202-225-5211","fax":"202-225-8272","contact_form":"http://tomgraves.house.gov/contact/","office":"1113 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Republican","district":14,"url":"http://tomgraves.house.gov","address":"432 Cannon HOB; Washington DC 20515-1014","phone":"202-225-5211","fax":"202-225-8272","contact_form":"http://tomgraves.house.gov/contact/","office":"432 Cannon House Office Building","rss_url":"http://tomgraves.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Republican","district":14,"url":"http://tomgraves.house.gov","address":"2442 Rayburn HOB; Washington DC 20515-1014","phone":"202-225-5211","fax":"202-225-8272","contact_form":"http://tomgraves.house.gov/contact/","office":"2442 Rayburn House Office Building","rss_url":"http://tomgraves.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"G000553","thomas":"01803","govtrack":400653,"opensecrets":"N00026686","votesmart":49680,"fec":["H4TX09095"],"cspan":1012969,"wikipedia":"Al Green (politician)","house_history":14265,"ballotpedia":"Al Green","maplight":4655,"washington_post":"gIQA7bXzDP","icpsr":20529},"name":{"first":"Al","last":"Green","official_full":"Al Green"},"bio":{"birthday":"1947-09-01","gender":"M","religion":"Unknown"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":9,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":9,"party":"Democrat","url":"http://www.house.gov/algreen"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":9,"party":"Democrat","url":"http://www.house.gov/algreen"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":9,"party":"Democrat","url":"http://www.house.gov/algreen","address":"2201 Rayburn HOB; Washington DC 20515-4309","phone":"202-225-7508","fax":"202-225-2947","contact_form":"http://www.house.gov/writerep","office":"2201 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":9,"url":"http://algreen.house.gov","address":"2201 Rayburn HOB; Washington DC 20515-4309","phone":"202-225-7508","fax":"202-225-2947","contact_form":"https://algreen.house.gov/contact-me/email-me","office":"2201 Rayburn House Office Building","rss_url":"http://algreen.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":9,"url":"http://algreen.house.gov","address":"2347 Rayburn HOB; Washington DC 20515-4309","phone":"202-225-7508","fax":"202-225-2947","contact_form":"https://algreen.house.gov/contact-me/email-me","office":"2347 Rayburn House Office Building","rss_url":"http://algreen.house.gov/rss.xml"}]},{"id":{"bioguide":"G000410","thomas":"00462","govtrack":400160,"opensecrets":"N00005870","votesmart":27100,"fec":["H2TX29030"],"cspan":26156,"wikipedia":"Gene Green","house_history":14085,"maplight":4263,"washington_post":"gIQAYwnpAP","icpsr":39304},"name":{"first":"Gene","middle":"Eugene","last":"Green","official_full":"Gene Green"},"bio":{"birthday":"1947-10-17","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"TX","district":29,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TX","district":29,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":29,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":29,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":29,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":29,"party":"Democrat","url":"http://www.house.gov/green"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":29,"party":"Democrat","url":"http://www.house.gov/green"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":29,"party":"Democrat","url":"http://www.house.gov/green"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":29,"party":"Democrat","url":"http://www.house.gov/green"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":29,"party":"Democrat","url":"http://www.house.gov/green","address":"2470 Rayburn HOB; Washington DC 20515-4329","phone":"202-225-1688","fax":"202-225-9903","contact_form":"http://www.house.gov/green/contact","office":"2470 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":29,"url":"http://green.house.gov","address":"2470 Rayburn HOB; Washington DC 20515-4329","phone":"202-225-1688","fax":"202-225-9903","contact_form":"https://green.house.gov/contact-me/email-me","office":"2470 Rayburn House Office Building","rss_url":"http://green.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":29,"url":"http://green.house.gov","address":"2470 Rayburn HOB; Washington DC 20515-4329","phone":"202-225-1688","fax":"202-225-9903","contact_form":"https://green.house.gov/contact-me/email-me","office":"2470 Rayburn House Office Building","rss_url":"http://green.house.gov/rss.xml"}]},{"id":{"bioguide":"G000568","thomas":"02070","govtrack":412485,"opensecrets":"N00032029","votesmart":5148,"fec":["H0VA09055"],"cspan":62766,"wikipedia":"Morgan Griffith","house_history":14288,"ballotpedia":"Morgan Griffith","maplight":6143,"washington_post":"gIQA8LqZKP","icpsr":21191},"name":{"first":"H.","middle":"Morgan","last":"Griffith","official_full":"H. Morgan Griffith"},"bio":{"birthday":"1958-03-15","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VA","district":9,"party":"Republican","url":"http://morgangriffith.house.gov/","address":"1108 Longworth HOB; Washington DC 20515-4609","phone":"202-225-3861","fax":"202- 225-0076","office":"1108 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VA","party":"Republican","district":9,"url":"http://morgangriffith.house.gov","address":"1108 Longworth HOB; Washington DC 20515-4609","phone":"202-225-3861","fax":"202- 225-0076","office":"1108 Longworth House Office Building","rss_url":"http://morgangriffith.house.gov/news/rss.aspx","contact_form":"https://morgangriffith.house.gov/contact/contactform.htm"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","party":"Republican","district":9,"url":"http://morgangriffith.house.gov","address":"1108 Longworth HOB; Washington DC 20515-4609","phone":"202-225-3861","fax":"202- 225-0076","office":"1108 Longworth House Office Building","rss_url":"http://morgangriffith.house.gov/news/rss.aspx","contact_form":"https://morgangriffith.house.gov/contact/contactform.htm"}]},{"id":{"bioguide":"G000551","thomas":"01708","govtrack":400162,"opensecrets":"N00025284","votesmart":28253,"fec":["H2AZ07070"],"cspan":1003551,"wikipedia":"Raúl Grijalva","house_history":14261,"ballotpedia":"Raul M. Grijalva","maplight":4265,"washington_post":"gIQATZnOAP","icpsr":20305},"name":{"first":"Raúl","middle":"M.","last":"Grijalva","official_full":"Raúl M. Grijalva"},"bio":{"birthday":"1948-02-19","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"AZ","district":7,"party":"Democrat","url":"http://www.house.gov/grijalva"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"AZ","district":7,"party":"Democrat","url":"http://www.house.gov/grijalva"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"AZ","district":7,"party":"Democrat","url":"http://www.house.gov/grijalva"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"AZ","district":7,"party":"Democrat","url":"http://www.house.gov/grijalva"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AZ","district":7,"party":"Democrat","url":"http://www.house.gov/grijalva","address":"1511 Longworth HOB; Washington DC 20515-0307","phone":"202-225-2435","fax":"202-225-1541","contact_form":"http://grijalva.house.gov/?sectionid=49&sectiontree=2,49","office":"1511 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AZ","party":"Democrat","district":3,"url":"http://grijalva.house.gov","address":"1511 Longworth HOB; Washington DC 20515-0303","phone":"202-225-2435","fax":"202-225-1541","contact_form":"https://grijalvaforms.house.gov/email-raul","office":"1511 Longworth House Office Building","rss_url":"http://grijalva.house.gov/common/rss/?rss=13"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","party":"Democrat","district":3,"url":"http://grijalva.house.gov","address":"1511 Longworth HOB; Washington DC 20515-0303","phone":"202-225-2435","fax":"202-225-1541","contact_form":"https://grijalvaforms.house.gov/email-raul","office":"1511 Longworth House Office Building","rss_url":"http://grijalva.house.gov/common/rss/?rss=13"}]},{"id":{"bioguide":"G000558","thomas":"01922","govtrack":412278,"opensecrets":"N00029675","votesmart":18829,"fec":["H8KY02031"],"cspan":1031343,"wikipedia":"Brett Guthrie","house_history":14275,"ballotpedia":"Brett Guthrie","maplight":7024,"washington_post":"gIQAh9rq6O","icpsr":20916},"name":{"first":"Brett","last":"Guthrie","official_full":"Brett Guthrie"},"bio":{"gender":"M","birthday":"1964-02-18"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"KY","district":2,"party":"Republican","url":"http://guthrie.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"KY","district":2,"party":"Republican","url":"http://guthrie.house.gov","address":"308 Cannon HOB; Washington DC 20515-1702","phone":"202-225-3501","fax":"202-226-2019","contact_form":"https://forms.house.gov/guthrie/contact-form.shtml","office":"308 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KY","party":"Republican","district":2,"url":"http://guthrie.house.gov","address":"308 Cannon HOB; Washington DC 20515-1702","phone":"202-225-3501","fax":"202-226-2019","contact_form":"http://brettguthrieforms.house.gov/contact/","office":"308 Cannon House Office Building","rss_url":"http://guthrie.house.gov/common/rss/?rss=24"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KY","party":"Republican","district":2,"url":"http://guthrie.house.gov","address":"2434 Rayburn HOB; Washington DC 20515-1702","phone":"202-225-3501","fax":"202-226-2019","contact_form":"http://brettguthrieforms.house.gov/contact/","office":"2434 Rayburn House Office Building","rss_url":"http://guthrie.house.gov/common/rss/?rss=24"}]},{"id":{"bioguide":"G000535","thomas":"00478","govtrack":400163,"opensecrets":"N00004874","votesmart":26841,"fec":["H2IL08039"],"cspan":23476,"wikipedia":"Luis Gutiérrez","house_history":14235,"ballotpedia":"Luis V. Gutierrez","maplight":4266,"washington_post":"gIQADVuzDP","icpsr":29348},"name":{"first":"Luis","middle":"V.","last":"Gutiérrez","official_full":"Luis V. Gutiérrez"},"bio":{"birthday":"1953-12-10","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"IL","district":4,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"IL","district":4,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"IL","district":4,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"IL","district":4,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"IL","district":4,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"IL","district":4,"party":"Democrat","url":"http://www.house.gov/gutierrez"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IL","district":4,"party":"Democrat","url":"http://www.house.gov/gutierrez"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IL","district":4,"party":"Democrat","url":"http://www.house.gov/gutierrez"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":4,"party":"Democrat","url":"http://www.house.gov/gutierrez"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":4,"party":"Democrat","url":"http://www.house.gov/gutierrez","address":"2266 Rayburn HOB; Washington DC 20515-1304","phone":"202-225-8203","fax":"202-225-7810","contact_form":"http://www.house.gov/writerep","office":"2266 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":4,"url":"http://gutierrez.house.gov","address":"2408 Rayburn HOB; Washington DC 20515-1304","phone":"202-225-8203","fax":"202-225-7810","contact_form":"http://gutierrezforms.house.gov/contact/","office":"2408 Rayburn House Office Building","rss_url":"http://gutierrez.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":4,"url":"http://gutierrez.house.gov","address":"2408 Rayburn HOB; Washington DC 20515-1304","phone":"202-225-8203","fax":"202-225-7810","contact_form":"http://gutierrezforms.house.gov/contact/","office":"2408 Rayburn House Office Building","rss_url":"http://gutierrez.house.gov/rss.xml"}]},{"id":{"bioguide":"H001051","thomas":"02044","govtrack":412454,"opensecrets":"N00030197","votesmart":110344,"fec":["H8NY24066"],"cspan":61702,"wikipedia":"Richard L. Hanna","house_history":15598,"maplight":7123,"washington_post":"gIQAQdiXKP","icpsr":21157},"name":{"first":"Richard","last":"Hanna","official_full":"Richard L. Hanna","middle":"L."},"bio":{"birthday":"1951-01-25","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":24,"party":"Republican","url":"http://hanna.house.gov/","address":"319 Cannon HOB; Washington DC 20515-3224","phone":"202-225-3665","fax":"202-225-1891","office":"319 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Republican","district":22,"url":"http://hanna.house.gov","address":"319 Cannon HOB; Washington DC 20515-3222","phone":"202-225-3665","fax":"202-225-1891","office":"319 Cannon House Office Building","contact_form":"https://hanna.house.gov/email-me","rss_url":"http://hanna.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Republican","district":22,"url":"http://hanna.house.gov","address":"319 Cannon HOB; Washington DC 20515-3222","phone":"202-225-3665","fax":"202-225-1891","office":"319 Cannon House Office Building","contact_form":"https://hanna.house.gov/email-me","rss_url":"http://hanna.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"H001045","thomas":"01933","govtrack":412280,"opensecrets":"N00029632","votesmart":101985,"fec":["H8MS03067"],"cspan":1031347,"wikipedia":"Gregg Harper","house_history":15586,"maplight":7082,"washington_post":"gIQAg8GpAP","icpsr":20925},"name":{"first":"Gregg","last":"Harper","official_full":"Gregg Harper"},"bio":{"birthday":"1956-06-01","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MS","district":3,"party":"Republican","url":"http://harper.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MS","district":3,"party":"Republican","url":"http://harper.house.gov","address":"307 Cannon HOB; Washington DC 20515-2403","phone":"202-225-5031","fax":"202-225-5797","contact_form":"http://harper.house.gov/contact/","office":"307 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MS","party":"Republican","district":3,"url":"http://harper.house.gov","address":"307 Cannon HOB; Washington DC 20515-2403","phone":"202-225-5031","fax":"202-225-5797","contact_form":"https://harperforms.house.gov/forms/writeyourrep/","office":"307 Cannon House Office Building","rss_url":"http://harper.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MS","party":"Republican","district":3,"url":"http://harper.house.gov","address":"307 Cannon HOB; Washington DC 20515-2403","phone":"202-225-5031","fax":"202-225-5797","contact_form":"https://harperforms.house.gov/forms/writeyourrep/","office":"307 Cannon House Office Building","rss_url":"http://harper.house.gov/rss.xml"}]},{"id":{"bioguide":"H001052","thomas":"02026","govtrack":412434,"opensecrets":"N00029147","votesmart":19157,"fec":["H8MD01094"],"cspan":1033464,"wikipedia":"Andrew P. Harris","house_history":15599,"maplight":7051,"washington_post":"gIQAN7ZTAP","icpsr":21139},"name":{"first":"Andy","last":"Harris","official_full":"Andy Harris"},"bio":{"birthday":"1957-01-25","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MD","district":1,"party":"Republican","url":"http://harris.house.gov/","address":"506 Cannon HOB; Washington DC 20515-2001","phone":"202-225-5311","fax":"202-225-0254","office":"506 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MD","party":"Republican","district":1,"url":"http://harris.house.gov","address":"1533 Longworth HOB; Washington DC 20515-2001","phone":"202-225-5311","fax":"202-225-0254","office":"1533 Longworth House Office Building","rss_url":"http://harris.house.gov/rss.xml","contact_form":"https://harris.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MD","party":"Republican","district":1,"url":"http://harris.house.gov","address":"1533 Longworth HOB; Washington DC 20515-2001","phone":"202-225-5311","fax":"202-225-0254","office":"1533 Longworth House Office Building","rss_url":"http://harris.house.gov/rss.xml","contact_form":"https://harris.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"H001053","thomas":"02032","govtrack":412444,"opensecrets":"N00031005","votesmart":8783,"fec":["H0MO04086"],"cspan":95050,"wikipedia":"Vicky Hartzler","house_history":15601,"ballotpedia":"Vicky Hartzler","maplight":5833,"washington_post":"gIQApt5WKP","icpsr":21149},"name":{"first":"Vicky","last":"Hartzler","official_full":"Vicky Hartzler"},"bio":{"birthday":"1960-10-13","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MO","district":4,"party":"Republican","url":"http://hartzler.house.gov/","address":"1023 Longworth HOB; Washington DC 20515-2504","phone":"202-225-2876","fax":"202- 225-2695","office":"1023 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MO","party":"Republican","district":4,"url":"http://hartzler.house.gov","address":"1023 Longworth HOB; Washington DC 20515-2504","phone":"202-225-2876","fax":"202-225-0148","office":"1023 Longworth House Office Building","rss_url":"http://hartzler.house.gov/rss.xml","contact_form":"https://hartzler.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MO","party":"Republican","district":4,"url":"http://hartzler.house.gov","address":"2235 Rayburn HOB; Washington DC 20515-2504","phone":"202-225-2876","fax":"202-225-0148","office":"2235 Rayburn House Office Building","rss_url":"http://hartzler.house.gov/rss.xml","contact_form":"https://hartzler.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"H000324","thomas":"00511","govtrack":400170,"opensecrets":"N00002884","votesmart":26798,"fec":["H2FL23021"],"cspan":1858,"wikipedia":"Alcee Hastings","house_history":14683,"ballotpedia":"Alcee L. Hastings","maplight":4273,"washington_post":"gIQAz5GpAP","icpsr":29337},"name":{"first":"Alcee","middle":"L.","last":"Hastings","official_full":"Alcee L. Hastings"},"bio":{"birthday":"1936-09-05","gender":"M","religion":"African Methodist Episcopal"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"FL","district":23,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"FL","district":23,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"FL","district":23,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"FL","district":23,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"FL","district":23,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"FL","district":23,"party":"Democrat","url":"http://www.house.gov/alceehastings"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"FL","district":23,"party":"Democrat","url":"http://www.house.gov/alceehastings"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":23,"party":"Democrat","url":"http://alceehastings.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":23,"party":"Democrat","url":"http://alceehastings.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":23,"party":"Democrat","url":"http://alceehastings.house.gov","address":"2353 Rayburn HOB; Washington DC 20515-0923","phone":"202-225-1313","fax":"202-225-1171","contact_form":"http://www.alceehastings.house.gov/index.php?option=com_content&task=view&id=104&Itemid=","office":"2353 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":20,"url":"http://alceehastings.house.gov","address":"2353 Rayburn HOB; Washington DC 20515-0920","phone":"202-225-1313","fax":"202-225-1171","contact_form":"https://alceehastings.house.gov/forms/writeyourrep/?zip5=33407&zip4=3224","office":"2353 Rayburn House Office Building","rss_url":"http://www.alceehastings.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":20,"url":"http://alceehastings.house.gov","address":"2353 Rayburn HOB; Washington DC 20515-0920","phone":"202-225-1313","fax":"202-225-1171","contact_form":"https://alceehastings.house.gov/forms/writeyourrep/?zip5=33407&zip4=3224","office":"2353 Rayburn House Office Building","rss_url":"http://www.alceehastings.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"H001055","thomas":"02040","govtrack":412446,"opensecrets":"N00031244","votesmart":44082,"fec":["H0NV03058"],"cspan":62662,"wikipedia":"Joe Heck","house_history":15604,"ballotpedia":"Joe Heck","maplight":5916,"washington_post":"gIQAviVUKP","icpsr":21151},"name":{"first":"Joseph","last":"Heck","official_full":"Joseph J. Heck","middle":"J."},"bio":{"birthday":"1961-10-30","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NV","district":3,"party":"Republican","url":"http://heck.house.gov/","address":"132 Cannon HOB; Washington DC 20515-2803","phone":"202-225-3252","fax":"202- 225-2185","office":"132 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NV","party":"Republican","district":3,"url":"http://heck.house.gov","address":"132 Cannon HOB; Washington DC 20515-2803","phone":"202-225-3252","fax":"202- 225-2185","office":"132 Cannon House Office Building","rss_url":"http://heck.house.gov/rss.xml","contact_form":"https://heck.house.gov/contact-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NV","party":"Republican","district":3,"url":"http://heck.house.gov","address":"132 Cannon HOB; Washington DC 20515-2803","phone":"202-225-3252","fax":"202- 225-2185","office":"132 Cannon House Office Building","rss_url":"http://heck.house.gov/rss.xml","contact_form":"https://heck.house.gov/contact-me"}]},{"id":{"bioguide":"H001046","thomas":"01937","lis":"S359","govtrack":412281,"opensecrets":"N00029835","votesmart":74517,"fec":["H8NM01224","S2NM00088"],"cspan":1030686,"wikipedia":"Martin Heinrich","house_history":15588,"ballotpedia":"Martin Heinrich","maplight":7482,"washington_post":"gIQAkCzTAP","icpsr":20930},"name":{"first":"Martin","last":"Heinrich","official_full":"Martin Heinrich"},"bio":{"gender":"M","birthday":"1971-10-17"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NM","district":1,"party":"Democrat","url":"http://heinrich.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NM","district":1,"party":"Democrat","url":"http://heinrich.house.gov","address":"336 Cannon HOB; Washington DC 20515-3101","phone":"202-225-6316","fax":"202-225-4975","contact_form":"https://forms.house.gov/heinrich/contact-form.shtml","office":"336 Cannon House Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"NM","party":"Democrat","class":1,"url":"http://www.heinrich.senate.gov","address":"702 Hart Senate Office Building Washington DC 20510","phone":"202-224-5521","fax":"202-225-4975","contact_form":"http://www.heinrich.senate.gov/contact/write-martin","office":"702 Hart Senate Office Building","state_rank":"junior"}]},{"id":{"bioguide":"H001036","thomas":"01749","govtrack":400175,"opensecrets":"N00024922","votesmart":49827,"fec":["H2TX05121"],"cspan":1003619,"wikipedia":"Jeb Hensarling","house_history":15568,"ballotpedia":"Jeb Hensarling","maplight":4278,"washington_post":"gIQANKaU9O","icpsr":20352},"name":{"first":"Jeb","last":"Hensarling","official_full":"Jeb Hensarling"},"bio":{"birthday":"1957-05-29","gender":"M","religion":"Christian"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":5,"party":"Republican","url":"http://www.house.gov/hensarling"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":5,"party":"Republican","url":"http://www.house.gov/hensarling"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":5,"party":"Republican","url":"http://www.house.gov/hensarling"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":5,"party":"Republican","url":"http://www.house.gov/hensarling"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":5,"party":"Republican","url":"http://www.house.gov/hensarling","address":"129 Cannon HOB; Washington DC 20515-4305","phone":"202-225-3484","fax":"202-226-4888","contact_form":"http://www.house.gov/hensarling/contact_web.shtml","office":"129 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":5,"url":"http://hensarling.house.gov","address":"2228 Rayburn HOB; Washington DC 20515-4305","phone":"202-225-3484","fax":"202-226-4888","contact_form":"https://hensarling.house.gov/contact/email-me","office":"2228 Rayburn House Office Building","rss_url":"http://hensarling.house.gov/atom.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":5,"url":"http://hensarling.house.gov","address":"2228 Rayburn HOB; Washington DC 20515-4305","phone":"202-225-3484","fax":"202-226-4888","contact_form":"https://hensarling.house.gov/contact/email-me","office":"2228 Rayburn House Office Building","rss_url":"http://hensarling.house.gov/atom.xml"}]},{"id":{"bioguide":"H001056","thomas":"02071","govtrack":412486,"opensecrets":"N00031559","votesmart":101907,"fec":["H0WA03187"],"cspan":95198,"wikipedia":"Jaime Herrera Beutler","house_history":15606,"maplight":6160,"washington_post":"gIQAHQfVKP","icpsr":21187},"name":{"first":"Jaime","last":"Herrera Beutler","official_full":"Jaime Herrera Beutler"},"bio":{"birthday":"1978-11-03","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WA","district":3,"party":"Republican","url":"http://herrerabeutler.house.gov/","address":"1130 Longworth HOB; Washington DC 20515-4703","phone":"202-225-3536","fax":"202-225-3478","office":"1130 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Republican","district":3,"url":"http://herrerabeutler.house.gov","address":"1130 Longworth HOB; Washington DC 20515-4703","phone":"202-225-3536","fax":"202-225-3478","office":"1130 Longworth House Office Building","rss_url":"http://herrerabeutler.house.gov/news/rss.aspx","contact_form":"http://herrerabeutler.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Republican","district":3,"url":"http://herrerabeutler.house.gov","address":"1130 Longworth HOB; Washington DC 20515-4703","phone":"202-225-3536","fax":"202-225-3478","office":"1130 Longworth House Office Building","rss_url":"http://herrerabeutler.house.gov/news/rss.aspx","contact_form":"http://herrerabeutler.house.gov/contact/"}]},{"id":{"bioguide":"H001038","thomas":"01794","govtrack":400641,"opensecrets":"N00027060","votesmart":23127,"fec":["H4NY27076"],"cspan":1013050,"house_history":15572,"wikipedia":"Brian Higgins","ballotpedia":"Brian Higgins","maplight":4644,"washington_post":"gIQAnP7UAP","icpsr":20519},"name":{"first":"Brian","middle":"M.","last":"Higgins","official_full":"Brian Higgins"},"bio":{"birthday":"1959-10-06","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":27,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":27,"party":"Democrat","url":"http://www.house.gov/higgins"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":27,"party":"Democrat","url":"http://www.house.gov/higgins"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":27,"party":"Democrat","url":"http://www.house.gov/higgins","address":"2459 Rayburn HOB; Washington DC 20515-3227","phone":"202-225-3306","fax":"202-226-0347","contact_form":"http://higgins.house.gov/email.asp","office":"2459 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":26,"url":"http://higgins.house.gov","address":"2459 Rayburn HOB; Washington DC 20515-3226","phone":"202-225-3306","fax":"202-226-0347","contact_form":"http://higgins.house.gov/contact/email-brian","office":"2459 Rayburn House Office Building","rss_url":"http://higgins.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":26,"url":"http://higgins.house.gov","address":"2459 Rayburn HOB; Washington DC 20515-3226","phone":"202-225-3306","fax":"202-226-0347","contact_form":"http://higgins.house.gov/contact/email-brian","office":"2459 Rayburn House Office Building","rss_url":"http://higgins.house.gov/rss.xml"}]},{"id":{"bioguide":"H001047","thomas":"01913","govtrack":412282,"opensecrets":"N00029070","votesmart":106744,"fec":["H8CT04172"],"cspan":1031341,"wikipedia":"Jim Himes","house_history":15590,"ballotpedia":"Jim Himes","maplight":6966,"washington_post":"gIQAtLEM9O","icpsr":20907},"name":{"first":"James","middle":"A.","last":"Himes","official_full":"James A. Himes"},"bio":{"birthday":"1966-07-05","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CT","district":4,"party":"Democrat","url":"http://himes.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CT","district":4,"party":"Democrat","url":"http://himes.house.gov","address":"119 Cannon HOB; Washington DC 20515-0704","phone":"202-225-5541","fax":"202-225-9629","contact_form":"https://forms.house.gov/himes/contact-form.shtml","office":"119 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CT","party":"Democrat","district":4,"url":"http://himes.house.gov","address":"119 Cannon HOB; Washington DC 20515-0704","phone":"202-225-5541","fax":"202-225-9629","contact_form":"https://himes.house.gov/contact-me/email-me","office":"119 Cannon House Office Building","rss_url":"http://himes.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CT","party":"Democrat","district":4,"url":"http://himes.house.gov","address":"1227 Longworth HOB; Washington DC 20515-0704","phone":"202-225-5541","fax":"202-225-9629","contact_form":"https://himes.house.gov/contact-me/email-me","office":"1227 Longworth House Office Building","rss_url":"http://himes.house.gov/rss.xml"}]},{"id":{"bioguide":"H000636","thomas":"01490","govtrack":400179,"opensecrets":"N00006008","votesmart":291,"fec":["H6TX15055"],"cspan":45743,"wikipedia":"Rubén Hinojosa","house_history":15071,"ballotpedia":"Ruben Hinojosa","maplight":4282,"washington_post":"gIQAvN7UAP","icpsr":29763},"name":{"first":"Rubén","middle":"E.","last":"Hinojosa","official_full":"Rubén Hinojosa"},"bio":{"birthday":"1940-08-20","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":15,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":15,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":15,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":15,"party":"Democrat","url":"http://www.house.gov/hinojosa"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":15,"party":"Democrat","url":"http://www.house.gov/hinojosa"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":15,"party":"Democrat","url":"http://hinojosa.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":15,"party":"Democrat","url":"http://hinojosa.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":15,"party":"Democrat","url":"http://hinojosa.house.gov","address":"2262 Rayburn HOB; Washington DC 20515-4315","phone":"202-225-2531","fax":"202-225-5688","contact_form":"http://www.house.gov/writerep","office":"2262 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":15,"url":"http://hinojosa.house.gov","address":"2262 Rayburn HOB; Washington DC 20515-4315","phone":"202-225-2531","fax":"202-225-5688","contact_form":"https://hinojosa.house.gov/contact-me/email-me","office":"2262 Rayburn House Office Building","rss_url":"http://hinojosa.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":15,"url":"http://hinojosa.house.gov","address":"2262 Rayburn HOB; Washington DC 20515-4315","phone":"202-225-2531","fax":"202-225-5688","contact_form":"https://hinojosa.house.gov/contact-me/email-me","office":"2262 Rayburn House Office Building","rss_url":"http://hinojosa.house.gov/rss.xml"}]},{"id":{"bioguide":"H001042","thomas":"01844","lis":"S361","govtrack":412200,"opensecrets":"N00028139","votesmart":1677,"fec":["H6HI02251","S2HI00106"],"cspan":91216,"wikipedia":"Mazie Hirono","house_history":15580,"ballotpedia":"Mazie K. Hirono","maplight":7441,"washington_post":"gIQARL7UAP","icpsr":20713},"name":{"first":"Mazie","middle":"K.","last":"Hirono","official_full":"Mazie K. Hirono"},"bio":{"gender":"F","birthday":"1947-11-03"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"HI","district":2,"party":"Democrat","url":"http://hirono.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"HI","district":2,"party":"Democrat","url":"http://hirono.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"HI","district":2,"party":"Democrat","url":"http://hirono.house.gov","address":"1410 Longworth HOB; Washington DC 20515-1102","phone":"202-225-4906","fax":"202-225-4987","contact_form":"http://hirono.house.gov/IMA/issue_subscribe.htm","office":"1410 Longworth House Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"HI","party":"Democrat","class":1,"url":"http://www.hirono.senate.gov","address":"330 Hart Senate Office Building Washington DC 20510","phone":"202-224-6361","fax":"202-225-4987","contact_form":"http://www.hirono.senate.gov/contact/email","office":"330 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.hirono.senate.gov/rss/feeds/?type=all"}]},{"id":{"bioguide":"H001061","thomas":"02079","lis":"S344","govtrack":412494,"opensecrets":"N00031688","votesmart":41788,"fec":["S0ND00093"],"cspan":85233,"wikipedia":"John Hoeven","ballotpedia":"John Hoeven","maplight":7353,"washington_post":"gIQA8Pwz6O","icpsr":41107},"name":{"first":"John","last":"Hoeven","official_full":"John Hoeven"},"bio":{"birthday":"1957-03-13","gender":"M"},"terms":[{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"ND","class":3,"party":"Republican","url":"http://www.hoeven.senate.gov","address":"338 Russell Senate Office Building Washington DC 20510","phone":"202-224-2551","contact_form":"http://www.hoeven.senate.gov/public/index.cfm/email-the-senator","office":"338 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.hoeven.senate.gov/public/index.cfm/rss/feed","fax":"202-224-7999"}]},{"id":{"bioguide":"H001034","thomas":"01634","govtrack":400185,"opensecrets":"N00012611","votesmart":9674,"fec":["H0CA15148"],"cspan":85565,"wikipedia":"Mike Honda","house_history":15564,"maplight":4287,"washington_post":"gIQA8Id2DP","icpsr":20103},"name":{"first":"Michael","middle":"M.","last":"Honda","nickname":"Mike","official_full":"Michael M. Honda"},"bio":{"birthday":"1941-06-27","gender":"M","religion":"Protestant"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":15,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":15,"party":"Democrat","url":"http://www.house.gov/honda"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":15,"party":"Democrat","url":"http://www.house.gov/honda"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":15,"party":"Democrat","url":"http://www.house.gov/honda"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":15,"party":"Democrat","url":"http://www.house.gov/honda"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":15,"party":"Democrat","url":"http://www.house.gov/honda","address":"1713 Longworth HOB; Washington DC 20515-0515","phone":"202-225-2631","fax":"202-225-2699","contact_form":"http://honda.house.gov/contactmike.shtml","office":"1713 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":17,"url":"http://honda.house.gov","address":"1713 Longworth HOB; Washington DC 20515-0517","phone":"202-225-2631","fax":"202-225-2699","contact_form":"http://honda.house.gov/contact","office":"1713 Longworth House Office Building","rss_url":"http://www.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":17,"url":"http://honda.house.gov","address":"1713 Longworth HOB; Washington DC 20515-0517","phone":"202-225-2631","fax":"202-225-2699","contact_form":"http://honda.house.gov/contact","office":"1713 Longworth House Office Building","rss_url":"http://www.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"H000874","thomas":"00566","govtrack":400189,"opensecrets":"N00001821","votesmart":26890,"icpsr":14873,"fec":["H2MD05155"],"cspan":1919,"wikipedia":"Steny Hoyer","house_history":15365,"ballotpedia":"Steny Hoyer","maplight":4290,"washington_post":"gIQA9KQN9O"},"name":{"first":"Steny","middle":"H.","last":"Hoyer","official_full":"Steny H. Hoyer"},"bio":{"birthday":"1939-06-14","gender":"M","religion":"Baptist"},"leadership_roles":[{"title":"Minority Whip","chamber":"house","start":"2003-01-07","end":"2004-12-09"},{"title":"Minority Whip","chamber":"house","start":"2005-01-04","end":"2006-12-09"},{"title":"Minority Whip","chamber":"house","start":"2011-01-05","end":"2013-01-03"},{"title":"Minority Whip","chamber":"house","start":"2013-01-03","end":"2015-01-03"},{"title":"Minority Whip","chamber":"house","start":"2015-01-06"}],"terms":[{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MD","district":5,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MD","district":5,"party":"Democrat","url":"http://www.house.gov/hoyer"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MD","district":5,"party":"Democrat","url":"http://www.house.gov/hoyer"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MD","district":5,"party":"Democrat","url":"http://hoyer.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MD","district":5,"party":"Democrat","url":"http://hoyer.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MD","district":5,"party":"Democrat","url":"http://hoyer.house.gov","address":"1705 Longworth HOB; Washington DC 20515-2005","phone":"202-225-4131","fax":"202-225-4300","contact_form":"http://hoyer.house.gov/contact/email.asp","office":"1705 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MD","party":"Democrat","district":5,"url":"http://hoyer.house.gov","address":"1705 Longworth HOB; Washington DC 20515-2005","phone":"202-225-4131","fax":"202-225-4300","contact_form":"https://hoyer.house.gov/email-steny","office":"1705 Longworth House Office Building","rss_url":"http://hoyer.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MD","party":"Democrat","district":5,"url":"http://hoyer.house.gov","address":"1705 Longworth HOB; Washington DC 20515-2005","phone":"202-225-4131","fax":"202-225-4300","contact_form":"https://hoyer.house.gov/email-steny","office":"1705 Longworth House Office Building","rss_url":"http://hoyer.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"H001057","thomas":"02020","govtrack":412429,"opensecrets":"N00027649","votesmart":12571,"fec":["H6KS01146"],"cspan":86444,"wikipedia":"Tim Huelskamp","house_history":15608,"ballotpedia":"Tim Huelskamp","maplight":6854,"washington_post":"gIQABtpVK","icpsr":21134},"name":{"first":"Tim","last":"Huelskamp","official_full":"Tim Huelskamp"},"bio":{"birthday":"1968-11-11","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"KS","district":1,"party":"Republican","url":"http://huelskamp.house.gov/","address":"126 Cannon HOB; Washington DC 20515-1601","phone":"202-225-2715","fax":"202- 225-5124","office":"126 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KS","party":"Republican","district":1,"url":"http://huelskamp.house.gov","address":"129 Cannon HOB; Washington DC 20515-1601","phone":"202-225-2715","fax":"202- 225-5124","office":"129 Cannon House Office Building","rss_url":"http://huelskamp.house.gov/index.php?format=feed&type=rss","contact_form":"https://huelskamp.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KS","party":"Republican","district":1,"url":"http://huelskamp.house.gov","address":"1110 Longworth HOB; Washington DC 20515-1601","phone":"202-225-2715","fax":"202- 225-5124","office":"1110 Longworth House Office Building","rss_url":"http://huelskamp.house.gov/index.php?format=feed&type=rss","contact_form":"https://huelskamp.house.gov/contact/email-me"}]},{"id":{"bioguide":"H001058","thomas":"02028","govtrack":412437,"opensecrets":"N00030673","votesmart":38351,"fec":["H0MI02094"],"cspan":1033765,"wikipedia":"Bill Huizenga","house_history":15610,"ballotpedia":"Bill Huizenga","maplight":5786,"washington_post":"gIQAOyHaKP","icpsr":21142},"name":{"first":"Bill","last":"Huizenga","official_full":"Bill Huizenga"},"bio":{"birthday":"1969-01-31","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":2,"party":"Republican","url":"http://huizenga.house.gov/","address":"1217 Longworth HOB; Washington DC 20515-2202","phone":"202-225-4401","fax":"202- 226-0779","office":"1217 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Republican","district":2,"url":"http://huizenga.house.gov","address":"1217 Longworth HOB; Washington DC 20515-2202","phone":"202-225-4401","fax":"202- 226-0779","office":"1217 Longworth House Office Building","rss_url":"http://huizenga.house.gov/news/rss.aspx","contact_form":"http://huizenga.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Republican","district":2,"url":"http://huizenga.house.gov","address":"1217 Longworth HOB; Washington DC 20515-2202","phone":"202-225-4401","fax":"202- 226-0779","office":"1217 Longworth House Office Building","rss_url":"http://huizenga.house.gov/news/rss.aspx","contact_form":"http://huizenga.house.gov/contact/"}]},{"id":{"bioguide":"H001059","thomas":"02015","govtrack":412422,"opensecrets":"N00031104","votesmart":18199,"fec":["H0IL14080"],"cspan":62575,"wikipedia":"Randy Hultgren","house_history":15612,"ballotpedia":"Randy Hultgren","maplight":5679,"washington_post":"gIQAHoGVKP","icpsr":21129},"name":{"first":"Randy","last":"Hultgren","official_full":"Randy Hultgren"},"bio":{"birthday":"1966-03-01","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":14,"party":"Republican","url":"http://hultgren.house.gov/","address":"427 Cannon HOB; Washington DC 20515-1314","phone":"202-225-2976","fax":"202- 225-0697","office":"427 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Republican","district":14,"url":"http://hultgren.house.gov","address":"332 Cannon HOB; Washington DC 20515-1314","phone":"202-225-2976","fax":"202- 225-0697","office":"332 Cannon House Office Building","contact_form":"https://hultgren.house.gov/contact/email-randy","rss_url":"http://hultgren.house.gov/common/rss//index.cfm?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Republican","district":14,"url":"http://hultgren.house.gov","address":"2455 Rayburn HOB; Washington DC 20515-1314","phone":"202-225-2976","fax":"202- 225-0697","office":"2455 Rayburn House Office Building","contact_form":"https://hultgren.house.gov/contact/email-randy","rss_url":"http://hultgren.house.gov/common/rss//index.cfm?rss=49"}]},{"id":{"bioguide":"H001048","thomas":"01909","govtrack":412283,"opensecrets":"N00029258","votesmart":104308,"fec":["H8CA52052"],"cspan":1032398,"wikipedia":"Duncan D. Hunter","house_history":15592,"maplight":6958,"washington_post":"gIQAFspUAP","icpsr":20963},"name":{"first":"Duncan","middle":"D.","last":"Hunter","official_full":"Duncan Hunter"},"bio":{"birthday":"1976-12-07","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":52,"party":"Republican","url":"http://hunter.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":52,"party":"Republican","url":"http://hunter.house.gov","address":"223 Cannon HOB; Washington DC 20515-0552","phone":"202-225-5672","fax":"202-225-0235","contact_form":"https://forms.house.gov/hunter/zipauthen_contact.shtml","office":"223 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":50,"url":"http://hunter.house.gov","address":"223 Cannon HOB; Washington DC 20515-0550","phone":"202-225-5672","fax":"202-225-0235","contact_form":"https://hunter.house.gov/contact-me/email-me","office":"223 Cannon House Office Building","rss_url":"http://hunter.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":50,"url":"http://hunter.house.gov","address":"2429 Rayburn HOB; Washington DC 20515-0550","phone":"202-225-5672","fax":"202-225-0235","contact_form":"https://hunter.house.gov/contact-me/email-me","office":"2429 Rayburn House Office Building","rss_url":"http://hunter.house.gov/rss.xml"}],"family":[{"name":"Duncan Lee Hunter","relation":"son"}]},{"id":{"bioguide":"H001060","thomas":"02069","govtrack":412484,"opensecrets":"N00031265","votesmart":50895,"fec":["H0VA05095"],"cspan":623558,"wikipedia":"Robert Hurt (politician)","house_history":15614,"ballotpedia":"Robert Hurt","maplight":6132,"washington_post":"gIQAfrpVKP","icpsr":21186},"name":{"first":"Robert","last":"Hurt","official_full":"Robert Hurt"},"bio":{"birthday":"1969-06-16","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VA","district":5,"party":"Republican","url":"http://hurt.house.gov/","address":"1516 Longworth HOB; Washington DC 20515-4605","phone":"202-225-4711","fax":"202-225-5681","office":"1516 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VA","party":"Republican","district":5,"url":"http://hurt.house.gov","address":"125 Cannon HOB; Washington DC 20515-4605","phone":"202-225-4711","fax":"202-225-5681","office":"125 Cannon House Office Building","rss_url":"http://hurt.house.gov/index.cfm/rss/feed","contact_form":"https://hurt.house.gov/index.cfm/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","party":"Republican","district":5,"url":"http://hurt.house.gov","address":"125 Cannon HOB; Washington DC 20515-4605","phone":"202-225-4711","fax":"202-225-5681","office":"125 Cannon House Office Building","rss_url":"http://hurt.house.gov/index.cfm/rss/feed","contact_form":"https://hurt.house.gov/index.cfm/email-me"}]},{"id":{"bioguide":"I000055","thomas":"01608","lis":"S305","govtrack":400194,"opensecrets":"N00002593","votesmart":1721,"fec":["S6GA00119","H8GA06146"],"cspan":59135,"wikipedia":"Johnny Isakson","house_history":15687,"ballotpedia":"Johnny Isakson","maplight":4295,"washington_post":"gIQAkTA2DP","icpsr":29909},"name":{"first":"John","middle":"H.","last":"Isakson","nickname":"Johnny","official_full":"Johnny Isakson"},"bio":{"birthday":"1944-12-28","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"GA","district":6,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"GA","district":6,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"GA","district":6,"party":"Republican","url":"http://isakson.house.gov"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"GA","class":3,"party":"Republican","url":"http://isakson.senate.gov"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"GA","class":3,"party":"Republican","url":"http://www.isakson.senate.gov","address":"131 Russell Senate Office Building Washington DC 20510","phone":"202-224-3643","fax":"202-228-0724","contact_form":"http://www.isakson.senate.gov/public/index.cfm/email-me","office":"131 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.isakson.senate.gov/public/?a=RSS.Feed"}]},{"id":{"bioguide":"I000057","thomas":"01663","govtrack":400195,"opensecrets":"N00013345","votesmart":55440,"fec":["H0NY02085"],"cspan":87911,"wikipedia":"Steve Israel","house_history":15691,"ballotpedia":"Steve Israel","maplight":4296,"washington_post":"gIQAt0jCAP","icpsr":20129},"name":{"first":"Steve","middle":"J.","last":"Israel","official_full":"Steve Israel"},"bio":{"birthday":"1958-05-30","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":2,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":2,"party":"Democrat","url":"http://www.house.gov/israel"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":2,"party":"Democrat","url":"http://www.house.gov/israel"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":2,"party":"Democrat","url":"http://www.house.gov/israel"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":2,"party":"Democrat","url":"http://www.house.gov/israel"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":2,"party":"Democrat","url":"http://www.house.gov/israel","address":"2457 Rayburn HOB; Washington DC 20515-3202","phone":"202-225-3335","fax":"202-225-4669","contact_form":"http://www.house.gov/formisrael/contact.html","office":"2457 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":3,"url":"http://israel.house.gov","address":"2457 Rayburn HOB; Washington DC 20515-3203","phone":"202-225-3335","fax":"202-225-4669","contact_form":"https://israel.house.gov/contact/email-me","office":"2457 Rayburn House Office Building","rss_url":"http://israel.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":3,"url":"http://israel.house.gov","address":"2457 Rayburn HOB; Washington DC 20515-3203","phone":"202-225-3335","fax":"202-225-4669","contact_form":"https://israel.house.gov/contact/email-me","office":"2457 Rayburn House Office Building","rss_url":"http://israel.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"I000056","thomas":"01640","govtrack":400196,"opensecrets":"N00007017","votesmart":16553,"fec":["H0CA48024","S8CA00135"],"cspan":90066,"wikipedia":"Darrell Issa","house_history":15689,"ballotpedia":"Darrell Issa","maplight":4297,"washington_post":"gIQAaSzFAP","icpsr":20107},"name":{"first":"Darrell","last":"Issa","official_full":"Darrell E. Issa","middle":"E."},"bio":{"birthday":"1953-11-01","gender":"M"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":48,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":49,"party":"Republican","url":"http://www.house.gov/issa"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":49,"party":"Republican","url":"http://www.house.gov/issa"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":49,"party":"Republican","url":"http://www.house.gov/issa"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":49,"party":"Republican","url":"http://www.house.gov/issa"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":49,"party":"Republican","url":"http://www.house.gov/issa","address":"2347 Rayburn HOB; Washington DC 20515-0549","phone":"202-225-3906","fax":"202-225-3303","contact_form":"http://issa.house.gov/index.cfm?FuseAction=Contact.ContactForm","office":"2347 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":49,"url":"http://issa.house.gov","address":"2347 Rayburn HOB; Washington DC 20515-0549","phone":"202-225-3906","fax":"202-225-3303","contact_form":"http://issa.house.gov/contact/contact-me","office":"2347 Rayburn House Office Building","rss_url":"http://issa.house.gov/feed/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":49,"url":"http://issa.house.gov","address":"2269 Rayburn HOB; Washington DC 20515-0549","phone":"202-225-3906","fax":"202-225-3303","contact_form":"http://issa.house.gov/contact/contact-me","office":"2269 Rayburn House Office Building","rss_url":"http://issa.house.gov/feed/"}]},{"id":{"bioguide":"J000032","thomas":"00588","govtrack":400199,"opensecrets":"N00005818","votesmart":21692,"fec":["H4TX18054"],"cspan":36819,"wikipedia":"Sheila Jackson Lee","house_history":15730,"maplight":4335,"washington_post":"gIQAenpUAP","icpsr":29573},"name":{"first":"Sheila","last":"Jackson Lee","official_full":"Sheila Jackson Lee"},"bio":{"birthday":"1950-01-12","gender":"F","religion":"Seventh Day Adventist"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TX","district":18,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":18,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":18,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":18,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":18,"party":"Democrat","url":"http://www.house.gov/jacksonlee"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":18,"party":"Democrat","url":"http://www.house.gov/jacksonlee"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":18,"party":"Democrat","url":"http://www.jacksonlee.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":18,"party":"Democrat","url":"http://www.jacksonlee.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":18,"party":"Democrat","url":"http://www.jacksonlee.house.gov/","address":"2160 Rayburn HOB; Washington DC 20515-4318","phone":"202-225-3816","fax":"202-225-3317","contact_form":"http://www.jacksonlee.house.gov/contact-form.shtml","office":"2160 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":18,"url":"http://jacksonlee.house.gov","address":"2160 Rayburn HOB; Washington DC 20515-4318","phone":"202-225-3816","fax":"202-225-3317","contact_form":"http://jacksonlee.house.gov/contact/","office":"2160 Rayburn House Office Building","rss_url":"http://jacksonlee.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":18,"url":"http://jacksonlee.house.gov","address":"2252 Rayburn HOB; Washington DC 20515-4318","phone":"202-225-3816","fax":"202-225-3317","contact_form":"http://jacksonlee.house.gov/contact/","office":"2252 Rayburn House Office Building","rss_url":"http://jacksonlee.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"J000290","thomas":"01921","govtrack":412284,"opensecrets":"N00029077","votesmart":18594,"fec":["H8KS02090"],"cspan":1030550,"wikipedia":"Lynn Jenkins","house_history":16069,"ballotpedia":"Lynn Jenkins","maplight":7022,"washington_post":"gIQA8hpUAP","icpsr":20915},"name":{"first":"Lynn","last":"Jenkins","official_full":"Lynn Jenkins"},"bio":{"gender":"F","birthday":"1963-06-10"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"KS","district":2,"party":"Republican","url":"http://lynnjenkins.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"KS","district":2,"party":"Republican","url":"http://lynnjenkins.house.gov","address":"1122 Longworth HOB; Washington DC 20515-1602","phone":"202-225-6601","fax":"202-225-7986","contact_form":"https://forms.house.gov/lynnjenkins/contact-form.shtml","office":"1122 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KS","party":"Republican","district":2,"url":"http://lynnjenkins.house.gov","address":"1027 Longworth HOB; Washington DC 20515-1602","phone":"202-225-6601","fax":"202-225-7986","contact_form":"https://lynnjenkins.house.gov/contact-me","office":"1027 Longworth House Office Building","rss_url":"http://lynnjenkins.house.gov/common/rss/?rss=220"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KS","party":"Republican","district":2,"url":"http://lynnjenkins.house.gov","address":"1526 Longworth HOB; Washington DC 20515-1602","phone":"202-225-6601","fax":"202-225-7986","contact_form":"https://lynnjenkins.house.gov/contact-me","office":"1526 Longworth House Office Building","rss_url":"http://lynnjenkins.house.gov/common/rss/?rss=220"}]},{"id":{"bioguide":"J000292","thomas":"02046","govtrack":412460,"opensecrets":"N00032088","votesmart":120649,"fec":["H0OH06189"],"cspan":623472,"wikipedia":"Bill Johnson (Ohio politician)","house_history":16071,"ballotpedia":"Bill Johnson (Ohio)","maplight":5962,"washington_post":"gIQAHF5YKP","icpsr":21162},"name":{"first":"Bill","last":"Johnson","official_full":"Bill Johnson"},"bio":{"birthday":"1954-11-10","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":6,"party":"Republican","url":"http://billjohnson.house.gov/","address":"317 Cannon HOB; Washington DC 20515-3506","phone":"202-225-5705","fax":"202-225-5907","office":"317 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":6,"url":"http://billjohnson.house.gov","address":"1710 Longworth HOB; Washington DC 20515-3506","phone":"202-225-5705","fax":"202-225-5907","office":"1710 Longworth House Office Building","rss_url":"http://billjohnson.house.gov/constituentservices/opendoorsschedule.htm","contact_form":"http://billjohnson.house.gov/contact/default.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":6,"url":"http://billjohnson.house.gov","address":"1710 Longworth HOB; Washington DC 20515-3506","phone":"202-225-5705","fax":"202-225-5907","office":"1710 Longworth House Office Building","rss_url":"http://billjohnson.house.gov/constituentservices/opendoorsschedule.htm","contact_form":"http://billjohnson.house.gov/contact/default.aspx"}]},{"id":{"bioguide":"J000126","thomas":"00599","govtrack":400204,"opensecrets":"N00008122","votesmart":27098,"fec":["H2TX00015"],"cspan":23352,"wikipedia":"Eddie Bernice Johnson","house_history":15852,"maplight":4305,"washington_post":"gIQAutVSAP","icpsr":39305},"name":{"first":"Eddie","middle":"Bernice","last":"Johnson","official_full":"Eddie Bernice Johnson"},"bio":{"birthday":"1935-12-03","gender":"F","religion":"Baptist"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"TX","district":30,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TX","district":30,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":30,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":30,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":30,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":30,"party":"Democrat","url":"http://www.house.gov/ebjohnson"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":30,"party":"Democrat","url":"http://www.house.gov/ebjohnson"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":30,"party":"Democrat","url":"http://www.house.gov/ebjohnson"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":30,"party":"Democrat","url":"http://www.house.gov/ebjohnson"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":30,"party":"Democrat","url":"http://www.house.gov/ebjohnson","address":"2468 Rayburn HOB; Washington DC 20515-4330","phone":"202-225-8885","fax":"202-226-1477","contact_form":"http://www.house.gov/ebjohnson/IMA/issue_subscribe.shtml","office":"2468 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":30,"url":"http://ebjohnson.house.gov","address":"2468 Rayburn HOB; Washington DC 20515-4330","phone":"202-225-8885","fax":"202-226-1477","contact_form":"https://ebjohnson.house.gov/contact/email-me","office":"2468 Rayburn House Office Building","rss_url":"http://ebjohnson.house.gov/common/rss//index.cfm?rss=21"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":30,"url":"http://ebjohnson.house.gov","address":"2468 Rayburn HOB; Washington DC 20515-4330","phone":"202-225-8885","fax":"202-226-1477","contact_form":"https://ebjohnson.house.gov/contact/email-me","office":"2468 Rayburn House Office Building","rss_url":"http://ebjohnson.house.gov/common/rss//index.cfm?rss=21"}]},{"id":{"bioguide":"J000288","thomas":"01843","govtrack":412199,"opensecrets":"N00027848","votesmart":68070,"fec":["H6GA04129"],"cspan":1020576,"wikipedia":"Hank Johnson","house_history":16065,"ballotpedia":"Henry C. Johnson, Jr.","maplight":4683,"washington_post":"gIQAC8oUAP","icpsr":20712},"name":{"first":"Henry","middle":"C.","last":"Johnson","suffix":"Jr.","nickname":"Hank","official_full":"Henry C. \"Hank\" Johnson Jr."},"bio":{"gender":"M","birthday":"1954-10-02"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"GA","district":4,"party":"Democrat","url":"http://hankjohnson.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"GA","district":4,"party":"Democrat","url":"http://hankjohnson.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":4,"party":"Democrat","url":"http://hankjohnson.house.gov","address":"1427 Longworth HOB; Washington DC 20515-1004","phone":"202-225-1605","fax":"202-226-0691","contact_form":"http://hankjohnson.house.gov/contact_hank_write.shtml","office":"1427 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Democrat","district":4,"url":"http://hankjohnson.house.gov","address":"2240 Rayburn HOB; Washington DC 20515-1004","phone":"202-225-1605","fax":"202-226-0691","contact_form":"https://hankjohnson.house.gov/contact-me/email-me","office":"2240 Rayburn House Office Building","rss_url":"http://hankjohnson.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Democrat","district":4,"url":"http://hankjohnson.house.gov","address":"2240 Rayburn HOB; Washington DC 20515-1004","phone":"202-225-1605","fax":"202-226-0691","contact_form":"https://hankjohnson.house.gov/contact-me/email-me","office":"2240 Rayburn House Office Building","rss_url":"http://hankjohnson.house.gov/rss.xml"}]},{"id":{"bioguide":"J000293","thomas":"02086","lis":"S345","govtrack":412496,"opensecrets":"N00032546","votesmart":126217,"fec":["S0WI00197"],"cspan":62835,"wikipedia":"Ron Johnson (U.S. politician)","ballotpedia":"Ron Johnson (Wisconsin)","maplight":7413,"washington_post":"gIQAYIfTKP","icpsr":41111},"name":{"first":"Ron","last":"Johnson","official_full":"Ron Johnson"},"bio":{"birthday":"1955-04-08","gender":"M"},"terms":[{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"WI","class":3,"party":"Republican","url":"http://www.ronjohnson.senate.gov","address":"328 Hart Senate Office Building Washington DC 20510","phone":"202-224-5323","contact_form":"http://www.ronjohnson.senate.gov/public/index.cfm/contact","office":"328 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.ronjohnson.senate.gov/public/index.cfm/rss/feed","fax":"920-230-7262"}]},{"id":{"bioguide":"J000174","thomas":"00603","govtrack":400206,"opensecrets":"N00008028","votesmart":27079,"fec":["H2TX03118"],"cspan":18711,"wikipedia":"Sam Johnson","house_history":15916,"maplight":4304,"washington_post":"gIQAltpUAP","icpsr":29143},"name":{"first":"Sam","middle":"Robert","last":"Johnson","official_full":"Sam Johnson"},"bio":{"birthday":"1930-10-11","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"TX","district":3,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"TX","district":3,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TX","district":3,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":3,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":3,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":3,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":3,"party":"Republican","url":"http://www.house.gov/samjohnson"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":3,"party":"Republican","url":"http://www.house.gov/samjohnson"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":3,"party":"Republican","url":"http://www.house.gov/samjohnson"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":3,"party":"Republican","url":"http://www.house.gov/samjohnson"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":3,"party":"Republican","url":"http://www.house.gov/samjohnson","address":"1211 Longworth HOB; Washington DC 20515-4303","phone":"202-225-4201","fax":"202-225-1485","contact_form":"http://www.house.gov/formsamjohnson/IMA/issue.htm","office":"1211 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":3,"url":"http://samjohnson.house.gov","address":"1211 Longworth HOB; Washington DC 20515-4303","phone":"202-225-4201","fax":"202-225-1485","contact_form":"http://samjohnson.house.gov/contact/","office":"1211 Longworth House Office Building","rss_url":"http://samjohnson.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":3,"url":"http://samjohnson.house.gov","address":"2304 Rayburn HOB; Washington DC 20515-4303","phone":"202-225-4201","fax":"202-225-1485","contact_form":"http://samjohnson.house.gov/contact/","office":"2304 Rayburn House Office Building","rss_url":"http://samjohnson.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"J000255","thomas":"00612","govtrack":400209,"opensecrets":"N00002299","votesmart":21785,"fec":["H2NC01081"],"cspan":36693,"wikipedia":"Walter B. Jones, Jr.","house_history":16015,"ballotpedia":"Walter B. Jones","maplight":4306,"washington_post":"gIQALhiUAP","icpsr":29546},"name":{"first":"Walter","middle":"B.","last":"Jones","suffix":"Jr.","official_full":"Walter B. Jones"},"bio":{"birthday":"1943-02-10","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NC","district":3,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NC","district":3,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NC","district":3,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NC","district":3,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NC","district":3,"party":"Republican","url":"http://jones.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NC","district":3,"party":"Republican","url":"http://jones.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NC","district":3,"party":"Republican","url":"http://jones.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NC","district":3,"party":"Republican","url":"http://jones.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NC","district":3,"party":"Republican","url":"http://jones.house.gov","address":"2333 Rayburn HOB; Washington DC 20515-3303","phone":"202-225-3415","fax":"202-225-3286","contact_form":"http://jones.house.gov/contact_form_email.cfm","office":"2333 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Republican","district":3,"url":"http://jones.house.gov","address":"2333 Rayburn HOB; Washington DC 20515-3303","phone":"202-225-3415","fax":"202-225-3286","contact_form":"https://jones.house.gov/contact-me/email-me","office":"2333 Rayburn House Office Building","rss_url":"http://jones.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Republican","district":3,"url":"http://jones.house.gov","address":"2333 Rayburn HOB; Washington DC 20515-3303","phone":"202-225-3415","fax":"202-225-3286","contact_form":"https://jones.house.gov/contact-me/email-me","office":"2333 Rayburn House Office Building","rss_url":"http://jones.house.gov/rss.xml"}],"family":[{"name":"Walter Beaman Jones Sr.","relation":"son"}]},{"id":{"bioguide":"J000289","thomas":"01868","govtrack":412226,"opensecrets":"N00027894","votesmart":8158,"fec":["H6OH04082"],"cspan":1022879,"wikipedia":"Jim Jordan (Ohio politician)","house_history":16067,"ballotpedia":"Jim Jordan","maplight":4708,"washington_post":"gIQAjcfUAP","icpsr":20738},"name":{"first":"Jim","last":"Jordan","official_full":"Jim Jordan"},"bio":{"gender":"M","birthday":"1964-02-17"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OH","district":4,"party":"Republican","url":"http://jordan.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OH","district":4,"party":"Republican","url":"http://jordan.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":4,"party":"Republican","url":"http://jordan.house.gov","address":"1524 Longworth HOB; Washington DC 20515-3504","phone":"202-225-2676","fax":"202-226-0577","contact_form":"http://jordan.house.gov/contactform_zipcheck.shtml","office":"1524 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":4,"url":"http://jordan.house.gov","address":"1524 Longworth HOB; Washington DC 20515-3504","phone":"202-225-2676","fax":"202-226-0577","contact_form":"http://jordan.house.gov/contact/","office":"1524 Longworth House Office Building","rss_url":"http://jordan.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":4,"url":"http://jordan.house.gov","address":"1524 Longworth HOB; Washington DC 20515-3504","phone":"202-225-2676","fax":"202-226-0577","contact_form":"http://jordan.house.gov/contact/","office":"1524 Longworth House Office Building","rss_url":"http://jordan.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"K000009","thomas":"00616","govtrack":400211,"opensecrets":"N00003522","votesmart":27016,"icpsr":15029,"fec":["H2OH09031"],"cspan":1458,"wikipedia":"Marcy Kaptur","house_history":16086,"maplight":4309,"washington_post":"gIQApw7AAP"},"name":{"first":"Marcy","last":"Kaptur","official_full":"Marcy Kaptur"},"bio":{"birthday":"1946-06-17","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OH","district":9,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OH","district":9,"party":"Democrat","url":"http://www.house.gov/kaptur"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OH","district":9,"party":"Democrat","url":"http://www.house.gov/kaptur"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OH","district":9,"party":"Democrat","url":"http://kaptur.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OH","district":9,"party":"Democrat","url":"http://kaptur.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":9,"party":"Democrat","url":"http://kaptur.house.gov","address":"2186 Rayburn HOB; Washington DC 20515-3509","phone":"202-225-4146","fax":"202-225-7711","contact_form":"http://kaptur.house.gov/index.php?option=com_ninjarsssyndicator&feed_id=2&format=raw","office":"2186 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Democrat","district":9,"url":"http://www.kaptur.house.gov","address":"2186 Rayburn HOB; Washington DC 20515-3509","phone":"202-225-4146","fax":"202-225-7711","contact_form":"https://forms.house.gov/kaptur/webforms/issue_subscribe.shtml","office":"2186 Rayburn House Office Building","rss_url":"http://kaptur.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Democrat","district":9,"url":"http://www.kaptur.house.gov","address":"2186 Rayburn HOB; Washington DC 20515-3509","phone":"202-225-4146","fax":"202-225-7711","contact_form":"https://forms.house.gov/kaptur/webforms/issue_subscribe.shtml","office":"2186 Rayburn House Office Building","rss_url":"http://kaptur.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"K000375","thomas":"02025","govtrack":412435,"opensecrets":"N00031933","votesmart":4743,"fec":["H0MA10082"],"cspan":61856,"wikipedia":"William R. Keating","house_history":16570,"maplight":5765,"washington_post":"gIQA23JXKP","icpsr":21140},"name":{"first":"William","last":"Keating","official_full":"William R. Keating","middle":"R."},"bio":{"birthday":"1952-09-06","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MA","district":10,"party":"Democrat","url":"http://keating.house.gov/","address":"315 Cannon HOB; Washington DC 20515-2110","phone":"202-225-3111","fax":"202- 225-5658","office":"315 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MA","party":"Democrat","district":9,"url":"http://keating.house.gov","address":"315 Cannon HOB; Washington DC 20515-2109","phone":"202-225-3111","fax":"202- 225-5658","office":"315 Cannon House Office Building","rss_url":"http://keating.house.gov/index.php?format=feed&type=rss","contact_form":"https://forms.house.gov/keating/webforms/contact.shtml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","party":"Democrat","district":9,"url":"http://keating.house.gov","address":"315 Cannon HOB; Washington DC 20515-2109","phone":"202-225-3111","fax":"202- 225-5658","office":"315 Cannon House Office Building","rss_url":"http://keating.house.gov/index.php?format=feed&type=rss","contact_form":"https://forms.house.gov/keating/webforms/contact.shtml"}]},{"id":{"bioguide":"K000376","thomas":"02051","govtrack":412465,"opensecrets":"N00031647","votesmart":119463,"fec":["H0PA03271"],"cspan":62696,"wikipedia":"Mike Kelly (Pennsylvania)","house_history":16572,"ballotpedia":"Mike Kelly","maplight":5997,"washington_post":"gIQAXuVWKP","icpsr":21167},"name":{"first":"Mike","last":"Kelly","official_full":"Mike Kelly"},"bio":{"birthday":"1948-05-10","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":3,"party":"Republican","url":"http://kelly.house.gov/","address":"515 Cannon HOB; Washington DC 20515-3803","phone":"202-225-5406","fax":"202-225-3103","office":"515 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":3,"url":"http://kelly.house.gov","address":"1519 Longworth HOB; Washington DC 20515-3803","phone":"202-225-5406","fax":"202-225-3103","office":"1519 Longworth House Office Building","rss_url":"http://kelly.house.gov/rss.xml","contact_form":"https://kelly.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":3,"url":"http://kelly.house.gov","address":"1519 Longworth HOB; Washington DC 20515-3803","phone":"202-225-5406","fax":"202-225-3103","office":"1519 Longworth House Office Building","rss_url":"http://kelly.house.gov/rss.xml","contact_form":"https://kelly.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"K000188","thomas":"01498","govtrack":400218,"opensecrets":"N00004403","votesmart":630,"fec":["H6WI03099"],"cspan":45870,"wikipedia":"Ron Kind","house_history":16313,"ballotpedia":"Ron Kind","maplight":4316,"washington_post":"gIQA0kXHAP","icpsr":29769},"name":{"first":"Ron","middle":"James","last":"Kind","official_full":"Ron Kind"},"bio":{"birthday":"1963-03-16","gender":"M","religion":"Lutheran"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"WI","district":3,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"WI","district":3,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"WI","district":3,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"WI","district":3,"party":"Democrat","url":"http://www.house.gov/kind"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WI","district":3,"party":"Democrat","url":"http://www.house.gov/kind"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WI","district":3,"party":"Democrat","url":"http://www.house.gov/kind"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WI","district":3,"party":"Democrat","url":"http://www.house.gov/kind"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WI","district":3,"party":"Democrat","url":"http://www.house.gov/kind","address":"1406 Longworth HOB; Washington DC 20515-4903","phone":"202-225-5506","fax":"202-225-5739","contact_form":"http://www.house.gov/kind/contact.shtml","office":"1406 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WI","party":"Democrat","district":3,"url":"http://kind.house.gov","address":"1502 Longworth HOB; Washington DC 20515-4903","phone":"202-225-5506","fax":"202-225-5739","contact_form":"https://kindforms.house.gov/email-ron","office":"1502 Longworth House Office Building","rss_url":"http://kind.house.gov/common/rss/?rss=52"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WI","party":"Democrat","district":3,"url":"http://kind.house.gov","address":"1502 Longworth HOB; Washington DC 20515-4903","phone":"202-225-5506","fax":"202-225-5739","contact_form":"https://kindforms.house.gov/email-ron","office":"1502 Longworth House Office Building","rss_url":"http://kind.house.gov/common/rss/?rss=52"}]},{"id":{"bioguide":"K000210","thomas":"00635","govtrack":400219,"opensecrets":"N00001193","votesmart":26968,"fec":["H2NY03089"],"cspan":26487,"wikipedia":"Peter T. King","house_history":16338,"ballotpedia":"Peter T. King","maplight":4318,"washington_post":"gIQAr6fAAP","icpsr":29375},"name":{"first":"Peter","middle":"T.","last":"King","nickname":"Pete","official_full":"Peter T. King"},"bio":{"birthday":"1944-04-05","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":3,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":3,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":3,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":3,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":3,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":3,"party":"Republican","url":"http://www.house.gov/king"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":3,"party":"Republican","url":"http://www.house.gov/king"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":3,"party":"Republican","url":"http://peteking.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":3,"party":"Republican","url":"http://peteking.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":3,"party":"Republican","url":"http://peteking.house.gov","address":"339 Cannon HOB; Washington DC 20515-3203","phone":"202-225-7896","fax":"202-226-2279","contact_form":"http://peteking.house.gov/zip.shtml","office":"339 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Republican","district":2,"url":"http://peteking.house.gov","address":"339 Cannon HOB; Washington DC 20515-3202","phone":"202-225-7896","fax":"202-226-2279","contact_form":"https://peteking.house.gov/contact/email-me","office":"339 Cannon House Office Building","rss_url":"http://peteking.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Republican","district":2,"url":"http://peteking.house.gov","address":"339 Cannon HOB; Washington DC 20515-3202","phone":"202-225-7896","fax":"202-226-2279","contact_form":"https://peteking.house.gov/contact/email-me","office":"339 Cannon House Office Building","rss_url":"http://peteking.house.gov/rss.xml"}]},{"id":{"bioguide":"K000362","thomas":"01724","govtrack":400220,"opensecrets":"N00025237","votesmart":10853,"fec":["H2IA05072"],"cspan":1003590,"house_history":16548,"wikipedia":"Steve King","ballotpedia":"Steve King","maplight":4317,"washington_post":"gIQA958MAP","icpsr":20325},"name":{"first":"Steve","middle":"A.","last":"King","official_full":"Steve King"},"bio":{"birthday":"1949-05-28","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"IA","district":5,"party":"Republican","url":"http://www.house.gov/steveking"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IA","district":5,"party":"Republican","url":"http://www.house.gov/steveking"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IA","district":5,"party":"Republican","url":"http://www.house.gov/steveking"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IA","district":5,"party":"Republican","url":"http://www.house.gov/steveking"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IA","district":5,"party":"Republican","url":"http://www.house.gov/steveking","address":"1131 Longworth HOB; Washington DC 20515-1505","phone":"202-225-4426","fax":"202-225-3193","contact_form":"http://www.house.gov/steveking/email.shtm","office":"1131 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IA","party":"Republican","district":4,"url":"http://steveking.house.gov","address":"2210 Rayburn HOB; Washington DC 20515-1504","phone":"202-225-4426","fax":"202-225-3193","contact_form":"https://forms.house.gov/king/webforms/issue_subscribe.html","office":"2210 Rayburn House Office Building","rss_url":"http://steveking.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IA","party":"Republican","district":4,"url":"http://steveking.house.gov","address":"2210 Rayburn HOB; Washington DC 20515-1504","phone":"202-225-4426","fax":"202-225-3193","contact_form":"https://forms.house.gov/king/webforms/issue_subscribe.html","office":"2210 Rayburn House Office Building","rss_url":"http://steveking.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"K000378","thomas":"02014","govtrack":412421,"opensecrets":"N00030667","votesmart":116559,"fec":["H0IL11052"],"cspan":62573,"wikipedia":"Adam Kinzinger","house_history":16573,"ballotpedia":"Adam Kinzinger","maplight":5674,"washington_post":"gIQARqVWKP","icpsr":21128},"name":{"first":"Adam","last":"Kinzinger","official_full":"Adam Kinzinger"},"bio":{"birthday":"1978-02-27","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":11,"party":"Republican","url":"http://kinzinger.house.gov/","address":"1218 Longworth HOB; Washington DC 20515-1311","phone":"202-225-3635","fax":"202- 225-3521","office":"1218 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Republican","district":16,"url":"http://kinzinger.house.gov","address":"1221 Longworth HOB; Washington DC 20515-1316","phone":"202-225-3635","fax":"202- 225-3521","office":"1221 Longworth House Office Building","contact_form":"https://kinzinger.house.gov/email-adam","rss_url":"http://kinzinger.house.gov/common/rss//index.cfm?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Republican","district":16,"url":"http://kinzinger.house.gov","address":"1221 Longworth HOB; Washington DC 20515-1316","phone":"202-225-3635","fax":"202- 225-3521","office":"1221 Longworth House Office Building","contact_form":"https://kinzinger.house.gov/email-adam","rss_url":"http://kinzinger.house.gov/common/rss//index.cfm?rss=49"}]},{"id":{"bioguide":"K000360","thomas":"01647","lis":"S339","govtrack":400222,"opensecrets":"N00012539","votesmart":33502,"fec":["H0IL10120","S0IL00261"],"cspan":85221,"wikipedia":"Mark Kirk","house_history":16544,"ballotpedia":"Mark Kirk","maplight":7316,"washington_post":"gIQAfhXHAP","icpsr":20115},"name":{"first":"Mark","middle":"Steven","last":"Kirk","official_full":"Mark Kirk"},"bio":{"birthday":"1959-09-15","gender":"M"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"IL","district":10,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"IL","district":10,"party":"Republican","url":"http://www.house.gov/kirk"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IL","district":10,"party":"Republican","url":"http://www.house.gov/kirk"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IL","district":10,"party":"Republican","url":"http://www.house.gov/kirk"},{"type":"rep","start":"2009-01-06","end":"2010-11-29","state":"IL","district":10,"party":"Republican","url":"http://www.house.gov/kirk"},{"type":"sen","start":"2010-11-29","end":"2010-12-22","state":"IL","class":3,"party":"Republican"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"IL","class":3,"party":"Republican","url":"http://www.kirk.senate.gov","address":"524 Hart Senate Office Building Washington DC 20510","phone":"202-224-2854","contact_form":"http://www.kirk.senate.gov/?p=comment_on_legislation","office":"524 Hart Senate Office Building","state_rank":"junior","rss_url":"http://kirk.senate.gov/rss/?p=hot_topic","fax":"202-228-4611"}]},{"id":{"bioguide":"K000363","thomas":"01733","govtrack":400224,"opensecrets":"N00004436","votesmart":20311,"fec":["H8MN06047"],"cspan":1003596,"wikipedia":"John Kline (politician)","house_history":16550,"ballotpedia":"John Kline","maplight":4321,"washington_post":"gIQAW0U3DP","icpsr":20333},"name":{"first":"John","middle":"Paul","last":"Kline","official_full":"John Kline"},"bio":{"birthday":"1947-09-06","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MN","district":2,"party":"Republican","url":"http://www.house.gov/kline"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MN","district":2,"party":"Republican","url":"http://www.house.gov/kline"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MN","district":2,"party":"Republican","url":"http://kline.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MN","district":2,"party":"Republican","url":"http://kline.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MN","district":2,"party":"Republican","url":"http://kline.house.gov","address":"2439 Rayburn HOB; Washington DC 20515-2302","phone":"202-225-2271","fax":"202-225-2595","contact_form":"http://kline.house.gov/index.cfm?FuseAction=ContactInformation.ContactForm&To=mn02hwyr@housemail.house.gov&CFID=22307054&CFTOKEN=28173710","office":"2439 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MN","party":"Republican","district":2,"url":"http://kline.house.gov","address":"2439 Rayburn HOB; Washington DC 20515-2302","phone":"202-225-2271","fax":"202-225-2595","contact_form":"http://kline.house.gov/contact/","office":"2439 Rayburn House Office Building","rss_url":"http://kline.house.gov/common/rss/?rss=47"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MN","party":"Republican","district":2,"url":"http://kline.house.gov","address":"2439 Rayburn HOB; Washington DC 20515-2302","phone":"202-225-2271","fax":"202-225-2595","contact_form":"http://kline.house.gov/contact/","office":"2439 Rayburn House Office Building","rss_url":"http://kline.house.gov/common/rss/?rss=47"}]},{"id":{"bioguide":"L000573","thomas":"02011","govtrack":412419,"opensecrets":"N00031377","votesmart":57391,"fec":["H0ID01253"],"cspan":94987,"wikipedia":"Raúl Labrador","house_history":17322,"ballotpedia":"Raul Labrador","maplight":5656,"washington_post":"gIQAfl8vKP","icpsr":21125},"name":{"first":"Raúl","last":"Labrador","official_full":"Raúl R. Labrador","middle":"R."},"bio":{"birthday":"1967-12-08","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"ID","district":1,"party":"Republican","url":"http://labrador.house.gov/","address":"1523 Longworth HOB; Washington DC 20515-1201","phone":"202-225-6611","fax":"202-225-3029","office":"1523 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"ID","party":"Republican","district":1,"url":"http://labrador.house.gov","address":"1523 Longworth HOB; Washington DC 20515-1201","phone":"202-225-6611","fax":"202-225-3029","office":"1523 Longworth House Office Building","contact_form":"https://labradorforms.house.gov/email-me","rss_url":"http://labrador.house.gov/common/rss//index.cfm?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"ID","party":"Republican","district":1,"url":"http://labrador.house.gov","address":"1523 Longworth HOB; Washington DC 20515-1201","phone":"202-225-6611","fax":"202-225-3029","office":"1523 Longworth House Office Building","contact_form":"https://labradorforms.house.gov/email-me","rss_url":"http://labrador.house.gov/common/rss//index.cfm?rss=49"}]},{"id":{"bioguide":"L000564","thomas":"01834","govtrack":412191,"opensecrets":"N00028133","votesmart":2698,"fec":["H6CO05159"],"cspan":1022846,"wikipedia":"Doug Lamborn","house_history":17305,"ballotpedia":"Doug Lamborn","maplight":4675,"washington_post":"gIQAN69TAP","icpsr":20704},"name":{"first":"Doug","last":"Lamborn","official_full":"Doug Lamborn"},"bio":{"birthday":"1954-05-24","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CO","district":5,"party":"Republican","url":"http://lamborn.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CO","district":5,"party":"Republican","url":"http://lamborn.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CO","district":5,"party":"Republican","url":"http://lamborn.house.gov","address":"437 Cannon HOB; Washington DC 20515-0605","phone":"202-225-4422","fax":"202-226-2638","contact_form":"http://lamborn.house.gov/ZipAuth.aspx","office":"437 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CO","party":"Republican","district":5,"url":"http://lamborn.house.gov","address":"2402 Rayburn HOB; Washington DC 20515-0605","phone":"202-225-4422","fax":"202-226-2638","contact_form":"https://lambornforms.house.gov/contact-form","office":"2402 Rayburn House Office Building","rss_url":"http://lamborn.house.gov/news-rss-graphic/news-rss-graphic/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CO","party":"Republican","district":5,"url":"http://lamborn.house.gov","address":"2402 Rayburn HOB; Washington DC 20515-0605","phone":"202-225-4422","fax":"202-226-2638","contact_form":"https://lambornforms.house.gov/contact-form","office":"2402 Rayburn House Office Building","rss_url":"http://lamborn.house.gov/news-rss-graphic/news-rss-graphic/"}]},{"id":{"bioguide":"L000567","thomas":"01936","govtrack":412290,"opensecrets":"N00000898","votesmart":4443,"fec":["H6NJ12136","H8NJ07124"],"cspan":1031349,"wikipedia":"Leonard Lance","house_history":17311,"maplight":6877,"washington_post":"gIQAi49TAP","icpsr":20929},"name":{"first":"Leonard","last":"Lance","official_full":"Leonard Lance"},"bio":{"birthday":"1952-06-25","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NJ","district":7,"party":"Republican","url":"http://lance.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NJ","district":7,"party":"Republican","url":"http://lance.house.gov","address":"426 Cannon HOB; Washington DC 20515-3007","phone":"202-225-5361","fax":"202-225-9460","contact_form":"https://forms.house.gov/lance/contact-form.shtml","office":"426 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Republican","district":7,"url":"http://lance.house.gov","address":"133 Cannon HOB; Washington DC 20515-3007","phone":"202-225-5361","fax":"202-225-9460","contact_form":"https://lance.house.gov/contact-me1","office":"133 Cannon House Office Building","rss_url":"http://lance.house.gov/rss-button/rss-button/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Republican","district":7,"url":"http://lance.house.gov","address":"2352 Rayburn HOB; Washington DC 20515-3007","phone":"202-225-5361","fax":"202-225-9460","contact_form":"https://lance.house.gov/contact-me1","office":"2352 Rayburn House Office Building","rss_url":"http://lance.house.gov/rss-button/rss-button/"}]},{"id":{"bioguide":"L000559","thomas":"01668","govtrack":400230,"opensecrets":"N00009724","votesmart":55787,"fec":["H0RI02139"],"cspan":86608,"wikipedia":"James Langevin","house_history":17296,"ballotpedia":"Jim Langevin","maplight":4328,"washington_post":"gIQABs8MAP","icpsr":20136},"name":{"first":"James","middle":"R.","last":"Langevin","nickname":"Jim","official_full":"James R. Langevin"},"bio":{"birthday":"1964-04-22","gender":"M"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"RI","district":2,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"RI","district":2,"party":"Democrat","url":"http://www.house.gov/langevin"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"RI","district":2,"party":"Democrat","url":"http://www.house.gov/langevin"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"RI","district":2,"party":"Democrat","url":"http://www.house.gov/langevin"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"RI","district":2,"party":"Democrat","url":"http://www.house.gov/langevin"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"RI","district":2,"party":"Democrat","url":"http://www.house.gov/langevin","address":"109 Cannon HOB; Washington DC 20515-3902","phone":"202-225-2735","fax":"202-225-5976","contact_form":"http://langevin.house.gov/comments.shtml","office":"109 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"RI","party":"Democrat","district":2,"url":"http://langevin.house.gov","address":"109 Cannon HOB; Washington DC 20515-3902","phone":"202-225-2735","fax":"202-225-5976","contact_form":"https://langevin.house.gov/contact-me/email-me","office":"109 Cannon House Office Building","rss_url":"http://langevin.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"RI","party":"Democrat","district":2,"url":"http://langevin.house.gov","address":"109 Cannon HOB; Washington DC 20515-3902","phone":"202-225-2735","fax":"202-225-5976","contact_form":"https://langevin.house.gov/contact-me/email-me","office":"109 Cannon House Office Building","rss_url":"http://langevin.house.gov/rss.xml"}]},{"id":{"bioguide":"L000575","thomas":"02050","govtrack":412464,"opensecrets":"N00031129","votesmart":124938,"fec":["H0OK05114"],"cspan":1033847,"wikipedia":"James Lankford","house_history":17326,"ballotpedia":"James Lankford","maplight":5983,"washington_post":"gIQAcjhZKP","icpsr":21166,"lis":"S378"},"name":{"first":"James","last":"Lankford","official_full":"James Lankford"},"bio":{"birthday":"1968-03-04","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OK","district":5,"party":"Republican","url":"http://lankford.house.gov/","address":"509 Cannon HOB; Washington DC 20515-3605","phone":"202-225-2132","fax":"202-226-1463","office":"509 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OK","party":"Republican","district":5,"url":"http://lankford.house.gov","address":"228 Cannon HOB; Washington DC 20515-3605","phone":"202-225-2132","fax":"202-226-1463","office":"228 Cannon House Office Building","rss_url":"http://lankford.house.gov/rss.xml","contact_form":"https://lankford.house.gov/contact-me/"},{"type":"sen","start":"2015-01-06","end":"2017-01-03","state":"OK","class":3,"state_rank":"junior","party":"Republican","url":"http://www.lankford.senate.gov","address":"B40C Dirksen Senate Office Building Washington DC 20510","office":"B40c Dirksen Senate Office Building","phone":"202-224-5754"}]},{"id":{"bioguide":"L000560","thomas":"01675","govtrack":400232,"opensecrets":"N00009759","votesmart":56231,"fec":["H0WA02080"],"cspan":86610,"wikipedia":"Rick Larsen","house_history":17298,"maplight":4330,"icpsr":20145},"name":{"first":"Rick","last":"Larsen","official_full":"Rick Larsen"},"bio":{"birthday":"1965-06-15","gender":"M"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"WA","district":2,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"WA","district":2,"party":"Democrat","url":"http://www.house.gov/larsen"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WA","district":2,"party":"Democrat","url":"http://www.house.gov/larsen"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WA","district":2,"party":"Democrat","url":"http://www.house.gov/larsen"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WA","district":2,"party":"Democrat","url":"http://www.house.gov/larsen"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WA","district":2,"party":"Democrat","url":"http://www.house.gov/larsen","address":"108 Cannon HOB; Washington DC 20515-4702","phone":"202-225-2605","fax":"202-225-4420","contact_form":"http://www.house.gov/larsen/contact/","office":"108 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Democrat","district":2,"url":"http://larsen.house.gov","address":"2113 Rayburn HOB; Washington DC 20515-4702","phone":"202-225-2605","fax":"202-225-4420","contact_form":"http://larsen.house.gov/contact-rick/email-rick","office":"2113 Rayburn House Office Building","rss_url":"http://larsen.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Democrat","district":2,"url":"http://larsen.house.gov","address":"2113 Rayburn HOB; Washington DC 20515-4702","phone":"202-225-2605","fax":"202-225-4420","contact_form":"http://larsen.house.gov/contact-rick/email-rick","office":"2113 Rayburn House Office Building","rss_url":"http://larsen.house.gov/rss.xml"}]},{"id":{"bioguide":"L000557","thomas":"01583","govtrack":400233,"opensecrets":"N00000575","votesmart":17188,"fec":["H8CT01046"],"cspan":36596,"wikipedia":"John B. Larson","house_history":17292,"ballotpedia":"John B. Larson","maplight":4331,"washington_post":"gIQAmHHN9O","icpsr":29908},"name":{"first":"John","middle":"B.","last":"Larson","official_full":"John B. Larson"},"bio":{"birthday":"1948-07-22","gender":"M"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CT","district":1,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CT","district":1,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CT","district":1,"party":"Democrat","url":"http://www.house.gov/larson"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CT","district":1,"party":"Democrat","url":"http://www.house.gov/larson"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CT","district":1,"party":"Democrat","url":"http://www.house.gov/larson"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CT","district":1,"party":"Democrat","url":"http://www.house.gov/larson"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CT","district":1,"party":"Democrat","url":"http://www.house.gov/larson","address":"1501 Longworth HOB; Washington DC 20515-0701","phone":"202-225-2265","fax":"202-225-1031","contact_form":"http://www.house.gov/writerep","office":"1501 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CT","party":"Democrat","district":1,"url":"http://www.larson.house.gov","address":"1501 Longworth HOB; Washington DC 20515-0701","phone":"202-225-2265","fax":"202-225-1031","contact_form":"https://forms.house.gov/larson/contact_new.html","office":"1501 Longworth House Office Building","rss_url":"http://www.larson.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CT","party":"Democrat","district":1,"url":"http://www.larson.house.gov","address":"1501 Longworth HOB; Washington DC 20515-0701","phone":"202-225-2265","fax":"202-225-1031","contact_form":"https://forms.house.gov/larson/contact_new.html","office":"1501 Longworth House Office Building","rss_url":"http://www.larson.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"L000566","thomas":"01885","govtrack":412256,"opensecrets":"N00012233","votesmart":9926,"fec":["H8OH05036"],"cspan":1028071,"wikipedia":"Bob Latta","house_history":17309,"ballotpedia":"Robert E. Latta","maplight":7131,"washington_post":"gIQAYPcwKP","icpsr":20755},"name":{"first":"Robert","middle":"E.","last":"Latta","official_full":"Robert E. Latta"},"bio":{"birthday":"1956-04-18","gender":"M"},"terms":[{"type":"rep","start":"2007-12-13","end":"2009-01-03","state":"OH","district":5,"party":"Republican","url":"http://latta.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OH","district":5,"party":"Republican","url":"http://latta.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":5,"party":"Republican","url":"http://latta.house.gov/","address":"1323 Longworth HOB; Washington DC 20515-3505","phone":"202-225-6405","fax":"202-225-1985","contact_form":"http://latta.house.gov/contactform_zipcheck.shtml","office":"1323 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":5,"url":"http://latta.house.gov","address":"2448 Rayburn HOB; Washington DC 20515-3505","phone":"202-225-6405","fax":"202-225-1985","contact_form":"https://latta.house.gov/contact/contactform.htm","office":"2448 Rayburn House Office Building","rss_url":"http://latta.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":5,"url":"http://latta.house.gov","address":"2448 Rayburn HOB; Washington DC 20515-3505","phone":"202-225-6405","fax":"202-225-1985","contact_form":"https://latta.house.gov/contact/contactform.htm","office":"2448 Rayburn House Office Building","rss_url":"http://latta.house.gov/news/rss.aspx"}],"family":[{"name":"Delbert L. Latta ","relation":"son"}]},{"id":{"bioguide":"L000174","thomas":"01383","lis":"S057","govtrack":300065,"opensecrets":"N00009918","votesmart":53353,"icpsr":14307,"fec":["S4VT00017"],"cspan":1552,"wikipedia":"Patrick Leahy","ballotpedia":"Patrick Leahy","maplight":4583,"washington_post":"gIQAQnnb9O"},"name":{"first":"Patrick","middle":"J.","last":"Leahy","official_full":"Patrick J. Leahy"},"bio":{"birthday":"1940-03-31","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"sen","start":"1975-01-14","end":"1980-12-16","state":"VT","class":3,"party":"Democrat"},{"type":"sen","start":"1981-01-05","end":"1986-10-18","state":"VT","class":3,"party":"Democrat"},{"type":"sen","start":"1987-01-06","end":"1992-10-09","state":"VT","class":3,"party":"Democrat"},{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"VT","class":3,"party":"Democrat"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"VT","class":3,"party":"Democrat","url":"http://leahy.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"VT","class":3,"party":"Democrat","url":"http://leahy.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"VT","class":3,"party":"Democrat","url":"http://www.leahy.senate.gov","address":"437 Russell Senate Office Building Washington DC 20510","phone":"202-224-4242","fax":"202-224-3479","contact_form":"https://www.leahy.senate.gov/contact/","office":"437 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.leahy.senate.gov/rss/feeds/press/"}]},{"id":{"bioguide":"L000551","thomas":"01501","govtrack":400237,"opensecrets":"N00008046","votesmart":8315,"fec":["H8CA09060"],"cspan":54579,"house_history":17282,"wikipedia":"Barbara Lee","maplight":4334,"washington_post":"gIQArxTS9O","icpsr":29778},"name":{"first":"Barbara","last":"Lee","official_full":"Barbara Lee"},"bio":{"birthday":"1946-07-16","gender":"F","religion":"Baptist"},"terms":[{"type":"rep","start":"1998-04-07","end":"1998-12-19","state":"CA","district":9,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":9,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":9,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":9,"party":"Democrat","url":"http://www.house.gov/lee"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":9,"party":"Democrat","url":"http://www.house.gov/lee"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":9,"party":"Democrat","url":"http://lee.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":9,"party":"Democrat","url":"http://lee.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":9,"party":"Democrat","url":"http://lee.house.gov","address":"2267 Rayburn HOB; Washington DC 20515-0509","phone":"202-225-2661","fax":"202-225-9817","contact_form":"http://lee.house.gov/?sectionid=44&sectiontree=18,44","office":"2267 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":13,"url":"http://lee.house.gov","address":"2267 Rayburn HOB; Washington DC 20515-0513","phone":"202-225-2661","fax":"202-225-9817","contact_form":"http://lee.house.gov/contact-the-office/email-me","office":"2267 Rayburn House Office Building","rss_url":"http://lee.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":13,"url":"http://lee.house.gov","address":"2267 Rayburn HOB; Washington DC 20515-0513","phone":"202-225-2661","fax":"202-225-9817","contact_form":"http://lee.house.gov/contact-the-office/email-me","office":"2267 Rayburn House Office Building","rss_url":"http://lee.house.gov/rss.xml"}]},{"id":{"bioguide":"L000577","thomas":"02080","lis":"S346","govtrack":412495,"opensecrets":"N00031696","votesmart":66395,"fec":["S0UT00165"],"cspan":9267977,"wikipedia":"Mike Lee (U.S. politician)","ballotpedia":"Mike Lee","maplight":7400,"washington_post":"gIQAwTVWKP","icpsr":41110},"name":{"first":"Mike","last":"Lee","official_full":"Mike Lee"},"bio":{"birthday":"1971-06-04","gender":"M"},"terms":[{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"UT","class":3,"party":"Republican","url":"http://www.lee.senate.gov","address":"316 Hart Senate Office Building Washington DC 20510","phone":"202-224-5444","contact_form":"http://www.lee.senate.gov/public/index.cfm/contact","office":"316 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.lee.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"L000263","thomas":"00683","govtrack":400238,"opensecrets":"N00003950","votesmart":26918,"icpsr":15033,"fec":["H2MI17023"],"cspan":251,"house_history":16921,"wikipedia":"Sander M. Levin","ballotpedia":"Sander Levin","maplight":4336,"washington_post":"gIQAv24SAP"},"name":{"first":"Sander","middle":"M.","last":"Levin","official_full":"Sander M. Levin"},"bio":{"birthday":"1931-09-06","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"MI","district":17,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"MI","district":17,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"MI","district":17,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"MI","district":17,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"MI","district":17,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"MI","district":12,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MI","district":12,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MI","district":12,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MI","district":12,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MI","district":12,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MI","district":12,"party":"Democrat","url":"http://www.house.gov/levin"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MI","district":12,"party":"Democrat","url":"http://www.house.gov/levin"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MI","district":12,"party":"Democrat","url":"http://www.house.gov/levin"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MI","district":12,"party":"Democrat","url":"http://www.house.gov/levin"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":12,"party":"Democrat","url":"http://www.house.gov/levin","address":"1236 Longworth HOB; Washington DC 20515-2212","phone":"202-225-4961","fax":"202-226-1033","contact_form":"http://www.house.gov/levin/levin_contact_email.shtml","office":"1236 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Democrat","district":9,"url":"http://levin.house.gov","address":"1236 Longworth HOB; Washington DC 20515-2209","phone":"202-225-4961","fax":"202-226-1033","contact_form":"https://levin.house.gov/contact-me/email-me","office":"1236 Longworth House Office Building","rss_url":"http://levin.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Democrat","district":9,"url":"http://levin.house.gov","address":"1236 Longworth HOB; Washington DC 20515-2209","phone":"202-225-4961","fax":"202-226-1033","contact_form":"https://levin.house.gov/contact-me/email-me","office":"1236 Longworth House Office Building","rss_url":"http://levin.house.gov/rss.xml"}],"family":[{"name":"Carl Levin","relation":"brother"}]},{"id":{"bioguide":"L000287","thomas":"00688","govtrack":400240,"opensecrets":"N00002577","votesmart":26820,"icpsr":15431,"fec":["H6GA05217"],"cspan":2528,"wikipedia":"John Lewis (U.S. politician)","house_history":16948,"ballotpedia":"John Lewis (Georgia)","maplight":4338,"washington_post":"gIQAaw4SAP"},"name":{"first":"John","middle":"R.","last":"Lewis","official_full":"John Lewis"},"bio":{"birthday":"1940-02-21","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"GA","district":5,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"GA","district":5,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"GA","district":5,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"GA","district":5,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"GA","district":5,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"GA","district":5,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"GA","district":5,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"GA","district":5,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"GA","district":5,"party":"Democrat","url":"http://www.house.gov/johnlewis"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"GA","district":5,"party":"Democrat","url":"http://www.house.gov/johnlewis"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"GA","district":5,"party":"Democrat","url":"http://www.house.gov/johnlewis"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"GA","district":5,"party":"Democrat","url":"http://www.house.gov/johnlewis"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":5,"party":"Democrat","url":"http://www.house.gov/johnlewis","address":"343 Cannon HOB; Washington DC 20515-1005","phone":"202-225-3801","fax":"202-225-0351","contact_form":"http://www.house.gov/formjohnlewis/contact.html","office":"343 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Democrat","district":5,"url":"http://johnlewis.house.gov","address":"343 Cannon HOB; Washington DC 20515-1005","phone":"202-225-3801","fax":"202-225-0351","contact_form":"https://johnlewis.house.gov/contact-me/email-me-zip","office":"343 Cannon House Office Building","rss_url":"http://johnlewis.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Democrat","district":5,"url":"http://johnlewis.house.gov","address":"343 Cannon HOB; Washington DC 20515-1005","phone":"202-225-3801","fax":"202-225-0351","contact_form":"https://johnlewis.house.gov/contact-me/email-me-zip","office":"343 Cannon House Office Building","rss_url":"http://johnlewis.house.gov/rss.xml"}]},{"id":{"bioguide":"L000563","thomas":"01781","govtrack":400630,"opensecrets":"N00027239","votesmart":33692,"fec":["H4IL03077"],"cspan":1013046,"wikipedia":"Dan Lipinski","house_history":17303,"ballotpedia":"Daniel Lipinski","maplight":4633,"washington_post":"gIQAJLoPMP","icpsr":20508},"name":{"first":"Daniel","middle":"William","last":"Lipinski","official_full":"Daniel Lipinski"},"bio":{"birthday":"1966-07-15","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IL","district":3,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IL","district":3,"party":"Democrat","url":"http://www.lipinski.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":3,"party":"Democrat","url":"http://www.lipinski.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":3,"party":"Democrat","url":"http://www.lipinski.house.gov","address":"1717 Longworth HOB; Washington DC 20515-1303","phone":"202-225-5701","fax":"202-225-1012","contact_form":"http://www.house.gov/formlipinski/zipauth.html","office":"1717 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":3,"url":"http://www.lipinski.house.gov","address":"1717 Longworth HOB; Washington DC 20515-1303","phone":"202-225-5701","fax":"202-225-1012","contact_form":"https://lipinskiforms.house.gov/contact-form","office":"1717 Longworth House Office Building","rss_url":"http://www.lipinski.house.gov/common/rss//index.cfm?rss=25"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":3,"url":"http://www.lipinski.house.gov","address":"2346 Rayburn HOB; Washington DC 20515-1303","phone":"202-225-5701","fax":"202-225-1012","contact_form":"https://lipinskiforms.house.gov/contact-form","office":"2346 Rayburn House Office Building","rss_url":"http://www.lipinski.house.gov/common/rss//index.cfm?rss=25"}],"family":[{"name":"William Oliver Lipinski","relation":"son"}]},{"id":{"bioguide":"L000554","thomas":"00699","govtrack":400244,"opensecrets":"N00000851","votesmart":21890,"fec":["H2NJ02037"],"cspan":30867,"wikipedia":"Frank LoBiondo","house_history":17288,"ballotpedia":"Frank LoBiondo","maplight":4341,"washington_post":"gIQA0WNqAP","icpsr":29539},"name":{"first":"Frank","middle":"A.","last":"LoBiondo","official_full":"Frank A. LoBiondo"},"bio":{"birthday":"1946-05-12","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NJ","district":2,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NJ","district":2,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NJ","district":2,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NJ","district":2,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NJ","district":2,"party":"Republican","url":"http://www.house.gov/lobiondo"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NJ","district":2,"party":"Republican","url":"http://www.house.gov/lobiondo"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NJ","district":2,"party":"Republican","url":"http://www.house.gov/lobiondo"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NJ","district":2,"party":"Republican","url":"http://www.house.gov/lobiondo"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NJ","district":2,"party":"Republican","url":"http://www.house.gov/lobiondo","address":"2427 Rayburn HOB; Washington DC 20515-3002","phone":"202-225-6572","fax":"202-225-3318","contact_form":"http://www.house.gov/lobiondo/IMA/issue.htm","office":"2427 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Republican","district":2,"url":"http://lobiondo.house.gov","address":"2427 Rayburn HOB; Washington DC 20515-3002","phone":"202-225-6572","fax":"202-225-3318","contact_form":"https://lobiondo.house.gov/contact-me/email-me","office":"2427 Rayburn House Office Building","rss_url":"http://lobiondo.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Republican","district":2,"url":"http://lobiondo.house.gov","address":"2427 Rayburn HOB; Washington DC 20515-3002","phone":"202-225-6572","fax":"202-225-3318","contact_form":"https://lobiondo.house.gov/contact-me/email-me","office":"2427 Rayburn House Office Building","rss_url":"http://lobiondo.house.gov/rss.xml"}]},{"id":{"bioguide":"L000565","thomas":"01846","govtrack":412209,"opensecrets":"N00027741","votesmart":68964,"fec":["H6IA02146"],"cspan":1022883,"wikipedia":"David Loebsack","house_history":17307,"ballotpedia":"Dave Loebsack","maplight":4691,"washington_post":"gIQAzr4SAP","icpsr":20720},"name":{"first":"David","last":"Loebsack","official_full":"David Loebsack"},"bio":{"birthday":"1952-12-23","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IA","district":2,"party":"Democrat","url":"http://loebsack.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IA","district":2,"party":"Democrat","url":"http://loebsack.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IA","district":2,"party":"Democrat","url":"http://loebsack.house.gov","address":"1527 Longworth HOB; Washington DC 20515-1502","phone":"202-225-6576","fax":"202-226-0757","contact_form":"http://loebsack.house.gov/contactform/","office":"1527 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IA","party":"Democrat","district":2,"url":"http://loebsack.house.gov","address":"1527 Longworth HOB; Washington DC 20515-1502","phone":"202-225-6576","fax":"202-226-0757","contact_form":"https://loebsack.house.gov/forms/writeyourrep/","office":"1527 Longworth House Office Building","rss_url":"http://loebsack.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IA","party":"Democrat","district":2,"url":"http://loebsack.house.gov","address":"1527 Longworth HOB; Washington DC 20515-1502","phone":"202-225-6576","fax":"202-226-0757","contact_form":"https://loebsack.house.gov/forms/writeyourrep/","office":"1527 Longworth House Office Building","rss_url":"http://loebsack.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"L000397","thomas":"00701","govtrack":400245,"opensecrets":"N00007479","votesmart":21899,"fec":["H4CA16049"],"cspan":36520,"wikipedia":"Zoe Lofgren","house_history":17087,"ballotpedia":"Zoe Lofgren","maplight":4342,"washington_post":"gIQAi3CLAP","icpsr":29504},"name":{"first":"Zoe","last":"Lofgren","official_full":"Zoe Lofgren"},"bio":{"birthday":"1947-12-21","gender":"F","religion":"Lutheran"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":16,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":16,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":16,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":16,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":16,"party":"Democrat","url":"http://zoelofgren.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":16,"party":"Democrat","url":"http://zoelofgren.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":16,"party":"Democrat","url":"http://www.house.gov/lofgren"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":16,"party":"Democrat","url":"http://www.house.gov/lofgren"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":16,"party":"Democrat","url":"http://www.house.gov/lofgren","address":"1401 Longworth HOB; Washington DC 20515-0516","phone":"202-225-3072","fax":"202-225-3336","contact_form":"http://lofgren.house.gov/emailform.shtml","office":"1401 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":19,"url":"http://lofgren.house.gov","address":"1401 Longworth HOB; Washington DC 20515-0519","phone":"202-225-3072","fax":"202-225-3336","contact_form":"http://lofgren.house.gov/contact/","office":"1401 Longworth House Office Building","rss_url":"http://lofgren.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":19,"url":"http://lofgren.house.gov","address":"1401 Longworth HOB; Washington DC 20515-0519","phone":"202-225-3072","fax":"202-225-3336","contact_form":"http://lofgren.house.gov/contact/","office":"1401 Longworth House Office Building","rss_url":"http://lofgren.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"L000576","thomas":"02033","govtrack":412445,"opensecrets":"N00030676","votesmart":123401,"fec":["H0MO07113"],"cspan":61880,"wikipedia":"Billy Long","house_history":17328,"maplight":5839,"washington_post":"gIQA4szZKP","icpsr":21150},"name":{"first":"Billy","last":"Long","official_full":"Billy Long"},"bio":{"birthday":"1955-08-11","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MO","district":7,"party":"Republican","url":"http://long.house.gov/","address":"1541 Longworth HOB; Washington DC 20515-2507","phone":"202-225-6536","fax":"202-225-5604","office":"1541 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MO","party":"Republican","district":7,"url":"http://long.house.gov","address":"1541 Longworth HOB; Washington DC 20515-2507","phone":"202-225-6536","fax":"202-225-5604","office":"1541 Longworth House Office Building","rss_url":"http://long.house.gov/common/rss//index.cfm?rss=49","contact_form":"https://longforms.house.gov/email-billy"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MO","party":"Republican","district":7,"url":"http://long.house.gov","address":"1541 Longworth HOB; Washington DC 20515-2507","phone":"202-225-6536","fax":"202-225-5604","office":"1541 Longworth House Office Building","rss_url":"http://long.house.gov/common/rss//index.cfm?rss=49","contact_form":"https://longforms.house.gov/email-billy"}]},{"id":{"bioguide":"L000480","thomas":"00709","govtrack":400246,"opensecrets":"N00001024","votesmart":26982,"icpsr":15612,"fec":["H8NY20056"],"cspan":6110,"wikipedia":"Nita Lowey","house_history":17192,"ballotpedia":"Nita Lowey","maplight":4343,"washington_post":"gIQAWtY09O"},"name":{"first":"Nita","middle":"M.","last":"Lowey","official_full":"Nita M. Lowey"},"bio":{"birthday":"1937-07-05","gender":"F","religion":"Jewish"},"terms":[{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NY","district":20,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NY","district":20,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":18,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":18,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":18,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":18,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":18,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":18,"party":"Democrat","url":"http://www.house.gov/lowey"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":18,"party":"Democrat","url":"http://www.house.gov/lowey"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":18,"party":"Democrat","url":"http://www.house.gov/lowey"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":18,"party":"Democrat","url":"http://www.house.gov/lowey"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":18,"party":"Democrat","url":"http://www.house.gov/lowey","address":"2365 Rayburn HOB; Washington DC 20515-3218","phone":"202-225-6506","fax":"202-225-0546","contact_form":"http://lowey.house.gov/?sectionid=56&sectiontree=56","office":"2365 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":17,"url":"http://lowey.house.gov","address":"2365 Rayburn HOB; Washington DC 20515-3217","phone":"202-225-6506","fax":"202-225-0546","contact_form":"https://lowey.house.gov/contact-form/","office":"2365 Rayburn House Office Building","rss_url":"http://www.house.gov/common/rss/?rss=18"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":17,"url":"http://lowey.house.gov","address":"2365 Rayburn HOB; Washington DC 20515-3217","phone":"202-225-6506","fax":"202-225-0546","contact_form":"https://lowey.house.gov/contact-form/","office":"2365 Rayburn House Office Building","rss_url":"http://www.house.gov/common/rss/?rss=18"}]},{"id":{"bioguide":"L000491","thomas":"00711","govtrack":400247,"opensecrets":"N00005559","votesmart":27032,"fec":["H4OK06056"],"cspan":35692,"wikipedia":"Frank Lucas (Oklahoma)","house_history":17205,"ballotpedia":"Frank D. Lucas","maplight":4344,"washington_post":"gIQAtwMLAP","icpsr":29393},"name":{"first":"Frank","middle":"D.","last":"Lucas","official_full":"Frank D. Lucas"},"bio":{"birthday":"1960-01-06","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1993-05-10","end":"1994-12-01","state":"OK","district":6,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"OK","district":6,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"OK","district":6,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OK","district":6,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OK","district":6,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OK","district":3,"party":"Republican","url":"http://www.house.gov/lucas"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OK","district":3,"party":"Republican","url":"http://www.house.gov/lucas"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OK","district":3,"party":"Republican","url":"http://www.house.gov/lucas"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OK","district":3,"party":"Republican","url":"http://www.house.gov/lucas"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OK","district":3,"party":"Republican","url":"http://www.house.gov/lucas","address":"2311 Rayburn HOB; Washington DC 20515-3603","phone":"202-225-5565","fax":"202-225-8698","contact_form":"http://www.house.gov/lucas/zipauth.htm","office":"2311 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OK","party":"Republican","district":3,"url":"http://lucas.house.gov","address":"2311 Rayburn HOB; Washington DC 20515-3603","phone":"202-225-5565","fax":"202-225-8698","contact_form":"https://lucas.house.gov/contact-me/email-me","office":"2311 Rayburn House Office Building","rss_url":"http://lucas.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OK","party":"Republican","district":3,"url":"http://lucas.house.gov","address":"2405 Rayburn HOB; Washington DC 20515-3603","phone":"202-225-5565","fax":"202-225-8698","contact_form":"https://lucas.house.gov/contact-me/email-me","office":"2405 Rayburn House Office Building","rss_url":"http://lucas.house.gov/rss.xml"}]},{"id":{"bioguide":"L000569","thomas":"01931","govtrack":412292,"opensecrets":"N00030026","votesmart":20400,"fec":["H8MO09153"],"cspan":1031348,"wikipedia":"Blaine Luetkemeyer","house_history":17315,"maplight":7077,"washington_post":"gIQAn2WgAP","icpsr":20926},"name":{"first":"Blaine","last":"Luetkemeyer","official_full":"Blaine Luetkemeyer"},"bio":{"gender":"M","birthday":"1952-05-07"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MO","district":9,"party":"Republican","url":"http://luetkemeyer.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MO","district":9,"party":"Republican","url":"http://luetkemeyer.house.gov","address":"1740 Longworth HOB; Washington DC 20515-2509","phone":"202-225-2956","fax":"202-225-5712","contact_form":"https://forms.house.gov/luetkemeyer/contact-form.shtml","office":"1740 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MO","party":"Republican","district":3,"url":"http://luetkemeyer.house.gov","address":"2440 Rayburn HOB; Washington DC 20515-2503","phone":"202-225-2956","fax":"202-225-5712","contact_form":"https://luetkemeyer.house.gov/forms/writeyourrep/","office":"2440 Rayburn House Office Building","rss_url":"http://luetkemeyer.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MO","party":"Republican","district":3,"url":"http://luetkemeyer.house.gov","address":"2440 Rayburn HOB; Washington DC 20515-2503","phone":"202-225-2956","fax":"202-225-5712","contact_form":"https://luetkemeyer.house.gov/forms/writeyourrep/","office":"2440 Rayburn House Office Building","rss_url":"http://luetkemeyer.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"L000570","thomas":"01939","govtrack":412293,"opensecrets":"N00029562","votesmart":102842,"fec":["H8NM03196"],"cspan":1031351,"wikipedia":"Ben R. Luján","house_history":17317,"maplight":7103,"washington_post":"gIQAHFzTAP","icpsr":20932},"name":{"first":"Ben","middle":"Ray","last":"Luján","official_full":"Ben Ray Luján"},"bio":{"gender":"M","birthday":"1972-06-07"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NM","district":3,"party":"Democrat","url":"http://lujan.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NM","district":3,"party":"Democrat","url":"http://lujan.house.gov","address":"330 Cannon HOB; Washington DC 20515-3103","phone":"202-225-6190","fax":"202-226-1528","contact_form":"https://forms.house.gov/lujan/contact-form.shtml","office":"330 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NM","party":"Democrat","district":3,"url":"http://lujan.house.gov","address":"2446 Rayburn HOB; Washington DC 20515-3103","phone":"202-225-6190","fax":"202-226-1528","contact_form":"https://forms.house.gov/lujan/contact-form.shtml","office":"2446 Rayburn House Office Building","rss_url":"http://lujan.house.gov/index.php?option=com_bca-rss-syndicator&feed_id=1"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NM","party":"Democrat","district":3,"url":"http://lujan.house.gov","address":"2446 Rayburn HOB; Washington DC 20515-3103","phone":"202-225-6190","fax":"202-226-1528","contact_form":"https://forms.house.gov/lujan/contact-form.shtml","office":"2446 Rayburn House Office Building","rss_url":"http://lujan.house.gov/index.php?option=com_bca-rss-syndicator&feed_id=1"}]},{"id":{"bioguide":"L000571","thomas":"01960","govtrack":412294,"opensecrets":"N00029788","votesmart":15546,"fec":["H8WY00148"],"cspan":1031365,"wikipedia":"Cynthia Lummis","house_history":17319,"ballotpedia":"Cynthia Lummis","maplight":7191,"washington_post":"gIQAWmVSAP","icpsr":20953},"name":{"first":"Cynthia","middle":"M.","last":"Lummis","official_full":"Cynthia M. Lummis"},"bio":{"gender":"F","birthday":"1954-09-10"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WY","district":0,"party":"Republican","url":"http://lummis.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WY","district":0,"party":"Republican","url":"http://lummis.house.gov","address":"113 Cannon HOB; Washington DC 20515-5001","phone":"202-225-2311","fax":"202-225-3057","contact_form":"https://forms.house.gov/lummis/contact-form.shtml","office":"113 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WY","party":"Republican","district":0,"url":"http://lummis.house.gov","address":"113 Cannon HOB; Washington DC 20515-5000","phone":"202-225-2311","fax":"202-225-3057","contact_form":"http://lummis.house.gov/contact/","office":"113 Cannon House Office Building","rss_url":"http://lummis.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WY","party":"Republican","district":0,"url":"http://lummis.house.gov","address":"2433 Rayburn HOB; Washington DC 20515-5000","phone":"202-225-2311","fax":"202-225-3057","contact_form":"http://lummis.house.gov/contact/","office":"2433 Rayburn House Office Building","rss_url":"http://lummis.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"L000562","thomas":"01686","govtrack":400249,"opensecrets":"N00013855","votesmart":4844,"fec":["H2MA09072","S0MA00083"],"cspan":1000222,"wikipedia":"Stephen Lynch (politician)","house_history":17301,"ballotpedia":"Stephen Lynch","maplight":4345,"washington_post":"gIQAMEoVBP","icpsr":20119},"name":{"first":"Stephen","middle":"F.","last":"Lynch","official_full":"Stephen F. Lynch"},"bio":{"birthday":"1955-03-31","gender":"M"},"terms":[{"type":"rep","start":"2001-10-23","end":"2002-11-22","state":"MA","district":9,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MA","district":9,"party":"Democrat","url":"http://www.house.gov/lynch"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MA","district":9,"party":"Democrat","url":"http://www.house.gov/lynch"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MA","district":9,"party":"Democrat","url":"http://www.house.gov/lynch"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MA","district":9,"party":"Democrat","url":"http://www.house.gov/lynch"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MA","district":9,"party":"Democrat","url":"http://www.house.gov/lynch","address":"2348 Rayburn HOB; Washington DC 20515-2109","phone":"202-225-8273","fax":"202-225-3984","contact_form":"http://www.house.gov/writerep","office":"2348 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MA","party":"Democrat","district":8,"url":"http://lynch.house.gov","address":"2133 Rayburn HOB; Washington DC 20515-2108","phone":"202-225-8273","fax":"202-225-3984","contact_form":"https://lynch.house.gov/contact-me/email-me","office":"2133 Rayburn House Office Building","rss_url":"http://lynch.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","party":"Democrat","district":8,"url":"http://lynch.house.gov","address":"2369 Rayburn HOB; Washington DC 20515-2108","phone":"202-225-8273","fax":"202-225-3984","contact_form":"https://lynch.house.gov/contact-me/email-me","office":"2369 Rayburn House Office Building","rss_url":"http://lynch.house.gov/rss.xml"}]},{"id":{"bioguide":"M000087","thomas":"00729","govtrack":400251,"opensecrets":"N00000078","votesmart":26978,"fec":["H2NY14037"],"cspan":26162,"wikipedia":"Carolyn Maloney","house_history":17437,"ballotpedia":"Carolyn B. Maloney","maplight":4346,"washington_post":"gIQAcoKHAP","icpsr":29379},"name":{"first":"Carolyn","middle":"B.","last":"Maloney","official_full":"Carolyn B. Maloney"},"bio":{"birthday":"1946-02-19","gender":"F","religion":"Presbyterian"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":14,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":14,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":14,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":14,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":14,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":14,"party":"Democrat","url":"http://www.house.gov/maloney"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":14,"party":"Democrat","url":"http://www.house.gov/maloney"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":14,"party":"Democrat","url":"http://maloney.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":14,"party":"Democrat","url":"http://maloney.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":14,"party":"Democrat","url":"http://maloney.house.gov","address":"2332 Rayburn HOB; Washington DC 20515-3214","phone":"202-225-7944","fax":"202-225-4709","contact_form":"http://maloney.house.gov/index.php?option=com_email_form&Itemid=73","office":"2332 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":12,"url":"http://maloney.house.gov","address":"2308 Rayburn HOB; Washington DC 20515-3212","phone":"202-225-7944","fax":"202-225-4709","contact_form":"https://maloney.house.gov/contact-me/email-me","office":"2308 Rayburn House Office Building","rss_url":"http://maloney.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":12,"url":"http://maloney.house.gov","address":"2308 Rayburn HOB; Washington DC 20515-3212","phone":"202-225-7944","fax":"202-225-4709","contact_form":"https://maloney.house.gov/contact-me/email-me","office":"2308 Rayburn House Office Building","rss_url":"http://maloney.house.gov/rss.xml"}]},{"id":{"bioguide":"M001158","thomas":"01806","govtrack":400656,"opensecrets":"N00026710","votesmart":5549,"fec":["H4TX24094"],"cspan":1013059,"wikipedia":"Kenny Marchant","house_history":18788,"maplight":4658,"washington_post":"gIQAZ91QKP","icpsr":20532},"name":{"first":"Kenny","middle":"Ewell","last":"Marchant","official_full":"Kenny Marchant"},"bio":{"birthday":"1951-02-23","gender":"M","religion":"Nazarene"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":24,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":24,"party":"Republican","url":"http://www.house.gov/marchant"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":24,"party":"Republican","url":"http://www.house.gov/marchant"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":24,"party":"Republican","url":"http://www.house.gov/marchant","address":"1110 Longworth HOB; Washington DC 20515-4324","phone":"202-225-6605","fax":"202-225-0074","contact_form":"http://marchant.house.gov/emailkenny.shtml","office":"1110 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":24,"url":"http://marchant.house.gov","address":"1110 Longworth HOB; Washington DC 20515-4324","phone":"202-225-6605","fax":"202-225-0074","contact_form":"https://marchant.house.gov/contact/contactform.htm","office":"1110 Longworth House Office Building","rss_url":"http://marchant.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":24,"url":"http://marchant.house.gov","address":"2313 Rayburn HOB; Washington DC 20515-4324","phone":"202-225-6605","fax":"202-225-0074","contact_form":"https://marchant.house.gov/contact/contactform.htm","office":"2313 Rayburn House Office Building","rss_url":"http://marchant.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"M001179","thomas":"02053","govtrack":412468,"opensecrets":"N00031777","votesmart":119478,"fec":["H0PA10078"],"cspan":95129,"wikipedia":"Tom Marino","house_history":18828,"ballotpedia":"Tom Marino","maplight":6012,"washington_post":"gIQAjRiXKP","icpsr":21170},"name":{"first":"Tom","last":"Marino","official_full":"Tom Marino"},"bio":{"birthday":"1952-08-15","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":10,"party":"Republican","url":"http://marino.house.gov/","address":"410 Cannon HOB; Washington DC 20515-3810","phone":"202-225-3731","fax":"202-225-9594","office":"410 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":10,"url":"http://marino.house.gov","address":"410 Cannon HOB; Washington DC 20515-3810","phone":"202-225-3731","fax":"202-225-9594","office":"410 Cannon House Office Building","rss_url":"http://marino.house.gov/rss.xml","contact_form":"https://marino.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":10,"url":"http://marino.house.gov","address":"410 Cannon HOB; Washington DC 20515-3810","phone":"202-225-3731","fax":"202-225-9594","office":"410 Cannon House Office Building","rss_url":"http://marino.house.gov/rss.xml","contact_form":"https://marino.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"M000133","thomas":"00735","lis":"S369","govtrack":400253,"opensecrets":"N00000270","votesmart":26900,"icpsr":14435,"fec":["H6MA07101","S4MA00028"],"cspan":260,"wikipedia":"Ed Markey","house_history":17493,"ballotpedia":"Ed Markey","maplight":4348,"washington_post":"gIQAdQUz9O"},"name":{"first":"Edward","middle":"J.","last":"Markey","nickname":"Ed","official_full":"Edward J. Markey"},"bio":{"birthday":"1946-07-11","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1975-01-14","end":"1976-10-01","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1977-01-04","end":"1978-10-15","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MA","district":7,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MA","district":7,"party":"Democrat","url":"http://www.house.gov/markey"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MA","district":7,"party":"Democrat","url":"http://www.house.gov/markey"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MA","district":7,"party":"Democrat","url":"http://www.house.gov/markey"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MA","district":7,"party":"Democrat","url":"http://www.house.gov/markey"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MA","district":7,"party":"Democrat","url":"http://www.house.gov/markey","address":"2108 Rayburn HOB; Washington DC 20515-2107","phone":"202-225-2836","fax":"202-226-0092","contact_form":"http://markey.house.gov/index.php?option=com_email_form&Itemid=124","office":"2108 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2013-07-15","state":"MA","party":"Democrat","district":5,"url":"http://www.house.gov/markey","address":"2108 Rayburn HOB; Washington DC 20515-2107","phone":"202-225-2836","fax":"202-226-0092","contact_form":"http://markey.house.gov/index.php?option=com_email_form&Itemid=124","office":"2108 Rayburn House Office Building","rss_url":"http://markey.house.gov/rss.xml"},{"type":"sen","start":"2013-07-16","end":"2015-01-03","state":"MA","party":"Democrat","class":2,"state_rank":"junior","url":"http://www.markey.senate.gov","phone":"202-224-2742","office":"218 Russell Senate Office Building","address":"218 Russell Senate Office Building Washington DC 20510","contact_form":"http://www.markey.senate.gov/contact"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"MA","party":"Democrat","class":2,"state_rank":"junior","url":"http://www.markey.senate.gov","phone":"202-224-2742","office":"218 Russell Senate Office Building","address":"218 Russell Senate Office Building Washington DC 20510","contact_form":"http://www.markey.senate.gov/contact"}]},{"id":{"bioguide":"M001163","thomas":"01814","govtrack":400663,"opensecrets":"N00027459","votesmart":28593,"fec":["H6CA05195"],"cspan":26602,"wikipedia":"Doris Matsui","house_history":18797,"maplight":4665,"washington_post":"gIQAK2naKP","icpsr":20538},"name":{"first":"Doris","middle":"O.","last":"Matsui","official_full":"Doris O. Matsui"},"bio":{"birthday":"1944-09-25","gender":"F"},"terms":[{"type":"rep","start":"2005-03-10","end":"2006-12-09","state":"CA","district":5,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":5,"party":"Democrat","url":"http://www.house.gov/matsui"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":5,"party":"Democrat","url":"http://www.house.gov/matsui"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":5,"party":"Democrat","url":"http://www.house.gov/matsui","address":"222 Cannon HOB; Washington DC 20515-0505","phone":"202-225-7163","fax":"202-225-0566","contact_form":"https://forms.house.gov/matsui/webforms/issue_subscribe.htm","office":"222 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":6,"url":"http://matsui.house.gov","address":"2434 Rayburn HOB; Washington DC 20515-0506","phone":"202-225-7163","fax":"202-225-0566","contact_form":"https://matsui.house.gov/email-representative-matsui","office":"2434 Rayburn House Office Building","rss_url":"http://matsui.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":6,"url":"http://matsui.house.gov","address":"2311 Rayburn HOB; Washington DC 20515-0506","phone":"202-225-7163","fax":"202-225-0566","contact_form":"https://matsui.house.gov/email-representative-matsui","office":"2311 Rayburn House Office Building","rss_url":"http://matsui.house.gov/index.php?format=feed&type=rss"}],"family":[{"name":"Robert Matsui","relation":"wife"}]},{"id":{"bioguide":"M000303","thomas":"00754","lis":"S197","govtrack":300071,"opensecrets":"N00006424","votesmart":53270,"icpsr":15039,"fec":["S6AZ00019","P80002801"],"cspan":7476,"wikipedia":"John McCain","house_history":17696,"ballotpedia":"John McCain","maplight":4589,"washington_post":"gIQAXQHr9O"},"name":{"first":"John","middle":"S.","last":"McCain","official_full":"John McCain"},"bio":{"birthday":"1936-08-29","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"AZ","district":1,"party":"Republican"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"AZ","district":1,"party":"Republican"},{"type":"sen","start":"1987-01-06","end":"1992-10-09","state":"AZ","class":3,"party":"Republican"},{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"AZ","class":3,"party":"Republican"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"AZ","class":3,"party":"Republican","url":"http://mccain.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"AZ","class":3,"party":"Republican","url":"http://mccain.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"AZ","class":3,"party":"Republican","url":"http://www.mccain.senate.gov","address":"241 Russell Senate Office Building Washington DC 20510","phone":"202-224-2235","fax":"202-228-2862","contact_form":"http://www.mccain.senate.gov/public/index.cfm/contact-form","office":"241 Russell Senate Office Building","state_rank":"senior"}]},{"id":{"bioguide":"M001165","thomas":"01833","govtrack":412190,"opensecrets":"N00028152","votesmart":28918,"fec":["H6CA22125","H2CA23148"],"cspan":85231,"house_history":18801,"wikipedia":"Kevin McCarthy (California politician)","ballotpedia":"Kevin McCarthy (California)","maplight":4674,"washington_post":"gIQA7DQW9O","icpsr":20703},"name":{"first":"Kevin","last":"McCarthy","official_full":"Kevin McCarthy"},"bio":{"birthday":"1965-01-26","gender":"M"},"leadership_roles":[{"title":"Majority Whip","chamber":"house","start":"2011-01-05","end":"2013-01-03"},{"title":"Majority Whip","chamber":"house","start":"2013-01-03","end":"2014-07-31"},{"title":"Majority Leader","chamber":"house","start":"2014-08-01","end":"2015-01-03"},{"title":"Majority Leader","chamber":"house","start":"2015-01-06"}],"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":22,"party":"Republican","url":"http://kevinmccarthy.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":22,"party":"Republican","url":"http://kevinmccarthy.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":22,"party":"Republican","url":"http://kevinmccarthy.house.gov","address":"326 Cannon HOB; Washington DC 20515-0522","phone":"202-225-2915","fax":"202-225-2908","contact_form":"http://kevinmccarthy.house.gov/showpage.asp?ID=69","office":"326 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":23,"url":"http://kevinmccarthy.house.gov","address":"2421 Rayburn HOB; Washington DC 20515-0523","phone":"202-225-2915","fax":"202-225-2908","contact_form":"https://kevinmccarthy.house.gov/contact/email-me","office":"2421 Rayburn House Office Building","rss_url":"http://kevinmccarthy.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":23,"url":"http://kevinmccarthy.house.gov","address":"2421 Rayburn HOB; Washington DC 20515-0523","phone":"202-225-2915","fax":"202-225-2908","contact_form":"https://kevinmccarthy.house.gov/contact/email-me","office":"2421 Rayburn House Office Building","rss_url":"http://kevinmccarthy.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"M001157","thomas":"01804","govtrack":400654,"opensecrets":"N00026460","votesmart":49210,"fec":["H4TX10093"],"cspan":1013056,"wikipedia":"Michael McCaul","house_history":18786,"ballotpedia":"Michael McCaul","maplight":4656,"washington_post":"gIQAwuBTMP","icpsr":20530},"name":{"first":"Michael","middle":"T.","last":"McCaul","official_full":"Michael T. McCaul"},"bio":{"birthday":"1962-01-14","gender":"M","religion":"Unknown"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":10,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":10,"party":"Republican","url":"http://www.house.gov/mccaul"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":10,"party":"Republican","url":"http://www.house.gov/mccaul"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":10,"party":"Republican","url":"http://www.house.gov/mccaul","address":"131 Cannon HOB; Washington DC 20515-4310","phone":"202-225-2401","fax":"202-225-5955","contact_form":"http://www.house.gov/writerep","office":"131 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":10,"url":"http://mccaul.house.gov","address":"131 Cannon HOB; Washington DC 20515-4310","phone":"202-225-2401","fax":"202-225-5955","contact_form":"https://mccaul.house.gov/contact/email-me","office":"131 Cannon House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":10,"url":"http://mccaul.house.gov","address":"131 Cannon HOB; Washington DC 20515-4310","phone":"202-225-2401","fax":"202-225-5955","contact_form":"https://mccaul.house.gov/contact/email-me","office":"131 Cannon House Office Building"}]},{"id":{"bioguide":"M001177","thomas":"01908","govtrack":412295,"opensecrets":"N00006863","votesmart":9715,"fec":["H8CA04152","H6CA21135"],"cspan":30359,"house_history":18824,"wikipedia":"Tom McClintock","maplight":6943,"washington_post":"gIQAr0cdKP","icpsr":20903},"name":{"first":"Tom","last":"McClintock","official_full":"Tom McClintock"},"bio":{"birthday":"1956-07-10","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":4,"party":"Republican","url":"http://mcclintock.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":4,"party":"Republican","url":"http://mcclintock.house.gov","address":"428 Cannon HOB; Washington DC 20515-0504","phone":"202-225-2511","fax":"202-225-5444","contact_form":"https://forms.house.gov/mcclintock/contact-form.shtml","office":"428 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":4,"url":"http://mcclintock.house.gov","address":"434 Cannon HOB; Washington DC 20515-0504","phone":"202-225-2511","fax":"202-225-5444","contact_form":"https://mcclintockforms.house.gov/forms/contact-form.shtml","office":"434 Cannon House Office Building","rss_url":"http://mcclintock.house.gov/atom.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":4,"url":"http://mcclintock.house.gov","address":"2331 Rayburn HOB; Washington DC 20515-0504","phone":"202-225-2511","fax":"202-225-5444","contact_form":"https://mcclintockforms.house.gov/forms/contact-form.shtml","office":"2331 Rayburn House Office Building","rss_url":"http://mcclintock.house.gov/atom.xml"}]},{"id":{"bioguide":"M001143","thomas":"01653","govtrack":400259,"opensecrets":"N00012942","votesmart":3812,"fec":["H0MN04049"],"cspan":86670,"wikipedia":"Betty McCollum","house_history":18758,"ballotpedia":"Betty McCollum","maplight":4353,"washington_post":"gIQAukFTKP","icpsr":20122},"name":{"first":"Betty","middle":"Louise","last":"McCollum","official_full":"Betty McCollum"},"bio":{"birthday":"1954-07-12","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MN","district":4,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MN","district":4,"party":"Democrat","url":"http://www.house.gov/mccollum"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MN","district":4,"party":"Democrat","url":"http://www.house.gov/mccollum"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MN","district":4,"party":"Democrat","url":"http://www.house.gov/mccollum"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MN","district":4,"party":"Democrat","url":"http://www.house.gov/mccollum"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MN","district":4,"party":"Democrat","url":"http://www.house.gov/mccollum","address":"1714 Longworth HOB; Washington DC 20515-2304","phone":"202-225-6631","fax":"202-225-1968","contact_form":"http://www.mccollum.house.gov/index.asp?Type=NONE&SEC={AC61FD79-AD5F-440D-A7F0-555B12349E5B}","office":"1714 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MN","party":"Democrat","district":4,"url":"http://mccollum.house.gov","address":"1714 Longworth HOB; Washington DC 20515-2304","phone":"202-225-6631","fax":"202-225-1968","contact_form":"https://mccollum.house.gov/contact-me/email-me","office":"1714 Longworth House Office Building","rss_url":"http://mccollum.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MN","party":"Democrat","district":4,"url":"http://mccollum.house.gov","address":"2256 Rayburn HOB; Washington DC 20515-2304","phone":"202-225-6631","fax":"202-225-1968","contact_form":"https://mccollum.house.gov/contact-me/email-me","office":"2256 Rayburn House Office Building","rss_url":"http://mccollum.house.gov/rss.xml"}]},{"id":{"bioguide":"M000404","thomas":"00766","govtrack":400262,"opensecrets":"N00009829","votesmart":27128,"icpsr":15613,"fec":["H8WA07132"],"cspan":5761,"wikipedia":"Jim McDermott","house_history":17831,"maplight":4356,"washington_post":"gIQApQvNKP"},"name":{"first":"Jim","middle":"A.","last":"McDermott","official_full":"Jim McDermott"},"bio":{"birthday":"1936-12-28","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"WA","district":7,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"WA","district":7,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"WA","district":7,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"WA","district":7,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"WA","district":7,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"WA","district":7,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"WA","district":7,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"WA","district":7,"party":"Democrat","url":"http://www.house.gov/mcdermott"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WA","district":7,"party":"Democrat","url":"http://www.house.gov/mcdermott"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WA","district":7,"party":"Democrat","url":"http://www.house.gov/mcdermott"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WA","district":7,"party":"Democrat","url":"http://www.house.gov/mcdermott"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WA","district":7,"party":"Democrat","url":"http://www.house.gov/mcdermott","address":"1035 Longworth HOB; Washington DC 20515-4707","phone":"202-225-3106","fax":"202-225-6197","contact_form":"http://www.house.gov/mcdermott/contact.shtml","office":"1035 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Democrat","district":7,"url":"http://mcdermott.house.gov","address":"1035 Longworth HOB; Washington DC 20515-4707","phone":"202-225-3106","fax":"202-225-6197","contact_form":"https://forms.house.gov/mcdermott/webforms/new/contact.shtml","office":"1035 Longworth House Office Building","rss_url":"http://mcdermott.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Democrat","district":7,"url":"http://mcdermott.house.gov","address":"1035 Longworth HOB; Washington DC 20515-4707","phone":"202-225-3106","fax":"202-225-6197","contact_form":"https://forms.house.gov/mcdermott/webforms/new/contact.shtml","office":"1035 Longworth House Office Building","rss_url":"http://mcdermott.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"M000312","thomas":"01504","govtrack":400263,"opensecrets":"N00000179","votesmart":552,"fec":["H4MA03022"],"cspan":45976,"wikipedia":"Jim McGovern (American politician)","house_history":17711,"maplight":4357,"washington_post":"gIQAZRKbKP","icpsr":29729},"name":{"first":"James","middle":"P.","last":"McGovern","nickname":"Jim","official_full":"James P. McGovern"},"bio":{"birthday":"1959-11-20","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MA","district":3,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MA","district":3,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MA","district":3,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MA","district":3,"party":"Democrat","url":"http://www.house.gov/mcgovern"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MA","district":3,"party":"Democrat","url":"http://www.house.gov/mcgovern"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MA","district":3,"party":"Democrat","url":"http://www.house.gov/mcgovern"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MA","district":3,"party":"Democrat","url":"http://www.house.gov/mcgovern"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MA","district":3,"party":"Democrat","url":"http://www.house.gov/mcgovern","address":"438 Cannon HOB; Washington DC 20515-2103","phone":"202-225-6101","fax":"202-225-5759","contact_form":"http://www.house.gov/writerep","office":"438 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MA","party":"Democrat","district":2,"url":"http://mcgovern.house.gov","address":"438 Cannon HOB; Washington DC 20515-2102","phone":"202-225-6101","fax":"202-225-5759","contact_form":"https://mcgovern.house.gov/contact/email-me","office":"438 Cannon House Office Building","rss_url":"http://mcgovern.house.gov/common/rss/?rss=15"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","party":"Democrat","district":2,"url":"http://mcgovern.house.gov","address":"438 Cannon HOB; Washington DC 20515-2102","phone":"202-225-6101","fax":"202-225-5759","contact_form":"https://mcgovern.house.gov/contact/email-me","office":"438 Cannon House Office Building","rss_url":"http://mcgovern.house.gov/common/rss/?rss=15"}]},{"id":{"bioguide":"M001156","thomas":"01792","govtrack":400644,"opensecrets":"N00026627","votesmart":21031,"fec":["H4NC10047"],"cspan":1007062,"wikipedia":"Patrick McHenry","house_history":18784,"ballotpedia":"Patrick T. McHenry","maplight":4647,"washington_post":"gIQA70nx9O","icpsr":20522},"name":{"first":"Patrick","middle":"T.","last":"McHenry","official_full":"Patrick T. McHenry"},"bio":{"birthday":"1975-10-22","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NC","district":10,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NC","district":10,"party":"Republican","url":"http://www.house.gov/mchenry"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NC","district":10,"party":"Republican","url":"http://www.house.gov/mchenry"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NC","district":10,"party":"Republican","url":"http://www.house.gov/mchenry","address":"224 Cannon HOB; Washington DC 20515-3310","phone":"202-225-2576","fax":"202-225-0316","contact_form":"http://mchenry.house.gov/zipauth.htm","office":"224 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Republican","district":10,"url":"http://mchenry.house.gov","address":"2334 Rayburn HOB; Washington DC 20515-3310","phone":"202-225-2576","fax":"202-225-0316","contact_form":"http://mchenry.house.gov/contact/zipauth.htm","office":"2334 Rayburn House Office Building","rss_url":"http://mchenry.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Republican","district":10,"url":"http://mchenry.house.gov","address":"2334 Rayburn HOB; Washington DC 20515-3310","phone":"202-225-2576","fax":"202-225-0316","contact_form":"http://mchenry.house.gov/contact/zipauth.htm","office":"2334 Rayburn House Office Building","rss_url":"http://mchenry.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"M001180","thomas":"02074","govtrack":412487,"opensecrets":"N00031681","votesmart":117396,"fec":["H0WV01072"],"cspan":9269013,"wikipedia":"David McKinley","house_history":18830,"ballotpedia":"David McKinley","maplight":6175,"washington_post":"gIQALnNUKP","icpsr":21188},"name":{"first":"David","last":"McKinley","official_full":"David B. McKinley","middle":"B."},"bio":{"birthday":"1947-03-28","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WV","district":1,"party":"Republican","url":"http://mckinley.house.gov/","address":"313 Cannon HOB; Washington DC 20515-4801","phone":"202-225-4172","fax":"202-225-7564","office":"313 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WV","party":"Republican","district":1,"url":"http://mckinley.house.gov","address":"412 Cannon HOB; Washington DC 20515-4801","phone":"202-225-4172","fax":"202-225-7564","office":"412 Cannon House Office Building","contact_form":"https://mckinleyforms.house.gov/email-me","rss_url":"http://mckinley.house.gov/common/rss//index.cfm?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WV","party":"Republican","district":1,"url":"http://mckinley.house.gov","address":"412 Cannon HOB; Washington DC 20515-4801","phone":"202-225-4172","fax":"202-225-7564","office":"412 Cannon House Office Building","contact_form":"https://mckinleyforms.house.gov/email-me","rss_url":"http://mckinley.house.gov/common/rss//index.cfm?rss=49"}]},{"id":{"bioguide":"M001159","thomas":"01809","govtrack":400659,"opensecrets":"N00026314","votesmart":3217,"fec":["H4WA05077"],"cspan":1013063,"wikipedia":"Cathy McMorris Rodgers","house_history":18790,"ballotpedia":"Cathy McMorris Rodgers","maplight":4661,"washington_post":"gIQABLyUMP","icpsr":20535},"name":{"first":"Cathy","last":"McMorris Rodgers","official_full":"Cathy McMorris Rodgers"},"bio":{"birthday":"1969-05-22","gender":"F"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WA","district":5,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WA","district":5,"party":"Republican","url":"http://mcmorris.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WA","district":5,"party":"Republican","url":"http://mcmorris.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WA","district":5,"party":"Republican","url":"http://mcmorris.house.gov","address":"2421 Rayburn HOB; Washington DC 20515-4705","phone":"202-225-2006","fax":"202-225-3392","contact_form":"https://mcmorrisforms.house.gov/write-to-cathy1","office":"2421 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Republican","district":5,"url":"http://mcmorris.house.gov","address":"203 Cannon HOB; Washington DC 20515-4705","phone":"202-225-2006","fax":"202-225-3392","contact_form":"https://mcmorrisforms.house.gov/write-to-cathy1","office":"203 Cannon House Office Building","rss_url":"http://mcmorris.house.gov/common/rss/?rss=96"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Republican","district":5,"url":"http://mcmorris.house.gov","address":"203 Cannon HOB; Washington DC 20515-4705","phone":"202-225-2006","fax":"202-225-3392","contact_form":"https://mcmorrisforms.house.gov/write-to-cathy1","office":"203 Cannon House Office Building","rss_url":"http://mcmorris.house.gov/common/rss/?rss=96"}]},{"id":{"bioguide":"M001166","thomas":"01832","govtrack":412189,"opensecrets":"N00026926","votesmart":29474,"fec":["H4CA11081"],"cspan":1021667,"wikipedia":"Jerry McNerney","house_history":18803,"maplight":4673,"washington_post":"gIQAlHAVBP","icpsr":20702},"name":{"first":"Jerry","last":"McNerney","official_full":"Jerry McNerney"},"bio":{"gender":"M","birthday":"1951-06-18"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":11,"party":"Democrat","url":"http://mcnerney.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":11,"party":"Democrat","url":"http://mcnerney.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":11,"party":"Democrat","url":"http://mcnerney.house.gov","address":"1210 Longworth HOB; Washington DC 20515-0511","phone":"202-225-1947","fax":"202-225-4060","contact_form":"http://mcnerney.house.gov/contact.shtml","office":"1210 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":9,"url":"http://mcnerney.house.gov","address":"1210 Longworth HOB; Washington DC 20515-0509","phone":"202-225-1947","fax":"202-225-4060","contact_form":"https://mcnerney.house.gov/contact/email-me","office":"1210 Longworth House Office Building","rss_url":"http://mcnerney.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":9,"url":"http://mcnerney.house.gov","address":"2265 Rayburn HOB; Washington DC 20515-0509","phone":"202-225-1947","fax":"202-225-4060","contact_form":"https://mcnerney.house.gov/contact/email-me","office":"2265 Rayburn House Office Building","rss_url":"http://mcnerney.house.gov/rss.xml"}]},{"id":{"bioguide":"M001181","thomas":"02052","govtrack":412466,"opensecrets":"N00031134","votesmart":119474,"fec":["H0PA07082"],"cspan":1033856,"wikipedia":"Pat Meehan","house_history":18832,"ballotpedia":"Patrick Meehan","maplight":6007,"washington_post":"gIQA2yGVKP","icpsr":21168},"name":{"first":"Patrick","last":"Meehan","official_full":"Patrick Meehan"},"bio":{"birthday":"1955-10-20","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":7,"party":"Republican","url":"http://meehan.house.gov/","address":"513 Cannon HOB; Washington DC 20515-3807","phone":"202-225-2011","fax":"202- 226-0280","office":"513 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":7,"url":"http://meehan.house.gov","address":"204 Cannon HOB; Washington DC 20515-3807","phone":"202-225-2011","fax":"202- 226-0280","office":"204 Cannon House Office Building","rss_url":"http://meehan.house.gov/rss/latest-news.xml","contact_form":"https://meehan.house.gov/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":7,"url":"http://meehan.house.gov","address":"434 Cannon HOB; Washington DC 20515-3807","phone":"202-225-2011","fax":"202- 226-0280","office":"434 Cannon House Office Building","rss_url":"http://meehan.house.gov/rss/latest-news.xml","contact_form":"https://meehan.house.gov/email-me"}]},{"id":{"bioguide":"M001137","thomas":"01506","govtrack":400271,"opensecrets":"N00001171","votesmart":4360,"fec":["H8NY06048"],"cspan":53469,"wikipedia":"Gregory Meeks","house_history":18747,"maplight":4364,"washington_post":"gIQAQwSKAP","icpsr":29776},"name":{"first":"Gregory","middle":"W.","last":"Meeks","official_full":"Gregory W. Meeks"},"bio":{"birthday":"1953-09-25","gender":"M","religion":"African Methodist Episcopal"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":6,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":6,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":6,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":6,"party":"Democrat","url":"http://www.house.gov/meeks"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":6,"party":"Democrat","url":"http://www.house.gov/meeks"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":6,"party":"Democrat","url":"http://www.house.gov/meeks"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":6,"party":"Democrat","url":"http://www.house.gov/meeks"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":6,"party":"Democrat","url":"http://www.house.gov/meeks","address":"2234 Rayburn HOB; Washington DC 20515-3206","phone":"202-225-3461","fax":"202-226-4169","contact_form":"http://www.house.gov/meeks/contactform_zipcheck.shtml","office":"2234 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":5,"url":"http://meeks.house.gov","address":"2234 Rayburn HOB; Washington DC 20515-3205","phone":"202-225-3461","fax":"202-226-4169","contact_form":"https://meeks.house.gov/contact-me/email-me","office":"2234 Rayburn House Office Building","rss_url":"http://meeks.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":5,"url":"http://meeks.house.gov","address":"2234 Rayburn HOB; Washington DC 20515-3205","phone":"202-225-3461","fax":"202-226-4169","contact_form":"https://meeks.house.gov/contact-me/email-me","office":"2234 Rayburn House Office Building","rss_url":"http://meeks.house.gov/rss.xml"}]},{"id":{"bioguide":"M000689","thomas":"00800","govtrack":400273,"opensecrets":"N00002793","votesmart":26805,"fec":["H2FL08055"],"cspan":26395,"wikipedia":"John Mica","house_history":18189,"ballotpedia":"John L. Mica","maplight":4366,"washington_post":"gIQAGSEKAP","icpsr":29331},"name":{"first":"John","middle":"L.","last":"Mica","official_full":"John L. Mica"},"bio":{"birthday":"1943-01-27","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"FL","district":7,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"FL","district":7,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"FL","district":7,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"FL","district":7,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"FL","district":7,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"FL","district":7,"party":"Republican","url":"http://www.house.gov/mica"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"FL","district":7,"party":"Republican","url":"http://www.house.gov/mica"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":7,"party":"Republican","url":"http://www.house.gov/mica"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":7,"party":"Republican","url":"http://www.house.gov/mica"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":7,"party":"Republican","url":"http://www.house.gov/mica","address":"2187 Rayburn HOB; Washington DC 20515-0907","phone":"202-225-4035","fax":"202-226-0821","contact_form":"http://www.house.gov/mica/messageform.shtml","office":"2187 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":7,"url":"http://mica.house.gov","address":"2187 Rayburn HOB; Washington DC 20515-0907","phone":"202-225-4035","fax":"202-226-0821","contact_form":"https://mica.house.gov/contact-form","office":"2187 Rayburn House Office Building","rss_url":"http://mica.house.gov/common/rss/index.cfm?rss=25"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":7,"url":"http://mica.house.gov","address":"2187 Rayburn HOB; Washington DC 20515-0907","phone":"202-225-4035","fax":"202-226-0821","contact_form":"https://mica.house.gov/contact-form","office":"2187 Rayburn House Office Building","rss_url":"http://mica.house.gov/common/rss/index.cfm?rss=25"}],"family":[{"name":"Daniel Andrew Mica","relation":"brother"}]},{"id":{"bioguide":"M000702","thomas":"00802","lis":"S182","govtrack":300073,"opensecrets":"N00001945","votesmart":53304,"icpsr":14440,"fec":["S6MD00140"],"cspan":1396,"wikipedia":"Barbara Mikulski","house_history":18207,"ballotpedia":"Barbara Mikulski","maplight":4591,"washington_post":"gIQApKSAAP"},"name":{"first":"Barbara","middle":"A.","last":"Mikulski","official_full":"Barbara A. Mikulski"},"bio":{"birthday":"1936-07-20","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1977-01-04","end":"1978-10-15","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"MD","district":3,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"MD","district":3,"party":"Democrat"},{"type":"sen","start":"1987-01-06","end":"1992-10-09","state":"MD","class":3,"party":"Democrat"},{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"MD","class":3,"party":"Democrat"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"MD","class":3,"party":"Democrat","url":"http://mikulski.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"MD","class":3,"party":"Democrat","url":"http://mikulski.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"MD","class":3,"party":"Democrat","url":"http://www.mikulski.senate.gov","address":"503 Hart Senate Office Building Washington DC 20510","phone":"202-224-4654","fax":"202-224-8858","contact_form":"http://www.mikulski.senate.gov/contact/shareyouropinion.cfm","office":"503 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.mikulski.senate.gov/rssfeed.cfm"}]},{"id":{"bioguide":"M001150","thomas":"01731","govtrack":400276,"opensecrets":"N00009795","votesmart":2062,"fec":["H6MI12181"],"cspan":1003594,"house_history":18772,"wikipedia":"Candice Miller","ballotpedia":"Candice Miller","maplight":4369,"washington_post":"gIQAVsJbKP","icpsr":20331},"name":{"first":"Candice","last":"Miller","official_full":"Candice S. Miller","middle":"S."},"bio":{"birthday":"1954-05-07","gender":"F","religion":"Presbyterian"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MI","district":10,"party":"Republican","url":"http://www.house.gov/candicemiller"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MI","district":10,"party":"Republican","url":"http://www.house.gov/candicemiller"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MI","district":10,"party":"Republican","url":"http://candicemiller.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MI","district":10,"party":"Republican","url":"http://candicemiller.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":10,"party":"Republican","url":"http://candicemiller.house.gov","address":"1034 Longworth HOB; Washington DC 20515-2210","phone":"202-225-2106","fax":"202-226-1169","contact_form":"http://candicemiller.house.gov/Contact.aspx","office":"1034 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Republican","district":10,"url":"http://candicemiller.house.gov","address":"320 Cannon HOB; Washington DC 20515-2210","phone":"202-225-2106","fax":"202-226-1169","contact_form":"http://candicemiller.house.gov/contact","office":"320 Cannon House Office Building","rss_url":"http://candicemiller.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Republican","district":10,"url":"http://candicemiller.house.gov","address":"320 Cannon HOB; Washington DC 20515-2210","phone":"202-225-2106","fax":"202-226-1169","contact_form":"http://candicemiller.house.gov/contact","office":"320 Cannon House Office Building","rss_url":"http://candicemiller.house.gov/rss.xml"}]},{"id":{"bioguide":"M001144","thomas":"01685","govtrack":400279,"opensecrets":"N00013846","votesmart":17276,"fec":["H2FL01100"],"cspan":91615,"wikipedia":"Jeff Miller (Florida politician)","house_history":18760,"ballotpedia":"Jeff Miller (Florida)","maplight":4372,"washington_post":"gIQATNjVMP","icpsr":20110},"name":{"first":"Jeff","last":"Miller","official_full":"Jeff Miller"},"bio":{"birthday":"1959-06-27","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"2001-10-23","end":"2002-11-22","state":"FL","district":1,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"FL","district":1,"party":"Republican","url":"http://www.house.gov/jeffmiller"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"FL","district":1,"party":"Republican","url":"http://www.house.gov/jeffmiller"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":1,"party":"Republican","url":"http://www.house.gov/jeffmiller"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":1,"party":"Republican","url":"http://www.house.gov/jeffmiller"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":1,"party":"Republican","url":"http://www.house.gov/jeffmiller","address":"2416 Rayburn HOB; Washington DC 20515-0901","phone":"202-225-4136","fax":"202-225-3414","contact_form":"http://jeffmiller.house.gov/index.cfm?FuseAction=Contact.Home","office":"2416 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":1,"url":"http://jeffmiller.house.gov","address":"336 Cannon HOB; Washington DC 20515-0901","phone":"202-225-4136","fax":"202-225-3414","contact_form":"https://jeffmiller.house.gov/contact/contactform.htm","office":"336 Cannon House Office Building","rss_url":"http://jeffmiller.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":1,"url":"http://jeffmiller.house.gov","address":"336 Cannon HOB; Washington DC 20515-0901","phone":"202-225-4136","fax":"202-225-3414","contact_form":"https://jeffmiller.house.gov/contact/contactform.htm","office":"336 Cannon House Office Building","rss_url":"http://jeffmiller.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"M001160","thomas":"01811","govtrack":400661,"opensecrets":"N00026914","votesmart":3457,"fec":["H4WI04183"],"cspan":42548,"wikipedia":"Gwen Moore","house_history":18792,"ballotpedia":"Gwen Moore","maplight":4663,"washington_post":"gIQArDiKAP","icpsr":20537},"name":{"first":"Gwen","last":"Moore","official_full":"Gwen Moore"},"bio":{"birthday":"1951-04-18","gender":"F","religion":"Unknown"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WI","district":4,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WI","district":4,"party":"Democrat","url":"http://www.house.gov/gwenmoore"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WI","district":4,"party":"Democrat","url":"http://www.house.gov/gwenmoore"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WI","district":4,"party":"Democrat","url":"http://www.house.gov/gwenmoore","address":"2245 Rayburn HOB; Washington DC 20515-4904","phone":"202-225-4572","fax":"202-225-8135","contact_form":"http://www.house.gov/gwenmoore/contact.shtml","office":"2245 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WI","party":"Democrat","district":4,"url":"http://gwenmoore.house.gov","address":"2245 Rayburn HOB; Washington DC 20515-4904","phone":"202-225-4572","fax":"202-225-8135","contact_form":"https://gwenmoore.house.gov/contact-form","office":"2245 Rayburn House Office Building","rss_url":"http://gwenmoore.house.gov/common/rss/index.cfm?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WI","party":"Democrat","district":4,"url":"http://gwenmoore.house.gov","address":"2245 Rayburn HOB; Washington DC 20515-4904","phone":"202-225-4572","fax":"202-225-8135","contact_form":"https://gwenmoore.house.gov/contact-form","office":"2245 Rayburn House Office Building","rss_url":"http://gwenmoore.house.gov/common/rss/index.cfm?rss=49"}]},{"id":{"bioguide":"M000934","thomas":"01507","lis":"S347","govtrack":400284,"opensecrets":"N00005282","votesmart":542,"fec":["H6KS01096","S0KS00091"],"cspan":45469,"wikipedia":"Jerry Moran","house_history":18505,"ballotpedia":"Jerry Moran","maplight":7327,"washington_post":"gIQAdVZfAP","icpsr":29722},"name":{"first":"Jerry","last":"Moran","official_full":"Jerry Moran"},"bio":{"birthday":"1954-05-29","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"KS","district":1,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"KS","district":1,"party":"Republican","url":"http://www.house.gov/moranks01"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"KS","district":1,"party":"Republican","url":"http://www.house.gov/moranks01"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"KS","district":1,"party":"Republican","url":"http://www.jerrymoran.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"KS","district":1,"party":"Republican","url":"http://www.jerrymoran.house.gov"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"KS","class":3,"party":"Republican","url":"http://www.moran.senate.gov","address":"361A Russell Senate Office Building Washington DC 20510","phone":"202-224-6521","contact_form":"http://www.moran.senate.gov/public/index.cfm/e-mail-jerry","office":"361a Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.moran.senate.gov/public/index.cfm/rss/feed/","fax":"202-228-6966"}]},{"id":{"bioguide":"M001182","thomas":"02059","govtrack":412474,"opensecrets":"N00031412","votesmart":60348,"fec":["H0SC05031"],"cspan":623510,"wikipedia":"Mick Mulvaney","house_history":18833,"ballotpedia":"Mick Mulvaney","maplight":6057,"washington_post":"gIQA2dVUKP","icpsr":21176},"name":{"first":"Mick","last":"Mulvaney","official_full":"Mick Mulvaney"},"bio":{"birthday":"1967-07-21","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"SC","district":5,"party":"Republican","url":"http://mulvaney.house.gov/","address":"1004 Longworth HOB; Washington DC 20515-4005","phone":"202-225-5501","fax":"202-225-0464","office":"1004 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"SC","party":"Republican","district":5,"url":"http://mulvaney.house.gov","address":"1207 Longworth HOB; Washington DC 20515-4005","phone":"202-225-5501","fax":"202-225-0464","office":"1207 Longworth House Office Building","contact_form":"https://mulvaney.house.gov/email-mick/","rss_url":"http://mulvaney.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"SC","party":"Republican","district":5,"url":"http://mulvaney.house.gov","address":"2419 Rayburn HOB; Washington DC 20515-4005","phone":"202-225-5501","fax":"202-225-0464","office":"2419 Rayburn House Office Building","contact_form":"https://mulvaney.house.gov/email-mick/","rss_url":"http://mulvaney.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"M001153","thomas":"01694","lis":"S288","govtrack":300075,"opensecrets":"N00026050","votesmart":15841,"fec":["S4AK00099"],"cspan":1004138,"wikipedia":"Lisa Murkowski","house_history":18778,"ballotpedia":"Lisa Murkowski","maplight":4592,"washington_post":"gIQA6VzBAP","icpsr":40300},"name":{"first":"Lisa","middle":"A.","last":"Murkowski","official_full":"Lisa Murkowski"},"bio":{"birthday":"1957-05-22","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"sen","start":"2003-01-07","end":"2004-12-09","state":"AK","class":3,"party":"Republican","url":"http://murkowski.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"AK","class":3,"party":"Republican","url":"http://murkowski.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"AK","class":3,"party":"Republican","url":"http://www.murkowski.senate.gov","address":"709 Hart Senate Office Building Washington DC 20510","phone":"202-224-6665","fax":"202-224-5301","contact_form":"http://www.murkowski.senate.gov/public/index.cfm?p=EMailLisa","office":"709 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.murkowski.senate.gov/public/?a=rss.feed"}],"family":[{"name":"Frank Hughes Murkowski","relation":"daughter"}]},{"id":{"bioguide":"M001169","thomas":"01837","lis":"S364","govtrack":412194,"opensecrets":"N00027566","votesmart":17189,"fec":["H6CT05124","S2CT00132"],"cspan":1021270,"wikipedia":"Chris Murphy (politician)","house_history":18809,"ballotpedia":"Christopher S. Murphy","maplight":7427,"washington_post":"gIQAXlFYMP","icpsr":20707},"name":{"first":"Christopher","middle":"S.","last":"Murphy","official_full":"Christopher Murphy"},"bio":{"birthday":"1973-08-03","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CT","district":5,"party":"Democrat","url":"http://chrismurphy.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CT","district":5,"party":"Democrat","url":"http://chrismurphy.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CT","district":5,"party":"Democrat","url":"http://chrismurphy.house.gov","address":"412 Cannon HOB; Washington DC 20515-0705","phone":"202-225-4476","fax":"202-225-5933","contact_form":"http://www.house.gov/formchrismurphy/ic_zip_auth.htm","office":"412 Cannon House Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"CT","party":"Democrat","class":1,"url":"http://www.murphy.senate.gov","address":"303 Hart Senate Office Building Washington DC 20510","phone":"202-224-4041","fax":"202-225-5933","contact_form":"http://www.murphy.senate.gov/contact","office":"303 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.theday.com/article/20121216/nws12/312169935/1069/rss"}]},{"id":{"bioguide":"M001151","thomas":"01744","govtrack":400285,"opensecrets":"N00024992","votesmart":9794,"fec":["H2PA18143"],"cspan":1003612,"wikipedia":"Timothy F. Murphy","house_history":18774,"maplight":4378,"washington_post":"gIQAND0HAP","icpsr":20346},"name":{"first":"Tim","last":"Murphy","official_full":"Tim Murphy"},"bio":{"birthday":"1952-09-11","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"PA","district":18,"party":"Republican","url":"http://www.house.gov/murphy"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"PA","district":18,"party":"Republican","url":"http://www.house.gov/murphy"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"PA","district":18,"party":"Republican","url":"http://murphy.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"PA","district":18,"party":"Republican","url":"http://murphy.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":18,"party":"Republican","url":"http://murphy.house.gov","address":"322 Cannon HOB; Washington DC 20515-3818","phone":"202-225-2301","fax":"202-225-1844","contact_form":"http://murphy.house.gov/Contact/zipauth.htm","office":"322 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":18,"url":"http://murphy.house.gov","address":"2332 Rayburn HOB; Washington DC 20515-3818","phone":"202-225-2301","fax":"202-225-1844","contact_form":"https://murphy.house.gov/contact-me","office":"2332 Rayburn House Office Building","rss_url":"http://murphy.house.gov/common/rss/?rss=44"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":18,"url":"http://murphy.house.gov","address":"2332 Rayburn HOB; Washington DC 20515-3818","phone":"202-225-2301","fax":"202-225-1844","contact_form":"https://murphy.house.gov/contact-me","office":"2332 Rayburn House Office Building","rss_url":"http://murphy.house.gov/common/rss/?rss=44"}]},{"id":{"bioguide":"M001111","thomas":"01409","lis":"S229","govtrack":300076,"opensecrets":"N00007876","votesmart":53358,"fec":["S2WA00189"],"cspan":25277,"wikipedia":"Patty Murray","house_history":18715,"ballotpedia":"Patty Murray","maplight":4593,"washington_post":"gIQARXaU9O","icpsr":49308},"name":{"first":"Patty","last":"Murray","official_full":"Patty Murray"},"bio":{"birthday":"1950-10-11","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"WA","class":3,"party":"Democrat"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"WA","class":3,"party":"Democrat","url":"http://murray.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"WA","class":3,"party":"Democrat","url":"http://murray.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"WA","class":3,"party":"Democrat","url":"http://www.murray.senate.gov","address":"154 Russell Senate Office Building Washington DC 20510","phone":"202-224-2621","fax":"202-224-0238","contact_form":"http://www.murray.senate.gov/public/index.cfm/contactme","office":"154 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.murray.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"N000002","thomas":"00850","govtrack":400289,"opensecrets":"N00000939","votesmart":26980,"fec":["H2NY17071"],"cspan":26159,"wikipedia":"Jerrold Nadler","house_history":18837,"maplight":4382,"washington_post":"gIQALyRYMP","icpsr":29377},"name":{"first":"Jerrold","middle":"L.","last":"Nadler","official_full":"Jerrold Nadler"},"bio":{"birthday":"1947-06-13","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"1992-11-03","end":"1992-10-09","state":"NY","district":17,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":8,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":8,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":8,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":8,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":8,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":8,"party":"Democrat","url":"http://www.house.gov/nadler"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":8,"party":"Democrat","url":"http://www.house.gov/nadler"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":8,"party":"Democrat","url":"http://www.house.gov/nadler"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":8,"party":"Democrat","url":"http://www.house.gov/nadler"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":8,"party":"Democrat","url":"http://www.house.gov/nadler","address":"2334 Rayburn HOB; Washington DC 20515-3208","phone":"202-225-5635","fax":"202-225-6923","contact_form":"http://www.house.gov/nadler/emailform.shtml","office":"2334 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":10,"url":"http://nadler.house.gov","address":"2110 Rayburn HOB; Washington DC 20515-3210","phone":"202-225-5635","fax":"202-225-6923","contact_form":"https://jerroldnadler.house.gov/forms/writeyourrep/default.aspx","office":"2110 Rayburn House Office Building","rss_url":"http://nadler.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":10,"url":"http://nadler.house.gov","address":"2109 Rayburn HOB; Washington DC 20515-3210","phone":"202-225-5635","fax":"202-225-6923","contact_form":"https://jerroldnadler.house.gov/forms/writeyourrep/default.aspx","office":"2109 Rayburn House Office Building","rss_url":"http://nadler.house.gov/rss.xml"}]},{"id":{"bioguide":"N000179","thomas":"01602","govtrack":400290,"opensecrets":"N00006789","votesmart":8393,"fec":["H8CA34068"],"cspan":57873,"wikipedia":"Grace Napolitano","house_history":19055,"maplight":4383,"washington_post":"gIQAW3cdKP","icpsr":29903},"name":{"first":"Grace","middle":"F.","last":"Napolitano","official_full":"Grace F. Napolitano"},"bio":{"birthday":"1936-12-04","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":34,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":34,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":38,"party":"Democrat","url":"http://www.napolitano.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":38,"party":"Democrat","url":"http://www.napolitano.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":38,"party":"Democrat","url":"http://napolitano.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":38,"party":"Democrat","url":"http://napolitano.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":38,"party":"Democrat","url":"http://napolitano.house.gov","address":"1610 Longworth HOB; Washington DC 20515-0538","phone":"202-225-5256","fax":"202-225-0027","contact_form":"http://www.napolitano.house.gov/contact/feedback.htm","office":"1610 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":32,"url":"http://napolitano.house.gov","address":"1610 Longworth HOB; Washington DC 20515-0532","phone":"202-225-5256","fax":"202-225-0027","contact_form":"https://napolitano.house.gov/contact-me/email-me","office":"1610 Longworth House Office Building","rss_url":"http://napolitano.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":32,"url":"http://napolitano.house.gov","address":"1610 Longworth HOB; Washington DC 20515-0532","phone":"202-225-5256","fax":"202-225-0027","contact_form":"https://napolitano.house.gov/contact-me/email-me","office":"1610 Longworth House Office Building","rss_url":"http://napolitano.house.gov/rss.xml"}]},{"id":{"bioguide":"N000015","thomas":"00854","govtrack":400291,"opensecrets":"N00000153","votesmart":26895,"icpsr":15616,"fec":["H8MA02041"],"cspan":6103,"wikipedia":"Richard Neal","house_history":18855,"maplight":4384,"washington_post":"gIQA7V4aKP"},"name":{"first":"Richard","middle":"E.","last":"Neal","official_full":"Richard E. Neal"},"bio":{"birthday":"1949-02-14","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"MA","district":2,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"MA","district":2,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"MA","district":2,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MA","district":2,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MA","district":2,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MA","district":2,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MA","district":2,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MA","district":2,"party":"Democrat","url":"http://www.house.gov/neal"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MA","district":2,"party":"Democrat","url":"http://www.house.gov/neal"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MA","district":2,"party":"Democrat","url":"http://www.house.gov/neal"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MA","district":2,"party":"Democrat","url":"http://www.house.gov/neal"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MA","district":2,"party":"Democrat","url":"http://www.house.gov/neal","address":"2208 Rayburn HOB; Washington DC 20515-2102","phone":"202-225-5601","fax":"202-225-8112","contact_form":"http://www.house.gov/neal/write_neal.html","office":"2208 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MA","party":"Democrat","district":1,"url":"http://neal.house.gov","address":"2208 Rayburn HOB; Washington DC 20515-2101","phone":"202-225-5601","fax":"202-225-8112","contact_form":"https://forms.house.gov/neal/webforms/Contact_Form.shtml","office":"2208 Rayburn House Office Building","rss_url":"http://neal.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","party":"Democrat","district":1,"url":"http://neal.house.gov","address":"341 Cannon HOB; Washington DC 20515-2101","phone":"202-225-5601","fax":"202-225-8112","contact_form":"https://forms.house.gov/neal/webforms/Contact_Form.shtml","office":"341 Cannon House Office Building","rss_url":"http://neal.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"N000182","thomas":"01758","govtrack":400441,"opensecrets":"N00026043","votesmart":49522,"fec":["H4TX19102"],"cspan":1010920,"wikipedia":"Randy Neugebauer","house_history":19060,"ballotpedia":"Randy Neugebauer","maplight":4523,"washington_post":"gIQA5hZfAP","icpsr":20353},"name":{"first":"Randy","last":"Neugebauer","official_full":"Randy Neugebauer"},"bio":{"birthday":"1949-12-24","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"2003-06-05","end":"2004-12-09","state":"TX","district":19,"party":"Republican","url":"http://www.house.gov/neugebauer"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":19,"party":"Republican","url":"http://www.house.gov/neugebauer"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":19,"party":"Republican","url":"http://randy.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":19,"party":"Republican","url":"http://randy.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":19,"party":"Republican","url":"http://randy.house.gov","address":"1424 Longworth HOB; Washington DC 20515-4319","phone":"202-225-4005","fax":"202-225-9615","contact_form":"http://www.randy.house.gov/?sectionid=65&sectiontree=8,65","office":"1424 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":19,"url":"http://randy.house.gov","address":"1424 Longworth HOB; Washington DC 20515-4319","phone":"202-225-4005","fax":"202-225-9615","contact_form":"https://randy.house.gov/contact-me/email-me","office":"1424 Longworth House Office Building","rss_url":"http://randy.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":19,"url":"http://randy.house.gov","address":"1424 Longworth HOB; Washington DC 20515-4319","phone":"202-225-4005","fax":"202-225-9615","contact_form":"https://randy.house.gov/contact-me/email-me","office":"1424 Longworth House Office Building","rss_url":"http://randy.house.gov/rss.xml"}]},{"id":{"bioguide":"N000184","thomas":"02060","govtrack":412475,"opensecrets":"N00032022","votesmart":58189,"fec":["H0SD00054"],"cspan":62717,"house_history":19064,"wikipedia":"Kristi Noem","ballotpedia":"Kristi Noem","maplight":6060,"washington_post":"gIQABw1QKP","icpsr":21177},"name":{"first":"Kristi","last":"Noem","official_full":"Kristi L. Noem","middle":"L."},"bio":{"birthday":"1971-11-30","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"SD","district":0,"party":"Republican","url":"http://noem.house.gov/","address":"226 Cannon HOB; Washington DC 20515-4101","phone":"202-225-2801","fax":"202-225-5823","office":"226 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"SD","party":"Republican","district":0,"url":"http://noem.house.gov","address":"1323 Longworth HOB; Washington DC 20515-4100","phone":"202-225-2801","fax":"202-225-5823","office":"1323 Longworth House Office Building","rss_url":"http://noem.house.gov/index.cfm/rss/feed","contact_form":"http://noem.house.gov/index.cfm/email-kristi"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"SD","party":"Republican","district":0,"url":"http://noem.house.gov","address":"2422 Rayburn HOB; Washington DC 20515-4100","phone":"202-225-2801","fax":"202-225-5823","office":"2422 Rayburn House Office Building","rss_url":"http://noem.house.gov/index.cfm/rss/feed","contact_form":"http://noem.house.gov/index.cfm/email-kristi"}]},{"id":{"bioguide":"N000147","thomas":"00868","govtrack":400295,"opensecrets":"N00001692","votesmart":775,"fec":["H0DC00058"],"cspan":882,"wikipedia":"Eleanor Holmes Norton","house_history":19016,"maplight":5540,"washington_post":"73c1161a-64c5-11e2-85f5-a8a9228e55e7"},"name":{"first":"Eleanor","middle":"Holmes","last":"Norton","official_full":"Eleanor Holmes Norton"},"bio":{"birthday":"1937-06-13","gender":"F","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"DC","district":0,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"DC","district":0,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"DC","district":0,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"DC","district":0,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"DC","district":0,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"DC","district":0,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"DC","district":0,"party":"Democrat","url":"http://www.house.gov/norton"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"DC","district":0,"party":"Democrat","url":"http://www.house.gov/norton"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"DC","district":0,"party":"Democrat","url":"http://www.house.gov/norton"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"DC","district":0,"party":"Democrat","url":"http://www.house.gov/norton"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"DC","district":0,"party":"Democrat","url":"http://www.house.gov/norton","address":"2136 Rayburn HOB; Washington DC 20515-5100","phone":"202-225-8050","fax":"202-225-3002","contact_form":"http://www.norton.house.gov/forms/contact.html","office":"2136 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"DC","party":"Democrat","district":0,"url":"http://norton.house.gov","address":"2136 Rayburn HOB; Washington DC 20515-5101","phone":"202-225-8050","fax":"202-225-3002","contact_form":"https://norton.house.gov/contact/email-me","office":"2136 Rayburn House Office Building","rss_url":"http://norton.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"DC","party":"Democrat","district":0,"url":"http://norton.house.gov","address":"2136 Rayburn HOB; Washington DC 20515-5101","phone":"202-225-8050","fax":"202-225-3002","contact_form":"https://norton.house.gov/contact/email-me","office":"2136 Rayburn House Office Building","rss_url":"http://norton.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"N000185","thomas":"02001","govtrack":412409,"opensecrets":"N00032441","votesmart":124333,"fec":["H0FL05139"],"cspan":1033683,"wikipedia":"Rich Nugent","house_history":19066,"maplight":5560,"washington_post":"gIQAt0HaKP","icpsr":21115},"name":{"first":"Richard","last":"Nugent","official_full":"Richard B. Nugent","middle":"B."},"bio":{"birthday":"1951-05-26","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":5,"party":"Republican","url":"http://nugent.house.gov/","address":"1517 Longworth HOB; Washington DC 20515-0905","phone":"202-225-1002","fax":"202- 226-6559","office":"1517 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":11,"url":"http://nugent.house.gov","address":"1727 Longworth HOB; Washington DC 20515-0911","phone":"202-225-1002","fax":"202- 226-6559","office":"1727 Longworth House Office Building","rss_url":"http://nugent.house.gov/index.php?format=feed&type=rss","contact_form":"https://nugent.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":11,"url":"http://nugent.house.gov","address":"1727 Longworth HOB; Washington DC 20515-0911","phone":"202-225-1002","fax":"202- 226-6559","office":"1727 Longworth House Office Building","rss_url":"http://nugent.house.gov/index.php?format=feed&type=rss","contact_form":"https://nugent.house.gov/contact/email-me"}]},{"id":{"bioguide":"N000181","thomas":"01710","govtrack":400297,"opensecrets":"N00007248","votesmart":16725,"fec":["H8CA20059"],"cspan":1003553,"house_history":19058,"wikipedia":"Devin Nunes","maplight":4389,"washington_post":"gIQAt1EGAP","icpsr":20307},"name":{"first":"Devin","middle":"G.","last":"Nunes","official_full":"Devin Nunes"},"bio":{"birthday":"1973-10-01","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":21,"party":"Republican","url":"http://www.nunes.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":21,"party":"Republican","url":"http://www.nunes.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":21,"party":"Republican","url":"http://nunes.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":21,"party":"Republican","url":"http://nunes.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":21,"party":"Republican","url":"http://nunes.house.gov","address":"1013 Longworth HOB; Washington DC 20515-0521","phone":"202-225-2523","fax":"202-225-3404","contact_form":"http://www.nunes.house.gov/index.cfm?FuseAction=ContactUs.ContactForm","office":"1013 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":22,"url":"http://nunes.house.gov","address":"1013 Longworth HOB; Washington DC 20515-0522","phone":"202-225-2523","fax":"202-225-3404","contact_form":"https://nunes.house.gov/contactform/default.aspx","office":"1013 Longworth House Office Building","rss_url":"http://nunes.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":22,"url":"http://nunes.house.gov","address":"1013 Longworth HOB; Washington DC 20515-0522","phone":"202-225-2523","fax":"202-225-3404","contact_form":"https://nunes.house.gov/contactform/default.aspx","office":"1013 Longworth House Office Building","rss_url":"http://nunes.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"O000168","thomas":"01955","govtrack":412302,"opensecrets":"N00029285","votesmart":102008,"fec":["H8TX22107"],"cspan":1031361,"wikipedia":"Pete Olson","house_history":19278,"maplight":7170,"washington_post":"gIQAdHcTKP","icpsr":20948},"name":{"first":"Pete","last":"Olson","official_full":"Pete Olson"},"bio":{"birthday":"1962-12-09","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":22,"party":"Republican","url":"http://olson.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":22,"party":"Republican","url":"http://olson.house.gov","address":"312 Cannon HOB; Washington DC 20515-4322","phone":"202-225-5951","fax":"202-225-5241","contact_form":"https://forms.house.gov/olson/contact-form.shtml","office":"312 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":22,"url":"http://olson.house.gov","address":"312 Cannon HOB; Washington DC 20515-4322","phone":"202-225-5951","fax":"202-225-5241","contact_form":"https://forms.house.gov/olson/contact-form.shtml","office":"312 Cannon House Office Building","rss_url":"feed://olson.house.gov/common/rss/?rss=82"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":22,"url":"http://olson.house.gov","address":"2133 Rayburn HOB; Washington DC 20515-4322","phone":"202-225-5951","fax":"202-225-5241","contact_form":"https://forms.house.gov/olson/contact-form.shtml","office":"2133 Rayburn House Office Building","rss_url":"feed://olson.house.gov/common/rss/?rss=82"}]},{"id":{"bioguide":"P000601","thomas":"02035","govtrack":412443,"opensecrets":"N00031958","votesmart":69521,"fec":["H0MS04120"],"cspan":61886,"wikipedia":"Steven Palazzo","house_history":20039,"maplight":5852,"washington_post":"gIQAlE0YMP","icpsr":21148},"name":{"first":"Steven","last":"Palazzo","official_full":"Steven M. Palazzo","middle":"M."},"bio":{"birthday":"1970-02-21","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MS","district":4,"party":"Republican","url":"http://palazzo.house.gov/","address":"331 Cannon HOB; Washington DC 20515-2404","phone":"202-225-5772","fax":"202- 225-7074","office":"331 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MS","party":"Republican","district":4,"url":"http://palazzo.house.gov","address":"331 Cannon HOB; Washington DC 20515-2404","phone":"202-225-5772","fax":"202- 225-7074","office":"331 Cannon House Office Building","rss_url":"http://palazzo.house.gov/rss.xml","contact_form":"http://palazzo.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MS","party":"Republican","district":4,"url":"http://palazzo.house.gov","address":"331 Cannon HOB; Washington DC 20515-2404","phone":"202-225-5772","fax":"202- 225-7074","office":"331 Cannon House Office Building","rss_url":"http://palazzo.house.gov/rss.xml","contact_form":"http://palazzo.house.gov/contact/"}]},{"id":{"bioguide":"P000034","thomas":"00887","govtrack":400308,"opensecrets":"N00000781","votesmart":26951,"icpsr":15454,"fec":["H8NJ03073","S6NJ00263"],"cspan":6107,"wikipedia":"Frank Pallone","house_history":19321,"maplight":4399,"washington_post":"gIQAMsEdKP"},"name":{"first":"Frank","middle":"J.","last":"Pallone","suffix":"Jr.","official_full":"Frank Pallone Jr."},"bio":{"birthday":"1951-10-30","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"NJ","district":6,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NJ","district":3,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NJ","district":3,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NJ","district":6,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NJ","district":6,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NJ","district":6,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NJ","district":6,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NJ","district":6,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NJ","district":6,"party":"Democrat","url":"http://www.house.gov/pallone"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NJ","district":6,"party":"Democrat","url":"http://www.house.gov/pallone"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NJ","district":6,"party":"Democrat","url":"http://www.house.gov/pallone"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NJ","district":6,"party":"Democrat","url":"http://www.house.gov/pallone"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NJ","district":6,"party":"Democrat","url":"http://www.house.gov/pallone","address":"237 Cannon HOB; Washington DC 20515-3006","phone":"202-225-4671","fax":"202-225-9665","contact_form":"http://www.house.gov/pallone/contact.shtml","office":"237 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Democrat","district":6,"url":"http://pallone.house.gov","address":"237 Cannon HOB; Washington DC 20515-3006","phone":"202-225-4671","fax":"202-225-9665","contact_form":"https://pallone.house.gov/contact-me/email-me","office":"237 Cannon House Office Building","rss_url":"http://pallone.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Democrat","district":6,"url":"http://pallone.house.gov","address":"237 Cannon HOB; Washington DC 20515-3006","phone":"202-225-4671","fax":"202-225-9665","contact_form":"https://pallone.house.gov/contact-me/email-me","office":"237 Cannon House Office Building","rss_url":"http://pallone.house.gov/rss.xml"}]},{"id":{"bioguide":"P000096","thomas":"01510","govtrack":400309,"opensecrets":"N00000751","votesmart":478,"fec":["H6NJ08118"],"cspan":45543,"wikipedia":"Bill Pascrell","house_history":19391,"maplight":4400,"washington_post":"gIQAbraOAP","icpsr":29741},"name":{"first":"Bill","middle":"J.","last":"Pascrell","suffix":"Jr.","official_full":"Bill Pascrell Jr."},"bio":{"birthday":"1937-01-25","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NJ","district":8,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NJ","district":8,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NJ","district":8,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NJ","district":8,"party":"Democrat","url":"http://www.pascrell.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NJ","district":8,"party":"Democrat","url":"http://www.pascrell.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NJ","district":8,"party":"Democrat","url":"http://pascrell.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NJ","district":8,"party":"Democrat","url":"http://pascrell.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NJ","district":8,"party":"Democrat","url":"http://pascrell.house.gov","address":"2370 Rayburn HOB; Washington DC 20515-3008","phone":"202-225-5751","fax":"202-225-5782","contact_form":"http://pascrell.house.gov/contact/","office":"2370 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Democrat","district":9,"url":"http://pascrell.house.gov","address":"2370 Rayburn HOB; Washington DC 20515-3009","phone":"202-225-5751","fax":"202-225-5782","contact_form":"https://pascrell.house.gov/contact/email-me","office":"2370 Rayburn House Office Building","rss_url":"http://www.house.gov/apps/list/press/nj08_pascrell/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Democrat","district":9,"url":"http://pascrell.house.gov","address":"2370 Rayburn HOB; Washington DC 20515-3009","phone":"202-225-5751","fax":"202-225-5782","contact_form":"https://pascrell.house.gov/contact/email-me","office":"2370 Rayburn House Office Building","rss_url":"http://www.house.gov/apps/list/press/nj08_pascrell/rss.xml"}]},{"id":{"bioguide":"P000603","thomas":"02082","lis":"S348","govtrack":412492,"opensecrets":"N00030836","votesmart":117285,"fec":["S0KY00156"],"cspan":9265241,"wikipedia":"Rand Paul","ballotpedia":"Rand Paul","maplight":7332,"washington_post":"gIQA5AakAP","icpsr":41104},"name":{"first":"Rand","last":"Paul","official_full":"Rand Paul"},"bio":{"birthday":"1963-01-07","gender":"M"},"terms":[{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"KY","class":3,"party":"Republican","url":"http://www.paul.senate.gov","address":"124 Russell Senate Office Building Washington DC 20510","phone":"202-224-4343","contact_form":"http://www.paul.senate.gov/?p=contact","fax":"202-228-1373","office":"124 Russell Senate Office Building","state_rank":"junior","rss_url":"http://paul.senate.gov/rss/?p=news"}],"family":[{"name":"Ronald Ernest Paul","relation":"son"}]},{"id":{"bioguide":"P000594","thomas":"01930","govtrack":412303,"opensecrets":"N00029391","votesmart":3833,"fec":["H8MN03077"],"cspan":1030000,"wikipedia":"Erik Paulsen","house_history":20026,"ballotpedia":"Erik Paulsen","maplight":7068,"washington_post":"gIQALqDbKP","icpsr":20924},"name":{"first":"Erik","last":"Paulsen","official_full":"Erik Paulsen"},"bio":{"birthday":"1965-05-14","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MN","district":3,"party":"Republican","url":"http://paulsen.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MN","district":3,"party":"Republican","url":"http://paulsen.house.gov","address":"127 Cannon HOB; Washington DC 20515-2303","phone":"202-225-2871","fax":"202-225-6351","contact_form":"https://forms.house.gov/paulsen/contact-form.shtml","office":"127 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MN","party":"Republican","district":3,"url":"http://paulsen.house.gov","address":"127 Cannon HOB; Washington DC 20515-2303","phone":"202-225-2871","fax":"202-225-6351","contact_form":"https://paulsenforms.house.gov/contact-me","office":"127 Cannon House Office Building","rss_url":"http://paulsen.house.gov/common/rss//?rss=105"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MN","party":"Republican","district":3,"url":"http://paulsen.house.gov","address":"127 Cannon HOB; Washington DC 20515-2303","phone":"202-225-2871","fax":"202-225-6351","contact_form":"https://paulsenforms.house.gov/contact-me","office":"127 Cannon House Office Building","rss_url":"http://paulsen.house.gov/common/rss//?rss=105"}]},{"id":{"bioguide":"P000588","thomas":"01738","govtrack":400313,"opensecrets":"N00012672","votesmart":10655,"fec":["H2NM02126","S0NM00041"],"cspan":12063,"wikipedia":"Steve Pearce (politician)","house_history":20015,"ballotpedia":"Steve Pearce","maplight":4404,"washington_post":"gIQAZbOZMP","icpsr":20337},"name":{"first":"Stevan","middle":"E.","last":"Pearce","nickname":"Steve","official_full":"Stevan Pearce"},"bio":{"birthday":"1947-08-24","gender":"M"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NM","district":2,"party":"Republican","url":"http://www.house.gov/pearce"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NM","district":2,"party":"Republican","url":"http://www.house.gov/pearce"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NM","district":2,"party":"Republican","url":"http://www.house.gov/pearce"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NM","district":2,"party":"Republican","url":"http://pearce.house.gov/","address":"2432 Rayburn HOB; Washington DC 20515-3102","phone":"202-225-2365","office":"2432 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NM","party":"Republican","district":2,"url":"http://pearce.house.gov","address":"2432 Rayburn HOB; Washington DC 20515-3102","phone":"202-225-2365","office":"2432 Rayburn House Office Building","rss_url":"http://pearce.house.gov/rss.xml","contact_form":"https://pearce.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NM","party":"Republican","district":2,"url":"http://pearce.house.gov","address":"2432 Rayburn HOB; Washington DC 20515-3102","phone":"202-225-2365","office":"2432 Rayburn House Office Building","rss_url":"http://pearce.house.gov/rss.xml","contact_form":"https://pearce.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"P000197","thomas":"00905","govtrack":400314,"opensecrets":"N00007360","votesmart":26732,"icpsr":15448,"fec":["H8CA05035"],"cspan":6153,"wikipedia":"Nancy Pelosi","house_history":19519,"ballotpedia":"Nancy Pelosi","maplight":4405,"washington_post":"gIQAF3PM9O"},"name":{"first":"Nancy","last":"Pelosi","official_full":"Nancy Pelosi"},"bio":{"birthday":"1940-03-26","gender":"F","religion":"Roman Catholic"},"leadership_roles":[{"title":"Minority Leader","chamber":"house","start":"2011-01-05","end":"2013-01-03"},{"title":"Minority Leader","chamber":"house","start":"2013-01-03","end":"2015-01-03"},{"title":"Minority Leader","chamber":"house","start":"2015-01-06"}],"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"CA","district":5,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"CA","district":5,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"CA","district":5,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CA","district":8,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":8,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":8,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":8,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":8,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":8,"party":"Democrat","url":"http://www.house.gov/pelosi"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":8,"party":"Democrat","url":"http://www.house.gov/pelosi"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":8,"party":"Democrat","url":"http://www.house.gov/pelosi"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":8,"party":"Democrat","url":"http://www.house.gov/pelosi"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":8,"party":"Democrat","url":"http://www.house.gov/pelosi","address":"235 Cannon HOB; Washington DC 20515-0508","phone":"202-225-4965","fax":"202-225-8259","contact_form":"http://www.house.gov/pelosi/contact/contact.html","office":"235 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":12,"url":"http://pelosi.house.gov","address":"235 Cannon HOB; Washington DC 20515-0512","phone":"202-225-4965","fax":"202-225-8259","contact_form":"http://pelosi.house.gov/contact-me/email-me","office":"235 Cannon House Office Building","rss_url":"http://pelosi.house.gov/atom.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":12,"url":"http://pelosi.house.gov","address":"233 Cannon HOB; Washington DC 20515-0512","phone":"202-225-4965","fax":"202-225-8259","contact_form":"http://pelosi.house.gov/contact-me/email-me","office":"233 Cannon House Office Building","rss_url":"http://pelosi.house.gov/atom.xml"}],"family":[{"name":"Thomas D?Alesandro Jr.","relation":"daughter"}]},{"id":{"bioguide":"P000593","thomas":"01835","govtrack":412192,"opensecrets":"N00027510","votesmart":2653,"fec":["H6CO07023"],"cspan":1021382,"wikipedia":"Ed Perlmutter","house_history":20024,"ballotpedia":"Ed Perlmutter","maplight":4676,"washington_post":"gIQAyxjSAP","icpsr":20705},"name":{"first":"Ed","last":"Perlmutter","official_full":"Ed Perlmutter"},"bio":{"birthday":"1953-05-01","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CO","district":7,"party":"Democrat","url":"http://perlmutter.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CO","district":7,"party":"Democrat","url":"http://perlmutter.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CO","district":7,"party":"Democrat","url":"http://perlmutter.house.gov","address":"1221 Longworth HOB; Washington DC 20515-0607","phone":"202-225-2645","fax":"202-225-5278","contact_form":"http://perlmutter.house.gov/IMA/issue_subscribe.htm","office":"1221 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CO","party":"Democrat","district":7,"url":"http://perlmutter.house.gov","address":"1410 Longworth HOB; Washington DC 20515-0607","phone":"202-225-2645","fax":"202-225-5278","contact_form":"https://forms.house.gov/perlmutter/webforms/contact.shtml","office":"1410 Longworth House Office Building","rss_url":"http://perlmutter.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CO","party":"Democrat","district":7,"url":"http://perlmutter.house.gov","address":"1410 Longworth HOB; Washington DC 20515-0607","phone":"202-225-2645","fax":"202-225-5278","contact_form":"https://forms.house.gov/perlmutter/webforms/contact.shtml","office":"1410 Longworth House Office Building","rss_url":"http://perlmutter.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"P000595","thomas":"01929","govtrack":412305,"opensecrets":"N00029277","votesmart":8749,"fec":["H8MI09068"],"cspan":50199,"wikipedia":"Gary Peters (Michigan politician)","house_history":20028,"ballotpedia":"Gary Peters","maplight":7066,"washington_post":"gIQA36BUKP","icpsr":20923,"lis":"S380"},"name":{"first":"Gary","middle":"C.","last":"Peters","official_full":"Gary Peters"},"bio":{"gender":"M","birthday":"1958-12-01"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MI","district":9,"party":"Democrat","url":"http://peters.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":9,"party":"Democrat","url":"http://peters.house.gov","address":"1609 Longworth HOB; Washington DC 20515-2209","phone":"202-225-5802","fax":"202-226-2356","contact_form":"https://forms.house.gov/peters/contact-form.shtml","office":"1609 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Democrat","district":14,"url":"http://peters.house.gov","address":"1609 Longworth HOB; Washington DC 20515-2214","phone":"202-225-5802","fax":"202-226-2356","contact_form":"https://petersforms.house.gov/contact-us-form","office":"1609 Longworth House Office Building","rss_url":"http://peters.house.gov/common/rss/?rss=22"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"MI","class":2,"state_rank":"junior","party":"Democrat","url":"http://www.peters.senate.gov","address":"2 Russell Senate Courtyard Washington DC 20510","office":"2 Russell Senate Courtyard","phone":"202-224-6221"}]},{"id":{"bioguide":"P000258","thomas":"00910","govtrack":400316,"opensecrets":"N00004558","votesmart":26926,"fec":["H2MN07014"],"cspan":23978,"wikipedia":"Collin Peterson","house_history":19595,"ballotpedia":"Collin Peterson","maplight":4407,"washington_post":"gIQAIQ6GAP","icpsr":29127},"name":{"first":"Collin","middle":"Clark","last":"Peterson","official_full":"Collin C. Peterson"},"bio":{"birthday":"1944-06-29","gender":"M","religion":"Lutheran"},"terms":[{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"MN","district":7,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"MN","district":7,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MN","district":7,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MN","district":7,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MN","district":7,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MN","district":7,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MN","district":7,"party":"Democrat","url":"http://www.house.gov/collinpeterson"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MN","district":7,"party":"Democrat","url":"http://www.house.gov/collinpeterson"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MN","district":7,"party":"Democrat","url":"http://collinpeterson.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MN","district":7,"party":"Democrat","url":"http://collinpeterson.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MN","district":7,"party":"Democrat","url":"http://collinpeterson.house.gov","address":"2211 Rayburn HOB; Washington DC 20515-2307","phone":"202-225-2165","fax":"202-225-1593","contact_form":"http://collinpeterson.house.gov//email.html","office":"2211 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MN","party":"Democrat","district":7,"url":"http://collinpeterson.house.gov","address":"2109 Rayburn HOB; Washington DC 20515-2307","phone":"202-225-2165","fax":"202-225-1593","contact_form":"https://collinpeterson.house.gov/contact-me/email-me","office":"2109 Rayburn House Office Building","rss_url":"http://collinpeterson.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MN","party":"Democrat","district":7,"url":"http://collinpeterson.house.gov","address":"2204 Rayburn HOB; Washington DC 20515-2307","phone":"202-225-2165","fax":"202-225-1593","contact_form":"https://collinpeterson.house.gov/contact-me/email-me","office":"2204 Rayburn House Office Building","rss_url":"http://collinpeterson.house.gov/rss.xml"}]},{"id":{"bioguide":"P000596","thomas":"01953","govtrack":412306,"opensecrets":"N00029168","votesmart":110894,"fec":["H8PR00062"],"cspan":1031305,"wikipedia":"Pedro Pierluisi","house_history":20030,"maplight":7157},"name":{"first":"Pedro","middle":"R.","last":"Pierluisi","official_full":"Pedro R. Pierluisi"},"bio":{"gender":"M","birthday":"1959-04-26"},"terms":[{"type":"rep","start":"2009-01-06","end":"2013-01-03","state":"PR","district":0,"party":"Democrat","url":"http://pierluisi.house.gov","address":"1213 Longworth HOB; Washington DC 20515-5401","phone":"202-225-2615","fax":"202-225-2154","contact_form":"https://forms.house.gov/pierluisi/contact-form.shtml","office":"1213 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2017-01-03","state":"PR","party":"Democrat","district":0,"url":"http://pierluisi.house.gov","address":"2410 Rayburn HOB; Washington DC 20515-5401","phone":"202-225-2615","fax":"202-225-2154","contact_form":"https://pierluisi.house.gov/contact/email-me","office":"2410 Rayburn House Office Building","rss_url":"http://pierluisi.house.gov/rss.xml"}]},{"id":{"bioguide":"P000597","thomas":"01927","govtrack":412307,"opensecrets":"N00013817","votesmart":6586,"fec":["H8ME01120","S0ME00038"],"cspan":1002167,"wikipedia":"Chellie Pingree","house_history":20032,"ballotpedia":"Chellie Pingree","maplight":7057,"washington_post":"gIQAr8cW9O","icpsr":20920},"name":{"first":"Chellie","last":"Pingree","official_full":"Chellie Pingree"},"bio":{"birthday":"1955-04-02","gender":"F"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"ME","district":1,"party":"Democrat","url":"http://pingree.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"ME","district":1,"party":"Democrat","url":"http://pingree.house.gov","address":"1318 Longworth HOB; Washington DC 20515-1901","phone":"202-225-6116","fax":"202-225-5590","contact_form":"https://forms.house.gov/pingree/contact-form.shtml","office":"1318 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"ME","party":"Democrat","district":1,"url":"http://pingree.house.gov","address":"1318 Longworth HOB; Washington DC 20515-1901","phone":"202-225-6116","fax":"202-225-5590","contact_form":"https://pingree.house.gov/email-me","office":"1318 Longworth House Office Building","rss_url":"http://pingree.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"ME","party":"Democrat","district":1,"url":"http://pingree.house.gov","address":"2162 Rayburn HOB; Washington DC 20515-1901","phone":"202-225-6116","fax":"202-225-5590","contact_form":"https://pingree.house.gov/email-me","office":"2162 Rayburn House Office Building","rss_url":"http://pingree.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"P000373","thomas":"01514","govtrack":400320,"opensecrets":"N00001633","votesmart":265,"fec":["H6PA16197"],"cspan":11706,"wikipedia":"Joseph R. Pitts","house_history":19742,"ballotpedia":"Joseph R. Pitts","maplight":4411,"washington_post":"gIQAOAMOAP","icpsr":29752},"name":{"first":"Joseph","middle":"R.","last":"Pitts","official_full":"Joseph R. Pitts"},"bio":{"birthday":"1939-10-10","gender":"M","religion":"Protestant"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"PA","district":16,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"PA","district":16,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"PA","district":16,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"PA","district":16,"party":"Republican","url":"http://www.house.gov/pitts"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"PA","district":16,"party":"Republican","url":"http://www.house.gov/pitts"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"PA","district":16,"party":"Republican","url":"http://www.house.gov/pitts"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"PA","district":16,"party":"Republican","url":"http://www.house.gov/pitts"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":16,"party":"Republican","url":"http://www.house.gov/pitts","address":"420 Cannon HOB; Washington DC 20515-3816","phone":"202-225-2411","fax":"202-225-2013","contact_form":"http://www.house.gov/pitts/contact.shtml","office":"420 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":16,"url":"http://pitts.house.gov","address":"420 Cannon HOB; Washington DC 20515-3816","phone":"202-225-2411","fax":"202-225-2013","contact_form":"https://pitts.house.gov/contact-me/legislative-contact-form","office":"420 Cannon House Office Building","rss_url":"http://pitts.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":16,"url":"http://pitts.house.gov","address":"420 Cannon HOB; Washington DC 20515-3816","phone":"202-225-2411","fax":"202-225-2013","contact_form":"https://pitts.house.gov/contact-me/legislative-contact-form","office":"420 Cannon House Office Building","rss_url":"http://pitts.house.gov/rss.xml"}]},{"id":{"bioguide":"P000592","thomas":"01802","govtrack":400652,"opensecrets":"N00026457","votesmart":49198,"fec":["H4TX02108"],"cspan":1011398,"wikipedia":"Ted Poe","house_history":20022,"ballotpedia":"Ted Poe","maplight":4654,"washington_post":"gIQAqEAdKP","icpsr":20528},"name":{"first":"Ted","last":"Poe","official_full":"Ted Poe"},"bio":{"birthday":"1948-09-10","gender":"M","religion":"Unknown"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":2,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":2,"party":"Republican","url":"http://www.house.gov/poe"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":2,"party":"Republican","url":"http://www.house.gov/poe"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":2,"party":"Republican","url":"http://www.house.gov/poe","address":"430 Cannon HOB; Washington DC 20515-4302","phone":"202-225-6565","fax":"202-225-5547","contact_form":"http://poe.house.gov/email/","office":"430 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":2,"url":"http://poe.house.gov","address":"2412 Rayburn HOB; Washington DC 20515-4302","phone":"202-225-6565","fax":"202-225-5547","contact_form":"https://poe.house.gov/index.cfm/contact-form#form_D05B44B5-B782-4DC7-BED6-FF0C90951FFF","office":"2412 Rayburn House Office Building","rss_url":"http://poe.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":2,"url":"http://poe.house.gov","address":"2412 Rayburn HOB; Washington DC 20515-4302","phone":"202-225-6565","fax":"202-225-5547","contact_form":"https://poe.house.gov/index.cfm/contact-form#form_D05B44B5-B782-4DC7-BED6-FF0C90951FFF","office":"2412 Rayburn House Office Building","rss_url":"http://poe.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"P000598","thomas":"01910","govtrack":412308,"opensecrets":"N00029127","votesmart":106220,"fec":["H8CO02137"],"cspan":1031300,"wikipedia":"Jared Polis","house_history":20034,"ballotpedia":"Jared Polis","maplight":6960,"washington_post":"gIQAnqrJAP","icpsr":20904},"name":{"first":"Jared","last":"Polis","official_full":"Jared Polis"},"bio":{"gender":"M","birthday":"1975-05-12"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CO","district":2,"party":"Democrat","url":"http://polis.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CO","district":2,"party":"Democrat","url":"http://polis.house.gov","address":"501 Cannon HOB; Washington DC 20515-0602","phone":"202-225-2161","fax":"202-226-7840","contact_form":"http://polis.house.gov/Contact/","office":"501 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CO","party":"Democrat","district":2,"url":"http://polis.house.gov","address":"1433 Longworth HOB; Washington DC 20515-0602","phone":"202-225-2161","fax":"202-226-7840","contact_form":"https://polis.house.gov/forms/writeyourrep/default.aspx","office":"1433 Longworth House Office Building","rss_url":"http://polis.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CO","party":"Democrat","district":2,"url":"http://polis.house.gov","address":"1433 Longworth HOB; Washington DC 20515-0602","phone":"202-225-2161","fax":"202-226-7840","contact_form":"https://polis.house.gov/forms/writeyourrep/default.aspx","office":"1433 Longworth House Office Building","rss_url":"http://polis.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"P000602","thomas":"02022","govtrack":412431,"opensecrets":"N00030744","votesmart":125023,"fec":["H0KS04051"],"cspan":623387,"house_history":20041,"wikipedia":"Mike Pompeo","ballotpedia":"Mike Pompeo","maplight":5726,"washington_post":"gIQAXNLWKP","icpsr":21136},"name":{"first":"Mike","last":"Pompeo","official_full":"Mike Pompeo"},"bio":{"birthday":"1963-12-30","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"KS","district":4,"party":"Republican","url":"http://pompeo.house.gov/","address":"107 Cannon HOB; Washington DC 20515-1604","phone":"202-225-6216","fax":"202-225-3489","office":"107 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KS","party":"Republican","district":4,"url":"http://pompeo.house.gov","address":"107 Cannon HOB; Washington DC 20515-1604","phone":"202-225-6216","fax":"202-225-3489","office":"107 Cannon House Office Building","rss_url":"http://pompeo.house.gov/news/rss.aspx","contact_form":"https://pompeo.house.gov/contact/contactform.htm?zip5=$ADDRESS_ZIP5"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KS","party":"Republican","district":4,"url":"http://pompeo.house.gov","address":"436 Cannon HOB; Washington DC 20515-1604","phone":"202-225-6216","fax":"202-225-3489","office":"436 Cannon House Office Building","rss_url":"http://pompeo.house.gov/news/rss.aspx","contact_form":"https://pompeo.house.gov/contact/contactform.htm?zip5=$ADDRESS_ZIP5"}]},{"id":{"bioguide":"P000449","thomas":"00924","lis":"S349","govtrack":400325,"opensecrets":"N00003682","votesmart":27008,"fec":["S0OH00133","H4OH02032"],"cspan":31819,"house_history":19838,"wikipedia":"Rob Portman","ballotpedia":"Rob Portman","maplight":7379,"washington_post":"gIQAGuioAP","icpsr":29386},"name":{"first":"Robert","middle":"J.","last":"Portman","nickname":"Rob","official_full":"Rob Portman"},"bio":{"birthday":"1955-12-19","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1993-05-04","end":"1994-12-01","state":"OH","district":2,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"OH","district":2,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"OH","district":2,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OH","district":2,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OH","district":2,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OH","district":2,"party":"Republican","url":"http://www.house.gov/portman"},{"type":"rep","start":"2005-01-04","end":"2005-04-29","state":"OH","district":2,"party":"Republican","url":"http://www.house.gov/portman"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"OH","class":3,"party":"Republican","url":"http://www.portman.senate.gov","address":"448 Russell Senate Office Building Washington DC 20510","phone":"202-224-3353","contact_form":"https://www.portman.senate.gov/public/index.cfm/contact-form","office":"448 Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.portman.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"P000599","thomas":"01915","govtrack":412309,"opensecrets":"N00029662","votesmart":24280,"fec":["H8FL15107"],"cspan":88959,"wikipedia":"Bill Posey","house_history":20036,"ballotpedia":"Bill Posey","maplight":6974,"washington_post":"gIQAx8mRAP","icpsr":20909},"name":{"first":"Bill","last":"Posey","official_full":"Bill Posey"},"bio":{"birthday":"1947-12-18","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":15,"party":"Republican","url":"http://posey.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":15,"party":"Republican","url":"http://posey.house.gov","address":"120 Cannon HOB; Washington DC 20515-0915","phone":"202-225-3671","fax":"202-225-3516","contact_form":"http://posey.house.gov/Contact/","office":"120 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":8,"url":"http://posey.house.gov","address":"120 Cannon HOB; Washington DC 20515-0908","phone":"202-225-3671","fax":"202-225-3516","contact_form":"https://posey.house.gov/forms/writeyourrep/","office":"120 Cannon House Office Building","rss_url":"http://posey.house.gov/news/rss.aspx?documenttypeid=1487"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":8,"url":"http://posey.house.gov","address":"120 Cannon HOB; Washington DC 20515-0908","phone":"202-225-3671","fax":"202-225-3516","contact_form":"https://posey.house.gov/forms/writeyourrep/","office":"120 Cannon House Office Building","rss_url":"http://posey.house.gov/news/rss.aspx?documenttypeid=1487"}]},{"id":{"bioguide":"P000523","thomas":"00930","govtrack":400326,"opensecrets":"N00002260","votesmart":119,"icpsr":15438,"fec":["H6NC04037"],"cspan":6748,"wikipedia":"David Price (U.S. politician)","house_history":19927,"ballotpedia":"David Price","maplight":4417,"washington_post":"gIQAd3ZCAP"},"name":{"first":"David","middle":"E.","last":"Price","official_full":"David E. Price"},"bio":{"birthday":"1940-08-17","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"NC","district":4,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NC","district":4,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NC","district":4,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NC","district":4,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NC","district":4,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NC","district":4,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NC","district":4,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NC","district":4,"party":"Democrat","url":"http://www.house.gov/price"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NC","district":4,"party":"Democrat","url":"http://www.house.gov/price"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NC","district":4,"party":"Democrat","url":"http://price.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NC","district":4,"party":"Democrat","url":"http://price.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NC","district":4,"party":"Democrat","url":"http://price.house.gov","address":"2162 Rayburn HOB; Washington DC 20515-3304","phone":"202-225-1784","fax":"202-225-2014","contact_form":"http://price.house.gov/contact/contact_form.shtml","office":"2162 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Democrat","district":4,"url":"http://price.house.gov","address":"2162 Rayburn HOB; Washington DC 20515-3304","phone":"202-225-1784","fax":"202-225-2014","contact_form":"https://price.house.gov/contact","office":"2162 Rayburn House Office Building","rss_url":"http://price.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Democrat","district":4,"url":"http://price.house.gov","address":"2108 Rayburn HOB; Washington DC 20515-3304","phone":"202-225-1784","fax":"202-225-2014","contact_form":"https://price.house.gov/contact","office":"2108 Rayburn House Office Building","rss_url":"http://price.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"P000591","thomas":"01778","govtrack":400626,"opensecrets":"N00026160","votesmart":11853,"fec":["H4GA06087"],"cspan":1013044,"wikipedia":"Tom Price (U.S. politician)","house_history":20020,"ballotpedia":"Tom Price","maplight":4629,"washington_post":"gIQAaTFu9O","icpsr":20505},"name":{"first":"Tom","last":"Price","official_full":"Tom Price"},"bio":{"birthday":"1954-10-08","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"GA","district":6,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"GA","district":6,"party":"Republican","url":"http://www.house.gov/tomprice"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"GA","district":6,"party":"Republican","url":"http://www.house.gov/tomprice"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":6,"party":"Republican","url":"http://www.house.gov/tomprice","address":"403 Cannon HOB; Washington DC 20515-1006","phone":"202-225-4501","fax":"202-225-4656","contact_form":"http://tom.house.gov/html/contact_form_email.cfm","office":"403 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Republican","district":6,"url":"http://tomprice.house.gov","address":"100 Cannon HOB; Washington DC 20515-1006","phone":"202-225-4501","fax":"202-225-4656","contact_form":"https://tomprice.house.gov/contact-me","office":"100 Cannon House Office Building","rss_url":"http://tomprice.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Republican","district":6,"url":"http://tomprice.house.gov","address":"100 Cannon HOB; Washington DC 20515-1006","phone":"202-225-4501","fax":"202-225-4656","contact_form":"https://tomprice.house.gov/contact-me","office":"100 Cannon House Office Building","rss_url":"http://tomprice.house.gov/rss.xml"}]},{"id":{"bioguide":"Q000023","thomas":"01967","govtrack":412331,"opensecrets":"N00030581","votesmart":83310,"fec":["H0IL05096"],"cspan":9263344,"wikipedia":"Mike Quigley (politician)","house_history":20072,"ballotpedia":"Michael Quigley","maplight":5660,"washington_post":"gIQAMV709O","icpsr":20954},"name":{"first":"Mike","last":"Quigley","official_full":"Mike Quigley"},"bio":{"birthday":"1958-10-17","gender":"M"},"terms":[{"type":"rep","start":"2009-04-07","end":"2010-12-22","state":"IL","district":5,"party":"Democrat","url":"http://quigley.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":5,"party":"Democrat","url":"http://quigley.house.gov/","address":"1124 Longworth HOB; Washington DC 20515-1305","phone":"202-225-4061","fax":"202-225-5603","contact_form":"https://forms.house.gov/quigley/contact-form.shtml","office":"1124 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":5,"url":"http://quigley.house.gov","address":"1124 Longworth HOB; Washington DC 20515-1305","phone":"202-225-4061","fax":"202-225-5603","contact_form":"https://quigleyforms.house.gov/forms/writeyourrep/","office":"1124 Longworth House Office Building","rss_url":"http://quigley.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":5,"url":"http://quigley.house.gov","address":"2458 Rayburn HOB; Washington DC 20515-1305","phone":"202-225-4061","fax":"202-225-5603","contact_form":"https://quigleyforms.house.gov/forms/writeyourrep/","office":"2458 Rayburn House Office Building","rss_url":"http://quigley.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"R000053","thomas":"00944","govtrack":400333,"opensecrets":"N00000964","votesmart":26979,"icpsr":13035,"fec":["H6NY19029"],"cspan":1745,"wikipedia":"Charles B. Rangel","house_history":20144,"maplight":4423,"washington_post":"gIQACn7y9O"},"name":{"first":"Charles","nickname":"Charlie","middle":"B.","last":"Rangel","official_full":"Charles B. Rangel"},"bio":{"birthday":"1930-06-11","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1971-01-21","end":"1972-10-18","state":"NY","district":18,"party":"Democrat"},{"type":"rep","start":"1973-01-03","end":"1974-12-20","state":"NY","district":19,"party":"Democrat"},{"type":"rep","start":"1975-01-14","end":"1976-10-01","state":"NY","district":19,"party":"Democrat"},{"type":"rep","start":"1977-01-04","end":"1978-10-15","state":"NY","district":19,"party":"Democrat"},{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"NY","district":19,"party":"Democrat"},{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"NY","district":19,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":15,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":15,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":15,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":15,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":15,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":15,"party":"Democrat","url":"http://www.house.gov/rangel"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":15,"party":"Democrat","url":"http://www.house.gov/rangel"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":15,"party":"Democrat","url":"http://rangel.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":15,"party":"Democrat","url":"http://rangel.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":15,"party":"Democrat","url":"http://rangel.house.gov","address":"2354 Rayburn HOB; Washington DC 20515-3215","phone":"202-225-4365","fax":"202-225-0816","contact_form":"https://forms.house.gov/rangel/forms/contact.shtml","office":"2354 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":13,"url":"http://rangel.house.gov","address":"2354 Rayburn HOB; Washington DC 20515-3213","phone":"202-225-4365","fax":"202-225-0816","contact_form":"https://rangel.house.gov/contact-me/email-me","office":"2354 Rayburn House Office Building","rss_url":"http://rangel.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":13,"url":"http://rangel.house.gov","address":"2354 Rayburn HOB; Washington DC 20515-3213","phone":"202-225-4365","fax":"202-225-0816","contact_form":"https://rangel.house.gov/contact-me/email-me","office":"2354 Rayburn House Office Building","rss_url":"http://rangel.house.gov/rss.xml"}]},{"id":{"bioguide":"R000585","thomas":"01982","govtrack":412393,"opensecrets":"N00030949","votesmart":127046,"fec":["H0NY29054"],"cspan":623468,"wikipedia":"Tom Reed (politician)","house_history":20811,"maplight":5955,"washington_post":"gIQAVOXZKP","icpsr":21101},"name":{"first":"Tom","middle":"W.","last":"Reed","suffix":"II","official_full":"Tom Reed"},"bio":{"birthday":"1971-11-18","gender":"M"},"terms":[{"type":"rep","start":"2010-11-18","end":"2010-12-22","state":"NY","district":29,"party":"Republican"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":29,"party":"Republican","url":"http://reed.house.gov/","address":"1037 Longworth HOB; Washington DC 20515-3229","phone":"202-225-3161","fax":"202-226-6599","office":"1037 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Republican","district":23,"url":"http://reed.house.gov","address":"1504 Longworth HOB; Washington DC 20515-3223","phone":"202-225-3161","fax":"202-226-6599","office":"1504 Longworth House Office Building","rss_url":"http://reed.house.gov/rss.xml","contact_form":"https://reed.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Republican","district":23,"url":"http://reed.house.gov","address":"2437 Rayburn HOB; Washington DC 20515-3223","phone":"202-225-3161","fax":"202-226-6599","office":"2437 Rayburn House Office Building","rss_url":"http://reed.house.gov/rss.xml","contact_form":"https://reed.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"R000578","thomas":"01810","govtrack":400660,"opensecrets":"N00026885","votesmart":51346,"fec":["H4WA08071"],"cspan":1013064,"wikipedia":"Dave Reichert","house_history":20801,"ballotpedia":"David Reichert","maplight":4662,"washington_post":"gIQAemFTKP","icpsr":20536},"name":{"first":"David","middle":"G.","last":"Reichert","official_full":"David G. Reichert"},"bio":{"birthday":"1950-08-29","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WA","district":8,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WA","district":8,"party":"Republican","url":"http://www.house.gov/reichert"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WA","district":8,"party":"Republican","url":"http://www.house.gov/reichert"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WA","district":8,"party":"Republican","url":"http://www.house.gov/reichert","address":"1730 Longworth HOB; Washington DC 20515-4708","phone":"202-225-7761","fax":"202-225-4282","contact_form":"http://reichert.house.gov/Contact/ZipAuth.htm","office":"1730 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Republican","district":8,"url":"http://reichert.house.gov","address":"1127 Longworth HOB; Washington DC 20515-4708","phone":"202-225-7761","fax":"202-225-4282","contact_form":"https://reichert.house.gov/contact-me","office":"1127 Longworth House Office Building","rss_url":"http://reichert.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Republican","district":8,"url":"http://reichert.house.gov","address":"1127 Longworth HOB; Washington DC 20515-4708","phone":"202-225-7761","fax":"202-225-4282","contact_form":"https://reichert.house.gov/contact-me","office":"1127 Longworth House Office Building","rss_url":"http://reichert.house.gov/rss.xml"}]},{"id":{"bioguide":"R000146","thomas":"00952","lis":"S198","govtrack":300082,"opensecrets":"N00009922","votesmart":53320,"icpsr":15054,"fec":["S6NV00028"],"cspan":1683,"wikipedia":"Harry Reid","house_history":20266,"ballotpedia":"Harry Reid","maplight":4598,"washington_post":"gIQA8MlN9O"},"name":{"first":"Harry","middle":"M.","last":"Reid","official_full":"Harry Reid"},"bio":{"birthday":"1939-12-02","gender":"M","religion":"Latter Day Saints"},"leadership_roles":[{"title":"Majority Leader","chamber":"senate","start":"2007-01-04","end":"2009-01-06"},{"title":"Majority Leader","chamber":"senate","start":"2009-01-06","end":"2011-01-05"},{"title":"Majority Leader","chamber":"senate","start":"2011-01-05","end":"2013-01-03"},{"title":"Majority Leader","chamber":"senate","start":"2013-01-03","end":"2015-01-03"},{"title":"Minority Leader","chamber":"senate","start":"2015-01-03"}],"terms":[{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"NV","district":1,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"NV","district":1,"party":"Democrat"},{"type":"sen","start":"1987-01-06","end":"1992-10-09","state":"NV","class":3,"party":"Democrat"},{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"NV","class":3,"party":"Democrat"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"NV","class":3,"party":"Democrat","url":"http://reid.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"NV","class":3,"party":"Democrat","url":"http://reid.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"NV","class":3,"party":"Democrat","url":"http://www.reid.senate.gov","address":"522 Hart Senate Office Building Washington DC 20510","phone":"202-224-3542","fax":"202-224-7327","contact_form":"http://www.reid.senate.gov/contact","office":"522 Hart Senate Office Building","state_rank":"senior"}]},{"id":{"bioguide":"R000586","thomas":"02048","govtrack":412462,"opensecrets":"N00031127","votesmart":120678,"fec":["H0OH16097"],"cspan":62686,"wikipedia":"Jim Renacci","house_history":20813,"ballotpedia":"Jim Renacci","maplight":5973,"washington_post":"gIQARWEUKP","icpsr":21164},"name":{"first":"James","last":"Renacci","official_full":"James B. Renacci","middle":"B."},"bio":{"birthday":"1958-12-03","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":16,"party":"Republican","url":"http://renacci.house.gov/","address":"130 Cannon HOB; Washington DC 20515-3516","phone":"202-225-3876","fax":"202-225-3059","office":"130 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":16,"url":"http://renacci.house.gov","address":"130 Cannon HOB; Washington DC 20515-3516","phone":"202-225-3876","fax":"202-225-3059","office":"130 Cannon House Office Building","rss_url":"http://renacci.house.gov/common/rss//index.cfm?rss=25","contact_form":"https://renacci.house.gov/index.cfm/contact-form"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":16,"url":"http://renacci.house.gov","address":"328 Cannon HOB; Washington DC 20515-3516","phone":"202-225-3876","fax":"202-225-3059","office":"328 Cannon House Office Building","rss_url":"http://renacci.house.gov/common/rss//index.cfm?rss=25","contact_form":"https://renacci.house.gov/index.cfm/contact-form"}]},{"id":{"bioguide":"R000587","thomas":"02073","govtrack":412489,"opensecrets":"N00030968","votesmart":126240,"fec":["H0WI08075"],"cspan":62776,"wikipedia":"Reid Ribble","house_history":20815,"ballotpedia":"Reid Ribble","maplight":6173,"washington_post":"gIQAYpZVKP","icpsr":21190},"name":{"first":"Reid","last":"Ribble","official_full":"Reid J. Ribble","middle":"J."},"bio":{"birthday":"1956-04-05","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WI","district":8,"party":"Republican","url":"http://ribble.house.gov/","address":"1513 Longworth HOB; Washington DC 20515-4908","phone":"202-225-5665","fax":"202- 225-5729","office":"1513 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WI","party":"Republican","district":8,"url":"http://ribble.house.gov","address":"1513 Longworth HOB; Washington DC 20515-4908","phone":"202-225-5665","fax":"202- 225-5729","office":"1513 Longworth House Office Building","rss_url":"http://ribble.house.gov/rss.xml","contact_form":"https://ribble.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WI","party":"Republican","district":8,"url":"http://ribble.house.gov","address":"1513 Longworth HOB; Washington DC 20515-4908","phone":"202-225-5665","fax":"202- 225-5729","office":"1513 Longworth House Office Building","rss_url":"http://ribble.house.gov/rss.xml","contact_form":"https://ribble.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"R000588","thomas":"02023","govtrack":412432,"opensecrets":"N00030184","votesmart":35384,"fec":["H8LA02054"],"cspan":62391,"wikipedia":"Cedric Richmond","house_history":20816,"ballotpedia":"Cedric Richmond","maplight":7030,"washington_post":"gIQAUvGVKP","icpsr":21137},"name":{"first":"Cedric","last":"Richmond","official_full":"Cedric L. Richmond","middle":"L."},"bio":{"birthday":"1973-09-13","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"LA","district":2,"party":"Democrat","url":"http://richmond.house.gov/","address":"415 Cannon HOB; Washington DC 20515-1802","phone":"202-225-6636","fax":"202- 225-1988","office":"415 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"LA","party":"Democrat","district":2,"url":"http://richmond.house.gov","address":"240 Cannon HOB; Washington DC 20515-1802","phone":"202-225-6636","fax":"202- 225-1988","office":"240 Cannon House Office Building","rss_url":"http://richmond.house.gov/rss.xml","contact_form":"https://richmond.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"LA","party":"Democrat","district":2,"url":"http://richmond.house.gov","address":"240 Cannon HOB; Washington DC 20515-1802","phone":"202-225-6636","fax":"202- 225-1988","office":"240 Cannon House Office Building","rss_url":"http://richmond.house.gov/rss.xml","contact_form":"https://richmond.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"R000589","thomas":"02068","govtrack":412483,"opensecrets":"N00030962","votesmart":121807,"fec":["H0VA02084"],"cspan":9268996,"wikipedia":"Scott Rigell","house_history":20818,"maplight":6125,"washington_post":"gIQA7lZVKP","icpsr":21185},"name":{"first":"Edward","middle":"Scott","last":"Rigell","nickname":"Scott","official_full":"E. Scott Rigell"},"bio":{"birthday":"1960-05-28","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VA","district":2,"party":"Republican","url":"http://rigell.house.gov/","address":"327 Cannon HOB; Washington DC 20515-4602","phone":"202-225-4215","fax":"202-225-4218","office":"327 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VA","party":"Republican","district":2,"url":"http://rigell.house.gov","address":"418 Cannon HOB; Washington DC 20515-4602","phone":"202-225-4215","fax":"202-225-4218","office":"418 Cannon House Office Building","rss_url":"http://rigell.house.gov/news/rss.aspx","contact_form":"https://rigell.house.gov/contact/contactform.htm"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","party":"Republican","district":2,"url":"http://rigell.house.gov","address":"418 Cannon HOB; Washington DC 20515-4602","phone":"202-225-4215","fax":"202-225-4218","office":"418 Cannon House Office Building","rss_url":"http://rigell.house.gov/news/rss.aspx","contact_form":"https://rigell.house.gov/contact/contactform.htm"}]},{"id":{"bioguide":"R000591","thomas":"01986","govtrack":412394,"opensecrets":"N00030768","votesmart":71604,"fec":["H0AL02087"],"cspan":61712,"wikipedia":"Martha Roby","house_history":20821,"ballotpedia":"Martha Roby","maplight":5392,"washington_post":"gIQAGcVUKP","icpsr":21192},"name":{"first":"Martha","last":"Roby","official_full":"Martha Roby"},"bio":{"birthday":"1976-07-27","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AL","district":2,"party":"Republican","url":"http://roby.house.gov/","address":"414 Cannon HOB; Washington DC 20515-0102","phone":"202-225-2901","fax":"202-225-8913","office":"414 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AL","party":"Republican","district":2,"url":"http://roby.house.gov","address":"428 Cannon HOB; Washington DC 20515-0102","phone":"202-225-2901","fax":"202-225-8913","office":"428 Cannon House Office Building","rss_url":"http://roby.house.gov/rss.xml","contact_form":"https://roby.house.gov/contact-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AL","party":"Republican","district":2,"url":"http://roby.house.gov","address":"442 Cannon HOB; Washington DC 20515-0102","phone":"202-225-2901","fax":"202-225-8913","office":"442 Cannon House Office Building","rss_url":"http://roby.house.gov/rss.xml","contact_form":"https://roby.house.gov/contact-me"}]},{"id":{"bioguide":"R000582","thomas":"01954","govtrack":412310,"opensecrets":"N00028463","votesmart":65306,"fec":["H6TN01388"],"cspan":1031360,"wikipedia":"Phil Roe (politician)","house_history":20807,"maplight":6905,"washington_post":"gIQArh0q6O","icpsr":20947},"name":{"first":"David","middle":"P.","nickname":"Phil","last":"Roe","official_full":"David P. Roe"},"bio":{"gender":"M","birthday":"1945-07-21"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TN","district":1,"party":"Republican","url":"http://www.roe.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TN","district":1,"party":"Republican","url":"http://www.roe.house.gov","address":"419 Cannon HOB; Washington DC 20515-4201","phone":"202-225-6356","fax":"202-225-6356","contact_form":"https://forms.house.gov/roe/contact-form.shtml","office":"419 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TN","party":"Republican","district":1,"url":"http://roe.house.gov","address":"407 Cannon HOB; Washington DC 20515-4201","phone":"202-225-6356","fax":"202-225-6356","contact_form":"https://roe.house.gov/contact/contactform.htm?zip5=37813&zip4=1659","office":"407 Cannon House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TN","party":"Republican","district":1,"url":"http://roe.house.gov","address":"407 Cannon HOB; Washington DC 20515-4201","phone":"202-225-6356","fax":"202-225-6356","contact_form":"https://roe.house.gov/contact/contactform.htm?zip5=37813&zip4=1659","office":"407 Cannon House Office Building"}]},{"id":{"bioguide":"R000395","thomas":"00977","govtrack":400340,"opensecrets":"N00003473","votesmart":26875,"icpsr":14854,"fec":["H0KY05015"],"cspan":6739,"wikipedia":"Hal Rogers","house_history":20573,"ballotpedia":"Harold Rogers","maplight":4431,"washington_post":"gIQAovNCAP"},"name":{"first":"Harold","last":"Rogers","nickname":"Hal","official_full":"Harold Rogers"},"bio":{"birthday":"1937-12-31","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"KY","district":5,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"KY","district":5,"party":"Republican","url":"http://www.house.gov/rogers"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"KY","district":5,"party":"Republican","url":"http://www.house.gov/rogers"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"KY","district":5,"party":"Republican","url":"http://halrogers.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"KY","district":5,"party":"Republican","url":"http://halrogers.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"KY","district":5,"party":"Republican","url":"http://halrogers.house.gov","address":"2406 Rayburn HOB; Washington DC 20515-1705","phone":"202-225-4601","fax":"202-225-0940","contact_form":"http://halrogers.house.gov/Contact.aspx","office":"2406 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KY","party":"Republican","district":5,"url":"http://halrogers.house.gov","address":"2406 Rayburn HOB; Washington DC 20515-1705","phone":"202-225-4601","fax":"202-225-0940","contact_form":"https://halrogers.house.gov/contact/contactform.htm","office":"2406 Rayburn House Office Building","rss_url":"http://halrogers.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KY","party":"Republican","district":5,"url":"http://halrogers.house.gov","address":"2406 Rayburn HOB; Washington DC 20515-1705","phone":"202-225-4601","fax":"202-225-0940","contact_form":"https://halrogers.house.gov/contact/contactform.htm","office":"2406 Rayburn House Office Building","rss_url":"http://halrogers.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"R000575","thomas":"01704","govtrack":400341,"opensecrets":"N00024759","votesmart":5705,"fec":["H2AL03032"],"cspan":1014740,"wikipedia":"Mike D. Rogers","house_history":20795,"ballotpedia":"Mike Rogers (Alabama)","maplight":4430,"washington_post":"gIQAkR2cKP","icpsr":20301},"name":{"first":"Mike","last":"Rogers","official_full":"Mike Rogers"},"bio":{"birthday":"1958-07-16","gender":"M"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"AL","district":3,"party":"Republican","url":"http://www.house.gov/mike-rogers"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"AL","district":3,"party":"Republican","url":"http://www.house.gov/mike-rogers"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"AL","district":3,"party":"Republican","url":"http://www.house.gov/mike-rogers"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"AL","district":3,"party":"Republican","url":"http://www.house.gov/mike-rogers"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AL","district":3,"party":"Republican","url":"http://www.house.gov/mike-rogers","address":"324 Cannon HOB; Washington DC 20515-0103","phone":"202-225-3261","fax":"202-226-8485","contact_form":"http://www.house.gov/mike-rogers/contact.shtml","office":"324 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AL","party":"Republican","district":3,"url":"http://mike-rogers.house.gov","address":"324 Cannon HOB; Washington DC 20515-0103","phone":"202-225-3261","fax":"202-226-8485","contact_form":"http://mike-rogers.house.gov/contact-mike/email-me","office":"324 Cannon House Office Building","rss_url":"http://mike-rogers.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AL","party":"Republican","district":3,"url":"http://mike-rogers.house.gov","address":"324 Cannon HOB; Washington DC 20515-0103","phone":"202-225-3261","fax":"202-226-8485","contact_form":"http://mike-rogers.house.gov/contact-mike/email-me","office":"324 Cannon House Office Building","rss_url":"http://mike-rogers.house.gov/rss.xml"}]},{"id":{"bioguide":"R000409","thomas":"00979","govtrack":400343,"opensecrets":"N00007151","votesmart":26763,"icpsr":15621,"fec":["H8CA42061"],"cspan":5590,"house_history":20593,"wikipedia":"Dana Rohrabacher","maplight":4433,"washington_post":"gIQAWYNqAP"},"name":{"first":"Dana","middle":"T.","last":"Rohrabacher","official_full":"Dana Rohrabacher"},"bio":{"birthday":"1947-06-21","gender":"M","religion":"Christian"},"terms":[{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"CA","district":42,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"CA","district":42,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CA","district":45,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":45,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":45,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":45,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":45,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":46,"party":"Republican","url":"http://www.house.gov/rohrabacher"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":46,"party":"Republican","url":"http://www.house.gov/rohrabacher"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":46,"party":"Republican","url":"http://www.house.gov/rohrabacher"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":46,"party":"Republican","url":"http://www.house.gov/rohrabacher"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":46,"party":"Republican","url":"http://www.house.gov/rohrabacher","address":"2300 Rayburn HOB; Washington DC 20515-0546","phone":"202-225-2415","fax":"202-225-0145","contact_form":"http://rohrabacher.house.gov/Contact/Zip.htm","office":"2300 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":48,"url":"http://rohrabacher.house.gov","address":"2300 Rayburn HOB; Washington DC 20515-0548","phone":"202-225-2415","fax":"202-225-0145","contact_form":"https://rohrabacher.house.gov/contact/email-me","office":"2300 Rayburn House Office Building","rss_url":"http://rohrabacher.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":48,"url":"http://rohrabacher.house.gov","address":"2300 Rayburn HOB; Washington DC 20515-0548","phone":"202-225-2415","fax":"202-225-0145","contact_form":"https://rohrabacher.house.gov/contact/email-me","office":"2300 Rayburn House Office Building","rss_url":"http://rohrabacher.house.gov/rss.xml"}]},{"id":{"bioguide":"R000592","thomas":"02017","govtrack":412426,"opensecrets":"N00031741","votesmart":34167,"fec":["H0IN04170"],"cspan":61832,"wikipedia":"Todd Rokita","house_history":20822,"ballotpedia":"Todd Rokita","maplight":5694,"washington_post":"gIQAJQXZKP","icpsr":21131},"name":{"first":"Todd","last":"Rokita","official_full":"Todd Rokita"},"bio":{"birthday":"1970-02-09","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IN","district":4,"party":"Republican","url":"http://rokita.house.gov/","address":"236 Cannon HOB; Washington DC 20515-1404","phone":"202-225-5037","office":"236 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Republican","district":4,"url":"http://rokita.house.gov","address":"236 Cannon HOB; Washington DC 20515-1404","phone":"202-225-5037","office":"236 Cannon House Office Building","rss_url":"http://rokita.house.gov/rss.xml","contact_form":"https://rokita.house.gov/contact-me","fax":"202-226-0544"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Republican","district":4,"url":"http://rokita.house.gov","address":"1717 Longworth HOB; Washington DC 20515-1404","phone":"202-225-5037","office":"1717 Longworth House Office Building","rss_url":"http://rokita.house.gov/rss.xml","contact_form":"https://rokita.house.gov/contact-me","fax":"202-226-0544"}]},{"id":{"bioguide":"R000583","thomas":"01916","govtrack":412311,"opensecrets":"N00029018","votesmart":107800,"fec":["H8FL16022"],"cspan":1030486,"wikipedia":"Tom Rooney (politician)","house_history":20809,"ballotpedia":"Thomas J. Rooney","maplight":6975,"washington_post":"gIQADjiUAP","icpsr":20910},"name":{"first":"Thomas","middle":"J.","last":"Rooney","official_full":"Thomas J. Rooney"},"bio":{"birthday":"1970-11-21","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":16,"party":"Republican","url":"http://rooney.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":16,"party":"Republican","url":"http://rooney.house.gov","address":"1529 Longworth HOB; Washington DC 20515-0916","phone":"202-225-5792","fax":"202-225-3132","contact_form":"https://forms.house.gov/rooney/contact-form.shtml","office":"1529 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":17,"url":"http://rooney.house.gov","address":"221 Cannon HOB; Washington DC 20515-0917","phone":"202-225-5792","fax":"202-225-3132","contact_form":"https://rooney.house.gov/email-me","office":"221 Cannon House Office Building","rss_url":"http://rooney.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":17,"url":"http://rooney.house.gov","address":"2160 Rayburn HOB; Washington DC 20515-0917","phone":"202-225-5792","fax":"202-225-3132","contact_form":"https://rooney.house.gov/email-me","office":"2160 Rayburn House Office Building","rss_url":"http://rooney.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"R000435","thomas":"00985","govtrack":400344,"opensecrets":"N00002858","votesmart":26815,"icpsr":15634,"fec":["H0FL18025"],"cspan":3206,"wikipedia":"Ileana Ros-Lehtinen","house_history":20624,"ballotpedia":"Ileana Ros-Lehtinen","maplight":4434,"washington_post":"gIQAVGfJAP"},"name":{"first":"Ileana","last":"Ros-Lehtinen","official_full":"Ileana Ros-Lehtinen"},"bio":{"birthday":"1952-07-15","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"FL","district":18,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"FL","district":18,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"FL","district":18,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"FL","district":18,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"FL","district":18,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"FL","district":18,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"FL","district":18,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"FL","district":18,"party":"Republican","url":"http://www.house.gov/ros-lehtinen"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"FL","district":18,"party":"Republican","url":"http://www.house.gov/ros-lehtinen"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":18,"party":"Republican","url":"http://www.house.gov/ros-lehtinen"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":18,"party":"Republican","url":"http://www.house.gov/ros-lehtinen"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":18,"party":"Republican","url":"http://www.house.gov/ros-lehtinen","address":"2206 Rayburn HOB; Washington DC 20515-0918","phone":"202-225-3931","fax":"202-225-5620","contact_form":"http://www.house.gov/writerep","office":"2206 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":27,"url":"http://ros-lehtinen.house.gov","address":"2206 Rayburn HOB; Washington DC 20515-0927","phone":"202-225-3931","fax":"202-225-5620","contact_form":"https://ros-lehtinen.house.gov/contact-me/email-me","office":"2206 Rayburn House Office Building","rss_url":"http://ros-lehtinen.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":27,"url":"http://ros-lehtinen.house.gov","address":"2206 Rayburn HOB; Washington DC 20515-0927","phone":"202-225-3931","fax":"202-225-5620","contact_form":"https://ros-lehtinen.house.gov/contact-me/email-me","office":"2206 Rayburn House Office Building","rss_url":"http://ros-lehtinen.house.gov/rss.xml"}]},{"id":{"bioguide":"R000580","thomas":"01848","govtrack":412202,"opensecrets":"N00004719","votesmart":6382,"fec":["H6IL06117","H8IL13051"],"cspan":1021912,"wikipedia":"Peter Roskam","house_history":20803,"ballotpedia":"Peter Roskam","maplight":4686,"washington_post":"gIQAN1SKAP","icpsr":20715},"name":{"first":"Peter","middle":"J.","last":"Roskam","official_full":"Peter J. Roskam"},"bio":{"birthday":"1961-09-13","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IL","district":6,"party":"Republican","url":"http://roskam.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":6,"party":"Republican","url":"http://roskam.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":6,"party":"Republican","url":"http://roskam.house.gov","address":"227 Cannon HOB; Washington DC 20515-1306","phone":"202-225-4561","fax":"202-225-1166","contact_form":"http://www.house.gov/writerep","office":"227 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Republican","district":6,"url":"http://roskam.house.gov","address":"227 Cannon HOB; Washington DC 20515-1306","phone":"202-225-4561","fax":"202-225-1166","contact_form":"https://roskam.house.gov/contact/email-me","office":"227 Cannon House Office Building","rss_url":"http://roskam.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Republican","district":6,"url":"http://roskam.house.gov","address":"2246 Rayburn HOB; Washington DC 20515-1306","phone":"202-225-4561","fax":"202-225-1166","contact_form":"https://roskam.house.gov/contact/email-me","office":"2246 Rayburn House Office Building","rss_url":"http://roskam.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"R000593","thomas":"02003","govtrack":412411,"opensecrets":"N00030645","votesmart":12813,"fec":["H0FL12101"],"cspan":62532,"wikipedia":"Dennis A. Ross","house_history":20823,"ballotpedia":"Dennis A. Ross","maplight":5576,"washington_post":"gIQAP9JXKP","icpsr":21117},"name":{"first":"Dennis","last":"Ross","official_full":"Dennis A. Ross","middle":"A."},"bio":{"birthday":"1959-10-18","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":12,"party":"Republican","url":"http://dennisross.house.gov/","address":"404 Cannon HOB; Washington DC 20515-0912","phone":"202-225-1252","fax":"202- 226-0585","office":"404 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":15,"url":"http://dennisross.house.gov","address":"229 Cannon HOB; Washington DC 20515-0915","phone":"202-225-1252","fax":"202- 226-0585","office":"229 Cannon House Office Building","rss_url":"http://dennisross.house.gov/news/rss.aspx","contact_form":"https://dennisross.house.gov/forms/writeyourrep/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":15,"url":"http://dennisross.house.gov","address":"229 Cannon HOB; Washington DC 20515-0915","phone":"202-225-1252","fax":"202- 226-0585","office":"229 Cannon House Office Building","rss_url":"http://dennisross.house.gov/news/rss.aspx","contact_form":"https://dennisross.house.gov/forms/writeyourrep/"}]},{"id":{"bioguide":"R000486","thomas":"00997","govtrack":400347,"opensecrets":"N00006671","votesmart":26766,"fec":["H2CA33048"],"cspan":26136,"wikipedia":"Lucille Roybal-Allard","house_history":20686,"maplight":4437,"washington_post":"gIQAozxLAP","icpsr":29317},"name":{"first":"Lucille","last":"Roybal-Allard","official_full":"Lucille Roybal-Allard"},"bio":{"birthday":"1941-06-12","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CA","district":33,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":33,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":33,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":33,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":33,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":34,"party":"Democrat","url":"http://www.house.gov/roybal-allard"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":34,"party":"Democrat","url":"http://www.house.gov/roybal-allard"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":34,"party":"Democrat","url":"http://www.house.gov/roybal-allard"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":34,"party":"Democrat","url":"http://www.house.gov/roybal-allard"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":34,"party":"Democrat","url":"http://www.house.gov/roybal-allard","address":"2330 Rayburn HOB; Washington DC 20515-0534","phone":"202-225-1766","fax":"202-226-0350","contact_form":"http://www.house.gov/writerep","office":"2330 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":40,"url":"http://roybal-allard.house.gov","address":"2330 Rayburn HOB; Washington DC 20515-0540","phone":"202-225-1766","fax":"202-226-0350","contact_form":"http://roybal-allard.house.gov/contact/","office":"2330 Rayburn House Office Building","rss_url":"http://roybal-allard.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":40,"url":"http://roybal-allard.house.gov","address":"2330 Rayburn HOB; Washington DC 20515-0540","phone":"202-225-1766","fax":"202-226-0350","contact_form":"http://roybal-allard.house.gov/contact/","office":"2330 Rayburn House Office Building","rss_url":"http://roybal-allard.house.gov/news/rss.aspx"}],"family":[{"name":"Edward R. Roybal","relation":"daughter"}]},{"id":{"bioguide":"R000487","thomas":"00998","govtrack":400348,"opensecrets":"N00008264","votesmart":26772,"fec":["H6CA39020"],"cspan":28461,"wikipedia":"Ed Royce","house_history":20688,"maplight":4438,"washington_post":"gIQACovbKP","icpsr":29321},"name":{"first":"Edward","middle":"R.","last":"Royce","nickname":"Ed","official_full":"Edward R. Royce"},"bio":{"birthday":"1951-10-12","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CA","district":39,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":39,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":39,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":39,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":39,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":40,"party":"Republican","url":"http://www.house.gov/royce"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":40,"party":"Republican","url":"http://www.house.gov/royce"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":40,"party":"Republican","url":"http://www.royce.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":40,"party":"Republican","url":"http://www.royce.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":40,"party":"Republican","url":"http://www.royce.house.gov","address":"2185 Rayburn HOB; Washington DC 20515-0540","phone":"202-225-4111","fax":"202-226-0335","contact_form":"http://www.house.gov/writerep","office":"2185 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":39,"url":"http://royce.house.gov","address":"2185 Rayburn HOB; Washington DC 20515-0539","phone":"202-225-4111","fax":"202-226-0335","contact_form":"https://royce.house.gov/contact/contactform.htm","office":"2185 Rayburn House Office Building","rss_url":"http://royce.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":39,"url":"http://royce.house.gov","address":"2310 Rayburn HOB; Washington DC 20515-0539","phone":"202-225-4111","fax":"202-226-0335","contact_form":"https://royce.house.gov/contact/contactform.htm","office":"2310 Rayburn House Office Building","rss_url":"http://royce.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"R000595","thomas":"02084","lis":"S350","govtrack":412491,"opensecrets":"N00030612","votesmart":1601,"fec":["S0FL00338"],"cspan":87599,"wikipedia":"Marco Rubio","ballotpedia":"Marco Rubio","maplight":7299,"washington_post":"gIQA5xxt6O","icpsr":41102},"name":{"first":"Marco","last":"Rubio","official_full":"Marco Rubio"},"bio":{"birthday":"1971-05-28","gender":"M"},"terms":[{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"FL","class":3,"party":"Republican","url":"http://www.rubio.senate.gov","address":"284 Russell Senate Office Building Washington DC 20510","phone":"202-224-3041","fax":"202-228-0285","contact_form":"http://www.rubio.senate.gov/public/index.cfm/contact","office":"284 Russell Senate Office Building","state_rank":"junior","rss_url":"http://www.rubio.senate.gov/public/?a=rss.feed"}]},{"id":{"bioguide":"R000576","thomas":"01728","govtrack":400349,"opensecrets":"N00025482","votesmart":36130,"fec":["H2MD02160"],"cspan":49155,"wikipedia":"Dutch Ruppersberger","house_history":20797,"maplight":4439,"washington_post":"gIQAUKkDAP","icpsr":20329},"name":{"first":"C.","middle":"A. Dutch","last":"Ruppersberger","official_full":"C. A. Dutch Ruppersberger"},"bio":{"birthday":"1946-01-31","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MD","district":2,"party":"Democrat","url":"http://www.house.gov/ruppersberger"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MD","district":2,"party":"Democrat","url":"http://www.house.gov/ruppersberger"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MD","district":2,"party":"Democrat","url":"http://www.house.gov/ruppersberger"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MD","district":2,"party":"Democrat","url":"http://www.house.gov/ruppersberger"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MD","district":2,"party":"Democrat","url":"http://www.house.gov/ruppersberger","address":"2453 Rayburn HOB; Washington DC 20515-2002","phone":"202-225-3061","fax":"202-225-3094","contact_form":"http://dutch.house.gov/writedutch_za.shtml","office":"2453 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MD","party":"Democrat","district":2,"url":"http://ruppersberger.house.gov","address":"2416 Rayburn HOB; Washington DC 20515-2002","phone":"202-225-3061","fax":"202-225-3094","contact_form":"http://ruppersberger.house.gov/contact-dutch/email-dutch","office":"2416 Rayburn House Office Building","rss_url":"http://dutch.house.gov/atom.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MD","party":"Democrat","district":2,"url":"http://ruppersberger.house.gov","address":"2416 Rayburn HOB; Washington DC 20515-2002","phone":"202-225-3061","fax":"202-225-3094","contact_form":"http://ruppersberger.house.gov/contact-dutch/email-dutch","office":"2416 Rayburn House Office Building","rss_url":"http://dutch.house.gov/atom.xml"}]},{"id":{"bioguide":"R000515","thomas":"01003","govtrack":400350,"opensecrets":"N00004887","votesmart":26831,"fec":["H2IL01042"],"cspan":26127,"wikipedia":"Bobby Rush","house_history":20721,"ballotpedia":"Bobby Rush","maplight":4440,"washington_post":"gIQAPjFgAP","icpsr":29346},"name":{"first":"Bobby","middle":"L.","last":"Rush","official_full":"Bobby L. Rush"},"bio":{"birthday":"1946-11-23","gender":"M","religion":"Protestant"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"IL","district":1,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"IL","district":1,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"IL","district":1,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"IL","district":1,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"IL","district":1,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"IL","district":1,"party":"Democrat","url":"http://www.house.gov/rush"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IL","district":1,"party":"Democrat","url":"http://www.house.gov/rush"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IL","district":1,"party":"Democrat","url":"http://www.house.gov/rush"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":1,"party":"Democrat","url":"http://www.house.gov/rush"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":1,"party":"Democrat","url":"http://www.house.gov/rush","address":"2268 Rayburn HOB; Washington DC 20515-1301","phone":"202-225-4372","fax":"202-226-0333","contact_form":"http://www.house.gov/rush/zipauth.shtml","office":"2268 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":1,"url":"http://rush.house.gov","address":"2268 Rayburn HOB; Washington DC 20515-1301","phone":"202-225-4372","fax":"202-226-0333","contact_form":"https://rush.house.gov/contact-me/legislative-issues","office":"2268 Rayburn House Office Building","rss_url":"http://rush.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":1,"url":"http://rush.house.gov","address":"2188 Rayburn HOB; Washington DC 20515-1301","phone":"202-225-4372","fax":"202-226-0333","contact_form":"https://rush.house.gov/contact-me/legislative-issues","office":"2188 Rayburn House Office Building","rss_url":"http://rush.house.gov/rss.xml"}]},{"id":{"bioguide":"R000570","thomas":"01560","govtrack":400351,"opensecrets":"N00004357","votesmart":26344,"fec":["H8WI01024"],"cspan":57970,"wikipedia":"Paul Ryan","house_history":20785,"ballotpedia":"Paul Ryan","maplight":4442,"washington_post":"gIQAUWiV9O","icpsr":29939},"name":{"first":"Paul","middle":"D.","last":"Ryan","official_full":"Paul Ryan"},"bio":{"birthday":"1970-01-29","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"WI","district":1,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"WI","district":1,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"WI","district":1,"party":"Republican","url":"http://www.house.gov/ryan"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WI","district":1,"party":"Republican","url":"http://www.house.gov/ryan"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WI","district":1,"party":"Republican","url":"http://www.house.gov/ryan"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WI","district":1,"party":"Republican","url":"http://www.house.gov/ryan"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WI","district":1,"party":"Republican","url":"http://www.house.gov/ryan","address":"1233 Longworth HOB; Washington DC 20515-4901","phone":"202-225-3031","fax":"202-225-3393","contact_form":"http://www.house.gov/ryan/email.htm","office":"1233 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WI","party":"Republican","district":1,"url":"http://paulryan.house.gov","address":"1233 Longworth HOB; Washington DC 20515-4901","phone":"202-225-3031","fax":"202-225-3393","contact_form":"https://paulryan.house.gov/contact/email.htm#.U032ra1dU_d","office":"1233 Longworth House Office Building","rss_url":"http://paulryan.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WI","party":"Republican","district":1,"url":"http://paulryan.house.gov","address":"1233 Longworth HOB; Washington DC 20515-4901","phone":"202-225-3031","fax":"202-225-3393","contact_form":"https://paulryan.house.gov/contact/email.htm#.U032ra1dU_d","office":"1233 Longworth House Office Building","rss_url":"http://paulryan.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"R000577","thomas":"01756","govtrack":400352,"opensecrets":"N00025280","votesmart":45638,"fec":["H2OH17109"],"cspan":1003608,"wikipedia":"Tim Ryan (politician)","house_history":20799,"ballotpedia":"Tim Ryan (Ohio)","maplight":4441,"washington_post":"gIQAQAddKP","icpsr":20343},"name":{"first":"Tim","middle":"J.","last":"Ryan","official_full":"Tim Ryan"},"bio":{"birthday":"1973-07-16","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OH","district":17,"party":"Democrat","url":"http://www.house.gov/timryan"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OH","district":17,"party":"Democrat","url":"http://www.house.gov/timryan"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OH","district":17,"party":"Democrat","url":"http://timryan.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OH","district":17,"party":"Democrat","url":"http://timryan.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":17,"party":"Democrat","url":"http://timryan.house.gov","address":"1421 Longworth HOB; Washington DC 20515-3517","phone":"202-225-5261","fax":"202-225-3719","contact_form":"http://timryan.house.gov/index.php?option=com_content&task=view&id=129&Itemid=42","office":"1421 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Democrat","district":13,"url":"http://timryan.house.gov","address":"1421 Longworth HOB; Washington DC 20515-3513","phone":"202-225-5261","fax":"202-225-3719","contact_form":"http://timryanforms.house.gov/contact/","office":"1421 Longworth House Office Building","rss_url":"http://timryan.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Democrat","district":13,"url":"http://timryan.house.gov","address":"1421 Longworth HOB; Washington DC 20515-3513","phone":"202-225-5261","fax":"202-225-3719","contact_form":"http://timryanforms.house.gov/contact/","office":"1421 Longworth House Office Building","rss_url":"http://timryan.house.gov/rss.xml"}]},{"id":{"bioguide":"S001177","thomas":"01962","govtrack":412312,"opensecrets":"N00030418","votesmart":110903,"fec":["H8MP00041"],"cspan":1031366,"wikipedia":"Gregorio Sablan","maplight":7079,"house_history":22610},"name":{"first":"Gregorio","last":"Sablan","official_full":"Gregorio Kilili Camacho Sablan","middle":"Kilili Camacho"},"bio":{"gender":"M","birthday":"1955-01-19"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MP","district":0,"party":"Democrat","url":"http://sablan.house.gov","party_affiliations":[{"start":"2009-01-06","end":"2009-02-23","party":"Independent"},{"start":"2009-02-23","end":"2010-12-22","party":"Democrat"}]},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MP","district":0,"party":"Democrat","url":"http://sablan.house.gov","address":"423 Cannon HOB; Washington DC 20515-5201","phone":"202-225-2646","fax":"202-226-4249","contact_form":"https://forms.house.gov/sablan/contact-form.shtml","office":"423 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MP","party":"Democrat","district":0,"url":"http://sablan.house.gov","address":"423 Cannon HOB; Washington DC 20515-5201","phone":"202-225-2646","fax":"202-226-4249","contact_form":"http://sablan.house.gov/email-me","office":"423 Cannon House Office Building","rss_url":"http://sablan.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MP","party":"Independent","caucus":"Democrat","district":0,"url":"http://sablan.house.gov","address":"423 Cannon HOB; Washington DC 20515-5201","phone":"202-225-2646","fax":"202-226-4249","contact_form":"http://sablan.house.gov/email-me","office":"423 Cannon House Office Building","rss_url":"http://sablan.house.gov/rss.xml"}]},{"id":{"bioguide":"S000030","thomas":"01522","govtrack":400356,"opensecrets":"N00008274","votesmart":203,"fec":["H6CA46033"],"cspan":45639,"wikipedia":"Loretta Sanchez","maplight":4446,"washington_post":"gIQAaQoGAP","icpsr":29709,"house_history":21168},"name":{"first":"Loretta","middle":"B.","last":"Sanchez","official_full":"Loretta Sanchez"},"bio":{"birthday":"1960-01-07","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":46,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":46,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":46,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":47,"party":"Democrat","url":"http://www.house.gov/sanchez"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":47,"party":"Democrat","url":"http://www.house.gov/sanchez"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":47,"party":"Democrat","url":"http://www.lorettasanchez.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":47,"party":"Democrat","url":"http://www.lorettasanchez.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":47,"party":"Democrat","url":"http://www.lorettasanchez.house.gov","address":"1114 Longworth HOB; Washington DC 20515-0547","phone":"202-225-2965","fax":"202-225-5859","contact_form":"http://www.lorettasanchez.house.gov/index.php?option=com_content&task=view&id=218&Itemid=17","office":"1114 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":46,"url":"http://lorettasanchez.house.gov","address":"1114 Longworth HOB; Washington DC 20515-0546","phone":"202-225-2965","fax":"202-225-5859","contact_form":"https://lorettasanchez.house.gov/contact-me/email-me","office":"1114 Longworth House Office Building","rss_url":"http://lorettasanchez.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":46,"url":"http://lorettasanchez.house.gov","address":"1211 Longworth HOB; Washington DC 20515-0546","phone":"202-225-2965","fax":"202-225-5859","contact_form":"https://lorettasanchez.house.gov/contact-me/email-me","office":"1211 Longworth House Office Building","rss_url":"http://lorettasanchez.house.gov/rss.xml"}],"family":[{"name":"Linda S?nchez","relation":"sister"}]},{"id":{"bioguide":"S001168","thomas":"01854","govtrack":412212,"opensecrets":"N00027751","votesmart":66575,"fec":["H6MD03292"],"cspan":1022884,"wikipedia":"John Sarbanes","maplight":4694,"washington_post":"gIQA5SKbKP","icpsr":20724,"house_history":22592},"name":{"first":"John","middle":"P.","last":"Sarbanes","official_full":"John P. Sarbanes"},"bio":{"birthday":"1962-05-22","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MD","district":3,"party":"Democrat","url":"http://sarbanes.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MD","district":3,"party":"Democrat","url":"http://sarbanes.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MD","district":3,"party":"Democrat","url":"http://sarbanes.house.gov","address":"2444 Rayburn HOB; Washington DC 20515-2003","phone":"202-225-4016","fax":"202-225-9219","contact_form":"http://sarbanes.house.gov/federal.asp","office":"2444 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MD","party":"Democrat","district":3,"url":"http://sarbanes.house.gov","address":"2444 Rayburn HOB; Washington DC 20515-2003","phone":"202-225-4016","fax":"202-225-9219","contact_form":"http://sarbanes.house.gov/federal.asp","office":"2444 Rayburn House Office Building","rss_url":"http://sarbanes.house.gov/rss_news.asp"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MD","party":"Democrat","district":3,"url":"http://sarbanes.house.gov","address":"2444 Rayburn HOB; Washington DC 20515-2003","phone":"202-225-4016","fax":"202-225-9219","contact_form":"http://sarbanes.house.gov/federal.asp","office":"2444 Rayburn House Office Building","rss_url":"http://sarbanes.house.gov/rss_news.asp"}],"family":[{"name":"Senator Paul Sarbanes","relation":"son"}]},{"id":{"bioguide":"S001176","thomas":"01892","govtrack":412261,"opensecrets":"N00009660","votesmart":9026,"fec":["H0LA01087"],"cspan":1015311,"wikipedia":"Steve Scalise","ballotpedia":"Steve Scalise","maplight":5736,"washington_post":"gIQAxgVSKP","icpsr":20759,"house_history":22608},"name":{"first":"Steve","middle":"Joseph","last":"Scalise","official_full":"Steve Scalise"},"bio":{"birthday":"1965-10-06","gender":"M"},"leadership_roles":[{"title":"Majority Whip","chamber":"house","start":"2014-08-01","end":"2015-01-03"},{"title":"Majority Whip","chamber":"house","start":"2015-01-06"}],"terms":[{"type":"rep","start":"2008-05-07","end":"2009-01-03","state":"LA","district":1,"party":"Republican","url":"http://scalise.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"LA","district":1,"party":"Republican","url":"http://scalise.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"LA","district":1,"party":"Republican","url":"http://scalise.house.gov/","address":"429 Cannon HOB; Washington DC 20515-1801","phone":"202-225-3015","fax":"202-226-0386","contact_form":"http://www.scalise.house.gov/contactform_zipcheck.shtml","office":"429 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"LA","party":"Republican","district":1,"url":"http://scalise.house.gov","address":"2338 Rayburn HOB; Washington DC 20515-1801","phone":"202-225-3015","fax":"202-226-0386","contact_form":"https://scalise.house.gov/contact-me/email-me","office":"2338 Rayburn House Office Building","rss_url":"http://scalise.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"LA","party":"Republican","district":1,"url":"http://scalise.house.gov","address":"2338 Rayburn HOB; Washington DC 20515-1801","phone":"202-225-3015","fax":"202-226-0386","contact_form":"https://scalise.house.gov/contact-me/email-me","office":"2338 Rayburn House Office Building","rss_url":"http://scalise.house.gov/rss.xml"}]},{"id":{"bioguide":"S001145","thomas":"01588","govtrack":400360,"opensecrets":"N00004724","votesmart":6387,"fec":["H8IL09067"],"cspan":57874,"wikipedia":"Jan Schakowsky","ballotpedia":"Jan Schakowsky","maplight":4449,"washington_post":"gIQAOWtJAP","icpsr":29911,"house_history":22550},"name":{"first":"Janice","middle":"D.","last":"Schakowsky","nickname":"Jan","official_full":"Janice D. Schakowsky"},"bio":{"birthday":"1944-05-26","gender":"F","religion":"Jewish"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"IL","district":9,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"IL","district":9,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"IL","district":9,"party":"Democrat","url":"http://www.house.gov/schakowsky"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IL","district":9,"party":"Democrat","url":"http://www.house.gov/schakowsky"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IL","district":9,"party":"Democrat","url":"http://www.house.gov/schakowsky"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":9,"party":"Democrat","url":"http://www.house.gov/schakowsky"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":9,"party":"Democrat","url":"http://www.house.gov/schakowsky","address":"2367 Rayburn HOB; Washington DC 20515-1309","phone":"202-225-2111","fax":"202-226-6890","contact_form":"http://www.house.gov/schakowsky/contact.shtml","office":"2367 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":9,"url":"http://schakowsky.house.gov","address":"2367 Rayburn HOB; Washington DC 20515-1309","phone":"202-225-2111","fax":"202-226-6890","contact_form":"https://schakowsky.house.gov/write-to-congresswoman-jan-schakowsky","office":"2367 Rayburn House Office Building","rss_url":"http://schakowsky.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":9,"url":"http://schakowsky.house.gov","address":"2367 Rayburn HOB; Washington DC 20515-1309","phone":"202-225-2111","fax":"202-226-6890","contact_form":"https://schakowsky.house.gov/write-to-congresswoman-jan-schakowsky","office":"2367 Rayburn House Office Building","rss_url":"http://schakowsky.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"S001150","thomas":"01635","govtrack":400361,"opensecrets":"N00009585","votesmart":9489,"fec":["H0CA27085"],"cspan":90167,"wikipedia":"Adam Schiff","ballotpedia":"Adam Schiff","maplight":4450,"washington_post":"gIQAdNd69O","icpsr":20104,"house_history":22560},"name":{"first":"Adam","middle":"B.","last":"Schiff","official_full":"Adam B. Schiff"},"bio":{"birthday":"1960-06-22","gender":"M"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":27,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":29,"party":"Democrat","url":"http://www.house.gov/schiff"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":29,"party":"Democrat","url":"http://www.house.gov/schiff"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":29,"party":"Democrat","url":"http://schiff.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":29,"party":"Democrat","url":"http://schiff.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":29,"party":"Democrat","url":"http://schiff.house.gov","address":"2411 Rayburn HOB; Washington DC 20515-0529","phone":"202-225-4176","fax":"202-225-5828","contact_form":"http://schiff.house.gov/HoR/CA29/Contact+Information/Contact+Form.htm","office":"2411 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":28,"url":"http://schiff.house.gov","address":"2411 Rayburn HOB; Washington DC 20515-0528","phone":"202-225-4176","fax":"202-225-5828","contact_form":"https://schiff.house.gov/email-congressman-schiff1","office":"2411 Rayburn House Office Building","rss_url":"http://schiff.house.gov/common/rss/?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":28,"url":"http://schiff.house.gov","address":"2411 Rayburn HOB; Washington DC 20515-0528","phone":"202-225-4176","fax":"202-225-5828","contact_form":"https://schiff.house.gov/email-congressman-schiff1","office":"2411 Rayburn House Office Building","rss_url":"http://schiff.house.gov/common/rss/?rss=49"}]},{"id":{"bioguide":"S001179","thomas":"01920","govtrack":412314,"opensecrets":"N00029273","votesmart":33428,"fec":["H8IL18043"],"cspan":1030003,"wikipedia":"Aaron Schock","ballotpedia":"Aaron Schock","maplight":7013,"washington_post":"gIQAh1zkMP","icpsr":20914,"house_history":22614},"name":{"first":"Aaron","last":"Schock","official_full":"Aaron Schock"},"bio":{"gender":"M","birthday":"1981-05-28"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":18,"party":"Republican","url":"http://schock.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":18,"party":"Republican","url":"http://schock.house.gov","address":"328 Cannon HOB; Washington DC 20515-1318","phone":"202-225-6201","fax":"202-225-9249","contact_form":"https://forms.house.gov/schock/contact-form.shtml","office":"328 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Republican","district":18,"url":"http://schock.house.gov","address":"328 Cannon HOB; Washington DC 20515-1318","phone":"202-225-6201","fax":"202-225-9249","contact_form":"https://schock.house.gov/contact/contactform.htm?zip5=","office":"328 Cannon House Office Building","rss_url":"http://schock.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Republican","district":18,"url":"http://schock.house.gov","address":"2464 Rayburn HOB; Washington DC 20515-1318","phone":"202-225-6201","fax":"202-225-9249","contact_form":"https://schock.house.gov/contact/contactform.htm?zip5=","office":"2464 Rayburn House Office Building","rss_url":"http://schock.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"S001180","thomas":"01950","govtrack":412315,"opensecrets":"N00030071","votesmart":10813,"fec":["H8OR05107"],"cspan":1031358,"wikipedia":"Kurt Schrader","ballotpedia":"Kurt Schrader","maplight":7147,"washington_post":"gIQA4NoVBP","icpsr":20944,"house_history":22616},"name":{"first":"Kurt","last":"Schrader","official_full":"Kurt Schrader"},"bio":{"birthday":"1951-10-19","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OR","district":5,"party":"Democrat","url":"http://schrader.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OR","district":5,"party":"Democrat","url":"http://schrader.house.gov","address":"314 Cannon HOB; Washington DC 20515-3705","phone":"202-225-5711","fax":"202-225-5699","contact_form":"https://forms.house.gov/schrader/contact-form.shtml","office":"314 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OR","party":"Democrat","district":5,"url":"http://schrader.house.gov","address":"108 Cannon HOB; Washington DC 20515-3705","phone":"202-225-5711","fax":"202-225-5699","contact_form":"https://schrader.house.gov/forms/writeyourrep/","office":"108 Cannon House Office Building","rss_url":"http://schrader.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OR","party":"Democrat","district":5,"url":"http://schrader.house.gov","address":"2431 Rayburn HOB; Washington DC 20515-3705","phone":"202-225-5711","fax":"202-225-5699","contact_form":"https://schrader.house.gov/forms/writeyourrep/","office":"2431 Rayburn House Office Building","rss_url":"http://schrader.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"S000148","thomas":"01036","lis":"S270","govtrack":300087,"opensecrets":"N00001093","votesmart":26976,"icpsr":14858,"fec":["S8NY00082","H0NY16010"],"cspan":5929,"wikipedia":"Chuck Schumer","ballotpedia":"Chuck Schumer","maplight":4603,"washington_post":"gIQAOSQN9O","house_history":21322},"name":{"first":"Charles","middle":"E.","nickname":"Chuck","last":"Schumer","official_full":"Charles E. Schumer"},"bio":{"birthday":"1950-11-23","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"NY","district":10,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"NY","district":10,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"NY","district":10,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NY","district":10,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NY","district":10,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":9,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":9,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":9,"party":"Democrat"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"NY","class":3,"party":"Democrat","url":"http://schumer.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"NY","class":3,"party":"Democrat","url":"http://schumer.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"NY","class":3,"party":"Democrat","url":"http://www.schumer.senate.gov","address":"322 Hart Senate Office Building Washington DC 20510","phone":"202-224-6542","fax":"202-228-3027","contact_form":"http://www.schumer.senate.gov/Contact/contact_chuck.cfm","office":"322 Hart Senate Office Building","state_rank":"senior"}]},{"id":{"bioguide":"S001183","thomas":"01994","govtrack":412399,"opensecrets":"N00006460","votesmart":106387,"fec":["H4AZ06045","H8AZ05097"],"cspan":5205,"wikipedia":"David Schweikert","ballotpedia":"David Schweikert","maplight":6746,"washington_post":"gIQAdnZVKP","icpsr":21105,"house_history":22621},"name":{"first":"David","last":"Schweikert","official_full":"David Schweikert"},"bio":{"birthday":"1962-03-03","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AZ","district":5,"party":"Republican","url":"http://schweikert.house.gov/","address":"1205 Longworth HOB; Washington DC 20515-0305","phone":"202-225-2190","office":"1205 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AZ","party":"Republican","district":6,"url":"http://schweikert.house.gov","address":"1205 Longworth HOB; Washington DC 20515-0306","phone":"202-225-2190","office":"1205 Longworth House Office Building","rss_url":"http://schweikert.house.gov/rss/press-releases.xml","contact_form":"https://schweikert.house.gov/contact-form","fax":"202-225-0096"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","party":"Republican","district":6,"url":"http://schweikert.house.gov","address":"409 Cannon HOB; Washington DC 20515-0306","phone":"202-225-2190","office":"409 Cannon House Office Building","rss_url":"http://schweikert.house.gov/rss/press-releases.xml","contact_form":"https://schweikert.house.gov/contact-form","fax":"202-225-0096"}]},{"id":{"bioguide":"S001189","thomas":"02009","govtrack":412417,"opensecrets":"N00032457","votesmart":11812,"fec":["H0GA08099"],"cspan":623344,"wikipedia":"Austin Scott (politician)","ballotpedia":"Austin Scott","maplight":5627,"washington_post":"gIQADLfVKP","icpsr":21123,"house_history":22631},"name":{"first":"Austin","last":"Scott","official_full":"Austin Scott"},"bio":{"birthday":"1969-12-10","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":8,"party":"Republican","url":"http://austinscott.house.gov/","address":"516 Cannon HOB; Washington DC 20515-1003","phone":"202-225-6531","fax":"202-225-3013","office":"516 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Republican","district":8,"url":"http://austinscott.house.gov","address":"516 Cannon HOB; Washington DC 20515-1008","phone":"202-225-6531","fax":"202-225-3013","office":"516 Cannon House Office Building","contact_form":"https://austinscott.house.gov/email-me/","rss_url":"http://austinscott.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Republican","district":8,"url":"http://austinscott.house.gov","address":"2417 Rayburn HOB; Washington DC 20515-1008","phone":"202-225-6531","fax":"202-225-3013","office":"2417 Rayburn House Office Building","contact_form":"https://austinscott.house.gov/email-me/","rss_url":"http://austinscott.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"S001157","thomas":"01722","govtrack":400363,"opensecrets":"N00024871","votesmart":7826,"fec":["H2GA13012"],"cspan":1003567,"wikipedia":"David Scott (Georgia politician)","ballotpedia":"David Scott (Georgia)","maplight":4451,"washington_post":"gIQAoN2QAP","icpsr":20321,"house_history":22574},"name":{"first":"David","last":"Scott","official_full":"David Scott"},"bio":{"birthday":"1945-06-27","gender":"M","religion":"Baptist"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"GA","district":13,"party":"Democrat","url":"http://www.house.gov/davidscott"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"GA","district":13,"party":"Democrat","url":"http://www.house.gov/davidscott"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"GA","district":13,"party":"Democrat","url":"http://davidscott.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"GA","district":13,"party":"Democrat","url":"http://davidscott.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":13,"party":"Democrat","url":"http://davidscott.house.gov","address":"225 Cannon HOB; Washington DC 20515-1013","phone":"202-225-2939","fax":"202-225-4628","contact_form":"http://www.house.gov/writerep","office":"225 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Democrat","district":13,"url":"http://davidscott.house.gov","address":"225 Cannon HOB; Washington DC 20515-1013","phone":"202-225-2939","fax":"202-225-4628","contact_form":"https://davidscott.house.gov/contact/contactform.htm","office":"225 Cannon House Office Building","rss_url":"http://davidscott.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Democrat","district":13,"url":"http://davidscott.house.gov","address":"225 Cannon HOB; Washington DC 20515-1013","phone":"202-225-2939","fax":"202-225-4628","contact_form":"https://davidscott.house.gov/contact/contactform.htm","office":"225 Cannon House Office Building","rss_url":"http://davidscott.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"S000185","thomas":"01037","govtrack":400364,"opensecrets":"N00002147","votesmart":27117,"fec":["H6VA01117"],"cspan":25888,"wikipedia":"Bobby Scott (U.S. politician)","ballotpedia":"Robert C. Scott","maplight":4452,"washington_post":"gIQAf8WlMP","icpsr":39307,"house_history":21368},"name":{"first":"Robert","middle":"C.","last":"Scott","nickname":"Bobby","official_full":"Robert C. \"Bobby\" Scott"},"bio":{"birthday":"1947-04-30","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"VA","district":3,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"VA","district":3,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"VA","district":3,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"VA","district":3,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"VA","district":3,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"VA","district":3,"party":"Democrat","url":"http://www.house.gov/scott"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"VA","district":3,"party":"Democrat","url":"http://www.house.gov/scott"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"VA","district":3,"party":"Democrat","url":"http://www.house.gov/scott"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"VA","district":3,"party":"Democrat","url":"http://www.house.gov/scott"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VA","district":3,"party":"Democrat","url":"http://www.house.gov/scott","address":"1201 Longworth HOB; Washington DC 20515-4603","phone":"202-225-8351","fax":"202-225-8354","contact_form":"http://www.house.gov/writerep","office":"1201 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VA","party":"Democrat","district":3,"url":"http://www.bobbyscott.house.gov","address":"1201 Longworth HOB; Washington DC 20515-4603","phone":"202-225-8351","fax":"202-225-8354","contact_form":"https://bobbyscott.house.gov/email-bobby-scott","office":"1201 Longworth House Office Building","rss_url":"http://www.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","party":"Democrat","district":3,"url":"http://bobbyscott.house.gov","address":"1201 Longworth HOB; Washington DC 20515-4603","phone":"202-225-8351","fax":"202-225-8354","contact_form":"https://bobbyscott.house.gov/email-bobby-scott","office":"1201 Longworth House Office Building","rss_url":"http://www.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"S001184","thomas":"02056","lis":"S365","govtrack":412471,"opensecrets":"N00031782","votesmart":11940,"fec":["H0SC01279","S4SC00240"],"cspan":623506,"wikipedia":"Tim Scott","ballotpedia":"Tim Scott","maplight":10589,"washington_post":"gIQAKxVWKP","icpsr":21173,"house_history":22623},"name":{"first":"Tim","last":"Scott","official_full":"Tim Scott"},"bio":{"birthday":"1965-09-19","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-02","state":"SC","district":1,"party":"Republican","url":"http://timscott.house.gov/","address":"1117 Longworth HOB; Washington DC 20515-4001","phone":"202-225-3176","fax":"202-225-3407","office":"1117 Longworth House Office Building"},{"type":"sen","start":"2013-01-03","end":"2015-01-03","state":"SC","party":"Republican","class":3,"url":"http://www.scott.senate.gov","address":"167 Russell Senate Office Building Washington DC 20510","phone":"202-224-6121","fax":"202-225-3407","office":"167 Russell Senate Office Building","state_rank":"junior","contact_form":"http://www.scott.senate.gov/contact/email-me","rss_url":"http://www.scott.senate.gov/rss.xml"},{"type":"sen","start":"2015-01-06","end":"2017-01-03","state":"SC","party":"Republican","class":3,"url":"http://www.scott.senate.gov","address":"167 Russell Senate Office Building Washington DC 20510","phone":"202-224-6121","fax":"202-225-3407","office":"167 Russell Senate Office Building","state_rank":"junior","contact_form":"http://www.scott.senate.gov/contact/email-me","rss_url":"http://www.scott.senate.gov/rss.xml"}]},{"id":{"bioguide":"S000244","thomas":"01041","govtrack":400365,"opensecrets":"N00004291","votesmart":27142,"icpsr":14657,"fec":["H8WI09050"],"cspan":1507,"wikipedia":"Jim Sensenbrenner","ballotpedia":"Jim Sensenbrenner","maplight":4453,"washington_post":"gIQAk3QFAP","house_history":21438},"name":{"first":"F.","middle":"James","last":"Sensenbrenner","suffix":"Jr.","official_full":"F. James Sensenbrenner Jr."},"bio":{"birthday":"1943-06-14","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"WI","district":9,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"WI","district":5,"party":"Republican","url":"http://www.house.gov/sensenbrenner"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WI","district":5,"party":"Republican","url":"http://www.house.gov/sensenbrenner"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WI","district":5,"party":"Republican","url":"http://www.house.gov/sensenbrenner"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WI","district":5,"party":"Republican","url":"http://www.house.gov/sensenbrenner"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WI","district":5,"party":"Republican","url":"http://www.house.gov/sensenbrenner","address":"2449 Rayburn HOB; Washington DC 20515-4905","phone":"202-225-5101","fax":"202-225-3190","contact_form":"http://sensenbrenner.house.gov/email_zip.htm","office":"2449 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WI","party":"Republican","district":5,"url":"http://sensenbrenner.house.gov","address":"2449 Rayburn HOB; Washington DC 20515-4905","phone":"202-225-5101","fax":"202-225-3190","contact_form":"http://sensenbrenner.house.gov/contact/email.htm","office":"2449 Rayburn House Office Building","rss_url":"http://sensenbrenner.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WI","party":"Republican","district":5,"url":"http://sensenbrenner.house.gov","address":"2449 Rayburn HOB; Washington DC 20515-4905","phone":"202-225-5101","fax":"202-225-3190","contact_form":"http://sensenbrenner.house.gov/contact/email.htm","office":"2449 Rayburn House Office Building","rss_url":"http://sensenbrenner.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"S000248","thomas":"01042","govtrack":400366,"opensecrets":"N00001813","votesmart":26981,"icpsr":29134,"fec":["H0NY18065"],"cspan":14306,"wikipedia":"José E. Serrano","maplight":4454,"washington_post":"gIQAsIfJAP","house_history":21443},"name":{"first":"José","middle":"E.","last":"Serrano","official_full":"José E. Serrano"},"bio":{"birthday":"1943-10-24","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NY","district":18,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NY","district":18,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":16,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":16,"party":"Democrat","url":"http://www.house.gov/serrano"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":16,"party":"Democrat","url":"http://www.house.gov/serrano"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":16,"party":"Democrat","url":"http://www.house.gov/serrano"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":16,"party":"Democrat","url":"http://www.house.gov/serrano"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":16,"party":"Democrat","url":"http://www.house.gov/serrano","address":"2227 Rayburn HOB; Washington DC 20515-3216","phone":"202-225-4361","fax":"202-225-6001","contact_form":"http://serrano.house.gov/Forms/Contact.aspx","office":"2227 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":15,"url":"http://serrano.house.gov","address":"2227 Rayburn HOB; Washington DC 20515-3215","phone":"202-225-4361","fax":"202-225-6001","contact_form":"https://serrano.house.gov/contact-me/email-me","office":"2227 Rayburn House Office Building","rss_url":"http://serrano.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":15,"url":"http://serrano.house.gov","address":"2227 Rayburn HOB; Washington DC 20515-3215","phone":"202-225-4361","fax":"202-225-6001","contact_form":"https://serrano.house.gov/contact-me/email-me","office":"2227 Rayburn House Office Building","rss_url":"http://serrano.house.gov/rss.xml"}]},{"id":{"bioguide":"S000250","thomas":"01525","govtrack":400367,"opensecrets":"N00005681","votesmart":288,"fec":["H2TX03126"],"cspan":36807,"wikipedia":"Pete Sessions","ballotpedia":"Pete Sessions","maplight":4455,"washington_post":"gIQAabpX9O","icpsr":29759,"house_history":21446},"name":{"first":"Pete","middle":"A.","last":"Sessions","official_full":"Pete Sessions"},"bio":{"birthday":"1955-03-22","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":5,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":5,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":5,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":32,"party":"Republican","url":"http://www.house.gov/sessions"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":32,"party":"Republican","url":"http://www.house.gov/sessions"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":32,"party":"Republican","url":"http://www.house.gov/sessions"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":32,"party":"Republican","url":"http://www.house.gov/sessions"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":32,"party":"Republican","url":"http://www.house.gov/sessions","address":"2233 Rayburn HOB; Washington DC 20515-4332","phone":"202-225-2231","fax":"202-225-5878","contact_form":"http://www.house.gov/sessionsform/emailform.htm","office":"2233 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":32,"url":"http://sessions.house.gov","address":"2233 Rayburn HOB; Washington DC 20515-4332","phone":"202-225-2231","fax":"202-225-5878","contact_form":"https://sessions.house.gov/index.cfm/contact-form","office":"2233 Rayburn House Office Building","rss_url":"http://sessions.house.gov/?a=rss.feed"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":32,"url":"http://sessions.house.gov","address":"2233 Rayburn HOB; Washington DC 20515-4332","phone":"202-225-2231","fax":"202-225-5878","contact_form":"https://sessions.house.gov/index.cfm/contact-form","office":"2233 Rayburn House Office Building","rss_url":"http://sessions.house.gov/?a=rss.feed"}]},{"id":{"bioguide":"S001185","thomas":"01988","govtrack":412396,"opensecrets":"N00030622","votesmart":121621,"fec":["H0AL07086"],"cspan":623257,"wikipedia":"Terri Sewell","ballotpedia":"Terri Sewell","maplight":5397,"washington_post":"gIQAsFMZKP","icpsr":21102,"house_history":22624},"name":{"first":"Terri","last":"Sewell","official_full":"Terri A. Sewell","middle":"A."},"bio":{"birthday":"1965-01-01","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AL","district":7,"party":"Democrat","url":"http://sewell.house.gov/","address":"1133 Longworth HOB; Washington DC 20515-0107","phone":"202-225-2665","fax":"202-226-9567","office":"1133 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AL","party":"Democrat","district":7,"url":"http://sewell.house.gov","address":"1133 Longworth HOB; Washington DC 20515-0107","phone":"202-225-2665","fax":"202-226-9567","office":"1133 Longworth House Office Building","rss_url":"http://sewell.house.gov/rss.xml","contact_form":"https://sewell.house.gov/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AL","party":"Democrat","district":7,"url":"http://sewell.house.gov","address":"1133 Longworth HOB; Washington DC 20515-0107","phone":"202-225-2665","fax":"202-226-9567","office":"1133 Longworth House Office Building","rss_url":"http://sewell.house.gov/rss.xml","contact_form":"https://sewell.house.gov/email-me"}]},{"id":{"bioguide":"S000320","thomas":"01049","lis":"S184","govtrack":300089,"opensecrets":"N00009920","votesmart":53266,"icpsr":14659,"fec":["S6AL00013"],"cspan":1859,"wikipedia":"Richard Shelby","ballotpedia":"Richard Shelby","maplight":4605,"washington_post":"gIQARAfM9O","house_history":21534},"name":{"first":"Richard","middle":"C.","last":"Shelby","official_full":"Richard C. Shelby"},"bio":{"birthday":"1934-05-06","gender":"M","religion":"Presbyterian"},"terms":[{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"AL","district":7,"party":"Democrat"},{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"AL","district":7,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"AL","district":7,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"AL","district":7,"party":"Democrat"},{"type":"sen","start":"1987-01-06","end":"1992-10-09","state":"AL","class":3,"party":"Democrat"},{"type":"sen","start":"1993-01-05","end":"1998-12-19","state":"AL","class":3,"party":"Republican","party_affiliations":[{"start":"1993-01-05","end":"1994-11-09","party":"Democrat"},{"start":"1994-11-09","end":"2004-12-09","party":"Republican"}]},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"AL","class":3,"party":"Republican","url":"http://shelby.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"AL","class":3,"party":"Republican","url":"http://shelby.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"AL","class":3,"party":"Republican","url":"http://www.shelby.senate.gov","address":"304 Russell Senate Office Building Washington DC 20510","phone":"202-224-5744","fax":"202-224-3416","contact_form":"http://www.shelby.senate.gov/public/index.cfm/emailsenatorshelby","office":"304 Russell Senate Office Building","state_rank":"senior","rss_url":"http://www.shelby.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"S000344","thomas":"01526","govtrack":400371,"opensecrets":"N00006897","votesmart":142,"fec":["H6CA24113"],"cspan":45124,"wikipedia":"Brad Sherman","maplight":4459,"washington_post":"gIQAxbtdKP","icpsr":29707,"house_history":21565},"name":{"first":"Brad","middle":"J.","last":"Sherman","official_full":"Brad Sherman"},"bio":{"birthday":"1954-10-24","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":24,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":24,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":24,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":27,"party":"Democrat","url":"http://www.house.gov/sherman"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":27,"party":"Democrat","url":"http://www.house.gov/sherman"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":27,"party":"Democrat","url":"http://bradsherman.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":27,"party":"Democrat","url":"http://bradsherman.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":27,"party":"Democrat","url":"http://bradsherman.house.gov","address":"2242 Rayburn HOB; Washington DC 20515-0527","phone":"202-225-5911","fax":"202-225-5879","contact_form":"http://www.house.gov/sherman/contact/","office":"2242 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":30,"url":"http://bradsherman.house.gov","address":"2242 Rayburn HOB; Washington DC 20515-0530","phone":"202-225-5911","fax":"202-225-5879","contact_form":"http://sherman.house.gov/contact/contact-congressman-sherman-form","office":"2242 Rayburn House Office Building","rss_url":"http://bradsherman.house.gov/press-releases-and-columns/rss.shtml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":30,"url":"http://sherman.house.gov","address":"2242 Rayburn HOB; Washington DC 20515-0530","phone":"202-225-5911","fax":"202-225-5879","contact_form":"http://sherman.house.gov/contact/contact-congressman-sherman-form","office":"2242 Rayburn House Office Building","rss_url":"http://bradsherman.house.gov/press-releases-and-columns/rss.shtml"}]},{"id":{"bioguide":"S000364","thomas":"01527","govtrack":400373,"opensecrets":"N00004961","votesmart":246,"fec":["H2IL20042"],"cspan":30623,"wikipedia":"John Shimkus","ballotpedia":"John M. Shimkus","maplight":4461,"washington_post":"gIQApUPnMP","icpsr":29718,"house_history":21589},"name":{"first":"John","middle":"M.","last":"Shimkus","official_full":"John Shimkus"},"bio":{"birthday":"1958-02-21","gender":"M","religion":"Lutheran"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"IL","district":20,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"IL","district":20,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"IL","district":20,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"IL","district":19,"party":"Republican","url":"http://www.house.gov/shimkus"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IL","district":19,"party":"Republican","url":"http://www.house.gov/shimkus"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IL","district":19,"party":"Republican","url":"http://www.house.gov/shimkus"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":19,"party":"Republican","url":"http://www.house.gov/shimkus"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":19,"party":"Republican","url":"http://www.house.gov/shimkus","address":"2452 Rayburn HOB; Washington DC 20515-1319","phone":"202-225-5271","fax":"202-225-5880","contact_form":"http://www.house.gov/shimkus/emailme.shtml","office":"2452 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Republican","district":15,"url":"http://shimkus.house.gov","address":"2452 Rayburn HOB; Washington DC 20515-1315","phone":"202-225-5271","fax":"202-225-5880","contact_form":"https://shimkus.house.gov/contact/email-me","office":"2452 Rayburn House Office Building","rss_url":"http://shimkus.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Republican","district":15,"url":"http://shimkus.house.gov","address":"2217 Rayburn HOB; Washington DC 20515-1315","phone":"202-225-5271","fax":"202-225-5880","contact_form":"https://shimkus.house.gov/contact/email-me","office":"2217 Rayburn House Office Building","rss_url":"http://shimkus.house.gov/rss.xml"}]},{"id":{"bioguide":"S001154","thomas":"01681","govtrack":409888,"opensecrets":"N00013770","votesmart":55693,"fec":["H2PA09035"],"cspan":89108,"wikipedia":"Bill Shuster","maplight":4666,"washington_post":"gIQAcujSAP","icpsr":20134,"house_history":22568},"name":{"first":"Bill","last":"Shuster","official_full":"Bill Shuster"},"bio":{"birthday":"1961-01-10","gender":"M"},"terms":[{"type":"rep","start":"2001-05-17","end":"2002-11-22","state":"PA","district":9,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"PA","district":9,"party":"Republican","url":"http://www.house.gov/shuster"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"PA","district":9,"party":"Republican","url":"http://www.house.gov/shuster"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"PA","district":9,"party":"Republican","url":"http://www.house.gov/shuster"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"PA","district":9,"party":"Republican","url":"http://www.house.gov/shuster"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":9,"party":"Republican","url":"http://www.house.gov/shuster","address":"204 Cannon HOB; Washington DC 20515-3809","phone":"202-225-2431","fax":"202-225-2486","contact_form":"http://www.house.gov/shuster/zipauth.htm","office":"204 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":9,"url":"http://shuster.house.gov","address":"2209 Rayburn HOB; Washington DC 20515-3809","phone":"202-225-2431","fax":"202-225-2486","contact_form":"http://shuster.house.gov/contact-form/","office":"2209 Rayburn House Office Building","rss_url":"http://shuster.house.gov/common/rss//index.cfm?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":9,"url":"http://shuster.house.gov","address":"2268 Rayburn HOB; Washington DC 20515-3809","phone":"202-225-2431","fax":"202-225-2486","contact_form":"http://shuster.house.gov/contact-form/","office":"2268 Rayburn House Office Building","rss_url":"http://shuster.house.gov/common/rss//index.cfm?rss=49"}],"family":[{"name":"E. G. ?Bud? Shuster","relation":"son"}]},{"id":{"bioguide":"S001148","thomas":"01590","govtrack":400376,"opensecrets":"N00006263","votesmart":2917,"fec":["H8ID02064"],"cspan":57889,"wikipedia":"Mike Simpson","ballotpedia":"Michael K. Simpson","maplight":4463,"washington_post":"gIQARxVLAP","icpsr":29910,"house_history":22556},"name":{"first":"Michael","middle":"K.","last":"Simpson","nickname":"Mike","official_full":"Michael K. Simpson"},"bio":{"birthday":"1950-09-08","gender":"M","religion":"Latter Day Saints"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"ID","district":2,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"ID","district":2,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"ID","district":2,"party":"Republican","url":"http://www.house.gov/simpson"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"ID","district":2,"party":"Republican","url":"http://www.house.gov/simpson"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"ID","district":2,"party":"Republican","url":"http://www.house.gov/simpson"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"ID","district":2,"party":"Republican","url":"http://www.house.gov/simpson"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"ID","district":2,"party":"Republican","url":"http://www.house.gov/simpson","address":"2312 Rayburn HOB; Washington DC 20515-1202","phone":"202-225-5531","fax":"202-225-8216","contact_form":"http://www.house.gov/simpson/emailme.shtml","office":"2312 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"ID","party":"Republican","district":2,"url":"http://simpson.house.gov","address":"2312 Rayburn HOB; Washington DC 20515-1202","phone":"202-225-5531","fax":"202-225-8216","contact_form":"http://simpson.house.gov/contact/","office":"2312 Rayburn House Office Building","rss_url":"http://simpson.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"ID","party":"Republican","district":2,"url":"http://simpson.house.gov","address":"2312 Rayburn HOB; Washington DC 20515-1202","phone":"202-225-5531","fax":"202-225-8216","contact_form":"http://simpson.house.gov/contact/","office":"2312 Rayburn House Office Building","rss_url":"http://simpson.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"S001165","thomas":"01818","govtrack":412186,"opensecrets":"N00027523","votesmart":22510,"fec":["H6NJ13191"],"cspan":1022293,"wikipedia":"Albio Sires","ballotpedia":"Albio Sires","maplight":4670,"washington_post":"gIQADYaQAP","icpsr":20542,"house_history":22587},"name":{"first":"Albio","last":"Sires","official_full":"Albio Sires"},"bio":{"birthday":"1951-01-26","gender":"M"},"terms":[{"type":"rep","start":"2006-11-13","end":"2006-12-09","state":"NJ","district":13,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NJ","district":13,"party":"Democrat","url":"http://www.house.gov/sires"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NJ","district":13,"party":"Democrat","url":"http://www.house.gov/sires"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NJ","district":13,"party":"Democrat","url":"http://www.house.gov/sires","address":"2342 Rayburn HOB; Washington DC 20515-3013","phone":"202-225-7919","fax":"202-226-0792","contact_form":"https://forms.house.gov/sires/webforms/issue_subscribe.htm","office":"2342 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Democrat","district":8,"url":"http://sires.house.gov","address":"2342 Rayburn HOB; Washington DC 20515-3008","phone":"202-225-7919","fax":"202-226-0792","contact_form":"https://sires.house.gov/contact-me/email-me","office":"2342 Rayburn House Office Building","rss_url":"http://sires.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Democrat","district":8,"url":"http://sires.house.gov","address":"2342 Rayburn HOB; Washington DC 20515-3008","phone":"202-225-7919","fax":"202-226-0792","contact_form":"https://sires.house.gov/contact-me/email-me","office":"2342 Rayburn House Office Building","rss_url":"http://sires.house.gov/rss.xml"}]},{"id":{"bioguide":"S000480","thomas":"01069","govtrack":400378,"opensecrets":"N00001311","votesmart":26991,"icpsr":15444,"fec":["H6NY03031"],"cspan":1755,"wikipedia":"Louise Slaughter","maplight":4465,"washington_post":"gIQA2WJY9O","house_history":21738},"name":{"first":"Louise","middle":"McIntosh","last":"Slaughter","official_full":"Louise McIntosh Slaughter"},"bio":{"birthday":"1929-08-14","gender":"F","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"NY","district":30,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NY","district":30,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NY","district":30,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":28,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":28,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":28,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":28,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":28,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":28,"party":"Democrat","url":"http://www.house.gov/slaughter"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":28,"party":"Democrat","url":"http://www.house.gov/slaughter"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":28,"party":"Democrat","url":"http://www.louise.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":28,"party":"Democrat","url":"http://www.louise.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":28,"party":"Democrat","url":"http://www.louise.house.gov","address":"2469 Rayburn HOB; Washington DC 20515-3228","phone":"202-225-3615","fax":"202-225-7822","contact_form":"http://www.louise.house.gov/index.php?option=com_content&task=view&id=506&Itemid=150","office":"2469 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":25,"url":"http://www.louise.house.gov","address":"2469 Rayburn HOB; Washington DC 20515-3225","phone":"202-225-3615","fax":"202-225-7822","contact_form":"https://louise.house.gov/contact-louise","office":"2469 Rayburn House Office Building","rss_url":"http://louise.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":25,"url":"http://www.louise.house.gov","address":"2469 Rayburn HOB; Washington DC 20515-3225","phone":"202-225-3615","fax":"202-225-7822","contact_form":"https://louise.house.gov/contact-louise","office":"2469 Rayburn House Office Building","rss_url":"http://louise.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"S000510","thomas":"01528","govtrack":400379,"opensecrets":"N00007833","votesmart":845,"fec":["H6WA09025"],"cspan":44329,"wikipedia":"Adam Smith (politician)","ballotpedia":"Adam Smith","maplight":4468,"washington_post":"gIQAiu9RKP","icpsr":29768,"house_history":21774},"name":{"first":"Adam","last":"Smith","official_full":"Adam Smith"},"bio":{"birthday":"1965-06-15","gender":"M","religion":"Christian"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"WA","district":9,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"WA","district":9,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"WA","district":9,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"WA","district":9,"party":"Democrat","url":"http://www.house.gov/adamsmith"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"WA","district":9,"party":"Democrat","url":"http://www.house.gov/adamsmith"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"WA","district":9,"party":"Democrat","url":"http://www.house.gov/adamsmith"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"WA","district":9,"party":"Democrat","url":"http://www.house.gov/adamsmith"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"WA","district":9,"party":"Democrat","url":"http://www.house.gov/adamsmith","address":"2402 Rayburn HOB; Washington DC 20515-4709","phone":"202-225-8901","fax":"202-225-5893","contact_form":"http://adamsmith.house.gov/Contact/","office":"2402 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Democrat","district":9,"url":"http://adamsmith.house.gov","address":"2264 Rayburn HOB; Washington DC 20515-4709","phone":"202-225-8901","fax":"202-225-5893","contact_form":"https://adamsmith.house.gov/contact/contactform.htm","office":"2264 Rayburn House Office Building","rss_url":"http://www.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Democrat","district":9,"url":"http://adamsmith.house.gov","address":"2264 Rayburn HOB; Washington DC 20515-4709","phone":"202-225-8901","fax":"202-225-5893","contact_form":"https://adamsmith.house.gov/contact/contactform.htm","office":"2264 Rayburn House Office Building","rss_url":"http://www.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"S001172","thomas":"01860","govtrack":412217,"opensecrets":"N00027623","votesmart":21284,"fec":["H6NE03115"],"cspan":1022845,"wikipedia":"Adrian Smith (politician)","ballotpedia":"Adrian Smith","maplight":4699,"washington_post":"gIQAJnjSAP","icpsr":20729,"house_history":22600},"name":{"first":"Adrian","last":"Smith","official_full":"Adrian Smith"},"bio":{"birthday":"1970-12-19","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NE","district":3,"party":"Republican","url":"http://adriansmith.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NE","district":3,"party":"Republican","url":"http://adriansmith.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NE","district":3,"party":"Republican","url":"http://adriansmith.house.gov","address":"503 Cannon HOB; Washington DC 20515-2703","phone":"202-225-6435","fax":"202-225-0207","contact_form":"http://www.house.gov/formadriansmith/issues_subscribe.htm","office":"503 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NE","party":"Republican","district":3,"url":"http://adriansmith.house.gov","address":"2241 Rayburn HOB; Washington DC 20515-2703","phone":"202-225-6435","fax":"202-225-0207","contact_form":"https://adriansmith.house.gov/contact-me/email-me","office":"2241 Rayburn House Office Building","rss_url":"http://adriansmith.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NE","party":"Republican","district":3,"url":"http://adriansmith.house.gov","address":"2241 Rayburn HOB; Washington DC 20515-2703","phone":"202-225-6435","fax":"202-225-0207","contact_form":"https://adriansmith.house.gov/contact-me/email-me","office":"2241 Rayburn House Office Building","rss_url":"http://adriansmith.house.gov/rss.xml"}]},{"id":{"bioguide":"S000522","thomas":"01071","govtrack":400380,"opensecrets":"N00009816","votesmart":26952,"icpsr":14863,"fec":["H8NJ04014"],"cspan":6411,"wikipedia":"Chris Smith (New Jersey politician)","maplight":4466,"washington_post":"gIQA3TasAP","house_history":21787},"name":{"first":"Christopher","middle":"H.","last":"Smith","nickname":"Chris","official_full":"Christopher H. Smith"},"bio":{"birthday":"1953-03-04","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NJ","district":4,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NJ","district":4,"party":"Republican","url":"http://www.house.gov/chrissmith"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NJ","district":4,"party":"Republican","url":"http://www.house.gov/chrissmith"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NJ","district":4,"party":"Republican","url":"http://www.house.gov/chrissmith"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NJ","district":4,"party":"Republican","url":"http://www.house.gov/chrissmith"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NJ","district":4,"party":"Republican","url":"http://www.house.gov/chrissmith","address":"2373 Rayburn HOB; Washington DC 20515-3004","phone":"202-225-3765","fax":"202-225-7768","contact_form":"http://chrissmith.house.gov/zipauth.html","office":"2373 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Republican","district":4,"url":"http://chrissmith.house.gov","address":"2373 Rayburn HOB; Washington DC 20515-3004","phone":"202-225-3765","fax":"202-225-7768","contact_form":"https://chrissmith.house.gov/contact/write.htm","office":"2373 Rayburn House Office Building","rss_url":"http://chrissmith.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Republican","district":4,"url":"http://chrissmith.house.gov","address":"2373 Rayburn HOB; Washington DC 20515-3004","phone":"202-225-3765","fax":"202-225-7768","contact_form":"https://chrissmith.house.gov/contact/write.htm","office":"2373 Rayburn House Office Building","rss_url":"http://chrissmith.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"S000583","thomas":"01075","govtrack":400381,"opensecrets":"N00001811","votesmart":27097,"icpsr":15445,"fec":["H6TX21012"],"cspan":8884,"wikipedia":"Lamar S. Smith","ballotpedia":"Texas%27 21st congressional district elections, 2012","maplight":4467,"washington_post":"gIQA2CjGAP","house_history":21856},"name":{"first":"Lamar","middle":"S.","last":"Smith","official_full":"Lamar Smith"},"bio":{"birthday":"1947-11-19","gender":"M","religion":"Christian Scientist"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"TX","district":21,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"TX","district":21,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"TX","district":21,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"TX","district":21,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TX","district":21,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":21,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":21,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":21,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":21,"party":"Republican","url":"http://lamarsmith.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":21,"party":"Republican","url":"http://lamarsmith.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":21,"party":"Republican","url":"http://lamarsmith.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":21,"party":"Republican","url":"http://lamarsmith.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":21,"party":"Republican","url":"http://lamarsmith.house.gov","address":"2409 Rayburn HOB; Washington DC 20515-4321","phone":"202-225-4236","fax":"202-225-8628","contact_form":"http://lamarsmith.house.gov/contact.aspx?section=Mail","office":"2409 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":21,"url":"http://lamarsmith.house.gov","address":"2409 Rayburn HOB; Washington DC 20515-4321","phone":"202-225-4236","fax":"202-225-8628","contact_form":"http://lamarsmith.house.gov/contact/email-lamar","office":"2409 Rayburn House Office Building","rss_url":"http://lamarsmith.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":21,"url":"http://lamarsmith.house.gov","address":"2409 Rayburn HOB; Washington DC 20515-4321","phone":"202-225-4236","fax":"202-225-8628","contact_form":"http://lamarsmith.house.gov/contact/email-lamar","office":"2409 Rayburn House Office Building","rss_url":"http://lamarsmith.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"S001175","thomas":"01890","govtrack":412259,"opensecrets":"N00029649","votesmart":8425,"fec":["H8CA12171"],"cspan":1027627,"wikipedia":"Jackie Speier","maplight":6946,"washington_post":"gIQAvManMP","icpsr":20762,"house_history":22606},"name":{"first":"Jackie","last":"Speier","official_full":"Jackie Speier"},"bio":{"birthday":"1950-05-14","gender":"F"},"terms":[{"type":"rep","start":"2008-04-08","end":"2009-01-03","state":"CA","district":12,"party":"Democrat","url":"http://speier.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":12,"party":"Democrat","url":"http://speier.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":12,"party":"Democrat","url":"http://speier.house.gov/","address":"211 Cannon HOB; Washington DC 20515-0512","phone":"202-225-3531","fax":"202-347-0956","contact_form":"http://speier.house.gov/IMA/issue_subscribe.htm","office":"211 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":14,"url":"http://speier.house.gov","address":"211 Cannon HOB; Washington DC 20515-0514","phone":"202-225-3531","fax":"202-347-0956","contact_form":"https://forms.house.gov/speier/webforms/email_jackie.shtml","office":"211 Cannon House Office Building","rss_url":"http://speier.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":14,"url":"http://speier.house.gov","address":"2465 Rayburn HOB; Washington DC 20515-0514","phone":"202-225-3531","fax":"202-347-0956","contact_form":"https://forms.house.gov/speier/webforms/email_jackie.shtml","office":"2465 Rayburn House Office Building","rss_url":"http://speier.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"S001187","thomas":"02047","govtrack":412461,"opensecrets":"N00029574","votesmart":45333,"fec":["H8OH15076"],"cspan":62320,"wikipedia":"Steve Stivers","ballotpedia":"Steve Stivers","maplight":7141,"washington_post":"gIQA88sTKP","icpsr":21163,"house_history":22627},"name":{"first":"Steve","last":"Stivers","official_full":"Steve Stivers"},"bio":{"birthday":"1965-03-24","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":15,"party":"Republican","url":"http://stivers.house.gov/","address":"1007 Longworth HOB; Washington DC 20515-3515","phone":"202-225-2015","fax":"202-225-3529","office":"1007 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":15,"url":"http://stivers.house.gov","address":"1022 Longworth HOB; Washington DC 20515-3515","phone":"202-225-2015","fax":"202-225-3529","office":"1022 Longworth House Office Building","rss_url":"http://stivers.house.gov/news/rss.aspx","contact_form":"https://stivers.house.gov/forms/writeyourrep/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":15,"url":"http://stivers.house.gov","address":"1022 Longworth HOB; Washington DC 20515-3515","phone":"202-225-2015","fax":"202-225-3529","office":"1022 Longworth House Office Building","rss_url":"http://stivers.house.gov/news/rss.aspx","contact_form":"https://stivers.house.gov/forms/writeyourrep/"}]},{"id":{"bioguide":"S001188","thomas":"01981","govtrack":412392,"opensecrets":"N00030891","votesmart":34230,"fec":["H0IN03198","S0IN00095"],"cspan":9267685,"wikipedia":"Marlin Stutzman","ballotpedia":"Marlin Stutzman","maplight":5693,"washington_post":"gIQANwHaKP","icpsr":21100,"house_history":22629},"name":{"first":"Marlin","middle":"A.","last":"Stutzman","official_full":"Marlin A. Stutzman"},"bio":{"birthday":"1976-08-31","gender":"M"},"terms":[{"type":"rep","start":"2010-11-16","end":"2010-12-22","state":"IN","district":3,"party":"Republican","url":"http://stutzman.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IN","district":3,"party":"Republican","url":"http://stutzman.house.gov","address":"1728 Longworth HOB; Washington DC 20515-1403","phone":"202-225-4436","fax":"202-225-3479","office":"1728 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Republican","district":3,"url":"http://stutzman.house.gov","address":"1728 Longworth HOB; Washington DC 20515-1403","phone":"202-225-4436","fax":"202-226-9870","office":"1728 Longworth House Office Building","rss_url":"http://stutzman.house.gov/press_releases.rss","contact_form":"http://stutzman.house.gov/contacts/new"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Republican","district":3,"url":"http://stutzman.house.gov","address":"2418 Rayburn HOB; Washington DC 20515-1403","phone":"202-225-4436","fax":"202-226-9870","office":"2418 Rayburn House Office Building","rss_url":"http://stutzman.house.gov/press_releases.rss","contact_form":"http://stutzman.house.gov/contacts/new"}]},{"id":{"bioguide":"S001156","thomas":"01757","govtrack":400355,"opensecrets":"N00024870","votesmart":29674,"fec":["H2CA39078"],"cspan":1003554,"wikipedia":"Linda Sánchez","maplight":4445,"washington_post":"gIQAqylHAP","icpsr":20310,"house_history":22572},"name":{"first":"Linda","middle":"T.","last":"Sánchez","official_full":"Linda T. Sánchez"},"bio":{"birthday":"1969-01-28","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":39,"party":"Democrat","url":"http://www.house.gov/lindasanchez"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":39,"party":"Democrat","url":"http://www.house.gov/lindasanchez"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":39,"party":"Democrat","url":"http://www.house.gov/lindasanchez"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":39,"party":"Democrat","url":"http://www.house.gov/lindasanchez"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":39,"party":"Democrat","url":"http://www.house.gov/lindasanchez","address":"2423 Rayburn HOB; Washington DC 20515-0539","phone":"202-225-6676","fax":"202-226-1012","contact_form":"http://www.house.gov/writerep","office":"2423 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":38,"url":"http://lindasanchez.house.gov","address":"2423 Rayburn HOB; Washington DC 20515-0538","phone":"202-225-6676","fax":"202-226-1012","contact_form":"https://forms.house.gov/lindasanchez/webforms/issue_subscribe.htm","office":"2423 Rayburn House Office Building","rss_url":"http://lindasanchez.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":38,"url":"http://lindasanchez.house.gov","address":"2329 Rayburn HOB; Washington DC 20515-0538","phone":"202-225-6676","fax":"202-226-1012","contact_form":"https://forms.house.gov/lindasanchez/webforms/issue_subscribe.htm","office":"2329 Rayburn House Office Building","rss_url":"http://lindasanchez.house.gov/index.php?format=feed&type=rss"}],"family":[{"name":"Loretta Sanchez","relation":"sister"}]},{"id":{"bioguide":"T000193","thomas":"01151","govtrack":400402,"opensecrets":"N00003288","votesmart":26929,"fec":["H4MS02068"],"cspan":7304,"wikipedia":"Bennie Thompson","maplight":4487,"washington_post":"gIQAfwiAAP","icpsr":29368,"house_history":22870},"name":{"first":"Bennie","middle":"G.","last":"Thompson","official_full":"Bennie G. Thompson"},"bio":{"birthday":"1948-01-28","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1993-04-13","end":"1994-12-01","state":"MS","district":2,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MS","district":2,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MS","district":2,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MS","district":2,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MS","district":2,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MS","district":2,"party":"Democrat","url":"http://www.house.gov/thompson"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MS","district":2,"party":"Democrat","url":"http://www.house.gov/thompson"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MS","district":2,"party":"Democrat","url":"http://benniethompson.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MS","district":2,"party":"Democrat","url":"http://benniethompson.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MS","district":2,"party":"Democrat","url":"http://benniethompson.house.gov","address":"2466 Rayburn HOB; Washington DC 20515-2402","phone":"202-225-5876","fax":"202-225-5898","contact_form":"https://forms.house.gov/benniethompson/contact-form.shtml","office":"2466 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MS","party":"Democrat","district":2,"url":"http://benniethompson.house.gov","address":"2466 Rayburn HOB; Washington DC 20515-2402","phone":"202-225-5876","fax":"202-225-5898","contact_form":"https://forms.house.gov/benniethompson/contact-form.shtml","office":"2466 Rayburn House Office Building","rss_url":"http://benniethompson.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MS","party":"Democrat","district":2,"url":"http://benniethompson.house.gov","address":"2466 Rayburn HOB; Washington DC 20515-2402","phone":"202-225-5876","fax":"202-225-5898","contact_form":"https://forms.house.gov/benniethompson/contact-form.shtml","office":"2466 Rayburn House Office Building","rss_url":"http://benniethompson.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"T000460","thomas":"01593","govtrack":400403,"opensecrets":"N00007419","votesmart":3564,"fec":["H8CA01109"],"cspan":57872,"wikipedia":"Mike Thompson (California politician)","maplight":4486,"washington_post":"gIQAxsgIAP","icpsr":29901,"house_history":23200},"name":{"first":"Mike","middle":"Michael","last":"Thompson","official_full":"Mike Thompson"},"bio":{"birthday":"1951-01-24","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":1,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":1,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":1,"party":"Democrat","url":"http://www.house.gov/mthompson"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":1,"party":"Democrat","url":"http://www.house.gov/mthompson"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":1,"party":"Democrat","url":"http://mikethompson.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":1,"party":"Democrat","url":"http://mikethompson.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":1,"party":"Democrat","url":"http://mikethompson.house.gov","address":"231 Cannon HOB; Washington DC 20515-0501","phone":"202-225-3311","fax":"202-225-4335","contact_form":"http://mikethompson.house.gov/contact/email.shtml","office":"231 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":5,"url":"http://mikethompson.house.gov","address":"231 Cannon HOB; Washington DC 20515-0505","phone":"202-225-3311","fax":"202-225-4335","contact_form":"https://mikethompson.house.gov/contact/email-me","office":"231 Cannon House Office Building","rss_url":"http://mikethompson.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":5,"url":"http://mikethompson.house.gov","address":"231 Cannon HOB; Washington DC 20515-0505","phone":"202-225-3311","fax":"202-225-4335","contact_form":"https://mikethompson.house.gov/contact/email-me","office":"231 Cannon House Office Building","rss_url":"http://mikethompson.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"T000467","thomas":"01952","govtrack":412317,"opensecrets":"N00029736","votesmart":24046,"fec":["H8PA05071"],"cspan":1031359,"wikipedia":"Glenn Thompson (politician)","maplight":7151,"washington_post":"gIQAzSQNAP","icpsr":20946,"house_history":23213},"name":{"first":"Glenn","last":"Thompson","official_full":"Glenn Thompson"},"bio":{"birthday":"1959-07-27","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"PA","district":5,"party":"Republican","url":"http://thompson.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"PA","district":5,"party":"Republican","url":"http://thompson.house.gov","address":"124 Cannon HOB; Washington DC 20515-3805","phone":"202-225-5121","fax":"202-225-5796","contact_form":"https://forms.house.gov/thompson/contact-form.shtml","office":"124 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":5,"url":"http://thompson.house.gov","address":"124 Cannon HOB; Washington DC 20515-3805","phone":"202-225-5121","fax":"202-225-5796","contact_form":"https://thompson.house.gov/contact-me/email-me","office":"124 Cannon House Office Building","rss_url":"http://thompson.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":5,"url":"http://thompson.house.gov","address":"124 Cannon HOB; Washington DC 20515-3805","phone":"202-225-5121","fax":"202-225-5796","contact_form":"https://thompson.house.gov/contact-me/email-me","office":"124 Cannon House Office Building","rss_url":"http://thompson.house.gov/rss.xml"}]},{"id":{"bioguide":"T000238","thomas":"01155","govtrack":400404,"opensecrets":"N00006052","votesmart":21706,"fec":["H4TX13014"],"cspan":36814,"wikipedia":"Mac Thornberry","ballotpedia":"Mac Thornberry","maplight":4488,"washington_post":"gIQAQXkDAP","icpsr":29572,"house_history":22922},"name":{"first":"Mac","middle":"M.","last":"Thornberry","official_full":"Mac Thornberry"},"bio":{"birthday":"1958-07-15","gender":"M","religion":"Presbyterian"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"TX","district":13,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"TX","district":13,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"TX","district":13,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"TX","district":13,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"TX","district":13,"party":"Republican","url":"http://www.house.gov/thornberry"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"TX","district":13,"party":"Republican","url":"http://www.house.gov/thornberry"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"TX","district":13,"party":"Republican","url":"http://www.house.gov/thornberry"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"TX","district":13,"party":"Republican","url":"http://www.house.gov/thornberry"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"TX","district":13,"party":"Republican","url":"http://www.house.gov/thornberry","address":"2209 Rayburn HOB; Washington DC 20515-4313","phone":"202-225-3706","fax":"202-225-3486","contact_form":"http://www.house.gov/writerep","office":"2209 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":13,"url":"http://thornberry.house.gov","address":"2329 Rayburn HOB; Washington DC 20515-4313","phone":"202-225-3706","fax":"202-225-3486","contact_form":"https://thornberry.house.gov/forms/writeyourrep/","office":"2329 Rayburn House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":13,"url":"http://thornberry.house.gov","address":"2208 Rayburn HOB; Washington DC 20515-4313","phone":"202-225-3706","fax":"202-225-3486","contact_form":"https://thornberry.house.gov/forms/writeyourrep/","office":"2208 Rayburn House Office Building"}]},{"id":{"bioguide":"T000250","thomas":"01534","lis":"S303","govtrack":400546,"opensecrets":"N00004572","votesmart":398,"fec":["S2SD00068","H6SD00085"],"cspan":45552,"wikipedia":"John Thune","ballotpedia":"John Thune","maplight":4618,"washington_post":"gIQAtDPp9O","icpsr":29754,"house_history":22937},"name":{"first":"John","last":"Thune","official_full":"John Thune"},"bio":{"birthday":"1961-01-07","gender":"M"},"terms":[{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"SD","district":0,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"SD","district":0,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"SD","district":0,"party":"Republican"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"SD","class":3,"party":"Republican","url":"http://thune.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"SD","class":3,"party":"Republican","url":"http://www.thune.senate.gov","address":"511 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-2321","fax":"202-228-5429","contact_form":"http://www.thune.senate.gov/public/index.cfm/contact","office":"511 Dirksen Senate Office Building","state_rank":"senior","rss_url":"http://www.thune.senate.gov/public/index.cfm/rss/feed"}]},{"id":{"bioguide":"T000462","thomas":"01664","govtrack":400406,"opensecrets":"N00009699","votesmart":8404,"fec":["H0OH12062"],"cspan":88155,"wikipedia":"Pat Tiberi","ballotpedia":"Patrick J. Tiberi","maplight":4490,"washington_post":"gIQAL5YWBP","icpsr":20130,"house_history":23204},"name":{"first":"Patrick","middle":"J.","last":"Tiberi","nickname":"Pat","official_full":"Patrick J. Tiberi"},"bio":{"birthday":"1962-10-21","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OH","district":12,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OH","district":12,"party":"Republican","url":"http://www.house.gov/tiberi"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OH","district":12,"party":"Republican","url":"http://www.house.gov/tiberi"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OH","district":12,"party":"Republican","url":"http://tiberi.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OH","district":12,"party":"Republican","url":"http://tiberi.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":12,"party":"Republican","url":"http://tiberi.house.gov","address":"106 Cannon HOB; Washington DC 20515-3512","phone":"202-225-5355","fax":"202-226-4523","contact_form":"http://www.house.gov/writerep","office":"106 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":12,"url":"http://tiberi.house.gov","address":"106 Cannon HOB; Washington DC 20515-3512","phone":"202-225-5355","fax":"202-226-4523","contact_form":"https://tiberi.house.gov/contact/contactform.htm","office":"106 Cannon House Office Building","rss_url":"http://tiberi.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":12,"url":"http://tiberi.house.gov","address":"1203 Longworth HOB; Washington DC 20515-3512","phone":"202-225-5355","fax":"202-226-4523","contact_form":"https://tiberi.house.gov/contact/contactform.htm","office":"1203 Longworth House Office Building","rss_url":"http://tiberi.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"T000470","thomas":"01997","govtrack":412405,"opensecrets":"N00027509","votesmart":65403,"fec":["H6CO03139"],"cspan":60384,"wikipedia":"Scott Tipton","ballotpedia":"Scott Tipton","maplight":6827,"washington_post":"gIQAxnpVKP","icpsr":21111,"house_history":23219},"name":{"first":"Scott","last":"Tipton","official_full":"Scott R. Tipton","middle":"R."},"bio":{"birthday":"1956-11-09","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CO","district":3,"party":"Republican","url":"http://tipton.house.gov/","address":"218 Cannon HOB; Washington DC 20515-0603","phone":"202-225-4761","fax":"202-226-9669","office":"218 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CO","party":"Republican","district":3,"url":"http://tipton.house.gov","address":"218 Cannon HOB; Washington DC 20515-0603","phone":"202-225-4761","fax":"202-226-9669","office":"218 Cannon House Office Building","rss_url":"http://tipton.house.gov/rss.xml","contact_form":"https://tipton.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CO","party":"Republican","district":3,"url":"http://tipton.house.gov","address":"218 Cannon HOB; Washington DC 20515-0603","phone":"202-225-4761","fax":"202-226-9669","office":"218 Cannon House Office Building","rss_url":"http://tipton.house.gov/rss.xml","contact_form":"https://tipton.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"T000469","thomas":"01942","govtrack":412319,"opensecrets":"N00030196","votesmart":4403,"fec":["H8NY21203"],"cspan":1031353,"wikipedia":"Paul Tonko","maplight":7119,"washington_post":"gIQA3w8MAP","icpsr":20934,"house_history":23217},"name":{"first":"Paul","last":"Tonko","official_full":"Paul Tonko"},"bio":{"birthday":"1949-06-18","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":21,"party":"Democrat","url":"http://tonko.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":21,"party":"Democrat","url":"http://tonko.house.gov","address":"422 Cannon HOB; Washington DC 20515-3221","phone":"202-225-5076","fax":"202-225-5077","contact_form":"https://forms.house.gov/tonko/contact-form.shtml","office":"422 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":20,"url":"http://tonko.house.gov","address":"2463 Rayburn HOB; Washington DC 20515-3220","phone":"202-225-5076","fax":"202-225-5077","contact_form":"https://tonko.house.gov/email-form1","office":"2463 Rayburn House Office Building","rss_url":"http://tonko.house.gov/rss/press-releases.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":20,"url":"http://tonko.house.gov","address":"2463 Rayburn HOB; Washington DC 20515-3220","phone":"202-225-5076","fax":"202-225-5077","contact_form":"https://tonko.house.gov/email-form1","office":"2463 Rayburn House Office Building","rss_url":"http://tonko.house.gov/rss/press-releases.xml"}]},{"id":{"bioguide":"T000461","thomas":"02085","lis":"S351","govtrack":400408,"opensecrets":"N00001489","votesmart":24096,"fec":["S4PA00121","H8PA15096"],"cspan":7958,"wikipedia":"Pat Toomey","ballotpedia":"Pat Toomey","maplight":7544,"washington_post":"gIQARUpBAP","icpsr":29935,"house_history":23202},"name":{"first":"Patrick","middle":"J.","last":"Toomey","nickname":"Pat","official_full":"Patrick J. Toomey"},"bio":{"birthday":"1961-11-17","gender":"M"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"PA","district":15,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"PA","district":15,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"PA","district":15,"party":"Republican","url":"http://www.house.gov/toomey"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"PA","class":3,"party":"Republican","url":"http://www.toomey.senate.gov","address":"248 Russell Senate Office Building Washington DC 20510","phone":"202-224-4254","contact_form":"http://www.toomey.senate.gov/?p=contact","office":"248 Russell Senate Office Building","state_rank":"junior","rss_url":"http://toomey.senate.gov/rss/?p=hot_topic","fax":"202-228-0284"}]},{"id":{"bioguide":"T000465","thomas":"01884","govtrack":412254,"opensecrets":"N00029026","votesmart":89417,"fec":["H8MA05143"],"cspan":21764,"wikipedia":"Niki Tsongas","ballotpedia":"Niki Tsongas","maplight":7045,"washington_post":"gIQA3UrNAP","icpsr":20754,"house_history":23209},"name":{"first":"Niki","middle":"S.","last":"Tsongas","official_full":"Niki Tsongas"},"bio":{"birthday":"1946-04-26","gender":"F"},"terms":[{"type":"rep","start":"2007-10-16","end":"2009-01-03","state":"MA","district":5,"party":"Democrat","url":"http://tsongas.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MA","district":5,"party":"Democrat","url":"http://tsongas.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MA","district":5,"party":"Democrat","url":"http://tsongas.house.gov/","address":"1607 Longworth HOB; Washington DC 20515-2105","phone":"202-225-3411","fax":"202-226-0771","contact_form":"http://tsongas.house.gov/?sectionid=11&sectiontree=3,11","office":"1607 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MA","party":"Democrat","district":3,"url":"http://tsongas.house.gov","address":"1607 Longworth HOB; Washington DC 20515-2103","phone":"202-225-3411","fax":"202-226-0771","contact_form":"https://tsongas.house.gov/e-mail-niki/","office":"1607 Longworth House Office Building","rss_url":"http://tsongas.house.gov/rss/press-releases.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","party":"Democrat","district":3,"url":"http://tsongas.house.gov","address":"1714 Longworth HOB; Washington DC 20515-2103","phone":"202-225-3411","fax":"202-226-0771","contact_form":"https://tsongas.house.gov/e-mail-niki/","office":"1714 Longworth House Office Building","rss_url":"http://tsongas.house.gov/rss/press-releases.xml"}],"family":[{"name":"Paul Tsongas","relation":"wife"}]},{"id":{"bioguide":"T000463","thomas":"01741","govtrack":400411,"opensecrets":"N00025175","votesmart":45519,"fec":["H2OH03067","H2OH03091"],"cspan":1003607,"wikipedia":"Mike Turner","ballotpedia":"Michael R. Turner","maplight":4493,"washington_post":"gIQAA2beKP","icpsr":20342,"house_history":23206},"name":{"first":"Michael","middle":"R.","last":"Turner","official_full":"Michael R. Turner"},"bio":{"birthday":"1960-01-11","gender":"M"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OH","district":3,"party":"Republican","url":"http://www.house.gov/miketurner"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OH","district":3,"party":"Republican","url":"http://www.house.gov/miketurner"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OH","district":3,"party":"Republican","url":"http://www.house.gov/miketurner"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OH","district":3,"party":"Republican","url":"http://www.house.gov/miketurner"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OH","district":3,"party":"Republican","url":"http://turner.house.gov/","address":"2454 Rayburn HOB; Washington DC 20515-3503","phone":"202-225-6465","fax":"202-225-6754","contact_form":"http://turner.house.gov/Contact/","office":"2454 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":10,"url":"http://turner.house.gov","address":"2239 Rayburn HOB; Washington DC 20515-3510","phone":"202-225-6465","fax":"202-225-6754","contact_form":"http://turner.house.gov/contact/","office":"2239 Rayburn House Office Building","rss_url":"http://turner.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":10,"url":"http://turner.house.gov","address":"2239 Rayburn HOB; Washington DC 20515-3510","phone":"202-225-6465","fax":"202-225-6754","contact_form":"http://turner.house.gov/contact/","office":"2239 Rayburn House Office Building","rss_url":"http://turner.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"U000031","thomas":"01177","govtrack":400414,"opensecrets":"N00004133","votesmart":26906,"icpsr":15446,"fec":["H6MI04113"],"cspan":12127,"house_history":20868,"wikipedia":"Fred Upton","ballotpedia":"Fred Upton","maplight":4496,"washington_post":"gIQATEgtAP"},"name":{"first":"Fred","middle":"Stephen","last":"Upton","official_full":"Fred Upton"},"bio":{"birthday":"1953-04-23","gender":"M","religion":"Protestant"},"terms":[{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"MI","district":4,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"MI","district":4,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"MI","district":4,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"MI","district":6,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"MI","district":6,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"MI","district":6,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"MI","district":6,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"MI","district":6,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MI","district":6,"party":"Republican","url":"http://www.house.gov/upton"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MI","district":6,"party":"Republican","url":"http://www.house.gov/upton"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MI","district":6,"party":"Republican","url":"http://www.house.gov/upton"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MI","district":6,"party":"Republican","url":"http://www.house.gov/upton"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":6,"party":"Republican","url":"http://www.house.gov/upton","address":"2183 Rayburn HOB; Washington DC 20515-2206","phone":"202-225-3761","fax":"202-225-4986","contact_form":"http://www.house.gov/writerep","office":"2183 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Republican","district":6,"url":"http://upton.house.gov","address":"2183 Rayburn HOB; Washington DC 20515-2206","phone":"202-225-3761","fax":"202-225-4986","contact_form":"http://upton.house.gov/contact/zipauth.htm","office":"2183 Rayburn House Office Building","rss_url":"http://www.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Republican","district":6,"url":"http://upton.house.gov","address":"2183 Rayburn HOB; Washington DC 20515-2206","phone":"202-225-3761","fax":"202-225-4986","contact_form":"http://upton.house.gov/contact/zipauth.htm","office":"2183 Rayburn House Office Building","rss_url":"http://www.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"V000128","thomas":"01729","govtrack":400415,"opensecrets":"N00013820","votesmart":6098,"fec":["H2MD08126"],"cspan":20756,"house_history":21032,"wikipedia":"Chris Van Hollen","maplight":4497,"washington_post":"gIQAPhsc9O","icpsr":20330},"name":{"first":"Chris","last":"Van Hollen","suffix":"Jr.","official_full":"Chris Van Hollen"},"bio":{"birthday":"1959-01-10","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"MD","district":8,"party":"Democrat","url":"http://www.house.gov/vanhollen"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"MD","district":8,"party":"Democrat","url":"http://www.house.gov/vanhollen"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MD","district":8,"party":"Democrat","url":"http://vanhollen.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MD","district":8,"party":"Democrat","url":"http://vanhollen.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MD","district":8,"party":"Democrat","url":"http://vanhollen.house.gov","address":"1707 Longworth HOB; Washington DC 20515-2008","phone":"202-225-5341","fax":"202-225-0375","contact_form":"http://vanhollen.house.gov/HoR/MD08/Contact+Information/Web+Contact/Contact+Form.htm","office":"1707 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MD","party":"Democrat","district":8,"url":"http://vanhollen.house.gov","address":"1707 Longworth HOB; Washington DC 20515-2008","phone":"202-225-5341","fax":"202-225-0375","contact_form":"http://vanhollen.house.gov/contact/","office":"1707 Longworth House Office Building","rss_url":"http://vanhollen.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MD","party":"Democrat","district":8,"url":"http://vanhollen.house.gov","address":"1707 Longworth HOB; Washington DC 20515-2008","phone":"202-225-5341","fax":"202-225-0375","contact_form":"http://vanhollen.house.gov/contact/","office":"1707 Longworth House Office Building","rss_url":"http://vanhollen.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"V000081","thomas":"01184","govtrack":400416,"opensecrets":"N00001102","votesmart":26975,"fec":["H2NY00010"],"cspan":26160,"wikipedia":"Nydia Velázquez","house_history":20972,"maplight":4498,"washington_post":"gIQAHvY09O","icpsr":29378},"name":{"first":"Nydia","middle":"M.","last":"Velázquez","official_full":"Nydia M. Velázquez"},"bio":{"birthday":"1953-03-28","gender":"F","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"NY","district":12,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"NY","district":12,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"NY","district":12,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"NY","district":12,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"NY","district":12,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"NY","district":12,"party":"Democrat","url":"http://www.house.gov/velazquez"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"NY","district":12,"party":"Democrat","url":"http://www.house.gov/velazquez"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NY","district":12,"party":"Democrat","url":"http://www.house.gov/velazquez"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NY","district":12,"party":"Democrat","url":"http://www.house.gov/velazquez"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NY","district":12,"party":"Democrat","url":"http://www.house.gov/velazquez","address":"2302 Rayburn HOB; Washington DC 20515-3212","phone":"202-225-2361","fax":"202-226-0327","contact_form":"http://www.house.gov/velazquez/IMA/issue_subscribe.htm","office":"2302 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":7,"url":"http://www.house.gov/velazquez","address":"2302 Rayburn HOB; Washington DC 20515-3207","phone":"202-225-2361","fax":"202-226-0327","contact_form":"http://velazquez.house.gov/IMA/issue_subscribe.shtml","office":"2302 Rayburn House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":7,"url":"http://velazquez.house.gov","address":"2302 Rayburn HOB; Washington DC 20515-3207","phone":"202-225-2361","fax":"202-226-0327","contact_form":"http://velazquez.house.gov/IMA/issue_subscribe.shtml","office":"2302 Rayburn House Office Building"}]},{"id":{"bioguide":"V000108","thomas":"01188","govtrack":400417,"opensecrets":"N00003813","votesmart":26851,"icpsr":15124,"fec":["H4IN01012"],"cspan":6785,"wikipedia":"Pete Visclosky","house_history":21005,"ballotpedia":"Peter J. Visclosky","maplight":4499,"washington_post":"gIQA8WtdKP"},"name":{"first":"Peter","middle":"J.","last":"Visclosky","official_full":"Peter J. Visclosky"},"bio":{"birthday":"1949-08-13","gender":"M","religion":"Roman Catholic"},"terms":[{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"IN","district":1,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"IN","district":1,"party":"Democrat","url":"http://www.house.gov/visclosky"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"IN","district":1,"party":"Democrat","url":"http://www.house.gov/visclosky"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"IN","district":1,"party":"Democrat","url":"http://www.house.gov/visclosky"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IN","district":1,"party":"Democrat","url":"http://www.house.gov/visclosky"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IN","district":1,"party":"Democrat","url":"http://www.house.gov/visclosky","address":"2256 Rayburn HOB; Washington DC 20515-1401","phone":"202-225-2461","fax":"202-225-2493","contact_form":"http://www.house.gov/writerep","office":"2256 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Democrat","district":1,"url":"http://visclosky.house.gov","address":"2256 Rayburn HOB; Washington DC 20515-1401","phone":"202-225-2461","fax":"202-225-2493","contact_form":"https://visclosky.house.gov/contact-pete/email-pete","office":"2256 Rayburn House Office Building","rss_url":"http://visclosky.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Democrat","district":1,"url":"http://visclosky.house.gov","address":"2328 Rayburn HOB; Washington DC 20515-1401","phone":"202-225-2461","fax":"202-225-2493","contact_form":"https://visclosky.house.gov/contact-pete/email-pete","office":"2328 Rayburn House Office Building","rss_url":"http://visclosky.house.gov/rss.xml"}]},{"id":{"bioguide":"V000127","thomas":"01609","lis":"S299","govtrack":400418,"opensecrets":"N00009659","votesmart":4615,"fec":["S4LA00057","H0LA01079"],"cspan":60672,"wikipedia":"David Vitter","house_history":21030,"ballotpedia":"David Vitter","maplight":4500,"washington_post":"gIQAHam69O","icpsr":29918},"name":{"first":"David","last":"Vitter","official_full":"David Vitter"},"bio":{"birthday":"1961-05-03","gender":"M","religion":"Catholic"},"terms":[{"type":"rep","start":"1999-06-08","end":"2000-12-15","state":"LA","district":1,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"LA","district":1,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"LA","district":1,"party":"Republican","url":"http://vitter.house.gov"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"LA","class":3,"party":"Republican","url":"http://vitter.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"LA","class":3,"party":"Republican","url":"http://www.vitter.senate.gov","address":"516 Hart Senate Office Building Washington DC 20510","phone":"202-224-4623","fax":"202-228-5061","contact_form":"http://www.vitter.senate.gov/contact/email-senator-vitter","office":"516 Hart Senate Office Building","state_rank":"senior","rss_url":"http://www.vitter.senate.gov/rss/feeds/?type=all"}]},{"id":{"bioguide":"W000798","thomas":"01855","govtrack":412213,"opensecrets":"N00026368","votesmart":8618,"fec":["H4MI07103"],"cspan":1022844,"wikipedia":"Tim Walberg","ballotpedia":"Tim Walberg","maplight":4695,"washington_post":"gIQA0wGVKP","icpsr":20725,"house_history":24179},"name":{"first":"Tim","last":"Walberg","official_full":"Tim Walberg"},"bio":{"gender":"M","birthday":"1951-04-12"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MI","district":7,"party":"Republican","url":"http://walberg.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MI","district":7,"party":"Republican","url":"http://walberg.house.gov/","address":"418 Cannon HOB; Washington DC 20515-2207","phone":"202-225-6276","fax":"202-225-6281","office":"418 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Republican","district":7,"url":"http://walberg.house.gov","address":"2436 Rayburn HOB; Washington DC 20515-2207","phone":"202-225-6276","fax":"202-225-6281","office":"2436 Rayburn House Office Building","rss_url":"http://walberg.house.gov/news/rss.aspx","contact_form":"https://walberg.house.gov/contact/contactform.htm"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Republican","district":7,"url":"http://walberg.house.gov","address":"2436 Rayburn HOB; Washington DC 20515-2207","phone":"202-225-6276","fax":"202-225-6281","office":"2436 Rayburn House Office Building","rss_url":"http://walberg.house.gov/news/rss.aspx","contact_form":"https://walberg.house.gov/contact/contactform.htm"}]},{"id":{"bioguide":"W000791","thomas":"01596","govtrack":400419,"opensecrets":"N00007690","votesmart":2979,"fec":["H6OR02116"],"cspan":57892,"wikipedia":"Greg Walden","ballotpedia":"Greg Walden","maplight":4501,"washington_post":"gIQAYvzZKP","icpsr":29932,"house_history":24165},"name":{"first":"Greg","middle":"P.","last":"Walden","official_full":"Greg Walden"},"bio":{"birthday":"1957-01-10","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"OR","district":2,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"OR","district":2,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"OR","district":2,"party":"Republican","url":"http://walden.house.gov"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"OR","district":2,"party":"Republican","url":"http://walden.house.gov"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"OR","district":2,"party":"Republican","url":"http://walden.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"OR","district":2,"party":"Republican","url":"http://walden.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"OR","district":2,"party":"Republican","url":"http://walden.house.gov","address":"2182 Rayburn HOB; Washington DC 20515-3702","phone":"202-225-6730","fax":"202-225-5774","contact_form":"http://www.walden.house.gov/ContactGreg.ContactFormIQ.shtml","office":"2182 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OR","party":"Republican","district":2,"url":"http://walden.house.gov","address":"2182 Rayburn HOB; Washington DC 20515-3702","phone":"202-225-6730","fax":"202-225-5774","contact_form":"https://walden.house.gov/e-mail-greg","office":"2182 Rayburn House Office Building","rss_url":"http://walden.house.gov/common/rss/?rss=100"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OR","party":"Republican","district":2,"url":"http://walden.house.gov","address":"2185 Rayburn HOB; Washington DC 20515-3702","phone":"202-225-6730","fax":"202-225-5774","contact_form":"https://walden.house.gov/e-mail-greg","office":"2185 Rayburn House Office Building","rss_url":"http://walden.house.gov/common/rss/?rss=100"}]},{"id":{"bioguide":"W000799","thomas":"01856","govtrack":412214,"opensecrets":"N00027467","votesmart":65443,"fec":["H6MN01174"],"cspan":1018510,"wikipedia":"Tim Walz","ballotpedia":"Tim Walz","maplight":4696,"washington_post":"gIQA69DYKP","icpsr":20726,"house_history":24181},"name":{"first":"Timothy","middle":"James","last":"Walz","official_full":"Timothy J. Walz"},"bio":{"birthday":"1964-04-06","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"MN","district":1,"party":"Democrat","url":"http://walz.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"MN","district":1,"party":"Democrat","url":"http://walz.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"MN","district":1,"party":"Democrat","url":"http://walz.house.gov","address":"1722 Longworth HOB; Washington DC 20515-2301","phone":"202-225-2472","fax":"202-225-3433","contact_form":"http://walz.house.gov/zip_auth.shtm","office":"1722 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MN","party":"Democrat","district":1,"url":"http://walz.house.gov","address":"1034 Longworth HOB; Washington DC 20515-2301","phone":"202-225-2472","fax":"202-225-3433","contact_form":"http://walz.house.gov/contact","office":"1034 Longworth House Office Building","rss_url":"http://walz.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MN","party":"Democrat","district":1,"url":"http://walz.house.gov","address":"1034 Longworth HOB; Washington DC 20515-2301","phone":"202-225-2472","fax":"202-225-3433","contact_form":"http://walz.house.gov/contact","office":"1034 Longworth House Office Building","rss_url":"http://walz.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"W000797","thomas":"01777","govtrack":400623,"opensecrets":"N00026106","votesmart":24301,"fec":["H4FL20023"],"cspan":86882,"wikipedia":"Debbie Wasserman Schultz","ballotpedia":"Debbie Wasserman Schultz","maplight":4628,"washington_post":"gIQA8aOBAP","icpsr":20504,"house_history":24177},"name":{"first":"Debbie","last":"Wasserman Schultz","official_full":"Debbie Wasserman Schultz"},"bio":{"birthday":"1966-09-27","gender":"F","religion":"Jewish"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"FL","district":20,"party":"Democrat"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"FL","district":20,"party":"Democrat","url":"http://www.house.gov/schultz"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":20,"party":"Democrat","url":"http://www.house.gov/schultz"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":20,"party":"Democrat","url":"http://www.house.gov/schultz","address":"118 Cannon HOB; Washington DC 20515-0920","phone":"202-225-7931","fax":"202-225-2052","contact_form":"http://wassermanschultz.house.gov/zipauth.htm","office":"118 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":23,"url":"http://wassermanschultz.house.gov","address":"118 Cannon HOB; Washington DC 20515-0923","phone":"202-225-7931","fax":"202-226-2052","contact_form":"http://wassermanschultz.house.gov/contact/email-me.shtml","office":"118 Cannon House Office Building","rss_url":"http://wassermanschultz.house.gov/atom.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":23,"url":"http://wassermanschultz.house.gov","address":"1114 Longworth HOB; Washington DC 20515-0923","phone":"202-225-7931","fax":"202-226-2052","contact_form":"http://wassermanschultz.house.gov/contact/email-me.shtml","office":"1114 Longworth House Office Building","rss_url":"http://wassermanschultz.house.gov/atom.xml"}]},{"id":{"bioguide":"W000187","thomas":"01205","govtrack":400422,"opensecrets":"N00006690","votesmart":26759,"fec":["H4CA23011"],"cspan":1953,"wikipedia":"Maxine Waters","ballotpedia":"Maxine Waters","maplight":4504,"washington_post":"gIQA6Nu99O","icpsr":29106,"house_history":23438},"name":{"first":"Maxine","last":"Waters","official_full":"Maxine Waters"},"bio":{"birthday":"1938-08-15","gender":"F","religion":"Christian"},"terms":[{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"CA","district":29,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"CA","district":35,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"CA","district":35,"party":"Democrat"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"CA","district":35,"party":"Democrat"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"CA","district":35,"party":"Democrat"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"CA","district":35,"party":"Democrat"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"CA","district":35,"party":"Democrat","url":"http://www.house.gov/waters"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"CA","district":35,"party":"Democrat","url":"http://www.house.gov/waters"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"CA","district":35,"party":"Democrat","url":"http://www.house.gov/waters"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"CA","district":35,"party":"Democrat","url":"http://www.house.gov/waters"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"CA","district":35,"party":"Democrat","url":"http://www.house.gov/waters","address":"2344 Rayburn HOB; Washington DC 20515-0535","phone":"202-225-2201","fax":"202-225-7854","contact_form":"http://www.house.gov/waters/IMA/issue.htm","office":"2344 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":43,"url":"http://waters.house.gov","address":"2221 Rayburn HOB; Washington DC 20515-0543","phone":"202-225-2201","fax":"202-225-7854","contact_form":"https://waters.house.gov/contact/contactform.htm","office":"2221 Rayburn House Office Building","rss_url":"http://waters.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":43,"url":"http://waters.house.gov","address":"2221 Rayburn HOB; Washington DC 20515-0543","phone":"202-225-2201","fax":"202-225-7854","contact_form":"https://waters.house.gov/contact/contactform.htm","office":"2221 Rayburn House Office Building","rss_url":"http://waters.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"W000806","thomas":"02002","govtrack":412410,"opensecrets":"N00026335","votesmart":24302,"fec":["H0FL08208","S4FL00256"],"cspan":30504,"wikipedia":"Daniel Webster (Florida politician)","ballotpedia":"Daniel Webster","maplight":5568,"washington_post":"gIQAzVVUKP","icpsr":21116,"house_history":24192},"name":{"first":"Daniel","last":"Webster","official_full":"Daniel Webster"},"bio":{"birthday":"1949-04-27","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":8,"party":"Republican","url":"http://webster.house.gov/","address":"1039 Longworth HOB; Washington DC 20515-0908","phone":"202-225-2176","fax":"202-225-0999","office":"1039 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":10,"url":"http://webster.house.gov","address":"1039 Longworth HOB; Washington DC 20515-0910","phone":"202-225-2176","fax":"202-225-0999","office":"1039 Longworth House Office Building","rss_url":"http://webster.house.gov/news/rss.aspx","contact_form":"https://webster.house.gov/contact/contactform.htm"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":10,"url":"http://webster.house.gov","address":"1039 Longworth HOB; Washington DC 20515-0910","phone":"202-225-2176","fax":"202-225-0999","office":"1039 Longworth House Office Building","rss_url":"http://webster.house.gov/news/rss.aspx","contact_form":"https://webster.house.gov/contact/contactform.htm"}]},{"id":{"bioguide":"W000800","thomas":"01879","govtrack":412239,"opensecrets":"N00000515","votesmart":51272,"fec":["H6VT00160","H8VT00034"],"cspan":1019990,"wikipedia":"Peter Welch","ballotpedia":"Peter Welch","maplight":4719,"washington_post":"gIQAwdWwMP","icpsr":20750,"house_history":24183},"name":{"first":"Peter","last":"Welch","official_full":"Peter Welch"},"bio":{"gender":"M","birthday":"1947-05-02"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"VT","district":0,"party":"Democrat","url":"http://welch.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"VT","district":0,"party":"Democrat","url":"http://welch.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VT","district":0,"party":"Democrat","url":"http://welch.house.gov","address":"1404 Longworth HOB; Washington DC 20515-4501","phone":"202-225-4115","fax":"202-225-6790","contact_form":"http://www.house.gov/formwelch/issue_subscribe.htm","office":"1404 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VT","party":"Democrat","district":0,"url":"http://www.welch.house.gov","address":"2303 Rayburn HOB; Washington DC 20515-4500","phone":"202-225-4115","fax":"202-225-6790","contact_form":"https://welch.house.gov/email-me","office":"2303 Rayburn House Office Building","rss_url":"http://www.welch.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VT","party":"Democrat","district":0,"url":"http://www.welch.house.gov","address":"2303 Rayburn HOB; Washington DC 20515-4500","phone":"202-225-4115","fax":"202-225-6790","contact_form":"https://welch.house.gov/email-me","office":"2303 Rayburn House Office Building","rss_url":"http://www.welch.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"W000796","thomas":"01779","govtrack":400627,"opensecrets":"N00026163","votesmart":8001,"fec":["H4GA08067"],"cspan":1013045,"wikipedia":"Lynn Westmoreland","ballotpedia":"Lynn A. Westmoreland","maplight":4630,"washington_post":"gIQAWE0KAP","icpsr":20506,"house_history":24175},"name":{"first":"Lynn","middle":"A.","last":"Westmoreland","official_full":"Lynn A. Westmoreland"},"bio":{"birthday":"1950-04-02","gender":"M"},"terms":[{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"GA","district":8,"party":"Republican"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"GA","district":3,"party":"Republican","url":"http://www.house.gov/westmoreland"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"GA","district":3,"party":"Republican","url":"http://www.house.gov/westmoreland"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":3,"party":"Republican","url":"http://www.house.gov/westmoreland","address":"2433 Rayburn HOB; Washington DC 20515-1008","phone":"202-225-5901","fax":"202-225-2515","contact_form":"http://www.house.gov/writerep","office":"2433 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Republican","district":3,"url":"http://westmoreland.house.gov","address":"2433 Rayburn HOB; Washington DC 20515-1003","phone":"202-225-5901","fax":"202-225-2515","contact_form":"https://westmoreland.house.gov/email-me","office":"2433 Rayburn House Office Building","rss_url":"http://westmoreland.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Republican","district":3,"url":"http://westmoreland.house.gov","address":"2202 Rayburn HOB; Washington DC 20515-1003","phone":"202-225-5901","fax":"202-225-2515","contact_form":"https://westmoreland.house.gov/email-me","office":"2202 Rayburn House Office Building","rss_url":"http://westmoreland.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"W000413","thomas":"01222","govtrack":400431,"opensecrets":"N00003467","votesmart":21873,"fec":["H4KY01040"],"cspan":36978,"wikipedia":"Ed Whitfield","ballotpedia":"Ed Whitfield","maplight":4513,"washington_post":"gIQAhbJcKP","icpsr":29525,"house_history":23704},"name":{"first":"Ed","last":"Whitfield","official_full":"Ed Whitfield"},"bio":{"birthday":"1943-05-25","gender":"M","religion":"Methodist"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"KY","district":1,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"KY","district":1,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"KY","district":1,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"KY","district":1,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"KY","district":1,"party":"Republican","url":"http://www.house.gov/whitfield"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"KY","district":1,"party":"Republican","url":"http://www.house.gov/whitfield"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"KY","district":1,"party":"Republican","url":"http://www.house.gov/whitfield"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"KY","district":1,"party":"Republican","url":"http://www.house.gov/whitfield"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"KY","district":1,"party":"Republican","url":"http://www.house.gov/whitfield","address":"2368 Rayburn HOB; Washington DC 20515-1701","phone":"202-225-3115","fax":"202-225-3547","contact_form":"http://whitfield.house.gov/contact/index.shtml","office":"2368 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KY","party":"Republican","district":1,"url":"http://whitfield.house.gov","address":"2184 Rayburn HOB; Washington DC 20515-1701","phone":"202-225-3115","fax":"202-225-3547","contact_form":"https://whitfield.house.gov/contact/email-me","office":"2184 Rayburn House Office Building","rss_url":"http://whitfield.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KY","party":"Republican","district":1,"url":"http://whitfield.house.gov","address":"2184 Rayburn HOB; Washington DC 20515-1701","phone":"202-225-3115","fax":"202-225-3547","contact_form":"https://whitfield.house.gov/contact/email-me","office":"2184 Rayburn House Office Building","rss_url":"http://whitfield.house.gov/rss.xml"}]},{"id":{"bioguide":"W000795","thomas":"01688","govtrack":400433,"opensecrets":"N00024809","votesmart":3985,"fec":["H2SC02059"],"cspan":1002567,"wikipedia":"Joe Wilson (U.S. politician)","ballotpedia":"Joe Wilson","maplight":4516,"washington_post":"gIQA3RwLAP","icpsr":20138,"house_history":24173},"name":{"first":"Joe","middle":"G.","last":"Wilson","official_full":"Joe Wilson"},"bio":{"birthday":"1947-07-31","gender":"M","religion":"Presbyterian"},"terms":[{"type":"rep","start":"2001-12-18","end":"2002-11-22","state":"SC","district":2,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"SC","district":2,"party":"Republican","url":"http://joewilson.house.gov/"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"SC","district":2,"party":"Republican","url":"http://joewilson.house.gov/"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"SC","district":2,"party":"Republican","url":"http://joewilson.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"SC","district":2,"party":"Republican","url":"http://joewilson.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"SC","district":2,"party":"Republican","url":"http://joewilson.house.gov","address":"2229 Rayburn HOB; Washington DC 20515-4002","phone":"202-225-2452","fax":"202-225-2455","contact_form":"http://www.house.gov/formwilson/IMA/issue.htm","office":"2229 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"SC","party":"Republican","district":2,"url":"http://joewilson.house.gov","address":"2229 Rayburn HOB; Washington DC 20515-4002","phone":"202-225-2452","fax":"202-225-2455","contact_form":"https://joewilson.house.gov/forms/writeyourrep/default.aspx","office":"2229 Rayburn House Office Building","rss_url":"http://joewilson.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"SC","party":"Republican","district":2,"url":"http://joewilson.house.gov","address":"2229 Rayburn HOB; Washington DC 20515-4002","phone":"202-225-2452","fax":"202-225-2455","contact_form":"https://joewilson.house.gov/forms/writeyourrep/default.aspx","office":"2229 Rayburn House Office Building","rss_url":"http://joewilson.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"W000808","thomas":"02004","govtrack":412412,"opensecrets":"N00030650","votesmart":17319,"fec":["H0FL17068"],"cspan":87016,"wikipedia":"Frederica Wilson","ballotpedia":"Frederica Wilson","maplight":5589,"washington_post":"gIQA8EKXKP","icpsr":21118,"house_history":24196},"name":{"first":"Frederica","last":"Wilson","official_full":"Frederica S. Wilson","middle":"S."},"bio":{"birthday":"1942-11-05","gender":"F"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"FL","district":17,"party":"Democrat","url":"http://wilson.house.gov/","address":"208 Cannon HOB; Washington DC 20515-0917","phone":"202-225-4506","fax":"202-226-0777","office":"208 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":24,"url":"http://wilson.house.gov","address":"208 Cannon HOB; Washington DC 20515-0924","phone":"202-225-4506","fax":"202-226-0777","office":"208 Cannon House Office Building","rss_url":"http://wilson.house.gov/common/rss//index.cfm?rss=49","contact_form":"https://wilsonforms.house.gov/contact-form"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":24,"url":"http://wilson.house.gov","address":"208 Cannon HOB; Washington DC 20515-0924","phone":"202-225-4506","fax":"202-226-0777","office":"208 Cannon House Office Building","rss_url":"http://wilson.house.gov/common/rss//index.cfm?rss=49","contact_form":"https://wilsonforms.house.gov/contact-form"}]},{"id":{"bioguide":"W000804","thomas":"01886","govtrack":412255,"opensecrets":"N00029459","votesmart":58133,"fec":["H8VA01147"],"cspan":1028089,"wikipedia":"Rob Wittman","ballotpedia":"Robert J. Wittman","maplight":7177,"washington_post":"gIQAtNhSKP","icpsr":20756,"house_history":24189},"name":{"first":"Robert","middle":"J.","last":"Wittman","official_full":"Robert J. Wittman"},"bio":{"birthday":"1959-02-03","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"2007-12-13","end":"2009-01-03","state":"VA","district":1,"party":"Republican","url":"http://www.wittman.house.gov/"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"VA","district":1,"party":"Republican","url":"http://www.wittman.house.gov/"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"VA","district":1,"party":"Republican","url":"http://www.wittman.house.gov/","address":"1317 Longworth HOB; Washington DC 20515-4601","phone":"202-225-4261","fax":"202-225-4382","contact_form":"https://forms.house.gov/wittman/IMA/webforms/issue_subscribe.htm","office":"1317 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"VA","party":"Republican","district":1,"url":"http://www.wittman.house.gov","address":"2454 Rayburn HOB; Washington DC 20515-4601","phone":"202-225-4261","fax":"202-225-4382","contact_form":"https://wittman.house.gov/contact-form/","office":"2454 Rayburn House Office Building","rss_url":"http://www.wittman.house.gov/index.php?format=feed&type=rss"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","party":"Republican","district":1,"url":"http://www.wittman.house.gov","address":"2454 Rayburn HOB; Washington DC 20515-4601","phone":"202-225-4261","fax":"202-225-4382","contact_form":"https://wittman.house.gov/contact-form/","office":"2454 Rayburn House Office Building","rss_url":"http://www.wittman.house.gov/index.php?format=feed&type=rss"}]},{"id":{"bioguide":"W000809","thomas":"01991","govtrack":412402,"opensecrets":"N00031857","votesmart":71815,"fec":["H0AR03055"],"cspan":1033625,"wikipedia":"Steve Womack","ballotpedia":"Steve Womack","maplight":5416,"washington_post":"gIQAHcFWKP","icpsr":21108,"house_history":24197},"name":{"first":"Steve","last":"Womack","official_full":"Steve Womack"},"bio":{"birthday":"1957-02-18","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AR","district":3,"party":"Republican","url":"http://womack.house.gov/","address":"1508 Longworth HOB; Washington DC 20515-0403","phone":"202-225-4301","fax":"202-225-5713","office":"1508 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AR","party":"Republican","district":3,"url":"http://womack.house.gov","address":"1119 Longworth HOB; Washington DC 20515-0403","phone":"202-225-4301","fax":"202-225-5713","office":"1119 Longworth House Office Building","rss_url":"http://womack.house.gov/news/rss.aspx","contact_form":"https://womack.house.gov/contact/contactform.htm"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AR","party":"Republican","district":3,"url":"http://womack.house.gov","address":"1119 Longworth HOB; Washington DC 20515-0403","phone":"202-225-4301","fax":"202-225-5713","office":"1119 Longworth House Office Building","rss_url":"http://womack.house.gov/news/rss.aspx","contact_form":"https://womack.house.gov/contact/contactform.htm"}]},{"id":{"bioguide":"W000810","thomas":"02008","govtrack":412416,"opensecrets":"N00032416","votesmart":122251,"fec":["H0GA07133"],"cspan":623342,"wikipedia":"Rob Woodall","maplight":5623,"washington_post":"gIQArSXZKP","icpsr":21122,"house_history":24199},"name":{"first":"Rob","last":"Woodall","official_full":"Rob Woodall"},"bio":{"birthday":"1970-02-11","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"GA","district":7,"party":"Republican","url":"http://woodall.house.gov/","address":"1725 Longworth HOB; Washington DC 20515-1007","phone":"202-225-4272","fax":"202-225-4696","office":"1725 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Republican","district":7,"url":"http://woodall.house.gov","address":"1725 Longworth HOB; Washington DC 20515-1007","phone":"202-225-4272","fax":"202-225-4696","office":"1725 Longworth House Office Building","rss_url":"http://woodall.house.gov/rss.xml","contact_form":"https://woodall.house.gov/contact-me/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Republican","district":7,"url":"http://woodall.house.gov","address":"1724 Longworth HOB; Washington DC 20515-1007","phone":"202-225-4272","fax":"202-225-4696","office":"1724 Longworth House Office Building","rss_url":"http://woodall.house.gov/rss.xml","contact_form":"https://woodall.house.gov/contact-me/email-me"}]},{"id":{"bioguide":"W000779","thomas":"01247","lis":"S247","govtrack":300100,"opensecrets":"N00007724","votesmart":27036,"icpsr":14871,"fec":["S6OR00110","H0OR03026"],"cspan":1962,"wikipedia":"Ron Wyden","ballotpedia":"Ron Wyden","maplight":4616,"washington_post":"gIQAfn599O","house_history":24150},"name":{"first":"Ron","last":"Wyden","official_full":"Ron Wyden"},"bio":{"birthday":"1949-05-03","gender":"M","religion":"Jewish"},"terms":[{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"OR","district":3,"party":"Democrat"},{"type":"rep","start":"1995-01-04","end":"1996-02-05","state":"OR","district":3,"party":"Democrat"},{"type":"sen","start":"1996-01-01","end":"1998-12-19","state":"OR","class":3,"party":"Democrat"},{"type":"sen","start":"1999-01-06","end":"2004-12-09","state":"OR","class":3,"party":"Democrat","url":"http://wyden.senate.gov/"},{"type":"sen","start":"2005-01-04","end":"2010-12-22","state":"OR","class":3,"party":"Democrat","url":"http://wyden.senate.gov/"},{"type":"sen","start":"2011-01-05","end":"2017-01-03","state":"OR","class":3,"party":"Democrat","url":"http://www.wyden.senate.gov","address":"221 Dirksen Senate Office Building Washington DC 20510","phone":"202-224-5244","fax":"202-228-2717","contact_form":"http://www.wyden.senate.gov/contact","office":"221 Dirksen Senate Office Building","state_rank":"senior","rss_url":"http://www.wyden.senate.gov/rss/feeds/?type=all&"}]},{"id":{"bioguide":"Y000062","thomas":"01853","govtrack":412211,"opensecrets":"N00028073","votesmart":58579,"fec":["H6KY03124"],"cspan":1021662,"house_history":21106,"wikipedia":"John Yarmuth","ballotpedia":"John Yarmuth","maplight":4693,"washington_post":"gIQAIuVYBP","icpsr":20723},"name":{"first":"John","middle":"A.","last":"Yarmuth","official_full":"John A. Yarmuth"},"bio":{"birthday":"1947-11-04","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"KY","district":3,"party":"Democrat","url":"http://yarmuth.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"KY","district":3,"party":"Democrat","url":"http://yarmuth.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"KY","district":3,"party":"Democrat","url":"http://yarmuth.house.gov","address":"435 Cannon HOB; Washington DC 20515-1703","phone":"202-225-5401","fax":"202-225-5776","contact_form":"http://yarmuth.house.gov/?sectionid=68&sectiontree=6,29,68","office":"435 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KY","party":"Democrat","district":3,"url":"http://yarmuth.house.gov","address":"403 Cannon HOB; Washington DC 20515-1703","phone":"202-225-5401","fax":"202-225-5776","contact_form":"http://yarmuth.house.gov/contact-john2/","office":"403 Cannon House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KY","party":"Democrat","district":3,"url":"http://yarmuth.house.gov","address":"403 Cannon HOB; Washington DC 20515-1703","phone":"202-225-5401","fax":"202-225-5776","contact_form":"http://yarmuth.house.gov/contact-john2/","office":"403 Cannon House Office Building"}]},{"id":{"bioguide":"Y000063","thomas":"02021","govtrack":412430,"opensecrets":"N00031502","votesmart":34433,"fec":["H0KS03137"],"cspan":61843,"wikipedia":"Kevin Yoder","house_history":21107,"ballotpedia":"Kevin Yoder","maplight":5722,"washington_post":"gIQAJsGVKP","icpsr":21135},"name":{"first":"Kevin","last":"Yoder","official_full":"Kevin Yoder"},"bio":{"birthday":"1976-01-08","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"KS","district":3,"party":"Republican","url":"http://yoder.house.gov/","address":"214 Cannon HOB; Washington DC 20515-1603","phone":"202-225-2865","fax":"202- 225-2807","office":"214 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KS","party":"Republican","district":3,"url":"http://yoder.house.gov","address":"215 Cannon HOB; Washington DC 20515-1603","phone":"202-225-2865","fax":"202- 225-2807","office":"215 Cannon House Office Building","rss_url":"http://yoder.house.gov/common/rss/index.cfm?rss=49","contact_form":"https://yoder.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KS","party":"Republican","district":3,"url":"http://yoder.house.gov","address":"215 Cannon HOB; Washington DC 20515-1603","phone":"202-225-2865","fax":"202- 225-2807","office":"215 Cannon House Office Building","rss_url":"http://yoder.house.gov/common/rss/index.cfm?rss=49","contact_form":"https://yoder.house.gov/contact/email-me"}]},{"id":{"bioguide":"Y000033","thomas":"01256","govtrack":400440,"opensecrets":"N00007999","votesmart":26717,"icpsr":14066,"fec":["H6AK00045"],"cspan":1897,"wikipedia":"Don Young","house_history":21071,"ballotpedia":"Don Young","maplight":4522,"washington_post":"gIQAsCfJAP"},"name":{"first":"Don","middle":"E.","last":"Young","official_full":"Don Young"},"bio":{"birthday":"1933-06-09","gender":"M","religion":"Episcopalian"},"terms":[{"type":"rep","start":"1973-01-03","end":"1974-12-20","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1975-01-14","end":"1976-10-01","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1977-01-04","end":"1978-10-15","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1981-01-05","end":"1982-12-23","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1983-01-03","end":"1984-10-12","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1985-01-03","end":"1986-10-18","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1987-01-06","end":"1988-10-22","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1989-01-03","end":"1990-10-28","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1991-01-03","end":"1992-10-09","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1993-01-05","end":"1994-12-01","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"2001-01-03","end":"2002-11-22","state":"AK","district":0,"party":"Republican"},{"type":"rep","start":"2003-01-07","end":"2004-12-09","state":"AK","district":0,"party":"Republican","url":"http://www.house.gov/donyoung"},{"type":"rep","start":"2005-01-04","end":"2006-12-09","state":"AK","district":0,"party":"Republican","url":"http://www.house.gov/donyoung"},{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"AK","district":0,"party":"Republican","url":"http://donyoung.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"AK","district":0,"party":"Republican","url":"http://donyoung.house.gov"},{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"AK","district":0,"party":"Republican","url":"http://donyoung.house.gov","address":"2314 Rayburn HOB; Washington DC 20515-0201","phone":"202-225-5765","fax":"202-225-0425","contact_form":"http://donyoung.house.gov/Contact/","office":"2314 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AK","party":"Republican","district":0,"url":"http://donyoung.house.gov","address":"2314 Rayburn HOB; Washington DC 20515-0200","phone":"202-225-5765","fax":"202-225-0425","contact_form":"https://donyoung.house.gov/forms/writeyourrep/","office":"2314 Rayburn House Office Building","rss_url":"http://donyoung.house.gov/news/rss.aspx"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AK","party":"Republican","district":0,"url":"http://donyoung.house.gov","address":"2314 Rayburn HOB; Washington DC 20515-0200","phone":"202-225-5765","fax":"202-225-0425","contact_form":"https://donyoung.house.gov/forms/writeyourrep/","office":"2314 Rayburn House Office Building","rss_url":"http://donyoung.house.gov/news/rss.aspx"}]},{"id":{"bioguide":"Y000064","thomas":"02019","govtrack":412428,"opensecrets":"N00030670","votesmart":120345,"fec":["H0IN09070"],"cspan":1033743,"wikipedia":"Todd Young","house_history":21109,"ballotpedia":"Todd Young","maplight":5709,"washington_post":"gIQA1LLWKP","icpsr":21133},"name":{"first":"Todd","last":"Young","official_full":"Todd C. Young","middle":"C."},"bio":{"birthday":"1972-08-24","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IN","district":9,"party":"Republican","url":"http://toddyoung.house.gov/","address":"1721 Longworth HOB; Washington DC 20515-1409","phone":"202-225-5315","fax":"202-226-6866","office":"1721 Longworth House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Republican","district":9,"url":"http://toddyoung.house.gov","address":"1007 Longworth HOB; Washington DC 20515-1409","phone":"202-225-5315","fax":"202-226-6866","office":"1007 Longworth House Office Building","rss_url":"http://toddyoung.house.gov/common/rss//index.cfm?rss=49","contact_form":"https://toddyoungforms.house.gov/give-me-your-opinion"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Republican","district":9,"url":"http://toddyoung.house.gov","address":"1007 Longworth HOB; Washington DC 20515-1409","phone":"202-225-5315","fax":"202-226-6866","office":"1007 Longworth House Office Building","rss_url":"http://toddyoung.house.gov/common/rss//index.cfm?rss=49","contact_form":"https://toddyoungforms.house.gov/give-me-your-opinion"}]},{"id":{"bioguide":"H001041","thomas":"01863","lis":"S352","govtrack":412218,"opensecrets":"N00027522","votesmart":2291,"fec":["H6NV02164","S2NV00183"],"cspan":1012368,"wikipedia":"Dean Heller","house_history":15578,"ballotpedia":"Dean Heller","maplight":7486,"washington_post":"gIQAljK0DP","icpsr":20730},"name":{"first":"Dean","last":"Heller","official_full":"Dean Heller"},"bio":{"birthday":"1960-05-10","gender":"M"},"terms":[{"type":"rep","start":"2007-01-04","end":"2009-01-03","state":"NV","district":2,"party":"Republican","url":"http://heller.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NV","district":2,"party":"Republican","url":"http://heller.house.gov"},{"type":"rep","start":"2011-01-05","end":"2011-05-09","state":"NV","district":2,"party":"Republican","url":"http://heller.house.gov","address":"125 Cannon House Office Building; 20515-2802"},{"type":"sen","start":"2011-05-09","end":"2013-01-03","state":"NV","class":1,"party":"Republican","address":"361A RUSSELL SENATE OFFICE BUILDING WASHINGTON DC 20510","url":"http://heller.senate.gov/","phone":"202-224-6244","contact_form":"http://www.heller.senate.gov/public/index.cfm/contact-form","office":"361a Russell Senate Office Building"},{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"NV","party":"Republican","class":1,"url":"http://www.heller.senate.gov","address":"324 Hart Senate Office Building Washington DC 20510","phone":"202-224-6244","contact_form":"http://www.heller.senate.gov/public/index.cfm/contact-form","office":"324 Hart Senate Office Building","state_rank":"junior","rss_url":"http://www.heller.senate.gov/public/index.cfm/rss/feed","fax":"202-228-6753"}]},{"id":{"bioguide":"H001063","thomas":"02089","govtrack":412498,"opensecrets":"N00006806","votesmart":70502,"fec":["H8CA36097"],"cspan":57805,"wikipedia":"Janice Hahn","house_history":15617,"ballotpedia":"Janice Hahn","maplight":6950,"washington_post":"gIQAVGFB9S","icpsr":21195},"name":{"first":"Janice","last":"Hahn","official_full":"Janice Hahn"},"bio":{"birthday":"1952-03-30","gender":"F"},"terms":[{"type":"rep","start":"2011-07-19","end":"2013-01-03","state":"CA","district":36,"party":"Democrat","url":"http://hahn.house.gov/","address":"2400 Rayburn HOB; Washington DC 20515-0536","phone":"202-225-8220","fax":"202-226-7290","contact_form":"https://hahn.house.gov/contact-me/email-me","office":"2400 Rayburn House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":44,"url":"http://hahn.house.gov","address":"404 Cannon HOB; Washington DC 20515-0544","phone":"202-225-8220","fax":"202-226-7290","contact_form":"https://hahn.house.gov/contact-me/email-me","office":"404 Cannon House Office Building","rss_url":"http://hahn.house.gov/rss.xml"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":44,"url":"http://hahn.house.gov","address":"404 Cannon HOB; Washington DC 20515-0544","phone":"202-225-8220","fax":"202-226-7290","contact_form":"https://hahn.house.gov/contact-me/email-me","office":"404 Cannon House Office Building","rss_url":"http://hahn.house.gov/rss.xml"}]},{"id":{"bioguide":"A000369","thomas":"02090","govtrack":412500,"opensecrets":"N00031177","votesmart":12537,"fec":["H2NV02395","H1NV02017","S0NV00237"],"cspan":62817,"wikipedia":"Mark Amodei","house_history":8772,"ballotpedia":"Mark Amodei","maplight":8698,"washington_post":"gJQAwGAWBW","icpsr":21196},"name":{"first":"Mark","middle":"E.","last":"Amodei","official_full":"Mark E. Amodei"},"bio":{"birthday":"1958-06-12","gender":"M"},"terms":[{"type":"rep","start":"2011-09-13","end":"2013-01-03","state":"NV","district":2,"party":"Republican","url":"http://amodei.house.gov/","address":"125 Cannon HOB; Washington DC 20515-2802","phone":"202-225-6155","fax":"202-225-5679","contact_form":"https://amodei.house.gov/contact-me","office":"125 Cannon House Office Building"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NV","party":"Republican","district":2,"url":"http://amodei.house.gov","address":"222 Cannon HOB; Washington DC 20515-2802","phone":"202-225-6155","fax":"202-225-5679","contact_form":"https://amodei.house.gov/contact-us","office":"222 Cannon House Office Building","rss_url":"http://amodei.house.gov/common/rss//?rss=49"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NV","party":"Republican","district":2,"url":"http://amodei.house.gov","address":"332 Cannon HOB; Washington DC 20515-2802","phone":"202-225-6155","fax":"202-225-5679","contact_form":"https://amodei.house.gov/contact-us","office":"332 Cannon House Office Building","rss_url":"http://amodei.house.gov/common/rss//?rss=49"}]},{"id":{"bioguide":"B001278","thomas":"02092","govtrack":412501,"opensecrets":"N00033474","votesmart":59641,"fec":["H2OR01133"],"cspan":63966,"wikipedia":"Suzanne Bonamici","house_history":10443,"ballotpedia":"Suzanne Bonamici","maplight":6619,"washington_post":"02f1e8a6-747e-11e2-95e4-6148e45d7adb","icpsr":21198},"name":{"first":"Suzanne","last":"Bonamici","official_full":"Suzanne Bonamici"},"bio":{"birthday":"1954-10-14","gender":"F"},"terms":[{"type":"rep","start":"2012-02-07","end":"2013-01-03","state":"OR","district":1,"party":"Democrat","url":"http://bonamici.house.gov/","address":"2338 Rayburn HOB; Washington DC 20515-3701","contact_form":"https://bonamici.house.gov/contact-me","office":"2338 Rayburn House Office Building","phone":"202-225-0855"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OR","party":"Democrat","district":1,"url":"http://bonamici.house.gov","address":"439 Cannon HOB; Washington DC 20515-3701","phone":"202-225-0855","contact_form":"https://bonamici.house.gov/contact-me/email-me","office":"439 Cannon House Office Building","rss_url":"http://bonamici.house.gov/rss.xml","fax":"202-225-9497"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OR","party":"Democrat","district":1,"url":"http://bonamici.house.gov","address":"439 Cannon HOB; Washington DC 20515-3701","phone":"202-225-0855","contact_form":"https://bonamici.house.gov/contact-me/email-me","office":"439 Cannon House Office Building","rss_url":"http://bonamici.house.gov/rss.xml","fax":"202-225-9497"}]},{"id":{"bioguide":"D000617","govtrack":412505,"opensecrets":"N00030693","votesmart":126272,"thomas":"02096","cspan":1033929,"wikipedia":"Suzan DelBene","fec":["H0WA08046"],"ballotpedia":"Suzan DelBene","maplight":6164,"washington_post":"b05148de-4bbb-11e2-8758-b64a2997a921","icpsr":31101,"house_history":15032387032},"name":{"first":"Suzan","middle":"K.","last":"DelBene","official_full":"Suzan K. DelBene"},"bio":{"birthday":"1962-02-17","gender":"F"},"terms":[{"type":"rep","start":"2012-11-13","end":"2013-01-03","state":"WA","district":1,"party":"Democrat","address":"2329 Rayburn HOB; Washington DC 20515-4701","office":"2329 Rayburn House Office Building","phone":"202-225-6311","url":"http://delbene.house.gov"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Democrat","district":1,"url":"http://delbene.house.gov","address":"318 Cannon HOB; Washington DC 20515-4701","phone":"202-225-6311","office":"318 Cannon House Office Building","rss_url":"http://delbene.house.gov/rss.xml","contact_form":"http://delbene.house.gov/contact-me/email-me","fax":"202-226-1606"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Democrat","district":1,"url":"http://delbene.house.gov","address":"318 Cannon HOB; Washington DC 20515-4701","phone":"202-225-6311","office":"318 Cannon House Office Building","rss_url":"http://delbene.house.gov/rss.xml","contact_form":"http://delbene.house.gov/contact-me/email-me","fax":"202-226-1606"}]},{"id":{"bioguide":"M001184","govtrack":412503,"opensecrets":"N00034041","votesmart":132068,"thomas":"02094","cspan":79951,"wikipedia":"Thomas Massie","fec":["H2KY04121"],"ballotpedia":"Thomas Massie","maplight":6430,"washington_post":"841a4814-4bbc-11e2-8758-b64a2997a921","icpsr":31102},"name":{"first":"Thomas","last":"Massie","official_full":"Thomas Massie"},"bio":{"birthday":"1971-01-13","gender":"M"},"terms":[{"type":"rep","start":"2012-11-13","end":"2013-01-03","state":"KY","district":4,"party":"Republican","address":"1119 Longworth HOB; Washington DC 20515-1704","phone":"202-225-3465","office":"1119 Longworth House Office Building","url":"http://massie.house.gov"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KY","party":"Republican","district":4,"url":"http://massie.house.gov","address":"314 Cannon HOB; Washington DC 20515-1704","phone":"202-225-3465","office":"314 Cannon House Office Building","rss_url":"http://massie.house.gov/rss.xml","contact_form":"http://massieforms.house.gov/contact/","fax":"202-225-0003"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KY","party":"Republican","district":4,"url":"http://massie.house.gov","address":"314 Cannon HOB; Washington DC 20515-1704","phone":"202-225-3465","office":"314 Cannon House Office Building","rss_url":"http://massie.house.gov/rss.xml","contact_form":"http://massieforms.house.gov/contact/","fax":"202-225-0003"}]},{"id":{"bioguide":"P000604","govtrack":412506,"opensecrets":"N00034639","votesmart":90668,"thomas":"02097","cspan":65639,"wikipedia":"Donald Payne, Jr.","fec":["H2NJ10154"],"maplight":8669,"washington_post":"gIQA5yLeKP","icpsr":31103},"name":{"first":"Donald","middle":"M.","last":"Payne","suffix":"Jr.","official_full":"Donald M. Payne Jr."},"bio":{"birthday":"1958-12-17","gender":"M"},"terms":[{"type":"rep","start":"2012-11-15","end":"2013-01-03","state":"NJ","district":10,"party":"Democrat","address":"2310 Rayburn HOB; Washington DC 20515-3010","office":"2310 Rayburn House Office Building","phone":"202-225-3436"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NJ","party":"Democrat","district":10,"address":"103 Cannon HOB; Washington DC 20515-3010","phone":"202-225-3436","office":"103 Cannon House Office Building","url":"http://payne.house.gov","rss_url":"http://payne.house.gov/rss.xml","contact_form":"http://payne.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","party":"Democrat","district":10,"address":"103 Cannon HOB; Washington DC 20515-3010","phone":"202-225-3436","office":"103 Cannon House Office Building","url":"http://payne.house.gov","rss_url":"http://payne.house.gov/rss.xml","contact_form":"http://payne.house.gov/contact/email-me","fax":"202-225-4160"}],"family":[{"name":"Donald Milford Payne","relation":"son"}]},{"id":{"lis":"S353","thomas":"02173","opensecrets":"N00028138","votesmart":17852,"bioguide":"S001194","govtrack":412507,"cspan":87784,"wikipedia":"Brian Schatz","fec":["S4HI00136","H6HI02244"],"ballotpedia":"Brian E. Schatz","maplight":35931,"washington_post":"a91363f0-5047-11e2-950a-7863a013264b","icpsr":41112},"name":{"first":"Brian","middle":"Emanuel","last":"Schatz","official_full":"Brian Schatz"},"bio":{"birthday":"1972-10-20","gender":"M"},"terms":[{"type":"sen","start":"2012-12-27","end":"2015-01-03","state":"HI","class":3,"party":"Democrat","address":"722 Hart Senate Office Building Washington DC 20510","phone":"202-224-3934","fax":"202-228-1153","office":"722 Hart Senate Office Building","url":"http://www.schatz.senate.gov","state_rank":"senior","contact_form":"http://www.schatz.senate.gov/contact"},{"type":"sen","start":"2015-01-06","end":"2017-01-03","state":"HI","class":3,"party":"Democrat","address":"722 Hart Senate Office Building Washington DC 20510","phone":"202-224-3934","fax":"202-228-1153","office":"722 Hart Senate Office Building","url":"http://www.schatz.senate.gov","state_rank":"senior","contact_form":"http://www.schatz.senate.gov/contact"}]},{"id":{"bioguide":"S000018","thomas":"01009","govtrack":400606,"votesmart":22184,"wikipedia":"Matt Salmon","fec":["H4AZ01038","H2AZ06130"],"opensecrets":"N00006446","ballotpedia":"Matt Salmon","cspan":37033,"maplight":6744,"washington_post":"21c60a8a-4bbd-11e2-8758-b64a2997a921","icpsr":29500,"house_history":21154},"name":{"first":"Matt","last":"Salmon","official_full":"Matt Salmon"},"bio":{"birthday":"1958-01-21","gender":"M"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"AZ","district":1,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"AZ","district":1,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"AZ","district":1,"party":"Republican"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AZ","party":"Republican","district":5,"office":"2349 Rayburn House Office Building","address":"2349 Rayburn HOB; Washington DC 20515-0305","phone":"202-225-2635","url":"http://salmon.house.gov","rss_url":"http://salmon.house.gov/rss.xml","contact_form":"https://salmon.house.gov/contact/email-me","fax":"202-226-4386"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","party":"Republican","district":5,"office":"2349 Rayburn House Office Building","address":"2349 Rayburn HOB; Washington DC 20515-0305","phone":"202-225-2635","url":"http://salmon.house.gov","rss_url":"http://salmon.house.gov/rss.xml","contact_form":"https://salmon.house.gov/contact/email-me","fax":"202-226-4386"}]},{"id":{"bioguide":"F000454","thomas":"01888","govtrack":412257,"opensecrets":"N00029139","votesmart":101632,"fec":["H8IL14067","H2IL11124"],"cspan":1027346,"wikipedia":"Bill Foster (Illinois politician)","house_history":13555,"ballotpedia":"Bill Foster","maplight":7010,"washington_post":"gIQAnjxyDP","icpsr":20749},"name":{"first":"Bill","last":"Foster","official_full":"Bill Foster"},"bio":{"birthday":"1955-10-07","gender":"M"},"terms":[{"type":"rep","start":"2008-03-08","end":"2009-01-03","state":"IL","district":14,"party":"Democrat","url":"http://foster.house.gov"},{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"IL","district":14,"party":"Democrat","url":"http://foster.house.gov"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":11,"url":"http://foster.house.gov","office":"1224 Longworth House Office Building","address":"1224 Longworth HOB; Washington DC 20515-1311","phone":"202-225-3515","rss_url":"http://foster.house.gov/rss.xml","contact_form":"https://foster.house.gov/contact/email-me","fax":"202-225-9420"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":11,"url":"http://foster.house.gov","office":"1224 Longworth House Office Building","address":"1224 Longworth HOB; Washington DC 20515-1311","phone":"202-225-3515","rss_url":"http://foster.house.gov/rss.xml","contact_form":"https://foster.house.gov/contact/email-me","fax":"202-225-9420"}]},{"id":{"bioguide":"G000556","thomas":"01914","govtrack":412276,"opensecrets":"N00028418","votesmart":68184,"fec":["H6FL08213"],"cspan":1013409,"wikipedia":"Alan Grayson","house_history":14271,"ballotpedia":"Alan Grayson","maplight":6831,"washington_post":"gIQAp6qMAP","icpsr":20908},"name":{"first":"Alan","last":"Grayson","official_full":"Alan Grayson"},"bio":{"birthday":"1958-03-13","gender":"M"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"FL","district":8,"party":"Democrat","url":"http://grayson.house.gov"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":9,"url":"http://grayson.house.gov","office":"430 Cannon House Office Building","address":"430 Cannon HOB; Washington DC 20515-0909","phone":"202-225-9889","rss_url":"http://grayson.house.gov/rss.xml","contact_form":"https://grayson.house.gov/contact/email-me","fax":"202-225-9742"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":9,"url":"http://grayson.house.gov","office":"303 Cannon House Office Building","address":"303 Cannon HOB; Washington DC 20515-0909","phone":"202-225-9889","rss_url":"http://grayson.house.gov/rss.xml","contact_form":"https://grayson.house.gov/contact/email-me","fax":"202-225-9742"}]},{"id":{"bioguide":"K000368","thomas":"01907","govtrack":412286,"opensecrets":"N00029260","votesmart":28425,"fec":["H8AZ01104"],"cspan":1031338,"wikipedia":"Ann Kirkpatrick","house_history":16560,"ballotpedia":"Ann Kirkpatrick","maplight":6936,"washington_post":"gIQAeTvs6O","icpsr":20902},"name":{"first":"Ann","last":"Kirkpatrick","official_full":"Ann Kirkpatrick"},"bio":{"gender":"F","birthday":"1950-03-24"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"AZ","district":1,"party":"Democrat","url":"http://kirkpatrick.house.gov"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AZ","party":"Democrat","district":1,"url":"http://kirkpatrick.house.gov","office":"330 Cannon House Office Building","address":"330 Cannon HOB; Washington DC 20515-0301","phone":"202-225-3361","rss_url":"http://kirkpatrick.house.gov/rss.xml","contact_form":"https://kirkpatrick.house.gov/contact/email-me","fax":"202-225-3462"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","party":"Democrat","district":1,"url":"http://kirkpatrick.house.gov","office":"201 Cannon House Office Building","address":"201 Cannon HOB; Washington DC 20515-0301","phone":"202-225-3361","rss_url":"http://kirkpatrick.house.gov/rss.xml","contact_form":"https://kirkpatrick.house.gov/contact/email-me","fax":"202-225-3462"}]},{"id":{"bioguide":"T000468","thomas":"01940","govtrack":412318,"opensecrets":"N00030191","votesmart":2629,"fec":["H8NV03036"],"cspan":1021622,"wikipedia":"Dina Titus","ballotpedia":"Dina Titus","maplight":7105,"washington_post":"gIQAsdNqAP","icpsr":20927,"house_history":23215},"name":{"first":"Dina","last":"Titus","official_full":"Dina Titus"},"bio":{"gender":"F","birthday":"1950-05-23"},"terms":[{"type":"rep","start":"2009-01-06","end":"2010-12-22","state":"NV","district":3,"party":"Democrat","url":"http://titus.house.gov"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NV","party":"Democrat","district":1,"url":"http://titus.house.gov","office":"401 Cannon House Office Building","address":"401 Cannon HOB; Washington DC 20515-2801","phone":"202-225-5965","rss_url":"http://titus.house.gov/rss.xml","contact_form":"https://titus.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NV","party":"Democrat","district":1,"url":"http://titus.house.gov","office":"401 Cannon House Office Building","address":"401 Cannon HOB; Washington DC 20515-2801","phone":"202-225-5965","rss_url":"http://titus.house.gov/rss.xml","contact_form":"https://titus.house.gov/contact/email-me"}]},{"id":{"govtrack":412508,"bioguide":"C001095","thomas":"02098","cspan":63928,"votesmart":135651,"wikipedia":"Tom Cotton","fec":["H2AR04083"],"opensecrets":"N00033363","ballotpedia":"Tom Cotton","maplight":6192,"washington_post":"8803d7f2-4bbb-11e2-8758-b64a2997a921","icpsr":21301,"lis":"S374"},"name":{"first":"Tom","last":"Cotton","official_full":"Tom Cotton"},"bio":{"gender":"M","birthday":"1977-05-13"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AR","party":"Republican","district":4,"office":"415 Cannon House Office Building","address":"415 Cannon HOB; Washington DC 20515-0404","phone":"202-225-3772","url":"http://cotton.house.gov","rss_url":"http://cotton.house.gov/rss.xml","contact_form":"https://cotton.house.gov/contact/email-me"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"AR","class":2,"state_rank":"junior","party":"Republican","url":"http://www.cotton.senate.gov","address":"B33 Russell Senate Office Building Washington DC 20510","office":"B33 Russell Senate Office Building","phone":"202-224-2353"}]},{"id":{"govtrack":412509,"bioguide":"S001191","thomas":"02099","cspan":68489,"opensecrets":"N00033983","votesmart":28338,"wikipedia":"Kyrsten Sinema","fec":["H2AZ09019"],"ballotpedia":"Kyrsten Sinema","maplight":7644,"washington_post":"f9d0a3fa-4bbc-11e2-8758-b64a2997a921","icpsr":21300,"house_history":15032387755},"name":{"first":"Kyrsten","last":"Sinema","official_full":"Kyrsten Sinema"},"bio":{"gender":"F","birthday":"1976-07-12"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"AZ","party":"Democrat","district":9,"office":"1237 Longworth House Office Building","address":"1237 Longworth HOB; Washington DC 20515-0309","phone":"202-225-9888","url":"http://sinema.house.gov","rss_url":"http://sinema.house.gov/index.cfm/rss/feed","contact_form":"https://sinemaforms.house.gov/forms/writeyourrep/","fax":"202-225-9731"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","party":"Democrat","district":9,"office":"1530 Longworth House Office Building","address":"1530 Longworth HOB; Washington DC 20515-0309","phone":"202-225-9888","url":"http://sinema.house.gov","rss_url":"http://sinema.house.gov/index.cfm/rss/feed","contact_form":"https://sinemaforms.house.gov/forms/writeyourrep/","fax":"202-225-9731"}]},{"id":{"govtrack":412510,"bioguide":"L000578","thomas":"02100","cspan":68493,"votesmart":29713,"wikipedia":"Doug LaMalfa","fec":["H2CA02142","H2CA01144"],"opensecrets":"N00033987","ballotpedia":"Doug LaMalfa","maplight":6215,"washington_post":"3ca0c2b0-4bb7-11e2-8758-b64a2997a921","icpsr":21302},"name":{"first":"Doug","last":"LaMalfa","official_full":"Doug LaMalfa"},"bio":{"gender":"M","birthday":"1960-07-02"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":1,"office":"506 Cannon House Office Building","address":"506 Cannon HOB; Washington DC 20515-0501","phone":"202-225-3076","url":"http://lamalfa.house.gov","rss_url":"http://lamalfa.house.gov/rss.xml","contact_form":"https://lamalfa.house.gov/contact/email-me","fax":"530-534-7800"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":1,"office":"322 Cannon House Office Building","address":"322 Cannon HOB; Washington DC 20515-0501","phone":"202-225-3076","url":"http://lamalfa.house.gov","rss_url":"http://lamalfa.house.gov/rss.xml","contact_form":"https://lamalfa.house.gov/contact/email-me","fax":"530-534-7800"}]},{"id":{"govtrack":412511,"bioguide":"H001068","thomas":"02101","cspan":622431,"votesmart":59849,"wikipedia":"Jared Huffman","fec":["H2CA06259"],"opensecrets":"N00033030","ballotpedia":"Jared Huffman","maplight":6219,"washington_post":"1fca09ea-4bbb-11e2-8758-b64a2997a921","icpsr":21303},"name":{"first":"Jared","last":"Huffman","official_full":"Jared Huffman"},"bio":{"gender":"M","birthday":"1964-02-18"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":2,"office":"1630 Longworth House Office Building","address":"1630 Longworth HOB; Washington DC 20515-0502","phone":"202-225-5161","url":"http://huffman.house.gov","rss_url":"http://huffman.house.gov/rss.xml","contact_form":"https://huffman.house.gov/contact/email-me","fax":"202-225-5163"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":2,"office":"1630 Longworth House Office Building","address":"1630 Longworth HOB; Washington DC 20515-0502","phone":"202-225-5161","url":"http://huffman.house.gov","rss_url":"http://huffman.house.gov/rss.xml","contact_form":"https://huffman.house.gov/contact/email-me","fax":"202-225-5163"}]},{"id":{"govtrack":412512,"bioguide":"B001287","thomas":"02102","cspan":1033636,"fec":["H0CA03078"],"wikipedia":"Ami Bera","opensecrets":"N00030717","votesmart":120030,"ballotpedia":"Ami Bera","maplight":5447,"washington_post":"gIQAaC5TKP","icpsr":21304},"name":{"first":"Ami","last":"Bera","official_full":"Ami Bera"},"bio":{"gender":"M","birthday":"1965-03-02"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":7,"office":"1408 Longworth House Office Building","address":"1408 Longworth HOB; Washington DC 20515-0507","phone":"202-225-5716","url":"http://bera.house.gov","rss_url":"http://bera.house.gov/rss.xml","contact_form":"https://beraforms.house.gov/forms/writeyourrep/","fax":"202-226-1298"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":7,"office":"1535 Longworth House Office Building","address":"1535 Longworth HOB; Washington DC 20515-0507","phone":"202-225-5716","url":"http://bera.house.gov","rss_url":"http://bera.house.gov/rss.xml","contact_form":"https://beraforms.house.gov/forms/writeyourrep/","fax":"202-226-1298"}]},{"id":{"govtrack":412513,"bioguide":"C001094","thomas":"02103","cspan":68278,"opensecrets":"N00034224","votesmart":58121,"wikipedia":"Paul Cook (politician)","fec":["H2CA08164"],"ballotpedia":"Paul Cook","maplight":6225,"washington_post":"7b7f60a0-4bbb-11e2-8758-b64a2997a921","icpsr":21305},"name":{"first":"Paul","last":"Cook","official_full":"Paul Cook"},"bio":{"gender":"M","birthday":"1943-03-03"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":8,"office":"1222 Longworth House Office Building","address":"1222 Longworth HOB; Washington DC 20515-0508","phone":"202-225-5861","url":"http://cook.house.gov","rss_url":"http://cook.house.gov/rss.xml","contact_form":"https://cook.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":8,"office":"1222 Longworth House Office Building","address":"1222 Longworth HOB; Washington DC 20515-0508","phone":"202-225-5861","url":"http://cook.house.gov","rss_url":"http://cook.house.gov/rss.xml","contact_form":"https://cook.house.gov/contact/email-me"}]},{"id":{"govtrack":412514,"bioguide":"S001193","thomas":"02104","cspan":79729,"opensecrets":"N00033508","votesmart":129529,"wikipedia":"Eric Swalwell","fec":["H2CA15094"],"ballotpedia":"Eric Swalwell","maplight":6233,"washington_post":"df3311a4-4bbc-11e2-8758-b64a2997a921","icpsr":21306},"name":{"first":"Eric","last":"Swalwell","official_full":"Eric Swalwell"},"bio":{"gender":"M","birthday":"1980-11-16"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":15,"office":"501 Cannon House Office Building","address":"501 Cannon HOB; Washington DC 20515-0515","phone":"202-225-5065","url":"http://swalwell.house.gov","contact_form":"http://swalwell.house.gov/contact-me/email-eric/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":15,"office":"129 Cannon House Office Building","address":"129 Cannon HOB; Washington DC 20515-0515","phone":"202-225-5065","url":"http://swalwell.house.gov","contact_form":"http://swalwell.house.gov/contact-me/email-eric/"}]},{"id":{"govtrack":412515,"bioguide":"V000129","thomas":"02105","cspan":623702,"votesmart":120200,"wikipedia":"David Valadao","fec":["H2CA20094"],"opensecrets":"N00033367","ballotpedia":"David G. Valadao","maplight":6238,"washington_post":"648810a8-4bb7-11e2-8758-b64a2997a921","icpsr":21307},"name":{"first":"David","last":"Valadao","middle":"G.","official_full":"David G. Valadao"},"bio":{"gender":"M","birthday":"1977-04-14"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Republican","district":21,"office":"1004 Longworth House Office Building","address":"1004 Longworth HOB; Washington DC 20515-0521","phone":"202-225-4695","url":"http://valadao.house.gov","rss_url":"http://valadao.house.gov/rss.xml","contact_form":"http://valadao.house.gov/contact/","fax":"202-226-3196"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Republican","district":21,"office":"1004 Longworth House Office Building","address":"1004 Longworth HOB; Washington DC 20515-0521","phone":"202-225-4695","url":"http://valadao.house.gov","rss_url":"http://valadao.house.gov/rss.xml","contact_form":"http://valadao.house.gov/contact/","fax":"202-226-3196"}]},{"id":{"govtrack":412516,"bioguide":"B001285","thomas":"02106","cspan":79783,"votesmart":59904,"wikipedia":"Julia Brownley","fec":["H2CA00120"],"opensecrets":"N00034254","ballotpedia":"Julia Brownley","maplight":6209,"washington_post":"31764ab4-4bbb-11e2-8758-b64a2997a921","icpsr":21308,"house_history":15032386871},"name":{"first":"Julia","last":"Brownley","official_full":"Julia Brownley"},"bio":{"gender":"F","birthday":"1952-08-28"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":26,"office":"1019 Longworth House Office Building","address":"1019 Longworth HOB; Washington DC 20515-0526","phone":"202-225-5811","url":"http://juliabrownley.house.gov","rss_url":"http://juliabrownley.house.gov/rss.xml","contact_form":"https://juliabrownley.house.gov/contact/email-me","fax":"202-225-1100"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":26,"office":"1019 Longworth House Office Building","address":"1019 Longworth HOB; Washington DC 20515-0526","phone":"202-225-5811","url":"http://juliabrownley.house.gov","rss_url":"http://juliabrownley.house.gov/rss.xml","contact_form":"https://juliabrownley.house.gov/contact/email-me","fax":"202-225-1100"}]},{"id":{"govtrack":412517,"bioguide":"C001097","thomas":"02107","cspan":63934,"votesmart":9754,"wikipedia":"Tony Cardenas","fec":["H2CA28113"],"opensecrets":"N00033373","ballotpedia":"Tony Cardenas","maplight":6257,"washington_post":"56b232a2-4bbb-11e2-8758-b64a2997a921","icpsr":21309},"name":{"first":"Tony","last":"Cárdenas","official_full":"Tony Cárdenas"},"bio":{"gender":"M","birthday":"1963-03-31"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":29,"office":"1508 Longworth House Office Building","address":"1508 Longworth HOB; Washington DC 20515-0529","phone":"202-225-6131","url":"http://cardenas.house.gov","rss_url":"http://cardenas.house.gov/rss.xml","contact_form":"https://cardenas.house.gov/contact/email-me","fax":"202-225-0819"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":29,"office":"1510 Longworth House Office Building","address":"1510 Longworth HOB; Washington DC 20515-0529","phone":"202-225-6131","url":"http://cardenas.house.gov","rss_url":"http://cardenas.house.gov/rss.xml","contact_form":"https://cardenas.house.gov/contact/email-me","fax":"202-225-0819"}]},{"id":{"govtrack":412519,"bioguide":"R000599","thomas":"02109","cspan":79727,"votesmart":136407,"wikipedia":"Raul Ruiz (politician)","fec":["H2CA36439"],"opensecrets":"N00033510","ballotpedia":"Raul Ruiz","maplight":6275,"washington_post":"e540f502-4bbc-11e2-8758-b64a2997a921","icpsr":21311},"name":{"first":"Raul","last":"Ruiz","official_full":"Raul Ruiz"},"bio":{"gender":"M","birthday":"1972-08-25"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":36,"office":"1319 Longworth House Office Building","address":"1319 Longworth HOB; Washington DC 20515-0536","phone":"202-225-5330","url":"http://ruiz.house.gov","rss_url":"http://ruiz.house.gov/rss.xml","contact_form":"https://ruiz.house.gov/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":36,"office":"1319 Longworth House Office Building","address":"1319 Longworth HOB; Washington DC 20515-0536","phone":"202-225-5330","url":"http://ruiz.house.gov","rss_url":"http://ruiz.house.gov/rss.xml","contact_form":"https://ruiz.house.gov/email-me","fax":"202-225-1238"}]},{"id":{"govtrack":412520,"bioguide":"T000472","thomas":"02110","cspan":2737,"votesmart":22337,"wikipedia":"Mark Takano","fec":["H2CA43245"],"opensecrets":"N00006701","ballotpedia":"Mark Takano","maplight":6282,"washington_post":"1234320e-4bbd-11e2-8758-b64a2997a921","icpsr":21312},"name":{"first":"Mark","last":"Takano","official_full":"Mark Takano"},"bio":{"gender":"M","birthday":"1960-12-10"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":41,"office":"1507 Longworth House Office Building","address":"1507 Longworth HOB; Washington DC 20515-0541","phone":"202-225-2305","url":"http://takano.house.gov","rss_url":"http://takano.house.gov/rss.xml","contact_form":"https://takano.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":41,"office":"1507 Longworth House Office Building","address":"1507 Longworth HOB; Washington DC 20515-0541","phone":"202-225-2305","url":"http://takano.house.gov","rss_url":"http://takano.house.gov/rss.xml","contact_form":"https://takano.house.gov/contact/email-me","fax":"202-225-7018"}]},{"id":{"govtrack":412521,"bioguide":"L000579","thomas":"02111","cspan":93815,"votesmart":16469,"wikipedia":"Alan Lowenthal","fec":["H2CA00104"],"opensecrets":"N00033274","ballotpedia":"Alan Lowenthal","maplight":6208,"washington_post":"e40cda5c-4bb2-11e2-8758-b64a2997a921","icpsr":21313},"name":{"first":"Alan","last":"Lowenthal","middle":"S.","official_full":"Alan S. Lowenthal"},"bio":{"gender":"M","birthday":"1941-03-08"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":47,"office":"515 Cannon House Office Building","address":"515 Cannon HOB; Washington DC 20515-0547","phone":"202-225-7924","url":"http://lowenthal.house.gov","rss_url":"http://lowenthal.house.gov/news/rss.aspx","contact_form":"http://lowenthal.house.gov/contact/howtocontactme.htm","fax":"202-225-7926"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":47,"office":"108 Cannon House Office Building","address":"108 Cannon HOB; Washington DC 20515-0547","phone":"202-225-7924","url":"http://lowenthal.house.gov","rss_url":"http://lowenthal.house.gov/news/rss.aspx","contact_form":"http://lowenthal.house.gov/contact/howtocontactme.htm","fax":"202-225-7926"}]},{"id":{"govtrack":412522,"bioguide":"V000130","thomas":"02112","cspan":8297,"votesmart":29100,"wikipedia":"Juan Vargas","fec":["H2CA50026"],"opensecrets":"N00007021","ballotpedia":"Juan Vargas","maplight":6294,"washington_post":"ec1c449e-4bbc-11e2-8758-b64a2997a921","icpsr":21314},"name":{"first":"Juan","last":"Vargas","official_full":"Juan Vargas"},"bio":{"gender":"M","birthday":"1961-03-07"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":51,"office":"1605 Longworth House Office Building","address":"1605 Longworth HOB; Washington DC 20515-0551","phone":"202-225-8045","url":"http://vargas.house.gov","rss_url":"http://vargas.house.gov/rss.xml","contact_form":"https://vargas.house.gov/contact","fax":"202-225-9073"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":51,"office":"1605 Longworth House Office Building","address":"1605 Longworth HOB; Washington DC 20515-0551","phone":"202-225-8045","url":"http://vargas.house.gov","rss_url":"http://vargas.house.gov/rss.xml","contact_form":"https://vargas.house.gov/contact","fax":"202-225-9073"}]},{"id":{"govtrack":412523,"bioguide":"P000608","thomas":"02113","cspan":79661,"votesmart":70351,"wikipedia":"Scott Peters (politician)","fec":["H2CA52089"],"opensecrets":"N00033591","ballotpedia":"Scott Peters","maplight":6300,"washington_post":"a73993a4-4bbc-11e2-8758-b64a2997a921","icpsr":21315},"name":{"first":"Scott","last":"Peters","middle":"H.","official_full":"Scott H. Peters"},"bio":{"gender":"M","birthday":"1958-06-17"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CA","party":"Democrat","district":52,"office":"2410 Rayburn House Office Building","address":"2410 Rayburn HOB; Washington DC 20515-0552","phone":"202-225-0508","url":"http://scottpeters.house.gov","rss_url":"http://scottpeters.house.gov/rss.xml","contact_form":"https://scottpeters.house.gov/contact/email-me","fax":"202-225-2558"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","party":"Democrat","district":52,"office":"1122 Longworth House Office Building","address":"1122 Longworth HOB; Washington DC 20515-0552","phone":"202-225-0508","url":"http://scottpeters.house.gov","rss_url":"http://scottpeters.house.gov/rss.xml","contact_form":"https://scottpeters.house.gov/contact/email-me","fax":"202-225-2558"}]},{"id":{"govtrack":412524,"bioguide":"E000293","thomas":"02114","cspan":1020906,"votesmart":72826,"wikipedia":"Elizabeth Esty","fec":["H2CT05131"],"opensecrets":"N00033217","ballotpedia":"Elzabeth Esty","maplight":6318,"washington_post":"13c60a22-4bbb-11e2-8758-b64a2997a921","icpsr":21316,"house_history":15032387067},"name":{"first":"Elizabeth","last":"Esty","middle":"H.","official_full":"Elizabeth H. Esty"},"bio":{"gender":"F","birthday":"1959-08-25"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"CT","party":"Democrat","district":5,"office":"509 Cannon House Office Building","address":"509 Cannon HOB; Washington DC 20515-0705","phone":"202-225-4476","url":"http://esty.house.gov","rss_url":"http://esty.house.gov/rss.xml","contact_form":"http://esty.house.gov/contact","fax":"202-225-5933"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CT","party":"Democrat","district":5,"office":"405 Cannon House Office Building","address":"405 Cannon HOB; Washington DC 20515-0705","phone":"202-225-4476","url":"http://esty.house.gov","rss_url":"http://esty.house.gov/rss.xml","contact_form":"http://esty.house.gov/contact","fax":"202-225-5933"}]},{"id":{"govtrack":412525,"bioguide":"Y000065","thomas":"02115","cspan":63943,"votesmart":137622,"wikipedia":"Ted Yoho","fec":["H2FL06109"],"opensecrets":"N00033220","ballotpedia":"Ted Yoho","maplight":6332,"washington_post":"5b1d8114-4bbd-11e2-8758-b64a2997a921","icpsr":21317},"name":{"first":"Ted","last":"Yoho","middle":"S.","official_full":"Ted S. Yoho"},"bio":{"gender":"M","birthday":"1955-04-13"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":3,"office":"511 Cannon House Office Building","address":"511 Cannon HOB; Washington DC 20515-0903","phone":"202-225-5744","url":"http://yoho.house.gov","rss_url":"http://yoho.house.gov/rss.xml","contact_form":"https://yoho.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":3,"office":"511 Cannon House Office Building","address":"511 Cannon HOB; Washington DC 20515-0903","phone":"202-225-5744","url":"http://yoho.house.gov","rss_url":"http://yoho.house.gov/rss.xml","contact_form":"https://yoho.house.gov/contact/email-me"}]},{"id":{"govtrack":412526,"bioguide":"D000621","thomas":"02116","cspan":79744,"votesmart":137630,"wikipedia":"Ron DeSantis","fec":["H2FL00292"],"opensecrets":"N00034746","ballotpedia":"Ron DeSantis","maplight":7657,"washington_post":"9f576f4a-4bbb-11e2-8758-b64a2997a921","icpsr":21318},"name":{"first":"Ron","last":"DeSantis","official_full":"Ron DeSantis"},"bio":{"gender":"M","birthday":"1978-09-14"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Republican","district":6,"office":"427 Cannon House Office Building","address":"427 Cannon HOB; Washington DC 20515-0906","phone":"202-225-2706","url":"http://desantis.house.gov","rss_url":"http://desantis.house.gov/rss.xml","contact_form":"https://desantis.house.gov/contact/email-me","fax":"202-226-6299"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":6,"office":"308 Cannon House Office Building","address":"308 Cannon HOB; Washington DC 20515-0906","phone":"202-225-2706","url":"http://desantis.house.gov","rss_url":"http://desantis.house.gov/rss.xml","contact_form":"https://desantis.house.gov/contact/email-me","fax":"202-226-6299"}]},{"id":{"opensecrets":"N00033091","govtrack":412527,"bioguide":"M001191","thomas":"02117","cspan":95348,"votesmart":137652,"wikipedia":"Patrick Murphy (Florida politician)","fec":["H2FL22072"],"ballotpedia":"Patrick Murphy (Florida)","maplight":6349,"washington_post":"6b2c5c48-4bbc-11e2-8758-b64a2997a921","icpsr":21319},"name":{"first":"Patrick","last":"Murphy","official_full":"Patrick Murphy"},"bio":{"gender":"M","birthday":"1983-03-30"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":18,"office":"1517 Longworth House Office Building","address":"1517 Longworth HOB; Washington DC 20515-0918","phone":"202-225-3026","url":"http://patrickmurphy.house.gov","rss_url":"http://patrickmurphy.house.gov/news/rss.aspx","contact_form":"http://patrickmurphy.house.gov/contact/","fax":"202-225-8398"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":18,"office":"211 Cannon House Office Building","address":"211 Cannon HOB; Washington DC 20515-0918","phone":"202-225-3026","url":"http://patrickmurphy.house.gov","rss_url":"http://patrickmurphy.house.gov/news/rss.aspx","contact_form":"http://patrickmurphy.house.gov/contact/","fax":"202-225-8398"}]},{"id":{"govtrack":412529,"bioguide":"F000462","thomas":"02119","cspan":623714,"votesmart":8102,"wikipedia":"Lois Frankel","fec":["H2FL14053","H2FL22080"],"opensecrets":"N00002893","ballotpedia":"Lois Frankel","maplight":6339,"washington_post":"be839182-4bbb-11e2-8758-b64a2997a921","icpsr":21321,"house_history":15032387115},"name":{"first":"Lois","last":"Frankel","official_full":"Lois Frankel"},"bio":{"gender":"F","birthday":"1948-05-16"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"FL","party":"Democrat","district":22,"office":"1037 Longworth House Office Building","address":"1037 Longworth HOB; Washington DC 20515-0922","phone":"202-225-9890","url":"http://frankel.house.gov","rss_url":"http://frankel.house.gov/rss.xml","contact_form":"https://frankel.house.gov/contact/email-me","fax":"561-998-9048"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Democrat","district":22,"office":"1037 Longworth House Office Building","address":"1037 Longworth HOB; Washington DC 20515-0922","phone":"202-225-9890","url":"http://frankel.house.gov","rss_url":"http://frankel.house.gov/rss.xml","contact_form":"https://frankel.house.gov/contact/email-me","fax":"561-998-9048"}]},{"id":{"govtrack":412531,"bioguide":"C001093","thomas":"02121","cspan":79719,"votesmart":67851,"wikipedia":"Doug Collins (politician)","fec":["H2GA09150"],"opensecrets":"N00033518","ballotpedia":"Doug Collins","maplight":6354,"washington_post":"1d0e1ae2-4bb7-11e2-8758-b64a2997a921","icpsr":21323},"name":{"first":"Doug","last":"Collins","official_full":"Doug Collins"},"bio":{"gender":"M","birthday":"1966-08-16"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"GA","party":"Republican","district":9,"office":"513 Cannon House Office Building","address":"513 Cannon HOB; Washington DC 20515-1009","phone":"202-225-9893","url":"http://dougcollins.house.gov","rss_url":"http://dougcollins.house.gov/latest-rss/latest-rss/","contact_form":"https://dougcollins.house.gov/email-me","fax":"202-226-1224"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","party":"Republican","district":9,"office":"1504 Longworth House Office Building","address":"1504 Longworth HOB; Washington DC 20515-1009","phone":"202-225-9893","url":"http://dougcollins.house.gov","rss_url":"http://dougcollins.house.gov/latest-rss/latest-rss/","contact_form":"https://dougcollins.house.gov/email-me","fax":"202-226-1224"}]},{"id":{"govtrack":412532,"bioguide":"G000571","thomas":"02122","cspan":1025291,"opensecrets":"N00033281","votesmart":129306,"wikipedia":"Tulsi Gabbard","fec":["H2HI02508"],"ballotpedia":"Tulsi Gabbard","maplight":6367,"washington_post":"d9703ac2-4bbb-11e2-8758-b64a2997a921","icpsr":21324,"house_history":15032387167},"name":{"first":"Tulsi","last":"Gabbard","official_full":"Tulsi Gabbard"},"bio":{"gender":"F","birthday":"1981-04-12"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"HI","party":"Democrat","district":2,"office":"502 Cannon House Office Building","address":"502 Cannon HOB; Washington DC 20515-1102","phone":"202-225-4906","url":"http://gabbard.house.gov","rss_url":"http://gabbard.house.gov/rss.xml","contact_form":"https://forms.house.gov/formsgabbard/webforms/email-me.shtml","fax":"202-225-4987"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"HI","party":"Democrat","district":2,"office":"1609 Longworth House Office Building","address":"1609 Longworth HOB; Washington DC 20515-1102","phone":"202-225-4906","url":"http://gabbard.house.gov","rss_url":"http://gabbard.house.gov/rss.xml","contact_form":"https://forms.house.gov/formsgabbard/webforms/email-me.shtml","fax":"202-225-4987"}]},{"id":{"govtrack":412533,"bioguide":"D000622","thomas":"02123","cspan":94484,"opensecrets":"N00027860","votesmart":57442,"wikipedia":"Tammy Duckworth","fec":["H6IL06141"],"ballotpedia":"Tammy Duckworth","maplight":6847,"washington_post":"gIQAc3A69O","icpsr":21325,"house_history":15032387037},"name":{"first":"Tammy","last":"Duckworth","official_full":"Tammy Duckworth"},"bio":{"gender":"F","birthday":"1968-03-12"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":8,"office":"104 Cannon House Office Building","address":"104 Cannon HOB; Washington DC 20515-1308","phone":"202-225-3711","url":"http://duckworth.house.gov","rss_url":"http://duckworth.house.gov/rss.xml","contact_form":"https://duckworth.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":8,"office":"104 Cannon House Office Building","address":"104 Cannon HOB; Washington DC 20515-1308","phone":"202-225-3711","url":"http://duckworth.house.gov","rss_url":"http://duckworth.house.gov/rss.xml","contact_form":"https://duckworth.house.gov/contact/email-me"}]},{"id":{"govtrack":412536,"bioguide":"D000619","thomas":"02126","cspan":68337,"opensecrets":"N00034784","votesmart":9622,"wikipedia":"Rodney L. Davis","fec":["H2IL13120"],"ballotpedia":"Rodney Davis (Illinois)","maplight":10069,"washington_post":"96fa7cca-4bbb-11e2-8758-b64a2997a921","icpsr":21328},"name":{"first":"Rodney","last":"Davis","official_full":"Rodney Davis"},"bio":{"gender":"M","birthday":"1970-01-05"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Republican","district":13,"office":"1740 Longworth House Office Building","address":"1740 Longworth HOB; Washington DC 20515-1313","phone":"202-225-2371","url":"http://rodneydavis.house.gov","rss_url":"http://rodneydavis.house.gov/rss.xml","contact_form":"https://rodneydavisforms.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Republican","district":13,"office":"1740 Longworth House Office Building","address":"1740 Longworth HOB; Washington DC 20515-1313","phone":"202-225-2371","url":"http://rodneydavis.house.gov","rss_url":"http://rodneydavis.house.gov/rss.xml","contact_form":"https://rodneydavisforms.house.gov/contact/","fax":"217-791-6168"}]},{"id":{"govtrack":412537,"bioguide":"B001286","thomas":"02127","cspan":63949,"opensecrets":"N00033390","votesmart":134964,"wikipedia":"Cheri Bustos","fec":["H2IL17071"],"ballotpedia":"Cheri Bustos","maplight":6402,"washington_post":"e8b15fa2-4bb6-11e2-8758-b64a2997a921","icpsr":21329,"house_history":15032386872},"name":{"first":"Cheri","last":"Bustos","official_full":"Cheri Bustos"},"bio":{"gender":"F","birthday":"1961-10-17"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IL","party":"Democrat","district":17,"office":"1009 Longworth House Office Building","address":"1009 Longworth HOB; Washington DC 20515-1317","phone":"202-225-5905","url":"http://bustos.house.gov","rss_url":"http://bustos.house.gov/rss.xml","contact_form":"http://bustos.house.gov/contact","fax":"309-786-3720"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","party":"Democrat","district":17,"office":"1009 Longworth House Office Building","address":"1009 Longworth HOB; Washington DC 20515-1317","phone":"202-225-5905","url":"http://bustos.house.gov","rss_url":"http://bustos.house.gov/rss.xml","contact_form":"http://bustos.house.gov/contact","fax":"309-786-3720"}]},{"id":{"govtrack":412538,"bioguide":"W000813","thomas":"02128","cspan":95005,"fec":["H0IN02190"],"wikipedia":"Jackie Walorski","votesmart":34205,"opensecrets":"N00031226","ballotpedia":"Jackie Walorski","maplight":5688,"washington_post":"gIQApl2vMP","icpsr":21330,"house_history":15032387909},"name":{"first":"Jackie","last":"Walorski","official_full":"Jackie Walorski"},"bio":{"gender":"F","birthday":"1963-08-17"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Republican","district":2,"office":"419 Cannon House Office Building","address":"419 Cannon HOB; Washington DC 20515-1402","phone":"202-225-3915","url":"http://walorski.house.gov","rss_url":"http://walorski.house.gov/rss.xml","contact_form":"https://walorski.house.gov/contact/email-me","fax":"202-225-6798"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Republican","district":2,"office":"419 Cannon House Office Building","address":"419 Cannon HOB; Washington DC 20515-1402","phone":"202-225-3915","url":"http://walorski.house.gov","rss_url":"http://walorski.house.gov/rss.xml","contact_form":"https://walorski.house.gov/contact/email-me","fax":"202-225-6798"}]},{"id":{"govtrack":412539,"bioguide":"B001284","thomas":"02129","cspan":623720,"votesmart":135988,"wikipedia":"Susan Brooks","fec":["H2IN05082"],"opensecrets":"N00033495","ballotpedia":"Susan Brooks","maplight":6413,"washington_post":"4a86e324-4bbb-11e2-8758-b64a2997a921","icpsr":21331,"house_history":15032386870},"name":{"first":"Susan","last":"Brooks","middle":"W.","official_full":"Susan W. Brooks"},"bio":{"gender":"F","birthday":"1960-08-25"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Republican","district":5,"office":"1505 Longworth House Office Building","address":"1505 Longworth HOB; Washington DC 20515-1405","phone":"202-225-2276","url":"http://susanwbrooks.house.gov","rss_url":"http://susanwbrooks.house.gov/rss.xml","contact_form":"https://susanwbrooks.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Republican","district":5,"office":"1505 Longworth House Office Building","address":"1505 Longworth HOB; Washington DC 20515-1405","phone":"202-225-2276","url":"http://susanwbrooks.house.gov","rss_url":"http://susanwbrooks.house.gov/rss.xml","contact_form":"https://susanwbrooks.house.gov/contact/email-me","fax":"202-225-0016"}]},{"id":{"govtrack":412540,"bioguide":"M001189","thomas":"02130","cspan":11245,"votesmart":33997,"wikipedia":"Luke Messer","fec":["H0IN02125","H0IN05094"],"opensecrets":"N00012546","ballotpedia":"Luke Messer","maplight":5687,"washington_post":"458bd608-4bbc-11e2-8758-b64a2997a921","icpsr":21332},"name":{"first":"Luke","last":"Messer","official_full":"Luke Messer"},"bio":{"gender":"M","birthday":"1969-02-27"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"IN","party":"Republican","district":6,"office":"508 Cannon House Office Building","address":"508 Cannon HOB; Washington DC 20515-1406","phone":"202-225-3021","url":"http://messer.house.gov","rss_url":"http://messer.house.gov/rss.xml","contact_form":"https://messer.house.gov/contact/email-me","fax":"765-747-5586"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IN","party":"Republican","district":6,"office":"508 Cannon House Office Building","address":"508 Cannon HOB; Washington DC 20515-1406","phone":"202-225-3021","url":"http://messer.house.gov","rss_url":"http://messer.house.gov/rss.xml","contact_form":"https://messer.house.gov/contact/email-me","fax":"765-747-5586"}]},{"id":{"govtrack":412541,"bioguide":"B001282","thomas":"02131","cspan":61848,"votesmart":117290,"wikipedia":"Andy Barr (U.S. politician)","fec":["H0KY06104"],"opensecrets":"N00031233","ballotpedia":"Andy Barr","maplight":5735,"washington_post":"gIQAwh5WKP","icpsr":21333},"name":{"first":"Garland","last":"Barr","nickname":"Andy","official_full":"Andy Barr"},"bio":{"gender":"M","birthday":"1973-07-24"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"KY","party":"Republican","district":6,"office":"1432 Longworth House Office Building","address":"1432 Longworth HOB; Washington DC 20515-1706","phone":"202-225-4706","url":"http://barr.house.gov","rss_url":"http://barr.house.gov/rss.xml","contact_form":"https://barr.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"KY","party":"Republican","district":6,"office":"1432 Longworth House Office Building","address":"1432 Longworth HOB; Washington DC 20515-1706","phone":"202-225-4706","url":"http://barr.house.gov","rss_url":"http://barr.house.gov/rss.xml","contact_form":"https://barr.house.gov/contact/email-me"}]},{"id":{"bioguide":"W000817","thomas":"02182","lis":"S366","govtrack":412542,"cspan":1023023,"wikipedia":"Elizabeth Warren","votesmart":141272,"opensecrets":"N00033492","fec":["S2MA00170"],"ballotpedia":"Elizabeth Warren","maplight":7453,"washington_post":"gIQAZHDx9O","icpsr":41301,"house_history":15032390639},"name":{"first":"Elizabeth","last":"Warren","official_full":"Elizabeth Warren"},"bio":{"gender":"F","birthday":"1949-06-22"},"terms":[{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"MA","party":"Democrat","class":1,"url":"http://www.warren.senate.gov","address":"317 Hart Senate Office Building Washington DC 20510","office":"317 Hart Senate Office Building","phone":"202-224-4543","state_rank":"senior","contact_form":"http://www.warren.senate.gov/?p=email_senator#thisForm","rss_url":"http://www.warren.senate.gov/rss/?p=hot_topic"}]},{"id":{"govtrack":412543,"bioguide":"K000379","thomas":"02172","cspan":79948,"votesmart":141275,"wikipedia":"Joseph P. Kennedy III","fec":["H2MA04073"],"opensecrets":"N00034044","ballotpedia":"Joseph Kennedy III","maplight":7678,"washington_post":"e7a2a990-4bbb-11e2-8758-b64a2997a921","icpsr":21335},"name":{"first":"Joseph","last":"Kennedy","suffix":"III","middle":"P.","official_full":"Joseph P. Kennedy III"},"bio":{"gender":"M","birthday":"1980-10-04"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MA","party":"Democrat","district":4,"office":"1218 Longworth House Office Building","address":"1218 Longworth HOB; Washington DC 20515-2104","phone":"202-225-5931","url":"http://kennedy.house.gov","rss_url":"http://kennedy.house.gov/rss.xml","contact_form":"https://kennedy.house.gov/contact/email-me","fax":"202-225-0182"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","party":"Democrat","district":4,"office":"306 Cannon House Office Building","address":"306 Cannon HOB; Washington DC 20515-2104","phone":"202-225-5931","url":"http://kennedy.house.gov","rss_url":"http://kennedy.house.gov/rss.xml","contact_form":"https://kennedy.house.gov/contact/email-me","fax":"202-225-0182"}],"family":[{"name":"Joseph Patrick Kennedy II","relation":"son"},{"name":"Edward Moore Kennedy","relation":"great nephew"},{"name":"John Fitzgerald Kennedy","relation":"great nephew"},{"name":"John Francis Fitzgerald","relation":"great great grandson"},{"name":"Patrick Joseph Kennedy","relation":"first cousin once removed"}]},{"id":{"govtrack":412544,"bioguide":"D000620","thomas":"02133","cspan":68432,"votesmart":135143,"wikipedia":"John Delaney (Maryland politician)","fec":["H2MD06195"],"opensecrets":"N00033897","ballotpedia":"John Delaney","maplight":6461,"washington_post":"8e7e3d34-4bbb-11e2-8758-b64a2997a921","icpsr":21334},"name":{"first":"John","last":"Delaney","middle":"K.","official_full":"John K. Delaney"},"bio":{"gender":"M","birthday":"1963-04-16"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MD","party":"Democrat","district":6,"office":"1632 Longworth House Office Building","address":"1632 Longworth HOB; Washington DC 20515-2006","phone":"202-225-2721","url":"http://delaney.house.gov","rss_url":"http://delaney.house.gov/rss.xml","contact_form":"https://delaney.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MD","party":"Democrat","district":6,"office":"1632 Longworth House Office Building","address":"1632 Longworth HOB; Washington DC 20515-2006","phone":"202-225-2721","url":"http://delaney.house.gov","rss_url":"http://delaney.house.gov/rss.xml","contact_form":"https://delaney.house.gov/contact/email-me","fax":"202-225-2193"}]},{"id":{"bioguide":"K000383","thomas":"02185","lis":"S363","govtrack":412545,"cspan":37413,"wikipedia":"Angus King","opensecrets":"N00034580","votesmart":22381,"fec":["S2ME00109"],"ballotpedia":"Angus King","maplight":7796,"washington_post":"f79ee714-4bb6-11e2-8758-b64a2997a921","icpsr":41300},"name":{"first":"Angus","last":"King","official_full":"Angus S. King, Jr."},"bio":{"gender":"M","birthday":"1944-03-31"},"terms":[{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"ME","party":"Independent","caucus":"Democrat","class":1,"url":"http://www.king.senate.gov","address":"359 Dirksen Senate Office Building Washington DC 20510","office":"359 Dirksen Senate Office Building","phone":"202-224-5344","state_rank":"junior","contact_form":"http://www.king.senate.gov/contact","rss_url":"http://www.king.senate.gov/rss/feeds/?type=all","fax":"202-224-1946"}]},{"id":{"govtrack":412546,"bioguide":"K000380","thomas":"02134","cspan":623723,"votesmart":136102,"wikipedia":"Dan Kildee","fec":["H2MI05119"],"opensecrets":"N00033395","ballotpedia":"Dan Kildee","maplight":6466,"washington_post":"2ef59d70-4bb7-11e2-8758-b64a2997a921","icpsr":21372},"name":{"first":"Daniel","last":"Kildee","middle":"T.","official_full":"Daniel T. Kildee"},"bio":{"gender":"M","birthday":"1958-08-11"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MI","party":"Democrat","district":5,"office":"327 Cannon House Office Building","address":"327 Cannon HOB; Washington DC 20515-2205","phone":"202-225-3611","url":"http://dankildee.house.gov","rss_url":"http://dankildee.house.gov/rss.xml","contact_form":"https://dankildee.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","party":"Democrat","district":5,"office":"227 Cannon House Office Building","address":"227 Cannon HOB; Washington DC 20515-2205","phone":"202-225-3611","fax":"202-225-6393","url":"http://dankildee.house.gov","rss_url":"http://dankildee.house.gov/rss.xml","contact_form":"https://dankildee.house.gov/contact/email-me"}],"family":[{"name":"Dale Edward Kildee","relation":"nephew"}]},{"id":{"bioguide":"N000127","thomas":"00867","govtrack":408211,"icpsr":14263,"cspan":1001760,"votesmart":138505,"wikipedia":"Rick Nolan","house_history":18988,"fec":["H2MN08111"],"opensecrets":"N00021207","ballotpedia":"Rick Nolan","maplight":6482},"name":{"first":"Richard","middle":"M.","last":"Nolan","official_full":"Richard M. Nolan"},"bio":{"birthday":"1943-12-17","gender":"M"},"terms":[{"type":"rep","start":"1975-01-14","end":"1976-10-01","state":"MN","district":6,"party":"Democrat"},{"type":"rep","start":"1977-01-04","end":"1978-10-15","state":"MN","district":6,"party":"Democrat"},{"type":"rep","start":"1979-01-15","end":"1980-12-16","state":"MN","district":6,"party":"Democrat"},{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MN","party":"Democrat","district":8,"office":"2447 Rayburn House Office Building","address":"2447 Rayburn HOB; Washington DC 20515-2308","phone":"202-225-6211","url":"http://nolan.house.gov","rss_url":"http://nolan.house.gov/rss.xml","contact_form":"https://nolan.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MN","party":"Democrat","district":8,"office":"2366 Rayburn House Office Building","address":"2366 Rayburn HOB; Washington DC 20515-2308","phone":"202-225-6211","url":"http://nolan.house.gov","rss_url":"http://nolan.house.gov/rss.xml","contact_form":"https://nolan.house.gov/contact/email-me","fax":"202-225-0699"}]},{"id":{"govtrack":412548,"bioguide":"W000812","thomas":"02137","cspan":82702,"fec":["H2MO02102"],"wikipedia":"Ann Wagner","votesmart":136083,"opensecrets":"N00033106","ballotpedia":"Ann Wagner","maplight":6483,"washington_post":"4ffdd49c-4bb7-11e2-8758-b64a2997a921","icpsr":21337,"house_history":15032387908},"name":{"first":"Ann","last":"Wagner","official_full":"Ann Wagner"},"bio":{"gender":"F","birthday":"1962-09-13"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MO","party":"Republican","district":2,"office":"435 Cannon House Office Building","address":"435 Cannon HOB; Washington DC 20515-2502","phone":"202-225-1621","url":"http://wagner.house.gov","rss_url":"http://wagner.house.gov/rss.xml","contact_form":"https://wagner.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MO","party":"Republican","district":2,"office":"435 Cannon House Office Building","address":"435 Cannon HOB; Washington DC 20515-2502","phone":"202-225-1621","url":"http://wagner.house.gov","rss_url":"http://wagner.house.gov/rss.xml","contact_form":"https://wagner.house.gov/contact/email-me"}]},{"id":{"govtrack":412549,"bioguide":"D000618","thomas":"02138","cspan":1034037,"votesmart":135720,"wikipedia":"Steve Daines","fec":["H2MT01060","S2MT00096"],"opensecrets":"N00033054","ballotpedia":"Steve Daines","maplight":6498,"washington_post":"a8a98402-4bbb-11e2-8758-b64a2997a921","icpsr":21338,"lis":"S375"},"name":{"first":"Steve","last":"Daines","official_full":"Steve Daines"},"bio":{"gender":"M","birthday":"1962-08-20"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"MT","party":"Republican","district":0,"office":"206 Cannon House Office Building","address":"206 Cannon HOB; Washington DC 20515-2600","phone":"202-225-3211","url":"http://daines.house.gov","rss_url":"http://daines.house.gov/rss/press-releases.xml","contact_form":"https://daines.house.gov/email-me"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"MT","class":2,"state_rank":"junior","party":"Republican","url":"http://www.daines.senate.gov","address":"1 Russell Senate Courtyard Washington DC 20510","office":"1 Russell Senate Courtyard","phone":"202-224-2651","fax":"202-228-1236"}]},{"id":{"govtrack":412550,"bioguide":"H001067","thomas":"02140","cspan":79622,"votesmart":136448,"wikipedia":"Richard Hudson (U.S. politician)","fec":["H2NC08185"],"opensecrets":"N00033630","ballotpedia":"Richard Hudson","maplight":6507,"washington_post":"22ad1ec6-4bbc-11e2-8758-b64a2997a921","icpsr":21346},"name":{"first":"Richard","last":"Hudson","official_full":"Richard Hudson"},"bio":{"gender":"M","birthday":"1971-11-04"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Republican","district":8,"office":"429 Cannon House Office Building","address":"429 Cannon HOB; Washington DC 20515-3308","phone":"202-225-3715","url":"http://hudson.house.gov","rss_url":"http://hudson.house.gov/rss.xml","contact_form":"https://hudson.house.gov/email-me","fax":"704-782-1004"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Republican","district":8,"office":"429 Cannon House Office Building","address":"429 Cannon HOB; Washington DC 20515-3308","phone":"202-225-3715","url":"http://hudson.house.gov","rss_url":"http://hudson.house.gov/rss.xml","contact_form":"https://hudson.house.gov/email-me","fax":"704-782-1004"}]},{"id":{"govtrack":412551,"bioguide":"P000606","thomas":"02141","cspan":9265861,"votesmart":41272,"wikipedia":"Robert Pittenger","fec":["H2NC09134"],"opensecrets":"N00034416","ballotpedia":"Robert Pittenger","maplight":6515,"washington_post":"99d73b26-4bbc-11e2-8758-b64a2997a921","icpsr":21347},"name":{"first":"Robert","last":"Pittenger","official_full":"Robert Pittenger"},"bio":{"gender":"M","birthday":"1948-08-15"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Republican","district":9,"office":"224 Cannon House Office Building","address":"224 Cannon HOB; Washington DC 20515-3309","phone":"202-225-1976","url":"http://pittenger.house.gov","rss_url":"http://pittenger.house.gov/rss.xml","contact_form":"https://pittenger.house.gov/contact/email-me","fax":"202-225-3389"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Republican","district":9,"office":"224 Cannon House Office Building","address":"224 Cannon HOB; Washington DC 20515-3309","phone":"202-225-1976","url":"http://pittenger.house.gov","rss_url":"http://pittenger.house.gov/rss.xml","contact_form":"https://pittenger.house.gov/contact/email-me","fax":"202-225-3389"}]},{"id":{"govtrack":412552,"bioguide":"M001187","thomas":"02142","cspan":79621,"votesmart":136459,"wikipedia":"Mark Meadows (North Carolina politician)","fec":["H2NC11080"],"opensecrets":"N00033631","ballotpedia":"Mark Meadows, North Carolina","maplight":6520,"washington_post":"4e4cac9a-4bbc-11e2-8758-b64a2997a921","icpsr":21348},"name":{"first":"Mark","last":"Meadows","official_full":"Mark Meadows"},"bio":{"gender":"M","birthday":"1959-07-28"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Republican","district":11,"office":"1516 Longworth House Office Building","address":"1516 Longworth HOB; Washington DC 20515-3311","phone":"202-225-6401","url":"http://meadows.house.gov","rss_url":"http://meadows.house.gov/rss/press-releases.xml","contact_form":"https://meadows.house.gov/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Republican","district":11,"office":"1024 Longworth House Office Building","address":"1024 Longworth HOB; Washington DC 20515-3311","phone":"202-225-6401","url":"http://meadows.house.gov","rss_url":"http://meadows.house.gov/rss/press-releases.xml","contact_form":"https://meadows.house.gov/email-me","fax":"202-226-6422"}]},{"id":{"govtrack":412553,"bioguide":"H001065","thomas":"02143","cspan":623728,"votesmart":136462,"wikipedia":"George Holding","fec":["H2NC13110"],"opensecrets":"N00033399","ballotpedia":"George E.B. Holding","maplight":6524,"washington_post":"f31bb79e-4bbb-11e2-8758-b64a2997a921","icpsr":21349},"name":{"first":"George","last":"Holding","official_full":"George Holding"},"bio":{"gender":"M","birthday":"1968-04-17"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NC","party":"Republican","district":13,"office":"507 Cannon House Office Building","address":"507 Cannon HOB; Washington DC 20515-3313","phone":"202-225-3032","url":"http://holding.house.gov","rss_url":"http://holding.house.gov/rss.xml","contact_form":"https://holding.house.gov/contact/email-me","fax":"919-782-4490"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","party":"Republican","district":13,"office":"507 Cannon House Office Building","address":"507 Cannon HOB; Washington DC 20515-3313","phone":"202-225-3032","url":"http://holding.house.gov","rss_url":"http://holding.house.gov/rss.xml","contact_form":"https://holding.house.gov/contact/email-me","fax":"919-782-4490"}]},{"id":{"bioguide":"H001069","thomas":"02174","lis":"S360","govtrack":412554,"cspan":95414,"wikipedia":"Heidi Heitkamp","votesmart":41716,"opensecrets":"N00033782","fec":["S2ND00099"],"ballotpedia":"Heidi Heitkamp","maplight":7477,"washington_post":"135fbac8-4bbc-11e2-8758-b64a2997a921","icpsr":41303,"house_history":15032390641},"name":{"first":"Heidi","last":"Heitkamp","official_full":"Heidi Heitkamp"},"bio":{"gender":"F","birthday":"1955-10-30"},"terms":[{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"ND","party":"Democrat","class":1,"url":"http://www.heitkamp.senate.gov","address":"502 Hart Senate Office Building Washington DC 20510","office":"502 Hart Senate Office Building","phone":"202-224-2043","state_rank":"junior","contact_form":"http://www.heitkamp.senate.gov/public/index.cfm/email-heidi","rss_url":"http://www.heitkamp.senate.gov/public/index.cfm/rss/feed","fax":"202-224-7776"}]},{"id":{"govtrack":412555,"bioguide":"C001096","thomas":"02144","cspan":7600,"votesmart":444,"wikipedia":"Kevin Cramer","fec":["H0ND01026","H6ND00074"],"opensecrets":"N00004614","ballotpedia":"Kevin Cramer","maplight":5879,"washington_post":"6a855e58-4bbb-11e2-8758-b64a2997a921","icpsr":21350},"name":{"first":"Kevin","last":"Cramer","official_full":"Kevin Cramer"},"bio":{"gender":"M","birthday":"1961-01-21"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"ND","party":"Republican","district":0,"office":"1032 Longworth House Office Building","address":"1032 Longworth HOB; Washington DC 20515-3400","phone":"202-225-2611","url":"http://cramer.house.gov","rss_url":"http://cramer.house.gov/rss.xml","contact_form":"https://cramer.house.gov/contact/email-me","fax":"202-226-0893"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"ND","party":"Republican","district":0,"office":"1032 Longworth House Office Building","address":"1032 Longworth HOB; Washington DC 20515-3400","phone":"202-225-2611","url":"http://cramer.house.gov","rss_url":"http://cramer.house.gov/rss.xml","contact_form":"https://cramer.house.gov/contact/email-me","fax":"202-226-0893"}]},{"id":{"bioguide":"F000463","thomas":"02179","lis":"S357","govtrack":412556,"cspan":1034067,"wikipedia":"Deb Fischer","votesmart":41963,"opensecrets":"N00033443","fec":["S2NE00094"],"ballotpedia":"Deb Fischer","maplight":7479,"washington_post":"15a67e5c-4bb7-11e2-8758-b64a2997a921","icpsr":41302,"house_history":15032390640},"name":{"first":"Deb","last":"Fischer","official_full":"Deb Fischer"},"bio":{"gender":"F","birthday":"1951-03-01"},"terms":[{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"NE","party":"Republican","class":1,"url":"http://www.fischer.senate.gov","address":"383 Russell Senate Office Building Washington DC 20510","office":"383 Russell Senate Office Building","phone":"202-224-6551","state_rank":"senior","contact_form":"http://www.fischer.senate.gov/public/?p=email-deb","rss_url":"http://www.fischer.senate.gov/public/index.cfm/rss/feed","fax":"202-228-1325"}]},{"id":{"govtrack":412557,"bioguide":"K000382","thomas":"02145","cspan":62650,"opensecrets":"N00030875","votesmart":122256,"wikipedia":"Ann McLane Kuster","fec":["H0NH02181"],"ballotpedia":"Annie Kuster","maplight":5889,"washington_post":"2487b9f4-4bb7-11e2-8758-b64a2997a921","icpsr":21340,"house_history":15032387341},"name":{"first":"Ann","last":"Kuster","middle":"M.","official_full":"Ann M. Kuster"},"bio":{"gender":"F","birthday":"1956-09-05"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NH","party":"Democrat","district":2,"office":"137 Cannon House Office Building","address":"137 Cannon HOB; Washington DC 20515-2902","phone":"202-225-5206","url":"http://kuster.house.gov","rss_url":"http://kuster.house.gov/rss.xml","contact_form":"https://kuster.house.gov/contact/email-me","fax":"202-225-2946"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NH","party":"Democrat","district":2,"office":"137 Cannon House Office Building","address":"137 Cannon HOB; Washington DC 20515-2902","phone":"202-225-5206","url":"http://kuster.house.gov","rss_url":"http://kuster.house.gov/rss.xml","contact_form":"https://kuster.house.gov/contact/email-me","fax":"202-225-2946"}]},{"id":{"govtrack":412558,"bioguide":"L000580","thomas":"02146","cspan":94791,"fec":["H8NM01257"],"votesmart":102404,"wikipedia":"Michelle Lujan Grisham","opensecrets":"N00029400","ballotpedia":"Michelle Lujan Grisham","maplight":7098,"washington_post":"5c69cf42-4bbc-11e2-8758-b64a2997a921","icpsr":21341,"house_history":15032387385},"name":{"first":"Michelle","last":"Lujan Grisham","official_full":"Michelle Lujan Grisham"},"bio":{"gender":"F","birthday":"1959-10-24"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NM","party":"Democrat","district":1,"office":"214 Cannon House Office Building","address":"214 Cannon HOB; Washington DC 20515-3101","phone":"202-225-6316","url":"http://lujangrisham.house.gov","rss_url":"http://lujangrisham.house.gov/rss.xml","contact_form":"http://lujangrisham.house.gov/contact/email-me/","fax":"202-225-4975"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NM","party":"Democrat","district":1,"office":"214 Cannon House Office Building","address":"214 Cannon HOB; Washington DC 20515-3101","phone":"202-225-6316","url":"http://lujangrisham.house.gov","rss_url":"http://lujangrisham.house.gov/rss.xml","contact_form":"http://lujangrisham.house.gov/contact/email-me/","fax":"202-225-4975"}]},{"id":{"govtrack":412560,"bioguide":"M001188","thomas":"02148","cspan":68411,"votesmart":69157,"wikipedia":"Grace Meng","fec":["H2NY06116"],"opensecrets":"N00034547","ballotpedia":"Grace Meng","maplight":7696,"washington_post":"caf57010-4bbc-11e2-8758-b64a2997a921","icpsr":21342,"house_history":15032387500},"name":{"first":"Grace","last":"Meng","official_full":"Grace Meng"},"bio":{"gender":"F","birthday":"1975-10-01"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":6,"office":"1317 Longworth House Office Building","address":"1317 Longworth HOB; Washington DC 20515-3206","phone":"202-225-2601","url":"http://meng.house.gov","rss_url":"http://meng.house.gov/rss.xml","contact_form":"https://meng.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":6,"office":"1317 Longworth House Office Building","address":"1317 Longworth HOB; Washington DC 20515-3206","phone":"202-225-2601","url":"http://meng.house.gov","rss_url":"http://meng.house.gov/rss.xml","contact_form":"https://meng.house.gov/contact/email-me","fax":"202-225-1589"}]},{"id":{"govtrack":412561,"bioguide":"J000294","thomas":"02149","cspan":79612,"fec":["H2NY10092"],"wikipedia":"Hakeem Jeffries","votesmart":55285,"opensecrets":"N00033640","ballotpedia":"Hakeem Jeffries","maplight":6573,"washington_post":"08cb2674-4bbc-11e2-8758-b64a2997a921","icpsr":21343},"name":{"first":"Hakeem","last":"Jeffries","middle":"S.","official_full":"Hakeem S. Jeffries"},"bio":{"gender":"M","birthday":"1970-08-04"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":8,"office":"1339 Longworth House Office Building","address":"1339 Longworth HOB; Washington DC 20515-3208","phone":"202-225-5936","url":"http://jeffries.house.gov","rss_url":"http://jeffries.house.gov/rss.xml","contact_form":"https://jeffriesforms.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":8,"office":"1607 Longworth House Office Building","address":"1607 Longworth HOB; Washington DC 20515-3208","phone":"202-225-5936","url":"http://jeffries.house.gov","rss_url":"http://jeffries.house.gov/rss.xml","contact_form":"https://jeffriesforms.house.gov/contact/"}]},{"id":{"govtrack":412562,"bioguide":"M001185","thomas":"02150","cspan":79760,"opensecrets":"N00034277","votesmart":139760,"wikipedia":"Sean Patrick Maloney","fec":["H2NY22139"],"ballotpedia":"Sean Maloney","maplight":8727,"washington_post":"7935c716-4bbc-11e2-8758-b64a2997a921","icpsr":21344},"name":{"first":"Sean","last":"Maloney","middle":"Patrick","official_full":"Sean Patrick Maloney"},"bio":{"gender":"M","birthday":"1966-07-30"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Democrat","district":18,"office":"1529 Longworth House Office Building","address":"1529 Longworth HOB; Washington DC 20515-3218","phone":"202-225-5441","url":"http://seanmaloney.house.gov","rss_url":"http://seanmaloney.house.gov/rss.xml","contact_form":"https://seanmaloney.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Democrat","district":18,"office":"1529 Longworth House Office Building","address":"1529 Longworth HOB; Washington DC 20515-3218","phone":"202-225-5441","url":"http://seanmaloney.house.gov","rss_url":"http://seanmaloney.house.gov/rss.xml","contact_form":"https://seanmaloney.house.gov/contact/email-me","fax":"202-225-3289"}]},{"id":{"govtrack":412563,"bioguide":"C001092","thomas":"02151","cspan":94144,"fec":["H8NY29032"],"votesmart":139770,"wikipedia":"Chris Collins (American politician)","opensecrets":"N00001285","ballotpedia":"Chris Collins","maplight":9150,"washington_post":"f06054ec-4bb6-11e2-8758-b64a2997a921","icpsr":21345},"name":{"first":"Chris","last":"Collins","official_full":"Chris Collins"},"bio":{"gender":"M","birthday":"1950-05-20"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"NY","party":"Republican","district":27,"office":"1117 Longworth House Office Building","address":"1117 Longworth HOB; Washington DC 20515-3227","phone":"202-225-5265","url":"http://chriscollins.house.gov","rss_url":"http://chriscollins.house.gov/rss.xml","contact_form":"https://chriscollins.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","party":"Republican","district":27,"office":"1117 Longworth House Office Building","address":"1117 Longworth HOB; Washington DC 20515-3227","phone":"202-225-5265","url":"http://chriscollins.house.gov","rss_url":"http://chriscollins.house.gov/rss.xml","contact_form":"https://chriscollins.house.gov/contact/email-me","fax":"202-225-5910"}]},{"id":{"govtrack":412564,"bioguide":"W000815","thomas":"02152","cspan":1034044,"fec":["H2OH02085"],"wikipedia":"Brad Wenstrup","votesmart":135326,"opensecrets":"N00033310","ballotpedia":"Brad Wenstrup","maplight":6584,"washington_post":"738c1fea-4bb7-11e2-8758-b64a2997a921","icpsr":21351},"name":{"first":"Brad","last":"Wenstrup","middle":"R.","official_full":"Brad R. Wenstrup"},"bio":{"gender":"M","birthday":"1958-06-17"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":2,"office":"1223 Longworth House Office Building","address":"1223 Longworth HOB; Washington DC 20515-3502","phone":"202-225-3164","url":"http://wenstrup.house.gov","contact_form":"http://wenstrup.house.gov/contact/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":2,"office":"1318 Longworth House Office Building","address":"1318 Longworth HOB; Washington DC 20515-3502","phone":"202-225-3164","url":"http://wenstrup.house.gov","contact_form":"http://wenstrup.house.gov/contact/","fax":"202-225-1992"}]},{"id":{"govtrack":412565,"bioguide":"B001281","thomas":"02153","cspan":67294,"votesmart":2427,"wikipedia":"Joyce Beatty","fec":["H2OH03125"],"opensecrets":"N00033904","ballotpedia":"Joyce Beatty","maplight":6587,"washington_post":"2548b43e-4bbb-11e2-8758-b64a2997a921","icpsr":21352,"house_history":15032386867},"name":{"first":"Joyce","last":"Beatty","official_full":"Joyce Beatty"},"bio":{"gender":"F","birthday":"1950-03-12"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Democrat","district":3,"office":"417 Cannon House Office Building","address":"417 Cannon HOB; Washington DC 20515-3503","phone":"202-225-4324","url":"http://beatty.house.gov","rss_url":"http://beatty.house.gov/rss.xml","contact_form":"https://beattyforms.house.gov/forms/writeyourrep/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Democrat","district":3,"office":"133 Cannon House Office Building","address":"133 Cannon HOB; Washington DC 20515-3503","phone":"202-225-4324","url":"http://beatty.house.gov","rss_url":"http://beatty.house.gov/rss.xml","contact_form":"https://beattyforms.house.gov/forms/writeyourrep/","fax":"202-225-1984"}]},{"id":{"govtrack":412566,"bioguide":"J000295","thomas":"02154","cspan":68561,"votesmart":143052,"wikipedia":"David Joyce (politician)","fec":["H2OH14064"],"opensecrets":"N00035007","ballotpedia":"David Joyce","maplight":10287,"washington_post":"6d3ab89a-4bb7-11e2-8758-b64a2997a921","icpsr":21353},"name":{"first":"David","last":"Joyce","middle":"P.","official_full":"David P. Joyce"},"bio":{"gender":"M","birthday":"1957-03-17"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OH","party":"Republican","district":14,"office":"1535 Longworth House Office Building","address":"1535 Longworth HOB; Washington DC 20515-3514","phone":"202-225-5731","url":"http://joyce.house.gov","rss_url":"http://joyce.house.gov/rss/press-releases.xml","contact_form":"https://joyce.house.gov/email-me","fax":"202-225-3307"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OH","party":"Republican","district":14,"office":"1124 Longworth House Office Building","address":"1124 Longworth HOB; Washington DC 20515-3514","phone":"202-225-5731","url":"http://joyce.house.gov","rss_url":"http://joyce.house.gov/rss/press-releases.xml","contact_form":"https://joyce.house.gov/email-me","fax":"202-225-3307"}]},{"id":{"govtrack":412567,"bioguide":"B001283","thomas":"02155","cspan":79705,"votesmart":135894,"wikipedia":"Jim Bridenstine","fec":["H2OK01143"],"opensecrets":"N00033532","ballotpedia":"Jim Bridenstine","maplight":6606,"washington_post":"1ba9a374-4bbc-11e2-8758-b64a2997a921","icpsr":21354},"name":{"first":"Jim","last":"Bridenstine","official_full":"Jim Bridenstine"},"bio":{"gender":"M","birthday":"1975-06-15"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OK","party":"Republican","district":1,"office":"216 Cannon House Office Building","address":"216 Cannon HOB; Washington DC 20515-3601","phone":"202-225-2211","url":"http://bridenstine.house.gov","rss_url":"http://bridenstine.house.gov/rss.xml","contact_form":"https://bridenstineforms.house.gov/forms/writeyourrep/","fax":"918-935-2716"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OK","party":"Republican","district":1,"office":"216 Cannon House Office Building","address":"216 Cannon HOB; Washington DC 20515-3601","phone":"202-225-2211","url":"http://bridenstine.house.gov","rss_url":"http://bridenstine.house.gov/rss.xml","contact_form":"https://bridenstineforms.house.gov/forms/writeyourrep/","fax":"918-935-2716"}]},{"id":{"govtrack":412568,"bioguide":"M001190","thomas":"02156","cspan":1034045,"votesmart":135898,"wikipedia":"Markwayne Mullin","fec":["H2OK02083"],"opensecrets":"N00033410","ballotpedia":"Markwayne Mullin","maplight":6607,"washington_post":"55872562-4bbc-11e2-8758-b64a2997a921","icpsr":21355},"name":{"first":"Markwayne","last":"Mullin","official_full":"Markwayne Mullin"},"bio":{"gender":"M","birthday":"1977-07-26"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"OK","party":"Republican","district":2,"office":"1113 Longworth House Office Building","address":"1113 Longworth HOB; Washington DC 20515-3602","phone":"202-225-2701","url":"http://mullin.house.gov","rss_url":"http://mullin.house.gov/rss.xml","contact_form":"https://mullin.house.gov/contact/email-me","fax":"202-225-3038"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OK","party":"Republican","district":2,"office":"1113 Longworth House Office Building","address":"1113 Longworth HOB; Washington DC 20515-3602","phone":"202-225-2701","url":"http://mullin.house.gov","rss_url":"http://mullin.house.gov/rss.xml","contact_form":"https://mullin.house.gov/contact/email-me","fax":"202-225-3038"}]},{"id":{"govtrack":412569,"bioguide":"P000605","thomas":"02157","cspan":79873,"votesmart":59980,"wikipedia":"Scott Perry (politician)","fec":["H2PA04135"],"opensecrets":"N00034120","ballotpedia":"Scott Perry","maplight":7710,"washington_post":"a05aac8a-4bbc-11e2-8758-b64a2997a921","icpsr":21356},"name":{"first":"Scott","last":"Perry","official_full":"Scott Perry"},"bio":{"gender":"M","birthday":"1962-05-27"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":4,"office":"126 Cannon House Office Building","address":"126 Cannon HOB; Washington DC 20515-3804","phone":"202-225-5836","url":"http://perry.house.gov","rss_url":"http://perry.house.gov/rss.xml","contact_form":"http://perryforms.house.gov/forms/writeyourrep/","fax":"202-226-1000"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":4,"office":"1207 Longworth House Office Building","address":"1207 Longworth HOB; Washington DC 20515-3804","phone":"202-225-5836","url":"http://perry.house.gov","rss_url":"http://perry.house.gov/rss.xml","contact_form":"http://perryforms.house.gov/forms/writeyourrep/","fax":"202-226-1000"}]},{"id":{"govtrack":412570,"bioguide":"R000598","thomas":"02158","cspan":61949,"votesmart":119466,"wikipedia":"Keith Rothfus","fec":["H0PA04220"],"opensecrets":"N00031253","ballotpedia":"Keith Rothfus","maplight":5998,"washington_post":"f31f081c-4bbc-11e2-8758-b64a2997a921","icpsr":21357},"name":{"first":"Keith","last":"Rothfus","middle":"J.","official_full":"Keith J. Rothfus"},"bio":{"gender":"M","birthday":"1962-04-25"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Republican","district":12,"office":"503 Cannon House Office Building","address":"503 Cannon HOB; Washington DC 20515-3812","phone":"202-225-2065","url":"http://rothfus.house.gov","rss_url":"http://rothfus.house.gov/rss.xml","contact_form":"https://rothfus.house.gov/email-keith"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Republican","district":12,"office":"1205 Longworth House Office Building","address":"1205 Longworth HOB; Washington DC 20515-3812","phone":"202-225-2065","url":"http://rothfus.house.gov","rss_url":"http://rothfus.house.gov/rss.xml","contact_form":"https://rothfus.house.gov/email-keith","fax":"202-225-5709"}]},{"id":{"govtrack":412571,"bioguide":"C001090","thomas":"02159","cspan":79865,"fec":["H2PA17079"],"wikipedia":"Matt Cartwright","votesmart":136236,"opensecrets":"N00034128","ballotpedia":"Matt Cartwright","maplight":7722,"washington_post":"3a43408e-4bbb-11e2-8758-b64a2997a921","icpsr":21358},"name":{"first":"Matthew","last":"Cartwright","middle":"A.","official_full":"Matt Cartwright"},"bio":{"gender":"M","birthday":"1961-05-01"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"PA","party":"Democrat","district":17,"office":"1419 Longworth House Office Building","address":"1419 Longworth HOB; Washington DC 20515-3817","phone":"202-225-5546","url":"http://cartwright.house.gov","rss_url":"http://cartwright.house.gov/rss.xml","contact_form":"https://cartwrightforms.house.gov/forms/writeyourrep/","fax":"570-341-1055"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","party":"Democrat","district":17,"office":"1419 Longworth House Office Building","address":"1419 Longworth HOB; Washington DC 20515-3817","phone":"202-225-5546","url":"http://cartwright.house.gov","rss_url":"http://cartwright.house.gov/rss.xml","contact_form":"https://cartwrightforms.house.gov/forms/writeyourrep/","fax":"570-341-1055"}]},{"id":{"govtrack":412572,"bioguide":"R000597","thomas":"02160","cspan":79473,"opensecrets":"N00033832","votesmart":132382,"wikipedia":"Tom Rice","fec":["H2SC07066"],"ballotpedia":"Tom Rice (South Carolina)","maplight":6638,"washington_post":"33a9ef8c-4bbd-11e2-8758-b64a2997a921","icpsr":21359},"name":{"first":"Tom","last":"Rice","official_full":"Tom Rice"},"bio":{"gender":"M","birthday":"1957-08-04"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"SC","party":"Republican","district":7,"office":"325 Cannon House Office Building","address":"325 Cannon HOB; Washington DC 20515-4007","phone":"202-225-9895","url":"http://rice.house.gov","rss_url":"http://rice.house.gov/rss.xml","contact_form":"https://tomriceforms.house.gov/forms/writeyourrep/","fax":"202-225-9690"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"SC","party":"Republican","district":7,"office":"223 Cannon House Office Building","address":"223 Cannon HOB; Washington DC 20515-4007","phone":"202-225-9895","url":"http://rice.house.gov","rss_url":"http://rice.house.gov/rss.xml","contact_form":"https://tomriceforms.house.gov/forms/writeyourrep/"}]},{"id":{"bioguide":"C001098","thomas":"02175","lis":"S355","govtrack":412573,"cspan":1019953,"wikipedia":"Ted Cruz","votesmart":135705,"opensecrets":"N00033085","fec":["S2TX00312"],"ballotpedia":"Ted Cruz","maplight":7510,"washington_post":"b8d4a00a-4bbb-11e2-8758-b64a2997a921","icpsr":41304},"name":{"first":"Ted","last":"Cruz","official_full":"Ted Cruz"},"bio":{"gender":"M","birthday":"1970-12-22"},"terms":[{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"TX","party":"Republican","class":1,"url":"http://www.cruz.senate.gov","address":"185 Dirksen Senate Office Building Washington DC 20510","office":"185 Dirksen Senate Office Building","phone":"202-224-5922","state_rank":"junior","contact_form":"http://www.cruz.senate.gov/?p=email_senator","fax":"202-228-3398"}]},{"id":{"govtrack":412574,"bioguide":"W000814","thomas":"02161","cspan":79698,"fec":["H2TX14149"],"wikipedia":"Randy Weber","votesmart":102026,"opensecrets":"N00033539","ballotpedia":"Randy Weber","maplight":6665,"washington_post":"407de97a-4bbd-11e2-8758-b64a2997a921","icpsr":21360},"name":{"first":"Randy","last":"Weber","middle":"K.","official_full":"Randy K. Weber Sr."},"bio":{"gender":"M","birthday":"1953-07-02"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":14,"office":"510 Cannon House Office Building","address":"510 Cannon HOB; Washington DC 20515-4314","phone":"202-225-2831","url":"http://weber.house.gov","rss_url":"http://weber.house.gov/rss.xml","contact_form":"https://weber.house.gov/contact/email-me","fax":"202-225-0271"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":14,"office":"510 Cannon House Office Building","address":"510 Cannon HOB; Washington DC 20515-4314","phone":"202-225-2831","url":"http://weber.house.gov","rss_url":"http://weber.house.gov/rss.xml","contact_form":"https://weber.house.gov/contact/email-me","fax":"202-225-0271"}]},{"id":{"govtrack":412575,"bioguide":"O000170","thomas":"02162","cspan":79697,"votesmart":78533,"wikipedia":"Beto O'Rourke","fec":["H2TX16185"],"opensecrets":"N00033540","ballotpedia":"Beto O'Rourke","maplight":6668,"washington_post":"4308607c-4bb7-11e2-8758-b64a2997a921","icpsr":21361},"name":{"first":"Beto","last":"O'Rourke","official_full":"Beto O'Rourke"},"bio":{"gender":"M","birthday":"1972-09-26"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":16,"office":"1721 Longworth House Office Building","address":"1721 Longworth HOB; Washington DC 20515-4316","phone":"202-225-4831","url":"http://orourke.house.gov","rss_url":"http://orourke.house.gov/rss.xml","contact_form":"https://orourkeforms.house.gov/forms/writeyourrep/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":16,"office":"1330 Longworth House Office Building","address":"1330 Longworth HOB; Washington DC 20515-4316","phone":"202-225-4831","url":"http://orourke.house.gov","rss_url":"http://orourke.house.gov/rss.xml","contact_form":"https://orourkeforms.house.gov/forms/writeyourrep/"}]},{"id":{"govtrack":412576,"bioguide":"C001091","thomas":"02163","cspan":63974,"fec":["H2TX35011"],"wikipedia":"JoaquÃn Castro","votesmart":49227,"opensecrets":"N00033316","ballotpedia":"Joaquin Castro","maplight":6698,"washington_post":"625d409c-4bbb-11e2-8758-b64a2997a921","icpsr":21362},"name":{"first":"Joaquin","last":"Castro","official_full":"Joaquin Castro"},"bio":{"gender":"M","birthday":"1974-09-16"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":20,"office":"212 Cannon House Office Building","address":"212 Cannon HOB; Washington DC 20515-4320","phone":"202-225-3236","url":"http://castro.house.gov","rss_url":"http://castro.house.gov/rss.xml","contact_form":"https://castro.house.gov/contact/email-me","fax":"202-225-1915"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":20,"office":"212 Cannon House Office Building","address":"212 Cannon HOB; Washington DC 20515-4320","phone":"202-225-3236","url":"http://castro.house.gov","rss_url":"http://castro.house.gov/rss.xml","contact_form":"https://castro.house.gov/contact/email-me","fax":"202-225-1915"}]},{"id":{"govtrack":412578,"bioguide":"W000816","thomas":"02165","cspan":623742,"fec":["H2TX33040","S2TX00270"],"votesmart":50112,"wikipedia":"Roger Williams (U.S. politician)","opensecrets":"N00030602","ballotpedia":"Roger Williams","maplight":6692,"washington_post":"46eb6828-4bbd-11e2-8758-b64a2997a921","icpsr":21364},"name":{"first":"Roger","last":"Williams","official_full":"Roger Williams"},"bio":{"gender":"M","birthday":"1949-09-13"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Republican","district":25,"office":"1122 Longworth House Office Building","address":"1122 Longworth HOB; Washington DC 20515-4325","phone":"202-225-9896","url":"http://williams.house.gov","rss_url":"http://williams.house.gov/rss.xml","contact_form":"https://williams.house.gov/contact/email-me","fax":"512-473-8946"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Republican","district":25,"office":"1323 Longworth House Office Building","address":"1323 Longworth HOB; Washington DC 20515-4325","phone":"202-225-9896","url":"http://williams.house.gov","rss_url":"http://williams.house.gov/rss.xml","contact_form":"https://williams.house.gov/contact/email-me","fax":"512-473-8946"}]},{"id":{"govtrack":412579,"bioguide":"V000131","thomas":"02166","cspan":79466,"fec":["H2TX33073"],"votesmart":49671,"wikipedia":"Marc Veasey","opensecrets":"N00033839","ballotpedia":"Mark Veasey","maplight":6693,"washington_post":"01e1bbba-4bbd-11e2-8758-b64a2997a921","icpsr":21365},"name":{"first":"Marc","last":"Veasey","middle":"A.","official_full":"Marc A. Veasey"},"bio":{"gender":"M","birthday":"1971-01-03"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":33,"office":"414 Cannon House Office Building","address":"414 Cannon HOB; Washington DC 20515-4333","phone":"202-225-9897","url":"http://veasey.house.gov","rss_url":"http://veasey.house.gov/rss.xml","contact_form":"https://veaseyforms.house.gov/forms/writeyourrep/"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":33,"office":"414 Cannon House Office Building","address":"414 Cannon HOB; Washington DC 20515-4333","phone":"202-225-9897","url":"http://veasey.house.gov","rss_url":"http://veasey.house.gov/rss.xml","contact_form":"https://veaseyforms.house.gov/forms/writeyourrep/","fax":"202-225-9702"}]},{"id":{"govtrack":412580,"bioguide":"V000132","thomas":"02167","cspan":95434,"fec":["H2TX27190"],"votesmart":137719,"wikipedia":"Filemon Vela, Jr.","opensecrets":"N00034349","ballotpedia":"Filemon Vela","maplight":7745,"washington_post":"9636abe4-5505-11e2-bf3e-76c0a789346f","icpsr":21366},"name":{"first":"Filemon","last":"Vela","official_full":"Filemon Vela"},"bio":{"gender":"M","birthday":"1963-02-13"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"TX","party":"Democrat","district":34,"office":"437 Cannon House Office Building","address":"437 Cannon HOB; Washington DC 20515-4334","phone":"202-225-9901","url":"http://vela.house.gov","rss_url":"http://vela.house.gov/rss.xml","contact_form":"https://forms.house.gov/vela/webforms/email-me.shtml","fax":"202-225-9770"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","party":"Democrat","district":34,"office":"437 Cannon House Office Building","address":"437 Cannon HOB; Washington DC 20515-4334","phone":"202-225-9901","url":"http://vela.house.gov","rss_url":"http://vela.house.gov/rss.xml","contact_form":"https://forms.house.gov/vela/webforms/email-me.shtml","fax":"202-225-9770"}]},{"id":{"govtrack":412581,"bioguide":"S001192","thomas":"02168","cspan":68466,"votesmart":135930,"wikipedia":"Chris Stewart (politician)","fec":["H2UT02324"],"opensecrets":"N00033932","ballotpedia":"Chris Stewart","maplight":6713,"washington_post":"57b0efa8-4bb7-11e2-8758-b64a2997a921","icpsr":21367},"name":{"first":"Chris","last":"Stewart","official_full":"Chris Stewart"},"bio":{"gender":"M","birthday":"1960-07-15"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"UT","party":"Republican","district":2,"office":"323 Cannon House Office Building","address":"323 Cannon HOB; Washington DC 20515-4402","phone":"202-225-9730","url":"http://stewart.house.gov","rss_url":"http://stewart.house.gov/rss.xml","contact_form":"https://stewart.house.gov/contact/email-me","fax":"801-364-5551"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"UT","party":"Republican","district":2,"office":"323 Cannon House Office Building","address":"323 Cannon HOB; Washington DC 20515-4402","phone":"202-225-9730","url":"http://stewart.house.gov","rss_url":"http://stewart.house.gov/rss.xml","contact_form":"https://stewart.house.gov/contact/email-me","fax":"801-364-5551"}]},{"id":{"bioguide":"K000384","thomas":"02176","lis":"S362","govtrack":412582,"cspan":49219,"wikipedia":"Tim Kaine","votesmart":50772,"opensecrets":"N00033177","fec":["S2VA00142"],"ballotpedia":"Tim Kaine","maplight":7518,"washington_post":"gIQAem3o9O","icpsr":41305},"name":{"first":"Timothy","last":"Kaine","official_full":"Tim Kaine"},"bio":{"gender":"M","birthday":"1958-02-26"},"terms":[{"type":"sen","start":"2013-01-03","end":"2019-01-03","state":"VA","party":"Democrat","class":1,"url":"http://www.kaine.senate.gov","address":"388 Russell Senate Office Building Washington DC 20510","office":"388 Russell Senate Office Building","phone":"202-224-4024","state_rank":"junior","contact_form":"http://www.kaine.senate.gov/contact","rss_url":"http://www.kaine.senate.gov/rss/feeds/?type=all","fax":"202-228-6363"}]},{"id":{"govtrack":412583,"bioguide":"K000381","thomas":"02169","cspan":68310,"votesmart":51516,"wikipedia":"Derek Kilmer","fec":["H2WA06129"],"opensecrets":"N00034453","ballotpedia":"Derek Kilmer","maplight":7771,"washington_post":"3518ebbc-4bb7-11e2-8758-b64a2997a921","icpsr":21368},"name":{"first":"Derek","last":"Kilmer","official_full":"Derek Kilmer"},"bio":{"gender":"M","birthday":"1974-01-01"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Democrat","district":6,"office":"1429 Longworth House Office Building","address":"1429 Longworth HOB; Washington DC 20515-4706","phone":"202-225-5916","url":"http://kilmer.house.gov","rss_url":"http://kilmer.house.gov/rss.xml","contact_form":"https://kilmer.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Democrat","district":6,"office":"1520 Longworth House Office Building","address":"1520 Longworth HOB; Washington DC 20515-4706","phone":"202-225-5916","url":"http://kilmer.house.gov","rss_url":"http://kilmer.house.gov/rss.xml","contact_form":"https://kilmer.house.gov/contact/email-me"}]},{"id":{"govtrack":412584,"bioguide":"H001064","thomas":"02170","cspan":9269006,"opensecrets":"N00031557","votesmart":126058,"wikipedia":"Dennis Heck","fec":["H0WA03161"],"ballotpedia":"Denny Heck","maplight":6158,"washington_post":"07bb54a2-4bb7-11e2-8758-b64a2997a921","icpsr":21369},"name":{"first":"Denny","last":"Heck","official_full":"Denny Heck"},"bio":{"gender":"M","birthday":"1952-07-29"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WA","party":"Democrat","district":10,"office":"425 Cannon House Office Building","address":"425 Cannon HOB; Washington DC 20515-4710","phone":"202-225-9740","url":"http://dennyheck.house.gov","rss_url":"http://dennyheck.house.gov/rss.xml","contact_form":"https://dennyheck.house.gov/contact/email-me","fax":"202-225-0129"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","party":"Democrat","district":10,"office":"425 Cannon House Office Building","address":"425 Cannon HOB; Washington DC 20515-4710","phone":"202-225-9740","url":"http://dennyheck.house.gov","rss_url":"http://dennyheck.house.gov/rss.xml","contact_form":"https://dennyheck.house.gov/contact/email-me","fax":"202-225-0129"}]},{"id":{"govtrack":412585,"bioguide":"P000607","thomas":"02171","cspan":79688,"votesmart":26238,"wikipedia":"Mark Pocan","fec":["H2WI02124"],"opensecrets":"N00033549","ballotpedia":"Mark Pocan","maplight":6735,"washington_post":"933d8a40-4bbc-11e2-8758-b64a2997a921","icpsr":21370},"name":{"first":"Mark","last":"Pocan","official_full":"Mark Pocan"},"bio":{"gender":"M","birthday":"1964-08-14"},"terms":[{"type":"rep","start":"2013-01-03","end":"2015-01-03","state":"WI","party":"Democrat","district":2,"office":"313 Cannon House Office Building","address":"313 Cannon HOB; Washington DC 20515-4902","phone":"202-225-2906","url":"http://pocan.house.gov","rss_url":"http://pocan.house.gov/rss.xml","contact_form":"https://pocan.house.gov/contact/email-me","fax":"202-225-6942"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WI","party":"Democrat","district":2,"office":"313 Cannon House Office Building","address":"313 Cannon HOB; Washington DC 20515-4902","phone":"202-225-2906","url":"http://pocan.house.gov","rss_url":"http://pocan.house.gov/rss.xml","contact_form":"https://pocan.house.gov/contact/email-me","fax":"202-225-6942"}]},{"id":{"bioguide":"K000385","thomas":"02190","govtrack":412595,"votesmart":33384,"wikipedia":"Robin Kelly","fec":["H2IL02172"],"opensecrets":"N00035215","ballotpedia":"Robin Kelly","cspan":70399,"washington_post":"0e9272ea-b743-11e2-b94c-b684dda07add","icpsr":21371,"house_history":15032393262},"name":{"first":"Robin","last":"Kelly","official_full":"Robin L. Kelly"},"bio":{"gender":"F","birthday":"1956-04-30"},"terms":[{"type":"rep","start":"2013-04-09","end":"2015-01-03","state":"IL","district":2,"party":"Democrat","address":"2419 Rayburn HOB; Washington DC 20515-1302","office":"2419 Rayburn House Office Building","phone":"202-225-0773","url":"http://robinkelly.house.gov","contact_form":"https://robinkelly.house.gov/contact/email-me","rss_url":"http://robinkelly.house.gov/rss.xml","fax":"202-225-4583"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","district":2,"party":"Democrat","address":"1239 Longworth HOB; Washington DC 20515-1302","office":"1239 Longworth House Office Building","phone":"202-225-0773","url":"http://robinkelly.house.gov","contact_form":"https://robinkelly.house.gov/contact/email-me","rss_url":"http://robinkelly.house.gov/rss.xml","fax":"202-225-4583"}]},{"id":{"bioguide":"S000051","thomas":"01012","govtrack":400607,"opensecrets":"N00002424","wikipedia":"Mark Sanford","votesmart":21991,"ballotpedia":"Mark Sanford","cspan":6513,"maplight":6793,"fec":["H4SC01073"],"washington_post":"gIQAd8Ty9O","icpsr":29565,"house_history":21195},"name":{"first":"Marshall","last":"Sanford","nickname":"Mark","official_full":"Mark Sanford"},"bio":{"birthday":"1960-05-28","gender":"M"},"terms":[{"type":"rep","start":"1995-01-04","end":"1996-10-04","state":"SC","district":1,"party":"Republican"},{"type":"rep","start":"1997-01-07","end":"1998-12-19","state":"SC","district":1,"party":"Republican"},{"type":"rep","start":"1999-01-06","end":"2000-12-15","state":"SC","district":1,"party":"Republican"},{"type":"rep","start":"2013-05-15","end":"2015-01-03","state":"SC","district":1,"party":"Republican","address":"322 Cannon HOB; Washington DC 20515-4001","office":"322 Cannon House Office Building","phone":"202-225-3176","url":"http://sanford.house.gov","contact_form":"https://sanford.house.gov/contact/email-me","rss_url":"http://sanford.house.gov/rss.xml","fax":"843-521-2535"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"SC","district":1,"party":"Republican","address":"2201 Rayburn HOB; Washington DC 20515-4001","office":"2201 Rayburn House Office Building","phone":"202-225-3176","url":"http://sanford.house.gov","contact_form":"https://sanford.house.gov/contact/email-me","rss_url":"http://sanford.house.gov/rss.xml","fax":"843-521-2535"}]},{"id":{"bioguide":"S001195","thomas":"02191","govtrack":412596,"wikipedia":"Jason T. Smith","votesmart":59318,"maplight":35979,"opensecrets":"N00035282","fec":["H4MO08162"],"ballotpedia":"Jason Smith (Missouri representative)","cspan":71083,"icpsr":21373},"name":{"first":"Jason","middle":"T.","last":"Smith","official_full":"Jason Smith"},"bio":{"birthday":"1980-06-16","gender":"M"},"terms":[{"type":"rep","start":"2013-06-04","end":"2015-01-03","state":"MO","district":8,"party":"Republican","office":"2230 Rayburn House Office Building","phone":"202-225-4404","url":"http://jasonsmith.house.gov","contact_form":"https://jasonsmith.house.gov/contact/email-me","address":"2230 Rayburn HOB; Washington DC 20515-2508","rss_url":"http://jasonsmith.house.gov/rss.xml","fax":"202-226-0326"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MO","district":8,"party":"Republican","office":"1118 Longworth House Office Building","phone":"202-225-4404","url":"http://jasonsmith.house.gov","contact_form":"https://jasonsmith.house.gov/contact/email-me","address":"1118 Longworth HOB; Washington DC 20515-2508","rss_url":"http://jasonsmith.house.gov/rss.xml","fax":"202-226-0326"}]},{"id":{"bioguide":"B001288","lis":"S370","thomas":"02194","govtrack":412598,"opensecrets":"N00035267","votesmart":76151,"wikipedia":"Cory Booker","ballotpedia":"Cory Booker","fec":["S4NJ00185"],"cspan":84679},"name":{"first":"Cory","middle":"Anthony","last":"Booker","official_full":"Cory A. Booker"},"bio":{"birthday":"1969-04-27","gender":"M"},"terms":[{"type":"sen","start":"2013-10-31","end":"2015-01-03","state":"NJ","class":2,"party":"Democrat","state_rank":"junior","url":"http://www.booker.senate.gov","phone":"202-224-3224","address":"141 Hart Senate Office Building Washington DC 20510","office":"141 Hart Senate Office Building","contact_form":"http://www.booker.senate.gov/?p=contact"},{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"NJ","class":2,"party":"Democrat","state_rank":"junior","url":"http://www.booker.senate.gov","phone":"202-224-3224","address":"141 Hart Senate Office Building Washington DC 20510","office":"141 Hart Senate Office Building","contact_form":"http://www.booker.senate.gov/?p=contact","fax":"202-224-8378"}]},{"id":{"bioguide":"C001101","thomas":"02196","govtrack":412600,"opensecrets":"N00035278","votesmart":35858,"wikipedia":"Katherine Clark","ballotpedia":"Katherine Clark","fec":["H4MA05084"],"cspan":73178,"house_history":15032398493},"name":{"first":"Katherine","middle":"M.","last":"Clark","official_full":"Katherine M. Clark"},"bio":{"birthday":"1963-07-17","gender":"F"},"terms":[{"type":"rep","start":"2013-12-12","end":"2015-01-03","state":"MA","party":"Democrat","district":5,"url":"http://katherineclark.house.gov","address":"2108 Rayburn HOB; Washington DC 20515-2105","office":"2108 Rayburn House Office Building","phone":"202-225-2836","contact_form":"https://katherineclark.house.gov/index.cfm/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","party":"Democrat","district":5,"url":"http://katherineclark.house.gov","address":"1721 Longworth HOB; Washington DC 20515-2105","office":"1721 Longworth House Office Building","phone":"202-225-2836","contact_form":"https://katherineclark.house.gov/index.cfm/email-me","fax":"202-226-0092"}]},{"id":{"bioguide":"B001289","thomas":"02197","govtrack":412601,"opensecrets":"N00035380","votesmart":27584,"wikipedia":"Bradley Byrne","ballotpedia":"Bradley Byrne","fec":["H4AL01123"],"cspan":73486},"name":{"first":"Bradley","last":"Byrne","official_full":"Bradley Byrne"},"bio":{"birthday":"1955-02-16","gender":"M"},"terms":[{"type":"rep","start":"2014-01-08","end":"2015-01-03","state":"AL","district":1,"party":"Republican","address":"2236 Rayburn HOB; Washington DC 20515-0101","office":"2236 Rayburn House Office Building","phone":"202-225-4931","url":"http://byrne.house.gov","contact_form":"https://byrne.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AL","district":1,"party":"Republican","address":"119 Cannon HOB; Washington DC 20515-0101","office":"119 Cannon House Office Building","phone":"202-225-4931","url":"http://byrne.house.gov","contact_form":"https://byrne.house.gov/contact/email-me","fax":"202-225-0562"}]},{"id":{"bioguide":"J000296","thomas":"02199","govtrack":412603,"opensecrets":"N00035717","votesmart":146146,"cspan":73783,"wikipedia":"David Jolly","ballotpedia":"David Jolly","fec":["H4FL13101"]},"name":{"first":"David","middle":"W.","last":"Jolly","official_full":"David W. Jolly"},"bio":{"birthday":"1972-10-31","gender":"M"},"terms":[{"type":"rep","start":"2014-03-11","end":"2015-01-03","state":"FL","district":13,"party":"Republican","address":"2407 Rayburn HOB; Washington DC 20515-0913","office":"2407 Rayburn House Office Building","phone":"202-225-5961","url":"http://jolly.house.gov","contact_form":"https://jolly.house.gov/contact/email-me"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","district":13,"party":"Republican","address":"1728 Longworth HOB; Washington DC 20515-0913","office":"1728 Longworth House Office Building","phone":"202-225-5961","url":"http://jolly.house.gov","contact_form":"https://jolly.house.gov/contact/email-me","fax":"202-225-9764"}]},{"id":{"bioguide":"C001102","thomas":"02200","govtrack":412604,"opensecrets":"N00035854","cspan":75516,"votesmart":148899,"fec":["H4FL19074"]},"name":{"first":"Curtis","nickname":"Curt","last":"Clawson","official_full":"Curt Clawson"},"bio":{"gender":"M","birthday":"1959-09-28"},"terms":[{"type":"rep","start":"2014-06-24","end":"2015-01-03","state":"FL","party":"Republican","district":19,"address":"1123 Longworth HOB; Washington DC 20515-0919","office":"1123 Longworth House Office Building","phone":"202-225-2536"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","party":"Republican","district":19,"address":"228 Cannon HOB; Washington DC 20515-0919","office":"228 Cannon House Office Building","phone":"202-225-2536","url":"http://clawson.house.gov"}]},{"id":{"bioguide":"B001290","thomas":"02203","fec":["H4VA07143"],"govtrack":412605,"opensecrets":"N00036013","cspan":75248,"wikipedia":"Dave Brat","ballotpedia":"David Brat","house_history":15032409257},"name":{"first":"David","middle":"Alan","nickname":"Dave","last":"Brat","official_full":"Dave Brat"},"bio":{"gender":"M","birthday":"1964-07-27"},"terms":[{"type":"rep","start":"2014-11-12","end":"2015-01-03","state":"VA","district":7,"party":"Republican","url":"http://brat.house.gov/","contact_form":"http://brat.house.gov/contact","address":"303 Cannon HOB; Washington DC 20515-4607","office":"303 Cannon House Office Building","phone":"202-225-2815","fax":"202-225-0011"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","district":7,"party":"Republican","url":"http://brat.house.gov","contact_form":"http://brat.house.gov/contact","address":"330 Cannon HOB; Washington DC 20515-4607","office":"330 Cannon House Office Building","phone":"202-225-2815"}]},{"id":{"bioguide":"N000188","thomas":"02202","fec":["H4NJ01084"],"govtrack":412606,"opensecrets":"N00036154","cspan":76311,"wikipedia":"Donald Norcross","ballotpedia":"Donald Norcross","house_history":15032409258},"name":{"first":"Donald","middle":"W.","last":"Norcross","official_full":"Donald Norcross"},"bio":{"gender":"M","birthday":"1958-12-13"},"terms":[{"type":"rep","start":"2014-11-12","end":"2015-01-03","state":"NJ","district":1,"party":"Democrat","url":"http://norcross.house.gov/","contact_form":"http://norcross.house.gov/contact","address":"2265 Rayburn HOB; Washington DC 20515-3001","office":"2265 Rayburn House Office Building","phone":"202-225-6501"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","district":1,"party":"Democrat","url":"http://norcross.house.gov","contact_form":"http://norcross.house.gov/contact","address":"1531 Longworth HOB; Washington DC 20515-3001","office":"1531 Longworth House Office Building","phone":"202-225-6501","fax":"202-225-6583"}]},{"id":{"bioguide":"A000370","thomas":"02201","fec":["H4NC12100"],"govtrack":412607,"opensecrets":"N00035451","cspan":76386,"wikipedia":"Alma Adams","ballotpedia":"Alma Adams","house_history":15032409256},"name":{"first":"Alma","last":"Adams","official_full":"Alma S. Adams"},"bio":{"gender":"F","birthday":"1946-05-27"},"terms":[{"type":"rep","start":"2014-11-12","end":"2015-01-03","state":"NC","district":12,"party":"Democrat","url":"http://adams.house.gov/","contact_form":"http://adams.house.gov/contact","address":"2304 Rayburn HOB; Washington DC 20515-3312","office":"2304 Rayburn House Office Building","phone":"202-225-1510"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","district":12,"party":"Democrat","url":"http://adams.house.gov","contact_form":"http://adams.house.gov/contact","address":"222 Cannon HOB; Washington DC 20515-3312","office":"222 Cannon House Office Building","phone":"202-225-1510","fax":"202-225-1512"}]},{"id":{"bioguide":"D000613","thomas":"02013","govtrack":412420,"opensecrets":"N00031103","votesmart":116548,"fec":["H0IL10302"],"wikipedia":"Robert Dold","house_history":12599,"icpsr":21127},"name":{"first":"Bob","last":"Dold","official_full":"Robert J. Dold"},"bio":{"birthday":"1969-06-23","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"IL","district":10,"party":"Republican","url":"http://dold.house.gov/","address":"212 Cannon HOB; Washington DC 20515-1310","phone":"202-225-4835","fax":"202-225-0837","office":"212 Cannon House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","district":10,"party":"Republican","address":"221 Cannon HOB; Washington DC 20515-1310","office":"221 Cannon House Office Building","phone":"202-225-4835","url":"https://dold.house.gov"}]},{"id":{"bioguide":"G000570","thomas":"02038","govtrack":412447,"opensecrets":"N00030801","votesmart":42946,"fec":["H0NH01217"],"wikipedia":"Frank Guinta","house_history":14291,"icpsr":21152},"name":{"first":"Frank","last":"Guinta","official_full":"Frank C. Guinta"},"bio":{"birthday":"1970-09-26","gender":"M"},"terms":[{"type":"rep","start":"2011-01-05","end":"2013-01-03","state":"NH","district":1,"party":"Republican","url":"http://guinta.house.gov/","address":"1223 Longworth HOB; Washington DC 20515-2901","phone":"202-225-5456","fax":"202-225-5822","office":"1223 Longworth House Office Building"},{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NH","district":1,"party":"Republican","address":"326 Cannon HOB; Washington DC 20515-2901","office":"326 Cannon House Office Building","phone":"202-225-5456","url":"https://guinta.house.gov","fax":"202-225-5822"}]},{"id":{"bioguide":"P000609","fec":["H4AL06098"],"govtrack":412608,"opensecrets":"N00035691","thomas":"02221"},"name":{"first":"Gary","last":"Palmer","official_full":"Gary J. Palmer"},"bio":{"gender":"M","birthday":"1954-05-14"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AL","district":6,"party":"Republican","address":"206 Cannon HOB; Washington DC 20515-0106","office":"206 Cannon House Office Building","phone":"202-225-4921","url":"https://palmer.house.gov","fax":"202-225-2082"}]},{"id":{"bioguide":"H001072","fec":["H4AR02141"],"govtrack":412609,"opensecrets":"N00035792","thomas":"02223"},"name":{"first":"French","last":"Hill","official_full":"J. French Hill"},"bio":{"gender":"M","birthday":"1956-12-05"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AR","district":2,"party":"Republican","address":"1229 Longworth HOB; Washington DC 20515-0402","office":"1229 Longworth House Office Building","phone":"202-225-2506","url":"https://hill.house.gov","fax":"202-225-5903"}]},{"id":{"bioguide":"W000821","fec":["H4AR04048"],"govtrack":412610,"opensecrets":"N00035527","thomas":"02224"},"name":{"first":"Bruce","last":"Westerman","official_full":"Bruce Westerman"},"bio":{"gender":"M","birthday":"1967-11-18"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AR","district":4,"party":"Republican","address":"130 Cannon HOB; Washington DC 20515-0404","office":"130 Cannon House Office Building","phone":"202-225-3772","url":"https://westerman.house.gov"}]},{"id":{"bioguide":"M001197","fec":["H2AZ08102"],"govtrack":412611,"opensecrets":"N00033982","thomas":"02225","house_history":15032414876},"name":{"first":"Martha","last":"McSally","official_full":"Martha McSally"},"bio":{"gender":"F","birthday":"1966-03-22"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","district":2,"party":"Republican","address":"1029 Longworth HOB; Washington DC 20515-0302","office":"1029 Longworth House Office Building","phone":"202-225-2542","url":"https://mcsally.house.gov","fax":"202-225-0378"}]},{"id":{"bioguide":"G000574","fec":["H4AZ07043"],"govtrack":412612,"opensecrets":"N00036097","thomas":"02226"},"name":{"first":"Ruben","last":"Gallego","official_full":"Ruben Gallego"},"bio":{"gender":"M","birthday":"1979-11-20"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AZ","district":7,"party":"Democrat","address":"1218 Longworth HOB; Washington DC 20515-0307","office":"1218 Longworth House Office Building","phone":"202-225-4065","url":"https://rubengallego.house.gov"}]},{"id":{"bioguide":"D000623","fec":["H0CA10073"],"govtrack":412613,"opensecrets":"N00030709","thomas":"02227"},"name":{"first":"Mark","last":"DeSaulnier","official_full":"Mark DeSaulnier"},"bio":{"gender":"M","birthday":"1952-03-31"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","district":11,"party":"Democrat","address":"327 Cannon HOB; Washington DC 20515-0511","office":"327 Cannon House Office Building","phone":"202-225-2095","url":"https://desaulnier.house.gov","fax":"202-225-5609"}]},{"id":{"bioguide":"K000387","fec":["H4CA25123"],"govtrack":412614,"opensecrets":"N00035820","thomas":"02228"},"name":{"first":"Steve","last":"Knight","official_full":"Stephen Knight"},"bio":{"gender":"M","birthday":"1966-12-17"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","district":25,"party":"Republican","address":"1023 Longworth HOB; Washington DC 20515-0525","office":"1023 Longworth House Office Building","phone":"202-225-1956","url":"https://knight.house.gov","fax":"202-226-0683"}]},{"id":{"bioguide":"A000371","fec":["H2CA31125"],"govtrack":412615,"opensecrets":"N00033997","thomas":"02229"},"name":{"first":"Pete","last":"Aguilar","official_full":"Pete Aguilar"},"bio":{"gender":"M","birthday":"1979-06-19"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","district":31,"party":"Democrat","address":"1223 Longworth HOB; Washington DC 20515-0531","office":"1223 Longworth House Office Building","phone":"202-225-3201","url":"https://aguilar.house.gov","fax":"202-226-6962"}]},{"id":{"bioguide":"L000582","fec":["H4CA33119"],"govtrack":412616,"opensecrets":"N00035825","thomas":"02230"},"name":{"first":"Ted","last":"Lieu","official_full":"Ted Lieu"},"bio":{"gender":"M","birthday":"1969-03-29"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","district":33,"party":"Democrat","address":"415 Cannon HOB; Washington DC 20515-0533","office":"415 Cannon House Office Building","phone":"202-225-3976","url":"https://lieu.house.gov","fax":"202-225-4099"}]},{"id":{"bioguide":"T000474","fec":["H4CA35031"],"govtrack":412617,"opensecrets":"N00036107","thomas":"02231","house_history":15032410409},"name":{"first":"Norma","last":"Torres","official_full":"Norma J. Torres"},"bio":{"gender":"F","birthday":"1965-04-04"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","district":35,"party":"Democrat","address":"516 Cannon HOB; Washington DC 20515-0535","office":"516 Cannon House Office Building","phone":"202-225-6161","url":"https://torres.house.gov","fax":"202-225-8671"}]},{"id":{"bioguide":"W000820","fec":["H4CA45097"],"govtrack":412618,"opensecrets":"N00035391","thomas":"02232","house_history":15032409970},"name":{"first":"Mimi","last":"Walters","official_full":"Mimi Walters"},"bio":{"gender":"F","birthday":"1962-05-14"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CA","district":45,"party":"Republican","address":"236 Cannon HOB; Washington DC 20515-0545","office":"236 Cannon House Office Building","phone":"202-225-5611","url":"https://walters.house.gov","fax":"202-225-9177"}]},{"id":{"bioguide":"B001297","fec":["S0CO00237","H4CO04090"],"govtrack":412619,"opensecrets":"N00030829","thomas":"02233"},"name":{"first":"Ken","last":"Buck","official_full":"Ken Buck"},"bio":{"gender":"M","birthday":"1959-02-16"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"CO","district":4,"party":"Republican","address":"416 Cannon HOB; Washington DC 20515-0604","office":"416 Cannon House Office Building","phone":"202-225-4676","url":"https://buck.house.gov","fax":"202-225-5870"}]},{"id":{"bioguide":"G000575","fec":["H4FL02062"],"govtrack":412620,"opensecrets":"N00035688","thomas":"02234","house_history":15032409716},"name":{"first":"Gwen","last":"Graham","official_full":"Gwen Graham"},"bio":{"gender":"F","birthday":"1963-01-31"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","district":2,"party":"Democrat","address":"1213 Longworth HOB; Washington DC 20515-0902","office":"1213 Longworth House Office Building","phone":"202-225-5235","url":"https://graham.house.gov","fax":"202-225-5615"}]},{"id":{"bioguide":"C001107","fec":["H4FL26038"],"govtrack":412621,"opensecrets":"N00035403","thomas":"02235"},"name":{"first":"Carlos","last":"Curbelo","official_full":"Carlos Curbelo"},"bio":{"gender":"M","birthday":"1980-03-01"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"FL","district":26,"party":"Republican","address":"1429 Longworth HOB; Washington DC 20515-0926","office":"1429 Longworth House Office Building","phone":"202-225-2778","url":"https://curbelo.house.gov"}]},{"id":{"bioguide":"C001103","fec":["H4GA01039"],"govtrack":412622,"opensecrets":"N00035346","thomas":"02236"},"name":{"first":"Buddy","last":"Carter","official_full":"Earl L. \"Buddy\" Carter"},"bio":{"gender":"M","birthday":"1957-09-06"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","district":1,"party":"Republican","address":"432 Cannon HOB; Washington DC 20515-1001","office":"432 Cannon House Office Building","phone":"202-225-5831","url":"https://buddycarter.house.gov","fax":"202-226-2269"}]},{"id":{"bioguide":"H001071","fec":["H0GA07125"],"govtrack":412623,"opensecrets":"N00032243","thomas":"02237"},"name":{"first":"Jody","last":"Hice","official_full":"Jody B. Hice"},"bio":{"gender":"M","birthday":"1960-04-22"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","district":10,"party":"Republican","address":"1516 Longworth HOB; Washington DC 20515-1010","office":"1516 Longworth House Office Building","phone":"202-225-4101","url":"https://hice.house.gov","fax":"202-226-0776"}]},{"id":{"bioguide":"L000583","fec":["H4GA11061"],"govtrack":412624,"opensecrets":"N00035347","thomas":"02238"},"name":{"first":"Barry","last":"Loudermilk","official_full":"Barry Loudermilk"},"bio":{"gender":"M","birthday":"1963-12-22"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","district":11,"party":"Republican","address":"238 Cannon HOB; Washington DC 20515-1011","office":"238 Cannon House Office Building","phone":"202-225-2931","url":"https://loudermilk.house.gov","fax":"202-225-2944"}]},{"id":{"bioguide":"A000372","fec":["H2GA12121"],"govtrack":412625,"opensecrets":"N00033720","thomas":"02239"},"name":{"first":"Rick","last":"Allen","official_full":"Rick W. Allen"},"bio":{"gender":"M","birthday":"1951-11-07"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"GA","district":12,"party":"Republican","address":"513 Cannon HOB; Washington DC 20515-1012","office":"513 Cannon House Office Building","phone":"202-225-2823","url":"https://allen.house.gov","fax":"202-225-3377"}]},{"id":{"bioguide":"T000473","fec":["H4HI01134"],"govtrack":412626,"opensecrets":"N00035535","thomas":"02240"},"name":{"first":"Mark","last":"Takai","official_full":"Mark Takai"},"bio":{"gender":"M","birthday":"1967-07-01"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"HI","district":1,"party":"Democrat","address":"422 Cannon HOB; Washington DC 20515-1101","office":"422 Cannon House Office Building","phone":"202-225-2726","url":"https://takai.house.gov","fax":"202-225-0688"}]},{"id":{"bioguide":"B001294","fec":["H2IA01055"],"govtrack":412627,"opensecrets":"N00033744","thomas":"02241"},"name":{"first":"Rod","last":"Blum","official_full":"Rod Blum"},"bio":{"gender":"M","birthday":"1955-04-26"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IA","district":1,"party":"Republican","address":"213 Cannon HOB; Washington DC 20515-1501","office":"213 Cannon House Office Building","phone":"202-225-2911","url":"https://blum.house.gov"}]},{"id":{"bioguide":"Y000066","fec":["S4IA00103","H4IA03115"],"govtrack":412628,"opensecrets":"N00035509","thomas":"02242"},"name":{"first":"David","last":"Young","official_full":"David Young"},"bio":{"gender":"M","birthday":"1968-05-11"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IA","district":3,"party":"Republican","address":"515 Cannon HOB; Washington DC 20515-1503","office":"515 Cannon House Office Building","phone":"202-225-5476","url":"https://davidyoung.house.gov"}]},{"id":{"bioguide":"B001295","fec":["H4IL12060"],"govtrack":412629,"opensecrets":"N00035420","thomas":"02243"},"name":{"first":"Mike","last":"Bost","official_full":"Mike Bost"},"bio":{"gender":"M","birthday":"1960-12-30"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"IL","district":12,"party":"Republican","address":"1440 Longworth HOB; Washington DC 20515-1312","office":"1440 Longworth House Office Building","phone":"202-225-5661","url":"https://bost.house.gov","fax":"202-225-0285"}]},{"id":{"bioguide":"A000374","fec":["H4LA05221"],"govtrack":412630,"thomas":"02244","opensecrets":"N00036633"},"name":{"first":"Ralph","last":"Abraham","official_full":"Ralph Lee Abraham"},"bio":{"gender":"M","birthday":"1954-09-16"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"LA","district":5,"party":"Republican","address":"417 Cannon HOB; Washington DC 20515-1805","office":"417 Cannon House Office Building","phone":"202-225-8490","url":"https://abraham.house.gov","fax":"202-225-5639"}]},{"id":{"bioguide":"G000577","fec":["H4LA06153"],"govtrack":412631,"thomas":"02245","opensecrets":"N00036135"},"name":{"first":"Garret","last":"Graves","official_full":"Garret Graves"},"bio":{"gender":"M","birthday":"1972-01-31"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"LA","district":6,"party":"Republican","address":"204 Longworth HOB; Washington DC 20515-1806","office":"204 Longworth House Office Building","phone":"202-225-3901","url":"https://garretgraves.house.gov","fax":"202-225-7313"}]},{"id":{"bioguide":"M001196","fec":["H4MA06090"],"govtrack":412632,"opensecrets":"N00035431","thomas":"02246"},"name":{"first":"Seth","last":"Moulton","official_full":"Seth Moulton"},"bio":{"gender":"M","birthday":"1978-10-24"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MA","district":6,"party":"Democrat","address":"1408 Longworth HOB; Washington DC 20515-2106","office":"1408 Longworth House Office Building","phone":"202-225-8020","url":"https://moulton.house.gov","fax":"202-225-5915"}]},{"id":{"bioguide":"P000611","fec":["S2ME00158","H4ME02234"],"govtrack":412633,"opensecrets":"N00034584","thomas":"02247"},"name":{"first":"Bruce","last":"Poliquin","official_full":"Bruce Poliquin"},"bio":{"gender":"M","birthday":"1953-11-01"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"ME","district":2,"party":"Republican","address":"426 Cannon HOB; Washington DC 20515-1902","office":"426 Cannon House Office Building","phone":"202-225-6306","url":"https://poliquin.house.gov","fax":"202-225-2943"}]},{"id":{"bioguide":"M001194","fec":["H4MI04126"],"govtrack":412634,"opensecrets":"N00036275","thomas":"02248"},"name":{"first":"John","last":"Moolenaar","official_full":"John R. Moolenaar"},"bio":{"gender":"M","birthday":"1961-05-08"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","district":4,"party":"Republican","address":"117 Cannon HOB; Washington DC 20515-2204","office":"117 Cannon House Office Building","phone":"202-225-3561","url":"https://moolenaar.house.gov","fax":"202-225-9679"}]},{"id":{"bioguide":"B001293","fec":["H4MI08135"],"govtrack":412635,"opensecrets":"N00036449","thomas":"02249"},"name":{"first":"Mike","last":"Bishop","official_full":"Mike Bishop"},"bio":{"gender":"M","birthday":"1967-03-18"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","district":8,"party":"Republican","address":"428 Cannon HOB; Washington DC 20515-2208","office":"428 Cannon House Office Building","phone":"202-225-4872","url":"https://mikebishop.house.gov","fax":"202-225-5820"}]},{"id":{"bioguide":"T000475","fec":["H4MI11097"],"govtrack":412636,"opensecrets":"N00035607","thomas":"02250"},"name":{"first":"Dave","last":"Trott","official_full":"David A. Trott"},"bio":{"gender":"M","birthday":"1960-10-16"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","district":11,"party":"Republican","address":"1722 Longworth HOB; Washington DC 20515-2211","office":"1722 Longworth House Office Building","phone":"202-225-8171","url":"https://trott.house.gov"}]},{"id":{"bioguide":"D000624","fec":["H4MI12079"],"govtrack":412637,"opensecrets":"N00036149","thomas":"02251","house_history":15032409588},"name":{"first":"Debbie","last":"Dingell","official_full":"Debbie Dingell"},"bio":{"gender":"F","birthday":"1953-11-23"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","district":12,"party":"Democrat","address":"116 Cannon HOB; Washington DC 20515-2212","office":"116 Cannon House Office Building","phone":"202-225-4071","url":"https://debbiedingell.house.gov","fax":"202-226-0371"}]},{"id":{"bioguide":"L000581","fec":["H2MI14111"],"govtrack":412638,"opensecrets":"N00034068","thomas":"02252","house_history":15032411198},"name":{"first":"Brenda","last":"Lawrence","official_full":"Brenda L. Lawrence"},"bio":{"gender":"F","birthday":"1954-10-18"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MI","district":14,"party":"Democrat","address":"1237 Longworth HOB; Washington DC 20515-2214","office":"1237 Longworth House Office Building","phone":"202-225-5802","url":"https://lawrence.house.gov","fax":"202-226-2356"}]},{"id":{"bioguide":"E000294","fec":["H4MN06087"],"govtrack":412639,"opensecrets":"N00035440","thomas":"02253"},"name":{"first":"Tom","last":"Emmer","official_full":"Tom Emmer"},"bio":{"gender":"M","birthday":"1961-03-03"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MN","district":6,"party":"Republican","address":"503 Cannon HOB; Washington DC 20515-2306","office":"503 Cannon House Office Building","phone":"202-225-2331","url":"https://emmer.house.gov","fax":"202-225-6475"}]},{"id":{"bioguide":"Z000018","fec":["H4MT01041"],"govtrack":412640,"opensecrets":"N00035616","thomas":"02254"},"name":{"first":"Ryan","last":"Zinke","official_full":"Ryan K. Zinke"},"bio":{"gender":"M","birthday":"1961-11-01"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"MT","district":0,"party":"Republican","address":"113 Cannon HOB; Washington DC 20515-2600","office":"113 Cannon House Office Building","phone":"202-225-3211","url":"https://zinke.house.gov","fax":"202-225-5687"}]},{"id":{"bioguide":"R000603","fec":["H2NC07096"],"govtrack":412641,"opensecrets":"N00033527","thomas":"02256"},"name":{"first":"David","last":"Rouzer","official_full":"David Rouzer"},"bio":{"gender":"M","birthday":"1972-02-16"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","district":7,"party":"Republican","address":"424 Cannon HOB; Washington DC 20515-3307","office":"424 Cannon House Office Building","phone":"202-225-2731","url":"https://rouzer.house.gov","fax":"202-225-5773"}]},{"id":{"bioguide":"A000373","fec":["H4NE02054"],"govtrack":412642,"opensecrets":"N00005293","thomas":"02257"},"name":{"first":"Brad","last":"Ashford","official_full":"Brad Ashford"},"bio":{"gender":"M","birthday":"1949-11-10"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NE","district":2,"party":"Democrat","address":"107 Cannon HOB; Washington DC 20515-2702","office":"107 Cannon House Office Building","phone":"202-225-4155","url":"https://ashford.house.gov","fax":"202-226-5452"}]},{"id":{"bioguide":"M001193","fec":["H4NJ03130"],"govtrack":412643,"opensecrets":"N00036155","thomas":"02258"},"name":{"first":"Tom","last":"MacArthur","official_full":"Thomas MacArthur"},"bio":{"gender":"M","birthday":"1960-10-16"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","district":3,"party":"Republican","address":"506 Cannon HOB; Washington DC 20515-3003","office":"506 Cannon House Office Building","phone":"202-225-4765","url":"https://macarthur.house.gov","fax":"202-225-0778"}]},{"id":{"bioguide":"W000822","fec":["H4NJ12149"],"govtrack":412644,"opensecrets":"N00036158","thomas":"02259","house_history":15032409972},"name":{"first":"Bonnie","last":"Watson Coleman","official_full":"Bonnie Watson Coleman"},"bio":{"gender":"F","birthday":"1945-02-06"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NJ","district":12,"party":"Democrat","address":"126 Cannon HOB; Washington DC 20515-3012","office":"126 Cannon House Office Building","phone":"202-225-5801","url":"https://watsoncoleman.house.gov","fax":"202-225-6025"}]},{"id":{"bioguide":"H001070","fec":["H4NV04017"],"govtrack":412645,"opensecrets":"N00035628","thomas":"02260"},"name":{"first":"Cresent","last":"Hardy","official_full":"Cresent Hardy"},"bio":{"gender":"M","birthday":"1957-06-23"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NV","district":4,"party":"Republican","address":"430 Cannon HOB; Washington DC 20515-2804","office":"430 Cannon House Office Building","phone":"202-225-9894","url":"https://hardy.house.gov","fax":"202-225-9783"}]},{"id":{"bioguide":"Z000017","fec":["H8NY01148"],"govtrack":412646,"opensecrets":"N00029404","thomas":"02261"},"name":{"first":"Lee","last":"Zeldin","official_full":"Lee M. Zeldin"},"bio":{"gender":"M","birthday":"1980-01-30"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","district":1,"party":"Republican","address":"1517 Longworth HOB; Washington DC 20515-3201","office":"1517 Longworth House Office Building","phone":"202-225-3826","url":"https://zeldin.house.gov","fax":"202-225-3143"}]},{"id":{"bioguide":"R000602","fec":["H4NY04075"],"govtrack":412647,"opensecrets":"N00035927","thomas":"02262","house_history":15032412351},"name":{"first":"Kathleen","last":"Rice","official_full":"Kathleen M. Rice"},"bio":{"gender":"F","birthday":"1965-02-15"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","district":4,"party":"Democrat","address":"1508 Longworth HOB; Washington DC 20515-3204","office":"1508 Longworth House Office Building","phone":"202-225-5516","url":"https://kathleenrice.house.gov","fax":"202-225-5758"}]},{"id":{"bioguide":"S001196","fec":["H4NY21079"],"govtrack":412648,"opensecrets":"N00035523","thomas":"02263","house_history":15032411587},"name":{"first":"Elise","last":"Stefanik","official_full":"Elise M. Stefanik"},"bio":{"gender":"F","birthday":"1984-07-02"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","district":21,"party":"Republican","address":"512 Cannon HOB; Washington DC 20515-3221","office":"512 Cannon House Office Building","phone":"202-225-4611","url":"https://stefanik.house.gov","fax":"202-226-0621"}]},{"id":{"bioguide":"K000386","fec":["H4NY24073"],"govtrack":412649,"opensecrets":"N00035934","thomas":"02264"},"name":{"first":"John","last":"Katko","official_full":"John Katko"},"bio":{"gender":"M","birthday":"1962-11-09"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NY","district":24,"party":"Republican","address":"1123 Longworth HOB; Washington DC 20515-3224","office":"1123 Longworth House Office Building","phone":"202-225-3701","url":"https://katko.house.gov","fax":"202-225-4042"}]},{"id":{"bioguide":"R000604","fec":["H4OK05132"],"govtrack":412650,"opensecrets":"N00036175","thomas":"02265"},"name":{"first":"Steve","last":"Russell","official_full":"Steve Russell"},"bio":{"gender":"M","birthday":"1963-05-25"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"OK","district":5,"party":"Republican","address":"128 Cannon HOB; Washington DC 20515-3605","office":"128 Cannon House Office Building","phone":"202-225-2132","url":"https://russell.house.gov","fax":"202-226-1463"}]},{"id":{"bioguide":"C001106","fec":["H0PA06076"],"govtrack":412651,"opensecrets":"N00031064","thomas":"02266"},"name":{"first":"Ryan","last":"Costello","official_full":"Ryan A. Costello"},"bio":{"gender":"M","birthday":"1976-09-07"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","district":6,"party":"Republican","address":"427 Cannon HOB; Washington DC 20515-3806","office":"427 Cannon House Office Building","phone":"202-225-4315","url":"https://costello.house.gov","fax":"202-225-8440"}]},{"id":{"bioguide":"B001296","fec":["H4PA13199"],"govtrack":412652,"opensecrets":"N00035307","thomas":"02267"},"name":{"first":"Brendan","last":"Boyle","official_full":"Brendan F. Boyle"},"bio":{"gender":"M","birthday":"1977-02-06"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"PA","district":13,"party":"Democrat","address":"118 Cannon HOB; Washington DC 20515-3813","office":"118 Cannon House Office Building","phone":"202-225-6111","url":"https://boyle.house.gov","fax":"202-226-0611"}]},{"id":{"bioguide":"R000601","fec":["H4TX04153"],"govtrack":412653,"opensecrets":"N00035972","thomas":"02268"},"name":{"first":"John","last":"Ratcliffe","official_full":"John Ratcliffe"},"bio":{"gender":"M","birthday":"1965-10-20"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","district":4,"party":"Republican","address":"325 Cannon HOB; Washington DC 20515-4304","office":"325 Cannon House Office Building","phone":"202-225-6673","url":"https://ratcliffe.house.gov","fax":"202-225-3332"}]},{"id":{"bioguide":"H001073","fec":["H0TX23086"],"govtrack":412654,"opensecrets":"N00031417","thomas":"02269"},"name":{"first":"Will","last":"Hurd","official_full":"Will Hurd"},"bio":{"gender":"M","birthday":"1977-08-19"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","district":23,"party":"Republican","address":"317 Cannon HOB; Washington DC 20515-4323","office":"317 Cannon House Office Building","phone":"202-225-4511","url":"https://hurd.house.gov"}]},{"id":{"bioguide":"B001291","fec":["H6TX02079"],"govtrack":412655,"opensecrets":"N00005736","thomas":"02270"},"name":{"first":"Brian","last":"Babin","official_full":"Brian Babin"},"bio":{"gender":"M","birthday":"1948-03-23"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"TX","district":36,"party":"Republican","address":"316 Cannon HOB; Washington DC 20515-4336","office":"316 Cannon House Office Building","phone":"202-225-1555","url":"https://babin.house.gov","fax":"202-226-0396"}]},{"id":{"bioguide":"L000584","fec":["H2UT04023"],"govtrack":412656,"opensecrets":"N00033842","thomas":"02271","house_history":15032411201},"name":{"first":"Mia","last":"Love","official_full":"Mia B. Love"},"bio":{"gender":"F","birthday":"1975-12-06"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"UT","district":4,"party":"Republican","address":"217 Cannon HOB; Washington DC 20515-4404","office":"217 Cannon House Office Building","phone":"202-225-3011","url":"https://love.house.gov","fax":"202-225-5638"}]},{"id":{"bioguide":"B001292","fec":["H4VA08224"],"govtrack":412657,"opensecrets":"N00036018","thomas":"02272"},"name":{"first":"Donald","last":"Beyer","official_full":"Donald S. Beyer Jr."},"bio":{"gender":"M","birthday":"1950-06-20"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","district":8,"party":"Democrat","address":"431 Cannon HOB; Washington DC 20515-4608","office":"431 Cannon House Office Building","phone":"202-225-4376","url":"https://beyer.house.gov","fax":"202-225-0017"}]},{"id":{"bioguide":"C001105","fec":["H4VA10089"],"govtrack":412658,"opensecrets":"N00036023","thomas":"02273","house_history":15032409529},"name":{"first":"Barbara","last":"Comstock","official_full":"Barbara Comstock"},"bio":{"gender":"F","birthday":"1959-06-30"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VA","district":10,"party":"Republican","address":"226 Cannon HOB; Washington DC 20515-4610","office":"226 Cannon House Office Building","phone":"202-225-5136","url":"https://comstock.house.gov","fax":"202-225-0437"}]},{"id":{"bioguide":"P000610","fec":["H2VI00082"],"govtrack":412659,"thomas":"02274","house_history":15032410230},"name":{"first":"Stacey","last":"Plaskett","official_full":"Stacey E. Plaskett"},"bio":{"gender":"F","birthday":"1966-05-13"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"VI","district":0,"party":"Democrat","address":"509 Cannon HOB; Washington DC 20515-5501","office":"509 Cannon House Office Building","phone":"202-225-1790","url":"https://plaskett.house.gov","fax":"202-225-5517"}]},{"id":{"bioguide":"N000189","fec":["H4WA04104"],"govtrack":412660,"opensecrets":"N00036403","thomas":"02275"},"name":{"first":"Dan","last":"Newhouse","official_full":"Dan Newhouse"},"bio":{"gender":"M","birthday":"1955-07-10"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WA","district":4,"party":"Republican","address":"1641 Longworth HOB; Washington DC 20515-4704","office":"1641 Longworth House Office Building","phone":"202-225-5816","url":"https://newhouse.house.gov","fax":"202-225-3251"}]},{"id":{"bioguide":"G000576","fec":["H4WI06048"],"govtrack":412661,"opensecrets":"N00036409","thomas":"02276"},"name":{"first":"Glenn","last":"Grothman","official_full":"Glenn Grothman"},"bio":{"gender":"M","birthday":"1955-07-03"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WI","district":6,"party":"Republican","address":"501 Cannon HOB; Washington DC 20515-4906","office":"501 Cannon House Office Building","phone":"202-225-2476","url":"https://grothman.house.gov","fax":"202-225-2356"}]},{"id":{"bioguide":"M001195","fec":["H4WV02080"],"govtrack":412662,"opensecrets":"N00033814","thomas":"02277"},"name":{"first":"Alex","last":"Mooney","official_full":"Alexander X. Mooney"},"bio":{"gender":"M","birthday":"1971-06-05"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WV","district":2,"party":"Republican","address":"1232 Longworth HOB; Washington DC 20515-4802","office":"1232 Longworth House Office Building","phone":"202-225-2711","url":"https://mooney.house.gov","fax":"202-225-7856"}]},{"id":{"bioguide":"J000297","fec":["H4WV03070"],"govtrack":412663,"opensecrets":"N00035531","thomas":"02278"},"name":{"first":"Evan","last":"Jenkins","official_full":"Evan H. Jenkins"},"bio":{"gender":"M","birthday":"1960-09-12"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"WV","district":3,"party":"Republican","address":"502 Cannon HOB; Washington DC 20515-4803","office":"502 Cannon House Office Building","phone":"202-225-3452","url":"https://evanjenkins.house.gov","fax":"202-225-9061"}]},{"id":{"bioguide":"R000600","fec":["H4AS00036"],"govtrack":412664,"thomas":"02222","house_history":15032412349},"name":{"first":"Aumua","last":"Amata","official_full":"Amata Coleman Radewagen"},"bio":{"gender":"F","birthday":"1947-12-29"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"AS","district":0,"party":"Republican","address":"1339 Longworth HOB; Washington DC 20515-5201","office":"1339 Longworth House Office Building","phone":"202-225-8577","url":"https://radewagen.house.gov","fax":"202-225-8757"}]},{"id":{"bioguide":"S001198","thomas":"02290","fec":["S4AK00214"],"govtrack":412665,"opensecrets":"N00035774","lis":"S383"},"name":{"first":"Dan","last":"Sullivan","official_full":"Daniel Sullivan"},"bio":{"gender":"M","birthday":"1964-11-13"},"terms":[{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"AK","class":2,"state_rank":"junior","party":"Republican","url":"http://www.sullivan.senate.gov","address":"B40A Dirksen Senate Office Building Washington DC 20510","office":"B40a Dirksen Senate Office Building","phone":"202-224-3004"}]},{"id":{"bioguide":"P000612","thomas":"02286","fec":["S4GA11285"],"govtrack":412666,"opensecrets":"N00035516","lis":"S379"},"name":{"first":"David","last":"Perdue","official_full":"David Perdue"},"bio":{"gender":"M","birthday":"1949-12-10"},"terms":[{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"GA","class":2,"state_rank":"junior","party":"Republican","url":"http://www.perdue.senate.gov","address":"B40D Dirksen Senate Office Building Washington DC 20510","office":"B40d Dirksen Senate Office Building","phone":"202-224-3521"}]},{"id":{"bioguide":"E000295","thomas":"02283","fec":["S4IA00129"],"govtrack":412667,"opensecrets":"N00035483","lis":"S376","house_history":15032414877},"name":{"first":"Joni","last":"Ernst","official_full":"Joni Ernst"},"bio":{"gender":"F","birthday":"1970-07-01"},"terms":[{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"IA","class":2,"state_rank":"junior","party":"Republican","url":"http://www.ernst.senate.gov","address":"825 B&C Hart Senate Office Building Washington DC 20510","office":"825 B&c Hart Senate Office Building","phone":"202-224-3254"}]},{"id":{"bioguide":"T000476","thomas":"02291","fec":["S4NC00162"],"govtrack":412668,"opensecrets":"N00035492","lis":"S384"},"name":{"first":"Thom","last":"Tillis","official_full":"Thom Tillis"},"bio":{"gender":"M","birthday":"1960-08-30"},"terms":[{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"NC","class":2,"state_rank":"junior","party":"Republican","url":"http://www.tillis.senate.gov","address":"G55 Dirksen Senate Office Building Washington DC 20510","office":"G55 Dirksen Senate Office Building","phone":"202-224-6342"}]},{"id":{"bioguide":"R000605","thomas":"02288","fec":["S4SD00049"],"govtrack":412669,"opensecrets":"N00035187","lis":"S381"},"name":{"first":"Mike","last":"Rounds","official_full":"Mike Rounds"},"bio":{"gender":"M","birthday":"1954-10-24"},"terms":[{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"SD","class":2,"state_rank":"junior","party":"Republican","url":"http://www.rounds.senate.gov","address":"4 Russell Senate Courtyard Washington DC 20510","office":"4 Russell Senate Courtyard","phone":"202-224-5842"}]},{"id":{"bioguide":"W000819","fec":["H4NC06052"],"govtrack":412670,"opensecrets":"N00035311","thomas":"02255"},"name":{"first":"Bradley","middle":"Mark","last":"Walker","official_full":"Mark Walker"},"bio":{"gender":"M","birthday":"1969-05-20"},"terms":[{"type":"rep","start":"2015-01-06","end":"2017-01-03","state":"NC","district":6,"party":"Republican","address":"312 Cannon HOB; Washington DC 20515-3306","office":"312 Cannon House Office Building","phone":"202-225-3065","url":"https://walker.house.gov","fax":"202-225-8611"}]},{"id":{"bioguide":"S001197","thomas":"02289","fec":["S4NE00090"],"govtrack":412671,"opensecrets":"N00035544","lis":"S382"},"name":{"first":"Benjamin","middle":"Eric","last":"Sasse","official_full":"Ben Sasse"},"bio":{"gender":"M","birthday":"1972-02-22"},"terms":[{"type":"sen","start":"2015-01-06","end":"2021-01-03","state":"NE","class":2,"state_rank":"junior","party":"Republican","url":"http://www.sasse.senate.gov","address":"B40E Dirksen Senate Office Building Washington DC 20510","office":"B40e Dirksen Senate Office Building","phone":"202-224-4224"}]}]} diff --git a/assets/images/vis_ndgt0.jpg b/assets/images/vis_ndgt0.jpg Binary files differnew file mode 100644 index 0000000..9a86d04 --- /dev/null +++ b/assets/images/vis_ndgt0.jpg diff --git a/assets/images/vis_ndgt1.jpg b/assets/images/vis_ndgt1.jpg Binary files differnew file mode 100644 index 0000000..f7c9e68 --- /dev/null +++ b/assets/images/vis_ndgt1.jpg diff --git a/assets/images/vis_ndgt2.jpg b/assets/images/vis_ndgt2.jpg Binary files differnew file mode 100644 index 0000000..d7d9f25 --- /dev/null +++ b/assets/images/vis_ndgt2.jpg diff --git a/assets/scripts/d3/gender_terms_v0.js b/assets/scripts/d3/gender_terms_v0.js new file mode 100644 index 0000000..32052ea --- /dev/null +++ b/assets/scripts/d3/gender_terms_v0.js @@ -0,0 +1,16 @@ +(function() { + d3.json("/assets/data/legislators-current.json", function(data) { + + d3.select("div#d3gender_terms_v0").selectAll("svg") + .data(data.legislators) + .enter() + .append("svg") + .attr("width", function(d) { return d.terms.length * 2; }) + .attr("height", function(d) { return d.terms.length * 2; }) + .append("circle") + .attr("cx", function(d) { return d.terms.length; }) + .attr("cy", function(d) { return d.terms.length; }) + .attr("r", function(d) { return d.terms.length; }) + .style("fill", function(d) { return d.bio.gender === 'F'? "green" : "blue"; }); + }); +})(); diff --git a/assets/scripts/d3/gender_terms_v1.js b/assets/scripts/d3/gender_terms_v1.js new file mode 100644 index 0000000..ba510e0 --- /dev/null +++ b/assets/scripts/d3/gender_terms_v1.js @@ -0,0 +1,38 @@ +(function() { + var width = 960; + var height = 500; + var color = d3.scale.category10(); + + var pack = d3.layout.pack() + .sort(function(a, b) { + if (a.value > b.value) { return -1; } + if (a.value < b.value) { return 1; } + return 0; + }) + .size([width, height]) + .padding(4); + + var container = d3.select("div#d3gender_terms_v1") + .append("svg") + .attr("width", width) + .attr("height", height); + + d3.json("/assets/data/legislators-current.json", function(data) { + + container.selectAll("circle") + .data(pack({ + children: data.legislators.map(function(x) { + return { + value: x.terms.length, + gender: x.bio.gender + } + } + )})) + .enter() + .append("circle") + .attr("cx", function(d) { return d.x; }) + .attr("cy", function(d) { return d.y; }) + .attr("r", function(d) { return d.depth === 1? d.r : 0; }) + .style("fill", function(d) { return color(d.gender); }); + }); +})(); diff --git a/assets/scripts/d3/party_affiliation_v0.js b/assets/scripts/d3/party_affiliation_v0.js new file mode 100644 index 0000000..ed7b576 --- /dev/null +++ b/assets/scripts/d3/party_affiliation_v0.js @@ -0,0 +1,62 @@ +(function() { + + var width = 960; + var height = 700; + var radius = Math.min(width, height) / 2; + + var transform = function(data) { + return { + "children": d3.shuffle(data.map(function(d0) { + return { + value: d0.terms.length, + gender: d0.bio.gender, + children: d0.terms.map(function(d1) { + return { + value: 1, + party: d1.party + } + }) + }; + }).filter(function(d) { + return Math.random() > 0.90; + })) + }; + }; + + d3.json("/assets/data/legislators-current.json", function(data) { + + var partition = d3.layout.partition() + .size([2 * Math.PI, radius * radius]) + .sort(null); + + var container = d3.select("div#d3party_affiliation_v0").append("svg") + .attr("width", width) + .attr("height", height) + .append("g") + .attr("transform", "translate(" + (width / 2) + "," + (height / 2) + ")"); + + var arc = d3.svg.arc() + .startAngle(function(d) { return d.x; }) + .endAngle(function(d) { return d.x + d.dx; }) + .innerRadius(function(d) { return Math.sqrt(d.y); }) + .outerRadius(function(d) { return Math.sqrt(d.y + d.dy); }); + + container.datum(transform(data.legislators)).selectAll("path") + .data(partition.nodes) + .enter().append("path") + .attr("display", function(d) { return d.depth ? null : "none"; }) + .attr("d", arc) + .style("stroke", "#fff") + .style("fill", function(d) { + if (d.depth === 1) { + return "lightslategray "; + } + if (d.depth === 2) { + if (d.party === "Democrat") return "blue"; + if (d.party === "Republican") return "red"; + if (d.party === "Independent") return "purple"; + } + }) + .style("fill-rule", "evenodd"); + }); +})(); diff --git a/assets/scripts/d3/religion_v0.js b/assets/scripts/d3/religion_v0.js new file mode 100644 index 0000000..6391195 --- /dev/null +++ b/assets/scripts/d3/religion_v0.js @@ -0,0 +1,97 @@ +(function() { + + var transform = function(data) { + // Set up an object and an array to use + var religion_data = { "Unknown": 0 }; + var religion_array = []; + + // For each legislator, increment the key associated with their religion + for (var i = 0; i < data.length; i++) { + var d = data[i]; + + // Make sure they have a religion listed + if (d.bio.religion) { + + // If the key already exists, increment it + if (religion_data[d.bio.religion]) { + religion_data[d.bio.religion]++; + } + + // Otherwise, initialize a new key as 1 + else { + religion_data[d.bio.religion] = 1; + } + } + + // If they don't have a religion in their bio, we'll increment "Unknown" + else { + religion_data["Unknown"]++; + } + } + + // Now convert our object to an array for use in the pie chart + for (var e in religion_data) { + religion_array.push({ + name: e, + count: religion_data[e] + }); + } + + return religion_array; + }; + + var width = 960; + var barHeight = 25; + var margin = 215; + + d3.json("/assets/data/legislators-current.json", function(data) { + + var filtered = transform(data.legislators).filter(function(d) { + return d.name !== "Unknown"; + }).sort(function(a, b) { + if (a.count < b.count) return 1; + if (a.count > b.count) return -1; + return 0; + }); + + var container = d3.select("div#d3religion_v0") + .append("svg") + .attr("width", width) + .attr("height", barHeight * filtered.length); + + var x = d3.scale.linear() + .domain([0, d3.max(filtered.map(function(d) { return d.count; }))]) + .range([0, width - margin]); + + // Add the arc segments to our visualization + var bar = container.selectAll("g") + .data(filtered) + .enter() + .append("g") + .attr("transform", function(d, i) { return "translate(0, " + i * barHeight + ")"; }); + + bar.append("rect") + .attr("width", function(d) { return x(d.count); }) + .attr("height", barHeight - 1) + .attr("transform", function(d, i) { return "translate(" + (width - margin - x(d.count)) + ", 0)"}) + .style("fill", "steelblue"); + + bar.append("text") + .attr("x", width - margin + 5) + .attr("y", barHeight / 2) + .attr("dy", ".35em") + .style("font-size", "15px") + .style("font-family", "open_sans") + .text(function(d) { return d.name; }); + + bar.append("text") + .attr("x", function(d) { return width - margin - x(d.count) + 5; }) + .attr("y", barHeight / 2) + .attr("dy", ".35em") + .style("font-size", "15px") + .style("font-family", "open_sans") + .style("fill", "white") + .text(function(d) { return d.count; }); + + }); +})(); diff --git a/assets/scripts/d3/religion_v1.js b/assets/scripts/d3/religion_v1.js new file mode 100644 index 0000000..4b8f733 --- /dev/null +++ b/assets/scripts/d3/religion_v1.js @@ -0,0 +1,60 @@ +(function() { + + var transform = function(data) { + // Set up an object and an array to use + var religion_data = { "Known": 0, "Unknown": 0 }; + var religion_array = []; + + // For each legislator, increment the key associated with their religion + for (var i = 0; i < data.length; i++) { + var d = data[i]; + + if (!d.bio.religion || d.bio.religion === "Unknown") { + religion_data["Unknown"]++; + } else { + religion_data["Known"]++; + } + } + + // Now convert our object to an array for use in the pie chart + for (var e in religion_data) { + religion_array.push({ + name: e, + count: religion_data[e] + }); + } + + return religion_array; + }; + + var width = 960; + var height = 400; + var radius = Math.min(width, height) / 2; + + var pie = d3.layout.pie() + .value(function(d) { return d.count; }) + .sort(null); + + var container = d3.select("div#d3religion_v1") + .append("svg") + .attr("width", width) + .attr("height", height); + + var donut = container.append("g") + .attr("transform", "translate(" + (width / 2) + "," + (height / 2) + ")"); + + var arc = d3.svg.arc() + .outerRadius(radius) + .innerRadius(radius / 2); + + d3.json("/assets/data/legislators-current.json", function(data) { + + // Add the arc segments to our visualization + donut.selectAll("path") + .data(pie(transform(data.legislators))) + .enter() + .append("path") + .attr("d", arc) + .attr("fill", function(d) { return d.data.name === "Unknown" ? "#ddd" : "steelblue"; }); + }); +})(); diff --git a/assets/stylesheets/site.scss b/assets/stylesheets/site.scss index abf7ace..ce30820 100644 --- a/assets/stylesheets/site.scss +++ b/assets/stylesheets/site.scss @@ -147,6 +147,22 @@ footer { } } +hr { + width: 20%; + border-width: 2px; + border-style: solid none none none; + border-color: $base1; +} + +aside { + // font-style: italic; + width: 80%; + margin-left: auto; + margin-right: auto; + text-align: center; + color: $base01; +} + header { a { font-family: $sans; |