sample_json_lines.json 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145
  1. {
  2. "caucus": null,
  3. "congress_numbers": [
  4. 113,
  5. 114,
  6. 115
  7. ],
  8. "current": true,
  9. "description": "Junior Senator for Wisconsin",
  10. "district": null,
  11. "enddate": "2019-01-03",
  12. "extra": {
  13. "address": "709 Hart Senate Office Building Washington DC 20510",
  14. "contact_form": "https://www.baldwin.senate.gov/feedback",
  15. "fax": "202-225-6942",
  16. "office": "709 Hart Senate Office Building",
  17. "rss_url": "http://www.baldwin.senate.gov/rss/feeds/?type=all"
  18. },
  19. "leadership_title": null,
  20. "party": "Democrat",
  21. "person": {
  22. "bioguideid": "B001230",
  23. "birthday": "1962-02-11",
  24. "cspanid": 57884,
  25. "firstname": "Tammy",
  26. "gender": "female",
  27. "gender_label": "Female",
  28. "lastname": "Baldwin",
  29. "link": "https://www.govtrack.us/congress/members/tammy_baldwin/400013",
  30. "middlename": "",
  31. "name": "Sen. Tammy Baldwin [D-WI]",
  32. "namemod": "",
  33. "nickname": "",
  34. "osid": "N00004367",
  35. "pvsid": "3470",
  36. "sortname": "Baldwin, Tammy (Sen.) [D-WI]",
  37. "twitterid": "SenatorBaldwin",
  38. "youtubeid": "witammybaldwin"
  39. },
  40. "phone": "202-224-5653",
  41. "role_type": "senator",
  42. "role_type_label": "Senator",
  43. "senator_class": "class1",
  44. "senator_class_label": "Class 1",
  45. "senator_rank": "junior",
  46. "senator_rank_label": "Junior",
  47. "startdate": "2013-01-03",
  48. "state": "WI",
  49. "title": "Sen.",
  50. "title_long": "Senator",
  51. "website": "https://www.baldwin.senate.gov"
  52. },
  53. {
  54. "caucus": null,
  55. "congress_numbers": [
  56. 113,
  57. 114,
  58. 115
  59. ],
  60. "current": true,
  61. "description": "Senior Senator for Ohio",
  62. "district": null,
  63. "enddate": "2019-01-03",
  64. "extra": {
  65. "address": "713 Hart Senate Office Building Washington DC 20510",
  66. "contact_form": "http://www.brown.senate.gov/contact/",
  67. "fax": "202-228-6321",
  68. "office": "713 Hart Senate Office Building",
  69. "rss_url": "http://www.brown.senate.gov/rss/feeds/?type=all&"
  70. },
  71. "leadership_title": null,
  72. "party": "Democrat",
  73. "person": {
  74. "bioguideid": "B000944",
  75. "birthday": "1952-11-09",
  76. "cspanid": 5051,
  77. "firstname": "Sherrod",
  78. "gender": "male",
  79. "gender_label": "Male",
  80. "lastname": "Brown",
  81. "link": "https://www.govtrack.us/congress/members/sherrod_brown/400050",
  82. "middlename": "",
  83. "name": "Sen. Sherrod Brown [D-OH]",
  84. "namemod": "",
  85. "nickname": "",
  86. "osid": "N00003535",
  87. "pvsid": "27018",
  88. "sortname": "Brown, Sherrod (Sen.) [D-OH]",
  89. "twitterid": "SenSherrodBrown",
  90. "youtubeid": "SherrodBrownOhio"
  91. },
  92. "phone": "202-224-2315",
  93. "role_type": "senator",
  94. "role_type_label": "Senator",
  95. "senator_class": "class1",
  96. "senator_class_label": "Class 1",
  97. "senator_rank": "senior",
  98. "senator_rank_label": "Senior",
  99. "startdate": "2013-01-03",
  100. "state": "OH",
  101. "title": "Sen.",
  102. "title_long": "Senator",
  103. "website": "https://www.brown.senate.gov"
  104. },
  105. {
  106. "caucus": null,
  107. "congress_numbers": [
  108. 113,
  109. 114,
  110. 115
  111. ],
  112. "current": true,
  113. "description": "Senior Senator for Maryland",
  114. "district": null,
  115. "enddate": "2019-01-03",
  116. "extra": {
  117. "address": "509 Hart Senate Office Building Washington DC 20510",
  118. "contact_form": "http://www.cardin.senate.gov/contact/",
  119. "fax": "202-224-1651",
  120. "office": "509 Hart Senate Office Building",
  121. "rss_url": "http://www.cardin.senate.gov/rss/feeds/?type=all"
  122. },
  123. "leadership_title": null,
  124. "party": "Democrat",
  125. "person": {
  126. "bioguideid": "C000141",
  127. "birthday": "1943-10-05",
  128. "cspanid": 4004,
  129. "firstname": "Benjamin",
  130. "gender": "male",
  131. "gender_label": "Male",
  132. "lastname": "Cardin",
  133. "link": "https://www.govtrack.us/congress/members/benjamin_cardin/400064",
  134. "middlename": "L.",
  135. "name": "Sen. Benjamin Cardin [D-MD]",
  136. "namemod": "",
  137. "nickname": "",
  138. "osid": "N00001955",
  139. "pvsid": "26888",
  140. "sortname": "Cardin, Benjamin (Sen.) [D-MD]",
  141. "twitterid": "SenatorCardin",
  142. "youtubeid": "senatorcardin"
  143. },
  144. "phone": "202-224-4524",
  145. "role_type": "senator",
  146. "role_type_label": "Senator",
  147. "senator_class": "class1",
  148. "senator_class_label": "Class 1",
  149. "senator_rank": "senior",
  150. "senator_rank_label": "Senior",
  151. "startdate": "2013-01-03",
  152. "state": "MD",
  153. "title": "Sen.",
  154. "title_long": "Senator",
  155. "website": "https://www.cardin.senate.gov"
  156. },
  157. {
  158. "caucus": null,
  159. "congress_numbers": [
  160. 113,
  161. 114,
  162. 115
  163. ],
  164. "current": true,
  165. "description": "Senior Senator for Arizona",
  166. "district": null,
  167. "enddate": "2019-01-03",
  168. "extra": {
  169. "address": "413 Russell Senate Office Building Washington DC 20510",
  170. "contact_form": "https://www.flake.senate.gov/public/index.cfm/contact-jeff",
  171. "fax": "202-226-4386",
  172. "office": "413 Russell Senate Office Building",
  173. "rss_url": "http://www.flake.senate.gov/public/index.cfm/rss/feed"
  174. },
  175. "leadership_title": null,
  176. "party": "Republican",
  177. "person": {
  178. "bioguideid": "F000444",
  179. "birthday": "1962-12-31",
  180. "cspanid": 87582,
  181. "firstname": "Jeff",
  182. "gender": "male",
  183. "gender_label": "Male",
  184. "lastname": "Flake",
  185. "link": "https://www.govtrack.us/congress/members/jeff_flake/400134",
  186. "middlename": "",
  187. "name": "Sen. Jeff Flake [R-AZ]",
  188. "namemod": "",
  189. "nickname": "",
  190. "osid": "N00009573",
  191. "pvsid": "28128",
  192. "sortname": "Flake, Jeff (Sen.) [R-AZ]",
  193. "twitterid": "JeffFlake",
  194. "youtubeid": "flakeoffice"
  195. },
  196. "phone": "202-224-4521",
  197. "role_type": "senator",
  198. "role_type_label": "Senator",
  199. "senator_class": "class1",
  200. "senator_class_label": "Class 1",
  201. "senator_rank": "senior",
  202. "senator_rank_label": "Senior",
  203. "startdate": "2013-01-03",
  204. "state": "AZ",
  205. "title": "Sen.",
  206. "title_long": "Senator",
  207. "website": "https://www.flake.senate.gov/public"
  208. },
  209. {
  210. "caucus": null,
  211. "congress_numbers": [
  212. 113,
  213. 114,
  214. 115
  215. ],
  216. "current": true,
  217. "description": "Senior Senator for New Jersey",
  218. "district": null,
  219. "enddate": "2019-01-03",
  220. "extra": {
  221. "address": "528 Hart Senate Office Building Washington DC 20510",
  222. "contact_form": "https://www.menendez.senate.gov/contact",
  223. "fax": "202-228-2197",
  224. "office": "528 Hart Senate Office Building",
  225. "rss_url": "http://www.menendez.senate.gov/rss/feeds/index.cfm?type=news"
  226. },
  227. "leadership_title": null,
  228. "party": "Democrat",
  229. "person": {
  230. "bioguideid": "M000639",
  231. "birthday": "1954-01-01",
  232. "cspanid": 29608,
  233. "firstname": "Robert",
  234. "gender": "male",
  235. "gender_label": "Male",
  236. "lastname": "Menéndez",
  237. "link": "https://www.govtrack.us/congress/members/robert_menendez/400272",
  238. "middlename": "",
  239. "name": "Sen. Robert “Bob” Menéndez [D-NJ]",
  240. "namemod": "",
  241. "nickname": "Bob",
  242. "osid": "N00000699",
  243. "pvsid": "26961",
  244. "sortname": "Menéndez, Robert “Bob” (Sen.) [D-NJ]",
  245. "twitterid": "SenatorMenendez",
  246. "youtubeid": "SenatorMenendezNJ"
  247. },
  248. "phone": "202-224-4744",
  249. "role_type": "senator",
  250. "role_type_label": "Senator",
  251. "senator_class": "class1",
  252. "senator_class_label": "Class 1",
  253. "senator_rank": "senior",
  254. "senator_rank_label": "Senior",
  255. "startdate": "2013-01-03",
  256. "state": "NJ",
  257. "title": "Sen.",
  258. "title_long": "Senator",
  259. "website": "https://www.menendez.senate.gov"
  260. },
  261. {
  262. "caucus": "Democrat",
  263. "congress_numbers": [
  264. 113,
  265. 114,
  266. 115
  267. ],
  268. "current": true,
  269. "description": "Junior Senator for Vermont",
  270. "district": null,
  271. "enddate": "2019-01-03",
  272. "extra": {
  273. "address": "332 Dirksen Senate Office Building Washington DC 20510",
  274. "contact_form": "http://www.sanders.senate.gov/contact/",
  275. "fax": "202-228-0776",
  276. "office": "332 Dirksen Senate Office Building",
  277. "rss_url": "http://www.sanders.senate.gov/rss/"
  278. },
  279. "leadership_title": null,
  280. "party": "Independent",
  281. "person": {
  282. "bioguideid": "S000033",
  283. "birthday": "1941-09-08",
  284. "cspanid": 994,
  285. "firstname": "Bernard",
  286. "gender": "male",
  287. "gender_label": "Male",
  288. "lastname": "Sanders",
  289. "link": "https://www.govtrack.us/congress/members/bernard_sanders/400357",
  290. "middlename": "",
  291. "name": "Sen. Bernard “Bernie” Sanders [I-VT]",
  292. "namemod": "",
  293. "nickname": "Bernie",
  294. "osid": "N00000528",
  295. "pvsid": "27110",
  296. "sortname": "Sanders, Bernard “Bernie” (Sen.) [I-VT]",
  297. "twitterid": "SenSanders",
  298. "youtubeid": "senatorsanders"
  299. },
  300. "phone": "202-224-5141",
  301. "role_type": "senator",
  302. "role_type_label": "Senator",
  303. "senator_class": "class1",
  304. "senator_class_label": "Class 1",
  305. "senator_rank": "junior",
  306. "senator_rank_label": "Junior",
  307. "startdate": "2013-01-03",
  308. "state": "VT",
  309. "title": "Sen.",
  310. "title_long": "Senator",
  311. "website": "https://www.sanders.senate.gov"
  312. },
  313. {
  314. "caucus": null,
  315. "congress_numbers": [
  316. 113,
  317. 114,
  318. 115
  319. ],
  320. "current": true,
  321. "description": "Junior Senator for Washington",
  322. "district": null,
  323. "enddate": "2019-01-03",
  324. "extra": {
  325. "address": "511 Hart Senate Office Building Washington DC 20510",
  326. "contact_form": "http://www.cantwell.senate.gov/public/index.cfm/email-maria",
  327. "fax": "202-228-0514",
  328. "office": "511 Hart Senate Office Building",
  329. "rss_url": "http://www.cantwell.senate.gov/public/index.cfm/rss/feed"
  330. },
  331. "leadership_title": null,
  332. "party": "Democrat",
  333. "person": {
  334. "bioguideid": "C000127",
  335. "birthday": "1958-10-13",
  336. "cspanid": 26137,
  337. "firstname": "Maria",
  338. "gender": "female",
  339. "gender_label": "Female",
  340. "lastname": "Cantwell",
  341. "link": "https://www.govtrack.us/congress/members/maria_cantwell/300018",
  342. "middlename": "",
  343. "name": "Sen. Maria Cantwell [D-WA]",
  344. "namemod": "",
  345. "nickname": "",
  346. "osid": "N00007836",
  347. "pvsid": "27122",
  348. "sortname": "Cantwell, Maria (Sen.) [D-WA]",
  349. "twitterid": "SenatorCantwell",
  350. "youtubeid": "SenatorCantwell"
  351. },
  352. "phone": "202-224-3441",
  353. "role_type": "senator",
  354. "role_type_label": "Senator",
  355. "senator_class": "class1",
  356. "senator_class_label": "Class 1",
  357. "senator_rank": "junior",
  358. "senator_rank_label": "Junior",
  359. "startdate": "2013-01-03",
  360. "state": "WA",
  361. "title": "Sen.",
  362. "title_long": "Senator",
  363. "website": "https://www.cantwell.senate.gov"
  364. },
  365. {
  366. "caucus": null,
  367. "congress_numbers": [
  368. 113,
  369. 114,
  370. 115
  371. ],
  372. "current": true,
  373. "description": "Senior Senator for Delaware",
  374. "district": null,
  375. "enddate": "2019-01-03",
  376. "extra": {
  377. "address": "513 Hart Senate Office Building Washington DC 20510",
  378. "contact_form": "http://www.carper.senate.gov/public/index.cfm/email-senator-carper",
  379. "fax": "202-228-2190",
  380. "office": "513 Hart Senate Office Building",
  381. "rss_url": "http://www.carper.senate.gov/public/index.cfm/rss/feed"
  382. },
  383. "leadership_title": null,
  384. "party": "Democrat",
  385. "person": {
  386. "bioguideid": "C000174",
  387. "birthday": "1947-01-23",
  388. "cspanid": 663,
  389. "firstname": "Thomas",
  390. "gender": "male",
  391. "gender_label": "Male",
  392. "lastname": "Carper",
  393. "link": "https://www.govtrack.us/congress/members/thomas_carper/300019",
  394. "middlename": "Richard",
  395. "name": "Sen. Thomas Carper [D-DE]",
  396. "namemod": "",
  397. "nickname": "",
  398. "osid": "N00012508",
  399. "pvsid": "22421",
  400. "sortname": "Carper, Thomas (Sen.) [D-DE]",
  401. "twitterid": "SenatorCarper",
  402. "youtubeid": "senatorcarper"
  403. },
  404. "phone": "202-224-2441",
  405. "role_type": "senator",
  406. "role_type_label": "Senator",
  407. "senator_class": "class1",
  408. "senator_class_label": "Class 1",
  409. "senator_rank": "senior",
  410. "senator_rank_label": "Senior",
  411. "startdate": "2013-01-03",
  412. "state": "DE",
  413. "title": "Sen.",
  414. "title_long": "Senator",
  415. "website": "https://www.carper.senate.gov/public"
  416. },
  417. {
  418. "caucus": null,
  419. "congress_numbers": [
  420. 113,
  421. 114,
  422. 115
  423. ],
  424. "current": true,
  425. "description": "Senior Senator for California",
  426. "district": null,
  427. "enddate": "2019-01-03",
  428. "extra": {
  429. "address": "331 Hart Senate Office Building Washington DC 20510",
  430. "contact_form": "https://www.feinstein.senate.gov/public/index.cfm/e-mail-me",
  431. "fax": "202-228-3954",
  432. "office": "331 Hart Senate Office Building",
  433. "rss_url": "http://www.feinstein.senate.gov/public/?a=rss.feed"
  434. },
  435. "leadership_title": null,
  436. "party": "Democrat",
  437. "person": {
  438. "bioguideid": "F000062",
  439. "birthday": "1933-06-22",
  440. "cspanid": 13061,
  441. "firstname": "Dianne",
  442. "gender": "female",
  443. "gender_label": "Female",
  444. "lastname": "Feinstein",
  445. "link": "https://www.govtrack.us/congress/members/dianne_feinstein/300043",
  446. "middlename": "",
  447. "name": "Sen. Dianne Feinstein [D-CA]",
  448. "namemod": "",
  449. "nickname": "",
  450. "osid": "N00007364",
  451. "pvsid": "53273",
  452. "sortname": "Feinstein, Dianne (Sen.) [D-CA]",
  453. "twitterid": "SenFeinstein",
  454. "youtubeid": "SenatorFeinstein"
  455. },
  456. "phone": "202-224-3841",
  457. "role_type": "senator",
  458. "role_type_label": "Senator",
  459. "senator_class": "class1",
  460. "senator_class_label": "Class 1",
  461. "senator_rank": "senior",
  462. "senator_rank_label": "Senior",
  463. "startdate": "2013-01-03",
  464. "state": "CA",
  465. "title": "Sen.",
  466. "title_long": "Senator",
  467. "website": "https://www.feinstein.senate.gov"
  468. },
  469. {
  470. "caucus": null,
  471. "congress_numbers": [
  472. 113,
  473. 114,
  474. 115
  475. ],
  476. "current": true,
  477. "description": "Senior Senator for Utah",
  478. "district": null,
  479. "enddate": "2019-01-03",
  480. "extra": {
  481. "address": "104 Hart Senate Office Building Washington DC 20510",
  482. "contact_form": "http://www.hatch.senate.gov/public/index.cfm/contact?p=Email-Orrin",
  483. "fax": "202-224-6331",
  484. "office": "104 Hart Senate Office Building",
  485. "rss_url": "http://www.hatch.senate.gov/public/index.cfm/rss/feed"
  486. },
  487. "leadership_title": null,
  488. "party": "Republican",
  489. "person": {
  490. "bioguideid": "H000338",
  491. "birthday": "1934-03-22",
  492. "cspanid": 189,
  493. "firstname": "Orrin",
  494. "gender": "male",
  495. "gender_label": "Male",
  496. "lastname": "Hatch",
  497. "link": "https://www.govtrack.us/congress/members/orrin_hatch/300052",
  498. "middlename": "G.",
  499. "name": "Sen. Orrin Hatch [R-UT]",
  500. "namemod": "",
  501. "nickname": "",
  502. "osid": "N00009869",
  503. "pvsid": "53352",
  504. "sortname": "Hatch, Orrin (Sen.) [R-UT]",
  505. "twitterid": "SenOrrinHatch",
  506. "youtubeid": "SenatorOrrinHatch"
  507. },
  508. "phone": "202-224-5251",
  509. "role_type": "senator",
  510. "role_type_label": "Senator",
  511. "senator_class": "class1",
  512. "senator_class_label": "Class 1",
  513. "senator_rank": "senior",
  514. "senator_rank_label": "Senior",
  515. "startdate": "2013-01-03",
  516. "state": "UT",
  517. "title": "Sen.",
  518. "title_long": "Senator",
  519. "website": "https://www.hatch.senate.gov"
  520. },
  521. {
  522. "caucus": null,
  523. "congress_numbers": [
  524. 113,
  525. 114,
  526. 115
  527. ],
  528. "current": true,
  529. "description": "Senior Senator for Florida",
  530. "district": null,
  531. "enddate": "2019-01-03",
  532. "extra": {
  533. "address": "716 Hart Senate Office Building Washington DC 20510",
  534. "contact_form": "https://www.billnelson.senate.gov/contact-bill",
  535. "fax": "202-228-2183",
  536. "office": "716 Hart Senate Office Building"
  537. },
  538. "leadership_title": null,
  539. "party": "Democrat",
  540. "person": {
  541. "bioguideid": "N000032",
  542. "birthday": "1942-09-29",
  543. "cspanid": 1931,
  544. "firstname": "Bill",
  545. "gender": "male",
  546. "gender_label": "Male",
  547. "lastname": "Nelson",
  548. "link": "https://www.govtrack.us/congress/members/bill_nelson/300078",
  549. "middlename": "",
  550. "name": "Sen. Bill Nelson [D-FL]",
  551. "namemod": "",
  552. "nickname": "",
  553. "osid": "N00009926",
  554. "pvsid": "1606",
  555. "sortname": "Nelson, Bill (Sen.) [D-FL]",
  556. "twitterid": "SenBillNelson",
  557. "youtubeid": "senbillnelson"
  558. },
  559. "phone": "202-224-5274",
  560. "role_type": "senator",
  561. "role_type_label": "Senator",
  562. "senator_class": "class1",
  563. "senator_class_label": "Class 1",
  564. "senator_rank": "senior",
  565. "senator_rank_label": "Senior",
  566. "startdate": "2013-01-03",
  567. "state": "FL",
  568. "title": "Sen.",
  569. "title_long": "Senator",
  570. "website": "https://www.billnelson.senate.gov"
  571. },
  572. {
  573. "caucus": null,
  574. "congress_numbers": [
  575. 113,
  576. 114,
  577. 115
  578. ],
  579. "current": true,
  580. "description": "Senior Senator for Michigan",
  581. "district": null,
  582. "enddate": "2019-01-03",
  583. "extra": {
  584. "address": "731 Hart Senate Office Building Washington DC 20510",
  585. "contact_form": "https://www.stabenow.senate.gov/contact",
  586. "fax": "202-228-0325",
  587. "office": "731 Hart Senate Office Building",
  588. "rss_url": "http://stabenow.senate.gov/rss/?p=news"
  589. },
  590. "leadership_title": null,
  591. "party": "Democrat",
  592. "person": {
  593. "bioguideid": "S000770",
  594. "birthday": "1950-04-29",
  595. "cspanid": 45451,
  596. "firstname": "Debbie",
  597. "gender": "female",
  598. "gender_label": "Female",
  599. "lastname": "Stabenow",
  600. "link": "https://www.govtrack.us/congress/members/debbie_stabenow/300093",
  601. "middlename": "Ann",
  602. "name": "Sen. Debbie Stabenow [D-MI]",
  603. "namemod": "",
  604. "nickname": "",
  605. "osid": "N00004118",
  606. "pvsid": "515",
  607. "sortname": "Stabenow, Debbie (Sen.) [D-MI]",
  608. "twitterid": "SenStabenow",
  609. "youtubeid": "senatorstabenow"
  610. },
  611. "phone": "202-224-4822",
  612. "role_type": "senator",
  613. "role_type_label": "Senator",
  614. "senator_class": "class1",
  615. "senator_class_label": "Class 1",
  616. "senator_rank": "senior",
  617. "senator_rank_label": "Senior",
  618. "startdate": "2013-01-03",
  619. "state": "MI",
  620. "title": "Sen.",
  621. "title_long": "Senator",
  622. "website": "https://www.stabenow.senate.gov"
  623. },
  624. {
  625. "caucus": null,
  626. "congress_numbers": [
  627. 113,
  628. 114,
  629. 115
  630. ],
  631. "current": true,
  632. "description": "Junior Senator for Connecticut",
  633. "district": null,
  634. "enddate": "2019-01-03",
  635. "extra": {
  636. "address": "136 Hart Senate Office Building Washington DC 20510",
  637. "contact_form": "http://www.murphy.senate.gov/contact",
  638. "fax": "202-225-5933",
  639. "office": "136 Hart Senate Office Building",
  640. "rss_url": "http://www.theday.com/article/20121216/nws12/312169935/1069/rss"
  641. },
  642. "leadership_title": null,
  643. "party": "Democrat",
  644. "person": {
  645. "bioguideid": "M001169",
  646. "birthday": "1973-08-03",
  647. "cspanid": 1021270,
  648. "firstname": "Christopher",
  649. "gender": "male",
  650. "gender_label": "Male",
  651. "lastname": "Murphy",
  652. "link": "https://www.govtrack.us/congress/members/christopher_murphy/412194",
  653. "middlename": "S.",
  654. "name": "Sen. Christopher Murphy [D-CT]",
  655. "namemod": "",
  656. "nickname": "",
  657. "osid": "N00027566",
  658. "pvsid": "17189",
  659. "sortname": "Murphy, Christopher (Sen.) [D-CT]",
  660. "twitterid": "senmurphyoffice",
  661. "youtubeid": "senchrismurphy"
  662. },
  663. "phone": "202-224-4041",
  664. "role_type": "senator",
  665. "role_type_label": "Senator",
  666. "senator_class": "class1",
  667. "senator_class_label": "Class 1",
  668. "senator_rank": "junior",
  669. "senator_rank_label": "Junior",
  670. "startdate": "2013-01-03",
  671. "state": "CT",
  672. "title": "Sen.",
  673. "title_long": "Senator",
  674. "website": "https://www.murphy.senate.gov"
  675. },
  676. {
  677. "caucus": null,
  678. "congress_numbers": [
  679. 113,
  680. 114,
  681. 115
  682. ],
  683. "current": true,
  684. "description": "Junior Senator for Hawaii",
  685. "district": null,
  686. "enddate": "2019-01-03",
  687. "extra": {
  688. "address": "730 Hart Senate Office Building Washington DC 20510",
  689. "contact_form": "https://www.hirono.senate.gov/contact",
  690. "fax": "202-225-4987",
  691. "office": "730 Hart Senate Office Building",
  692. "rss_url": "http://www.hirono.senate.gov/rss/feeds/?type=all"
  693. },
  694. "leadership_title": null,
  695. "party": "Democrat",
  696. "person": {
  697. "bioguideid": "H001042",
  698. "birthday": "1947-11-03",
  699. "cspanid": 91216,
  700. "firstname": "Mazie",
  701. "gender": "female",
  702. "gender_label": "Female",
  703. "lastname": "Hirono",
  704. "link": "https://www.govtrack.us/congress/members/mazie_hirono/412200",
  705. "middlename": "K.",
  706. "name": "Sen. Mazie Hirono [D-HI]",
  707. "namemod": "",
  708. "nickname": "",
  709. "osid": "N00028139",
  710. "pvsid": "1677",
  711. "sortname": "Hirono, Mazie (Sen.) [D-HI]",
  712. "twitterid": "MazieHirono",
  713. "youtubeid": "CongresswomanHirono"
  714. },
  715. "phone": "202-224-6361",
  716. "role_type": "senator",
  717. "role_type_label": "Senator",
  718. "senator_class": "class1",
  719. "senator_class_label": "Class 1",
  720. "senator_rank": "junior",
  721. "senator_rank_label": "Junior",
  722. "startdate": "2013-01-03",
  723. "state": "HI",
  724. "title": "Sen.",
  725. "title_long": "Senator",
  726. "website": "https://www.hirono.senate.gov"
  727. },
  728. {
  729. "caucus": null,
  730. "congress_numbers": [
  731. 113,
  732. 114,
  733. 115
  734. ],
  735. "current": true,
  736. "description": "Senior Senator for Indiana",
  737. "district": null,
  738. "enddate": "2019-01-03",
  739. "extra": {
  740. "address": "720 Hart Senate Office Building Washington DC 20510",
  741. "contact_form": "https://www.donnelly.senate.gov/contact/email-joe",
  742. "fax": "202-225-6798",
  743. "office": "720 Hart Senate Office Building",
  744. "rss_url": "http://www.donnelly.senate.gov/rss/feeds/?type=all"
  745. },
  746. "leadership_title": null,
  747. "party": "Democrat",
  748. "person": {
  749. "bioguideid": "D000607",
  750. "birthday": "1955-09-28",
  751. "cspanid": 1012000,
  752. "firstname": "Joe",
  753. "gender": "male",
  754. "gender_label": "Male",
  755. "lastname": "Donnelly",
  756. "link": "https://www.govtrack.us/congress/members/joe_donnelly/412205",
  757. "middlename": "",
  758. "name": "Sen. Joe Donnelly [D-IN]",
  759. "namemod": "",
  760. "nickname": "",
  761. "osid": "N00026586",
  762. "pvsid": "34212",
  763. "sortname": "Donnelly, Joe (Sen.) [D-IN]",
  764. "twitterid": "SenDonnelly",
  765. "youtubeid": "sendonnelly"
  766. },
  767. "phone": "202-224-4814",
  768. "role_type": "senator",
  769. "role_type_label": "Senator",
  770. "senator_class": "class1",
  771. "senator_class_label": "Class 1",
  772. "senator_rank": "senior",
  773. "senator_rank_label": "Senior",
  774. "startdate": "2013-01-03",
  775. "state": "IN",
  776. "title": "Sen.",
  777. "title_long": "Senator",
  778. "website": "https://www.donnelly.senate.gov"
  779. },
  780. {
  781. "caucus": null,
  782. "congress_numbers": [
  783. 113,
  784. 114,
  785. 115
  786. ],
  787. "current": true,
  788. "description": "Senior Senator for Nevada",
  789. "district": null,
  790. "enddate": "2019-01-03",
  791. "extra": {
  792. "address": "324 Hart Senate Office Building Washington DC 20510",
  793. "contact_form": "http://www.heller.senate.gov/public/index.cfm/contact-form",
  794. "fax": "202-228-6753",
  795. "office": "324 Hart Senate Office Building",
  796. "rss_url": "http://www.heller.senate.gov/public/index.cfm/rss/feed"
  797. },
  798. "leadership_title": null,
  799. "party": "Republican",
  800. "person": {
  801. "bioguideid": "H001041",
  802. "birthday": "1960-05-10",
  803. "cspanid": 1012368,
  804. "firstname": "Dean",
  805. "gender": "male",
  806. "gender_label": "Male",
  807. "lastname": "Heller",
  808. "link": "https://www.govtrack.us/congress/members/dean_heller/412218",
  809. "middlename": "",
  810. "name": "Sen. Dean Heller [R-NV]",
  811. "namemod": "",
  812. "nickname": "",
  813. "osid": "N00027522",
  814. "pvsid": "2291",
  815. "sortname": "Heller, Dean (Sen.) [R-NV]",
  816. "twitterid": "SenDeanHeller",
  817. "youtubeid": "SenDeanHeller"
  818. },
  819. "phone": "202-224-6244",
  820. "role_type": "senator",
  821. "role_type_label": "Senator",
  822. "senator_class": "class1",
  823. "senator_class_label": "Class 1",
  824. "senator_rank": "senior",
  825. "senator_rank_label": "Senior",
  826. "startdate": "2013-01-03",
  827. "state": "NV",
  828. "title": "Sen.",
  829. "title_long": "Senator",
  830. "website": "https://www.heller.senate.gov/public"
  831. },
  832. {
  833. "caucus": null,
  834. "congress_numbers": [
  835. 113,
  836. 114,
  837. 115
  838. ],
  839. "current": true,
  840. "description": "Junior Senator for New York",
  841. "district": null,
  842. "enddate": "2019-01-03",
  843. "extra": {
  844. "address": "478 Russell Senate Office Building Washington DC 20510",
  845. "contact_form": "https://www.gillibrand.senate.gov/contact/email-me",
  846. "fax": "202-228-0282",
  847. "office": "478 Russell Senate Office Building",
  848. "rss_url": "http://www.gillibrand.senate.gov/rss/"
  849. },
  850. "leadership_title": null,
  851. "party": "Democrat",
  852. "person": {
  853. "bioguideid": "G000555",
  854. "birthday": "1966-12-09",
  855. "cspanid": 1022862,
  856. "firstname": "Kirsten",
  857. "gender": "female",
  858. "gender_label": "Female",
  859. "lastname": "Gillibrand",
  860. "link": "https://www.govtrack.us/congress/members/kirsten_gillibrand/412223",
  861. "middlename": "E.",
  862. "name": "Sen. Kirsten Gillibrand [D-NY]",
  863. "namemod": "",
  864. "nickname": "",
  865. "osid": "N00027658",
  866. "pvsid": "65147",
  867. "sortname": "Gillibrand, Kirsten (Sen.) [D-NY]",
  868. "twitterid": "SenGillibrand",
  869. "youtubeid": "KirstenEGillibrand"
  870. },
  871. "phone": "202-224-4451",
  872. "role_type": "senator",
  873. "role_type_label": "Senator",
  874. "senator_class": "class1",
  875. "senator_class_label": "Class 1",
  876. "senator_rank": "junior",
  877. "senator_rank_label": "Junior",
  878. "startdate": "2013-01-03",
  879. "state": "NY",
  880. "title": "Sen.",
  881. "title_long": "Senator",
  882. "website": "https://www.gillibrand.senate.gov"
  883. },
  884. {
  885. "caucus": null,
  886. "congress_numbers": [
  887. 113,
  888. 114,
  889. 115
  890. ],
  891. "current": true,
  892. "description": "Senior Senator for Minnesota",
  893. "district": null,
  894. "enddate": "2019-01-03",
  895. "extra": {
  896. "address": "302 Hart Senate Office Building Washington DC 20510",
  897. "contact_form": "http://www.klobuchar.senate.gov/public/index.cfm/contact",
  898. "fax": "202-228-2186",
  899. "office": "302 Hart Senate Office Building"
  900. },
  901. "leadership_title": null,
  902. "party": "Democrat",
  903. "person": {
  904. "bioguideid": "K000367",
  905. "birthday": "1960-05-25",
  906. "cspanid": 83701,
  907. "firstname": "Amy",
  908. "gender": "female",
  909. "gender_label": "Female",
  910. "lastname": "Klobuchar",
  911. "link": "https://www.govtrack.us/congress/members/amy_klobuchar/412242",
  912. "middlename": "Jean",
  913. "name": "Sen. Amy Klobuchar [D-MN]",
  914. "namemod": "",
  915. "nickname": "",
  916. "osid": "N00027500",
  917. "pvsid": "65092",
  918. "sortname": "Klobuchar, Amy (Sen.) [D-MN]",
  919. "twitterid": "SenAmyKlobuchar",
  920. "youtubeid": "senatorklobuchar"
  921. },
  922. "phone": "202-224-3244",
  923. "role_type": "senator",
  924. "role_type_label": "Senator",
  925. "senator_class": "class1",
  926. "senator_class_label": "Class 1",
  927. "senator_rank": "senior",
  928. "senator_rank_label": "Senior",
  929. "startdate": "2013-01-03",
  930. "state": "MN",
  931. "title": "Sen.",
  932. "title_long": "Senator",
  933. "website": "https://www.klobuchar.senate.gov"
  934. },
  935. {
  936. "caucus": null,
  937. "congress_numbers": [
  938. 113,
  939. 114,
  940. 115
  941. ],
  942. "current": true,
  943. "description": "Senior Senator for Missouri",
  944. "district": null,
  945. "enddate": "2019-01-03",
  946. "extra": {
  947. "address": "503 Hart Senate Office Building Washington DC 20510",
  948. "contact_form": "http://www.mccaskill.senate.gov/contact",
  949. "fax": "202-228-6326",
  950. "office": "503 Hart Senate Office Building",
  951. "rss_url": "http://mccaskill.senate.gov/rss/?p=news"
  952. },
  953. "leadership_title": null,
  954. "party": "Democrat",
  955. "person": {
  956. "bioguideid": "M001170",
  957. "birthday": "1953-07-24",
  958. "cspanid": 44501,
  959. "firstname": "Claire",
  960. "gender": "female",
  961. "gender_label": "Female",
  962. "lastname": "McCaskill",
  963. "link": "https://www.govtrack.us/congress/members/claire_mccaskill/412243",
  964. "middlename": "",
  965. "name": "Sen. Claire McCaskill [D-MO]",
  966. "namemod": "",
  967. "nickname": "",
  968. "osid": "N00027694",
  969. "pvsid": "2109",
  970. "sortname": "McCaskill, Claire (Sen.) [D-MO]",
  971. "twitterid": "McCaskillOffice",
  972. "youtubeid": "SenatorMcCaskill"
  973. },
  974. "phone": "202-224-6154",
  975. "role_type": "senator",
  976. "role_type_label": "Senator",
  977. "senator_class": "class1",
  978. "senator_class_label": "Class 1",
  979. "senator_rank": "senior",
  980. "senator_rank_label": "Senior",
  981. "startdate": "2013-01-03",
  982. "state": "MO",
  983. "title": "Sen.",
  984. "title_long": "Senator",
  985. "website": "https://www.mccaskill.senate.gov"
  986. },
  987. {
  988. "caucus": null,
  989. "congress_numbers": [
  990. 113,
  991. 114,
  992. 115
  993. ],
  994. "current": true,
  995. "description": "Senior Senator for Montana",
  996. "district": null,
  997. "enddate": "2019-01-03",
  998. "extra": {
  999. "address": "311 Hart Senate Office Building Washington DC 20510",
  1000. "contact_form": "https://www.tester.senate.gov/?p=email_senator",
  1001. "fax": "202-224-8594",
  1002. "office": "311 Hart Senate Office Building",
  1003. "rss_url": "http://www.tester.senate.gov/rss/?p=hot_topic"
  1004. },
  1005. "leadership_title": null,
  1006. "party": "Democrat",
  1007. "person": {
  1008. "bioguideid": "T000464",
  1009. "birthday": "1956-08-21",
  1010. "cspanid": 1020176,
  1011. "firstname": "Jon",
  1012. "gender": "male",
  1013. "gender_label": "Male",
  1014. "lastname": "Tester",
  1015. "link": "https://www.govtrack.us/congress/members/jon_tester/412244",
  1016. "middlename": "",
  1017. "name": "Sen. Jon Tester [D-MT]",
  1018. "namemod": "",
  1019. "nickname": "",
  1020. "osid": "N00027605",
  1021. "pvsid": "20928",
  1022. "sortname": "Tester, Jon (Sen.) [D-MT]",
  1023. "twitterid": "SenatorTester",
  1024. "youtubeid": "senatorjontester"
  1025. },
  1026. "phone": "202-224-2644",
  1027. "role_type": "senator",
  1028. "role_type_label": "Senator",
  1029. "senator_class": "class1",
  1030. "senator_class_label": "Class 1",
  1031. "senator_rank": "senior",
  1032. "senator_rank_label": "Senior",
  1033. "startdate": "2013-01-03",
  1034. "state": "MT",
  1035. "title": "Sen.",
  1036. "title_long": "Senator",
  1037. "website": "https://www.tester.senate.gov"
  1038. },
  1039. {
  1040. "caucus": null,
  1041. "congress_numbers": [
  1042. 113,
  1043. 114,
  1044. 115
  1045. ],
  1046. "current": true,
  1047. "description": "Senior Senator for Pennsylvania",
  1048. "district": null,
  1049. "enddate": "2019-01-03",
  1050. "extra": {
  1051. "address": "393 Russell Senate Office Building Washington DC 20510",
  1052. "contact_form": "https://www.casey.senate.gov/contact/",
  1053. "fax": "202-228-0604",
  1054. "office": "393 Russell Senate Office Building",
  1055. "rss_url": "http://www.casey.senate.gov/rss/feeds/?all"
  1056. },
  1057. "leadership_title": null,
  1058. "party": "Democrat",
  1059. "person": {
  1060. "bioguideid": "C001070",
  1061. "birthday": "1960-04-13",
  1062. "cspanid": 47036,
  1063. "firstname": "Robert",
  1064. "gender": "male",
  1065. "gender_label": "Male",
  1066. "lastname": "Casey",
  1067. "link": "https://www.govtrack.us/congress/members/robert_casey/412246",
  1068. "middlename": "P.",
  1069. "name": "Sen. Robert “Bob” Casey [D-PA]",
  1070. "namemod": "Jr.",
  1071. "nickname": "Bob",
  1072. "osid": "N00027503",
  1073. "pvsid": "2541",
  1074. "sortname": "Casey, Robert “Bob” (Sen.) [D-PA]",
  1075. "twitterid": "SenBobCasey",
  1076. "youtubeid": "SenatorBobCasey"
  1077. },
  1078. "phone": "202-224-6324",
  1079. "role_type": "senator",
  1080. "role_type_label": "Senator",
  1081. "senator_class": "class1",
  1082. "senator_class_label": "Class 1",
  1083. "senator_rank": "senior",
  1084. "senator_rank_label": "Senior",
  1085. "startdate": "2013-01-03",
  1086. "state": "PA",
  1087. "title": "Sen.",
  1088. "title_long": "Senator",
  1089. "website": "https://www.casey.senate.gov"
  1090. },
  1091. {
  1092. "caucus": null,
  1093. "congress_numbers": [
  1094. 113,
  1095. 114,
  1096. 115
  1097. ],
  1098. "current": true,
  1099. "description": "Junior Senator for Rhode Island",
  1100. "district": null,
  1101. "enddate": "2019-01-03",
  1102. "extra": {
  1103. "address": "530 Hart Senate Office Building Washington DC 20510",
  1104. "contact_form": "https://www.whitehouse.senate.gov/contact/email-sheldon",
  1105. "fax": "202-228-6362",
  1106. "office": "530 Hart Senate Office Building",
  1107. "rss_url": "http://www.whitehouse.senate.gov/rss/feeds/?type=all&cachebuster=1"
  1108. },
  1109. "leadership_title": null,
  1110. "party": "Democrat",
  1111. "person": {
  1112. "bioguideid": "W000802",
  1113. "birthday": "1955-10-20",
  1114. "cspanid": 92235,
  1115. "firstname": "Sheldon",
  1116. "gender": "male",
  1117. "gender_label": "Male",
  1118. "lastname": "Whitehouse",
  1119. "link": "https://www.govtrack.us/congress/members/sheldon_whitehouse/412247",
  1120. "middlename": "",
  1121. "name": "Sen. Sheldon Whitehouse [D-RI]",
  1122. "namemod": "",
  1123. "nickname": "",
  1124. "osid": "N00027533",
  1125. "pvsid": "2572",
  1126. "sortname": "Whitehouse, Sheldon (Sen.) [D-RI]",
  1127. "twitterid": "SenWhitehouse",
  1128. "youtubeid": "SenatorWhitehouse"
  1129. },
  1130. "phone": "202-224-2921",
  1131. "role_type": "senator",
  1132. "role_type_label": "Senator",
  1133. "senator_class": "class1",
  1134. "senator_class_label": "Class 1",
  1135. "senator_rank": "junior",
  1136. "senator_rank_label": "Junior",
  1137. "startdate": "2013-01-03",
  1138. "state": "RI",
  1139. "title": "Sen.",
  1140. "title_long": "Senator",
  1141. "website": "https://www.whitehouse.senate.gov"
  1142. },
  1143. {
  1144. "caucus": null,
  1145. "congress_numbers": [
  1146. 113,
  1147. 114,
  1148. 115
  1149. ],
  1150. "current": true,
  1151. "description": "Junior Senator for Tennessee",
  1152. "district": null,
  1153. "enddate": "2019-01-03",
  1154. "extra": {
  1155. "address": "425 Dirksen Senate Office Building Washington DC 20510",
  1156. "contact_form": "https://www.corker.senate.gov/public/index.cfm/emailme",
  1157. "fax": "202-228-0566",
  1158. "office": "425 Dirksen Senate Office Building",
  1159. "rss_url": "http://www.corker.senate.gov/public/index.cfm/rss/feed"
  1160. },
  1161. "leadership_title": null,
  1162. "party": "Republican",
  1163. "person": {
  1164. "bioguideid": "C001071",
  1165. "birthday": "1952-08-24",
  1166. "cspanid": 1021114,
  1167. "firstname": "Bob",
  1168. "gender": "male",
  1169. "gender_label": "Male",
  1170. "lastname": "Corker",
  1171. "link": "https://www.govtrack.us/congress/members/bob_corker/412248",
  1172. "middlename": "",
  1173. "name": "Sen. Bob Corker [R-TN]",
  1174. "namemod": "",
  1175. "nickname": "",
  1176. "osid": "N00027441",
  1177. "pvsid": "65905",
  1178. "sortname": "Corker, Bob (Sen.) [R-TN]",
  1179. "twitterid": "SenBobCorker",
  1180. "youtubeid": "senatorcorker"
  1181. },
  1182. "phone": "202-224-3344",
  1183. "role_type": "senator",
  1184. "role_type_label": "Senator",
  1185. "senator_class": "class1",
  1186. "senator_class_label": "Class 1",
  1187. "senator_rank": "junior",
  1188. "senator_rank_label": "Junior",
  1189. "startdate": "2013-01-03",
  1190. "state": "TN",
  1191. "title": "Sen.",
  1192. "title_long": "Senator",
  1193. "website": "https://www.corker.senate.gov"
  1194. },
  1195. {
  1196. "caucus": null,
  1197. "congress_numbers": [
  1198. 113,
  1199. 114,
  1200. 115
  1201. ],
  1202. "current": true,
  1203. "description": "Junior Senator for Wyoming",
  1204. "district": null,
  1205. "enddate": "2019-01-03",
  1206. "extra": {
  1207. "address": "307 Dirksen Senate Office Building Washington DC 20510",
  1208. "contact_form": "https://www.barrasso.senate.gov/public/index.cfm/contact-form",
  1209. "fax": "202-224-1724",
  1210. "office": "307 Dirksen Senate Office Building",
  1211. "rss_url": "http://www.barrasso.senate.gov/public/index.cfm?FuseAction=Rss.Feed"
  1212. },
  1213. "leadership_title": null,
  1214. "party": "Republican",
  1215. "person": {
  1216. "bioguideid": "B001261",
  1217. "birthday": "1952-07-21",
  1218. "cspanid": 1024777,
  1219. "firstname": "John",
  1220. "gender": "male",
  1221. "gender_label": "Male",
  1222. "lastname": "Barrasso",
  1223. "link": "https://www.govtrack.us/congress/members/john_barrasso/412251",
  1224. "middlename": "A.",
  1225. "name": "Sen. John Barrasso [R-WY]",
  1226. "namemod": "",
  1227. "nickname": "",
  1228. "osid": "N00006236",
  1229. "pvsid": "52662",
  1230. "sortname": "Barrasso, John (Sen.) [R-WY]",
  1231. "twitterid": "SenJohnBarrasso",
  1232. "youtubeid": "barrassowyo"
  1233. },
  1234. "phone": "202-224-6441",
  1235. "role_type": "senator",
  1236. "role_type_label": "Senator",
  1237. "senator_class": "class1",
  1238. "senator_class_label": "Class 1",
  1239. "senator_rank": "junior",
  1240. "senator_rank_label": "Junior",
  1241. "startdate": "2013-01-03",
  1242. "state": "WY",
  1243. "title": "Sen.",
  1244. "title_long": "Senator",
  1245. "website": "https://www.barrasso.senate.gov"
  1246. },
  1247. {
  1248. "caucus": null,
  1249. "congress_numbers": [
  1250. 113,
  1251. 114,
  1252. 115
  1253. ],
  1254. "current": true,
  1255. "description": "Junior Senator for New Mexico",
  1256. "district": null,
  1257. "enddate": "2019-01-03",
  1258. "extra": {
  1259. "address": "303 Hart Senate Office Building Washington DC 20510",
  1260. "contact_form": "http://www.heinrich.senate.gov/contact",
  1261. "fax": "202-225-4975",
  1262. "office": "303 Hart Senate Office Building"
  1263. },
  1264. "leadership_title": null,
  1265. "party": "Democrat",
  1266. "person": {
  1267. "bioguideid": "H001046",
  1268. "birthday": "1971-10-17",
  1269. "cspanid": 1030686,
  1270. "firstname": "Martin",
  1271. "gender": "male",
  1272. "gender_label": "Male",
  1273. "lastname": "Heinrich",
  1274. "link": "https://www.govtrack.us/congress/members/martin_heinrich/412281",
  1275. "middlename": "",
  1276. "name": "Sen. Martin Heinrich [D-NM]",
  1277. "namemod": "",
  1278. "nickname": "",
  1279. "osid": "N00029835",
  1280. "pvsid": "74517",
  1281. "sortname": "Heinrich, Martin (Sen.) [D-NM]",
  1282. "twitterid": "MartinHeinrich",
  1283. "youtubeid": "SenMartinHeinrich"
  1284. },
  1285. "phone": "202-224-5521",
  1286. "role_type": "senator",
  1287. "role_type_label": "Senator",
  1288. "senator_class": "class1",
  1289. "senator_class_label": "Class 1",
  1290. "senator_rank": "junior",
  1291. "senator_rank_label": "Junior",
  1292. "startdate": "2013-01-03",
  1293. "state": "NM",
  1294. "title": "Sen.",
  1295. "title_long": "Senator",
  1296. "website": "https://www.heinrich.senate.gov"
  1297. },
  1298. {
  1299. "caucus": null,
  1300. "congress_numbers": [
  1301. 113,
  1302. 114,
  1303. 115
  1304. ],
  1305. "current": true,
  1306. "description": "Senior Senator for West Virginia",
  1307. "district": null,
  1308. "enddate": "2019-01-03",
  1309. "extra": {
  1310. "address": "306 Hart Senate Office Building Washington DC 20510",
  1311. "contact_form": "http://www.manchin.senate.gov/public/index.cfm/contact-form",
  1312. "fax": "202-228-0002",
  1313. "office": "306 Hart Senate Office Building",
  1314. "rss_url": "http://www.manchin.senate.gov/public/index.cfm/rss/feed"
  1315. },
  1316. "leadership_title": null,
  1317. "party": "Democrat",
  1318. "person": {
  1319. "bioguideid": "M001183",
  1320. "birthday": "1947-08-24",
  1321. "cspanid": 62864,
  1322. "firstname": "Joe",
  1323. "gender": "male",
  1324. "gender_label": "Male",
  1325. "lastname": "Manchin",
  1326. "link": "https://www.govtrack.us/congress/members/joe_manchin/412391",
  1327. "middlename": "",
  1328. "name": "Sen. Joe Manchin [D-WV]",
  1329. "namemod": "III",
  1330. "nickname": "",
  1331. "osid": "N00032838",
  1332. "pvsid": "7547",
  1333. "sortname": "Manchin, Joe (Sen.) [D-WV]",
  1334. "twitterid": "Sen_JoeManchin",
  1335. "youtubeid": "SenatorJoeManchin"
  1336. },
  1337. "phone": "202-224-3954",
  1338. "role_type": "senator",
  1339. "role_type_label": "Senator",
  1340. "senator_class": "class1",
  1341. "senator_class_label": "Class 1",
  1342. "senator_rank": "senior",
  1343. "senator_rank_label": "Senior",
  1344. "startdate": "2013-01-03",
  1345. "state": "WV",
  1346. "title": "Sen.",
  1347. "title_long": "Senator",
  1348. "website": "https://www.manchin.senate.gov"
  1349. },
  1350. {
  1351. "caucus": null,
  1352. "congress_numbers": [
  1353. 113,
  1354. 114,
  1355. 115
  1356. ],
  1357. "current": true,
  1358. "description": "Senior Senator for Massachusetts",
  1359. "district": null,
  1360. "enddate": "2019-01-03",
  1361. "extra": {
  1362. "address": "317 Hart Senate Office Building Washington DC 20510",
  1363. "contact_form": "https://www.warren.senate.gov/?p=email_senator",
  1364. "fax": "202-228-2072",
  1365. "office": "317 Hart Senate Office Building",
  1366. "rss_url": "http://www.warren.senate.gov/rss/?p=hot_topic"
  1367. },
  1368. "leadership_title": null,
  1369. "party": "Democrat",
  1370. "person": {
  1371. "bioguideid": "W000817",
  1372. "birthday": "1949-06-22",
  1373. "cspanid": 1023023,
  1374. "firstname": "Elizabeth",
  1375. "gender": "female",
  1376. "gender_label": "Female",
  1377. "lastname": "Warren",
  1378. "link": "https://www.govtrack.us/congress/members/elizabeth_warren/412542",
  1379. "middlename": "",
  1380. "name": "Sen. Elizabeth Warren [D-MA]",
  1381. "namemod": "",
  1382. "nickname": "",
  1383. "osid": "N00033492",
  1384. "pvsid": "141272",
  1385. "sortname": "Warren, Elizabeth (Sen.) [D-MA]",
  1386. "twitterid": "SenWarren",
  1387. "youtubeid": "senelizabethwarren"
  1388. },
  1389. "phone": "202-224-4543",
  1390. "role_type": "senator",
  1391. "role_type_label": "Senator",
  1392. "senator_class": "class1",
  1393. "senator_class_label": "Class 1",
  1394. "senator_rank": "senior",
  1395. "senator_rank_label": "Senior",
  1396. "startdate": "2013-01-03",
  1397. "state": "MA",
  1398. "title": "Sen.",
  1399. "title_long": "Senator",
  1400. "website": "https://www.warren.senate.gov"
  1401. },
  1402. {
  1403. "caucus": "Democrat",
  1404. "congress_numbers": [
  1405. 113,
  1406. 114,
  1407. 115
  1408. ],
  1409. "current": true,
  1410. "description": "Junior Senator for Maine",
  1411. "district": null,
  1412. "enddate": "2019-01-03",
  1413. "extra": {
  1414. "address": "133 Hart Senate Office Building Washington DC 20510",
  1415. "contact_form": "https://www.king.senate.gov/contact",
  1416. "fax": "202-224-1946",
  1417. "office": "133 Hart Senate Office Building",
  1418. "rss_url": "http://www.king.senate.gov/rss/feeds/?type=all"
  1419. },
  1420. "leadership_title": null,
  1421. "party": "Independent",
  1422. "person": {
  1423. "bioguideid": "K000383",
  1424. "birthday": "1944-03-31",
  1425. "cspanid": 37413,
  1426. "firstname": "Angus",
  1427. "gender": "male",
  1428. "gender_label": "Male",
  1429. "lastname": "King",
  1430. "link": "https://www.govtrack.us/congress/members/angus_king/412545",
  1431. "middlename": "",
  1432. "name": "Sen. Angus King [I-ME]",
  1433. "namemod": "",
  1434. "nickname": "",
  1435. "osid": "N00034580",
  1436. "pvsid": "22381",
  1437. "sortname": "King, Angus (Sen.) [I-ME]",
  1438. "twitterid": "SenAngusKing",
  1439. "youtubeid": "SenatorAngusKing"
  1440. },
  1441. "phone": "202-224-5344",
  1442. "role_type": "senator",
  1443. "role_type_label": "Senator",
  1444. "senator_class": "class1",
  1445. "senator_class_label": "Class 1",
  1446. "senator_rank": "junior",
  1447. "senator_rank_label": "Junior",
  1448. "startdate": "2013-01-03",
  1449. "state": "ME",
  1450. "title": "Sen.",
  1451. "title_long": "Senator",
  1452. "website": "https://www.king.senate.gov"
  1453. },
  1454. {
  1455. "caucus": null,
  1456. "congress_numbers": [
  1457. 113,
  1458. 114,
  1459. 115
  1460. ],
  1461. "current": true,
  1462. "description": "Junior Senator for North Dakota",
  1463. "district": null,
  1464. "enddate": "2019-01-03",
  1465. "extra": {
  1466. "address": "516 Hart Senate Office Building Washington DC 20510",
  1467. "contact_form": "http://www.heitkamp.senate.gov/public/index.cfm/contact",
  1468. "fax": "202-224-7776",
  1469. "office": "516 Hart Senate Office Building",
  1470. "rss_url": "http://www.heitkamp.senate.gov/public/index.cfm/rss/feed"
  1471. },
  1472. "leadership_title": null,
  1473. "party": "Democrat",
  1474. "person": {
  1475. "bioguideid": "H001069",
  1476. "birthday": "1955-10-30",
  1477. "cspanid": 95414,
  1478. "firstname": "Heidi",
  1479. "gender": "female",
  1480. "gender_label": "Female",
  1481. "lastname": "Heitkamp",
  1482. "link": "https://www.govtrack.us/congress/members/heidi_heitkamp/412554",
  1483. "middlename": "",
  1484. "name": "Sen. Heidi Heitkamp [D-ND]",
  1485. "namemod": "",
  1486. "nickname": "",
  1487. "osid": "N00033782",
  1488. "pvsid": "41716",
  1489. "sortname": "Heitkamp, Heidi (Sen.) [D-ND]",
  1490. "twitterid": "SenatorHeitkamp",
  1491. "youtubeid": "senatorheidiheitkamp"
  1492. },
  1493. "phone": "202-224-2043",
  1494. "role_type": "senator",
  1495. "role_type_label": "Senator",
  1496. "senator_class": "class1",
  1497. "senator_class_label": "Class 1",
  1498. "senator_rank": "junior",
  1499. "senator_rank_label": "Junior",
  1500. "startdate": "2013-01-03",
  1501. "state": "ND",
  1502. "title": "Sen.",
  1503. "title_long": "Senator",
  1504. "website": "https://www.heitkamp.senate.gov/public"
  1505. },
  1506. {
  1507. "caucus": null,
  1508. "congress_numbers": [
  1509. 113,
  1510. 114,
  1511. 115
  1512. ],
  1513. "current": true,
  1514. "description": "Senior Senator for Nebraska",
  1515. "district": null,
  1516. "enddate": "2019-01-03",
  1517. "extra": {
  1518. "address": "454 Russell Senate Office Building Washington DC 20510",
  1519. "contact_form": "http://www.fischer.senate.gov/public/index.cfm/contact",
  1520. "fax": "202-228-1325",
  1521. "office": "454 Russell Senate Office Building",
  1522. "rss_url": "http://www.fischer.senate.gov/public/index.cfm/rss/feed"
  1523. },
  1524. "leadership_title": null,
  1525. "party": "Republican",
  1526. "person": {
  1527. "bioguideid": "F000463",
  1528. "birthday": "1951-03-01",
  1529. "cspanid": 1034067,
  1530. "firstname": "Deb",
  1531. "gender": "female",
  1532. "gender_label": "Female",
  1533. "lastname": "Fischer",
  1534. "link": "https://www.govtrack.us/congress/members/deb_fischer/412556",
  1535. "middlename": "",
  1536. "name": "Sen. Deb Fischer [R-NE]",
  1537. "namemod": "",
  1538. "nickname": "",
  1539. "osid": "N00033443",
  1540. "pvsid": "41963",
  1541. "sortname": "Fischer, Deb (Sen.) [R-NE]",
  1542. "twitterid": "SenatorFischer",
  1543. "youtubeid": "senatordebfischer"
  1544. },
  1545. "phone": "202-224-6551",
  1546. "role_type": "senator",
  1547. "role_type_label": "Senator",
  1548. "senator_class": "class1",
  1549. "senator_class_label": "Class 1",
  1550. "senator_rank": "senior",
  1551. "senator_rank_label": "Senior",
  1552. "startdate": "2013-01-03",
  1553. "state": "NE",
  1554. "title": "Sen.",
  1555. "title_long": "Senator",
  1556. "website": "https://www.fischer.senate.gov"
  1557. },
  1558. {
  1559. "caucus": null,
  1560. "congress_numbers": [
  1561. 113,
  1562. 114,
  1563. 115
  1564. ],
  1565. "current": true,
  1566. "description": "Junior Senator for Texas",
  1567. "district": null,
  1568. "enddate": "2019-01-03",
  1569. "extra": {
  1570. "address": "404 Russell Senate Office Building Washington DC 20510",
  1571. "contact_form": "https://www.cruz.senate.gov/?p=form&id=16",
  1572. "fax": "202-228-3398",
  1573. "office": "404 Russell Senate Office Building"
  1574. },
  1575. "leadership_title": null,
  1576. "party": "Republican",
  1577. "person": {
  1578. "bioguideid": "C001098",
  1579. "birthday": "1970-12-22",
  1580. "cspanid": 1019953,
  1581. "firstname": "Ted",
  1582. "gender": "male",
  1583. "gender_label": "Male",
  1584. "lastname": "Cruz",
  1585. "link": "https://www.govtrack.us/congress/members/ted_cruz/412573",
  1586. "middlename": "",
  1587. "name": "Sen. Ted Cruz [R-TX]",
  1588. "namemod": "",
  1589. "nickname": "",
  1590. "osid": "N00033085",
  1591. "pvsid": "135705",
  1592. "sortname": "Cruz, Ted (Sen.) [R-TX]",
  1593. "twitterid": "SenTedCruz",
  1594. "youtubeid": "sentedcruz"
  1595. },
  1596. "phone": "202-224-5922",
  1597. "role_type": "senator",
  1598. "role_type_label": "Senator",
  1599. "senator_class": "class1",
  1600. "senator_class_label": "Class 1",
  1601. "senator_rank": "junior",
  1602. "senator_rank_label": "Junior",
  1603. "startdate": "2013-01-03",
  1604. "state": "TX",
  1605. "title": "Sen.",
  1606. "title_long": "Senator",
  1607. "website": "https://www.cruz.senate.gov"
  1608. },
  1609. {
  1610. "caucus": null,
  1611. "congress_numbers": [
  1612. 113,
  1613. 114,
  1614. 115
  1615. ],
  1616. "current": true,
  1617. "description": "Junior Senator for Virginia",
  1618. "district": null,
  1619. "enddate": "2019-01-03",
  1620. "extra": {
  1621. "address": "231 Russell Senate Office Building Washington DC 20510",
  1622. "contact_form": "https://www.kaine.senate.gov/contact",
  1623. "fax": "202-228-6363",
  1624. "office": "231 Russell Senate Office Building",
  1625. "rss_url": "http://www.kaine.senate.gov/rss/feeds/?type=all"
  1626. },
  1627. "leadership_title": null,
  1628. "party": "Democrat",
  1629. "person": {
  1630. "bioguideid": "K000384",
  1631. "birthday": "1958-02-26",
  1632. "cspanid": 49219,
  1633. "firstname": "Timothy",
  1634. "gender": "male",
  1635. "gender_label": "Male",
  1636. "lastname": "Kaine",
  1637. "link": "https://www.govtrack.us/congress/members/timothy_kaine/412582",
  1638. "middlename": "",
  1639. "name": "Sen. Timothy Kaine [D-VA]",
  1640. "namemod": "",
  1641. "nickname": "",
  1642. "osid": "N00033177",
  1643. "pvsid": "50772",
  1644. "sortname": "Kaine, Timothy (Sen.) [D-VA]",
  1645. "twitterid": null,
  1646. "youtubeid": "SenatorTimKaine"
  1647. },
  1648. "phone": "202-224-4024",
  1649. "role_type": "senator",
  1650. "role_type_label": "Senator",
  1651. "senator_class": "class1",
  1652. "senator_class_label": "Class 1",
  1653. "senator_rank": "junior",
  1654. "senator_rank_label": "Junior",
  1655. "startdate": "2013-01-03",
  1656. "state": "VA",
  1657. "title": "Sen.",
  1658. "title_long": "Senator",
  1659. "website": "https://www.kaine.senate.gov"
  1660. },
  1661. {
  1662. "caucus": null,
  1663. "congress_numbers": [
  1664. 113,
  1665. 114,
  1666. 115
  1667. ],
  1668. "current": true,
  1669. "description": "Senior Senator for Mississippi",
  1670. "district": null,
  1671. "enddate": "2019-01-03",
  1672. "extra": {
  1673. "address": "555 Dirksen Senate Office Building Washington DC 20510",
  1674. "contact_form": "https://www.wicker.senate.gov/public/index.cfm/contact",
  1675. "fax": "202-228-0378",
  1676. "office": "555 Dirksen Senate Office Building"
  1677. },
  1678. "leadership_title": null,
  1679. "party": "Republican",
  1680. "person": {
  1681. "bioguideid": "W000437",
  1682. "birthday": "1951-07-05",
  1683. "cspanid": 18203,
  1684. "firstname": "Roger",
  1685. "gender": "male",
  1686. "gender_label": "Male",
  1687. "lastname": "Wicker",
  1688. "link": "https://www.govtrack.us/congress/members/roger_wicker/400432",
  1689. "middlename": "F.",
  1690. "name": "Sen. Roger Wicker [R-MS]",
  1691. "namemod": "",
  1692. "nickname": "",
  1693. "osid": "N00003280",
  1694. "pvsid": "21926",
  1695. "sortname": "Wicker, Roger (Sen.) [R-MS]",
  1696. "twitterid": "SenatorWicker",
  1697. "youtubeid": "SenatorWicker"
  1698. },
  1699. "phone": "202-224-6253",
  1700. "role_type": "senator",
  1701. "role_type_label": "Senator",
  1702. "senator_class": "class1",
  1703. "senator_class_label": "Class 1",
  1704. "senator_rank": "senior",
  1705. "senator_rank_label": "Senior",
  1706. "startdate": "2013-01-03",
  1707. "state": "MS",
  1708. "title": "Sen.",
  1709. "title_long": "Senator",
  1710. "website": "https://www.wicker.senate.gov"
  1711. },
  1712. {
  1713. "caucus": null,
  1714. "congress_numbers": [
  1715. 114,
  1716. 115,
  1717. 116
  1718. ],
  1719. "current": true,
  1720. "description": "Senior Senator for Tennessee",
  1721. "district": null,
  1722. "enddate": "2021-01-03",
  1723. "extra": {
  1724. "address": "455 Dirksen Senate Office Building Washington DC 20510",
  1725. "contact_form": "http://www.alexander.senate.gov/public/index.cfm?p=Email",
  1726. "fax": "202-228-3398",
  1727. "office": "455 Dirksen Senate Office Building",
  1728. "rss_url": "http://www.alexander.senate.gov/public/?a=rss.feed"
  1729. },
  1730. "leadership_title": null,
  1731. "party": "Republican",
  1732. "person": {
  1733. "bioguideid": "A000360",
  1734. "birthday": "1940-07-03",
  1735. "cspanid": 5,
  1736. "firstname": "Lamar",
  1737. "gender": "male",
  1738. "gender_label": "Male",
  1739. "lastname": "Alexander",
  1740. "link": "https://www.govtrack.us/congress/members/lamar_alexander/300002",
  1741. "middlename": "",
  1742. "name": "Sen. Lamar Alexander [R-TN]",
  1743. "namemod": "",
  1744. "nickname": "",
  1745. "osid": "N00009888",
  1746. "pvsid": "15691",
  1747. "sortname": "Alexander, Lamar (Sen.) [R-TN]",
  1748. "twitterid": "SenAlexander",
  1749. "youtubeid": "lamaralexander"
  1750. },
  1751. "phone": "202-224-4944",
  1752. "role_type": "senator",
  1753. "role_type_label": "Senator",
  1754. "senator_class": "class2",
  1755. "senator_class_label": "Class 2",
  1756. "senator_rank": "senior",
  1757. "senator_rank_label": "Senior",
  1758. "startdate": "2015-01-06",
  1759. "state": "TN",
  1760. "title": "Sen.",
  1761. "title_long": "Senator",
  1762. "website": "https://www.alexander.senate.gov/public"
  1763. },
  1764. {
  1765. "caucus": null,
  1766. "congress_numbers": [
  1767. 114,
  1768. 115,
  1769. 116
  1770. ],
  1771. "current": true,
  1772. "description": "Senior Senator for Maine",
  1773. "district": null,
  1774. "enddate": "2021-01-03",
  1775. "extra": {
  1776. "address": "413 Dirksen Senate Office Building Washington DC 20510",
  1777. "contact_form": "http://www.collins.senate.gov/contact",
  1778. "fax": "202-224-2693",
  1779. "office": "413 Dirksen Senate Office Building",
  1780. "rss_url": "http://www.collins.senate.gov/public/?a=rss.feed"
  1781. },
  1782. "leadership_title": null,
  1783. "party": "Republican",
  1784. "person": {
  1785. "bioguideid": "C001035",
  1786. "birthday": "1952-12-07",
  1787. "cspanid": 45738,
  1788. "firstname": "Susan",
  1789. "gender": "female",
  1790. "gender_label": "Female",
  1791. "lastname": "Collins",
  1792. "link": "https://www.govtrack.us/congress/members/susan_collins/300025",
  1793. "middlename": "M.",
  1794. "name": "Sen. Susan Collins [R-ME]",
  1795. "namemod": "",
  1796. "nickname": "",
  1797. "osid": "N00000491",
  1798. "pvsid": "379",
  1799. "sortname": "Collins, Susan (Sen.) [R-ME]",
  1800. "twitterid": "SenatorCollins",
  1801. "youtubeid": "SenatorSusanCollins"
  1802. },
  1803. "phone": "202-224-2523",
  1804. "role_type": "senator",
  1805. "role_type_label": "Senator",
  1806. "senator_class": "class2",
  1807. "senator_class_label": "Class 2",
  1808. "senator_rank": "senior",
  1809. "senator_rank_label": "Senior",
  1810. "startdate": "2015-01-06",
  1811. "state": "ME",
  1812. "title": "Sen.",
  1813. "title_long": "Senator",
  1814. "website": "https://www.collins.senate.gov"
  1815. },
  1816. {
  1817. "caucus": null,
  1818. "congress_numbers": [
  1819. 114,
  1820. 115,
  1821. 116
  1822. ],
  1823. "current": true,
  1824. "description": "Senior Senator for Texas",
  1825. "district": null,
  1826. "enddate": "2021-01-03",
  1827. "extra": {
  1828. "address": "517 Hart Senate Office Building Washington DC 20510",
  1829. "contact_form": "https://www.cornyn.senate.gov/contact",
  1830. "fax": "202-228-2856",
  1831. "office": "517 Hart Senate Office Building",
  1832. "rss_url": "http://www.cornyn.senate.gov/public/?a=rss.feed"
  1833. },
  1834. "leadership_title": "Majority Whip",
  1835. "party": "Republican",
  1836. "person": {
  1837. "bioguideid": "C001056",
  1838. "birthday": "1952-02-02",
  1839. "cspanid": 93131,
  1840. "firstname": "John",
  1841. "gender": "male",
  1842. "gender_label": "Male",
  1843. "lastname": "Cornyn",
  1844. "link": "https://www.govtrack.us/congress/members/john_cornyn/300027",
  1845. "middlename": "",
  1846. "name": "Sen. John Cornyn [R-TX]",
  1847. "namemod": "",
  1848. "nickname": "",
  1849. "osid": "N00024852",
  1850. "pvsid": "15375",
  1851. "sortname": "Cornyn, John (Sen.) [R-TX]",
  1852. "twitterid": "JohnCornyn",
  1853. "youtubeid": "senjohncornyn"
  1854. },
  1855. "phone": "202-224-2934",
  1856. "role_type": "senator",
  1857. "role_type_label": "Senator",
  1858. "senator_class": "class2",
  1859. "senator_class_label": "Class 2",
  1860. "senator_rank": "senior",
  1861. "senator_rank_label": "Senior",
  1862. "startdate": "2015-01-06",
  1863. "state": "TX",
  1864. "title": "Sen.",
  1865. "title_long": "Senator",
  1866. "website": "https://www.cornyn.senate.gov"
  1867. },
  1868. {
  1869. "caucus": null,
  1870. "congress_numbers": [
  1871. 114,
  1872. 115,
  1873. 116
  1874. ],
  1875. "current": true,
  1876. "description": "Senior Senator for Illinois",
  1877. "district": null,
  1878. "enddate": "2021-01-03",
  1879. "extra": {
  1880. "address": "711 Hart Senate Office Building Washington DC 20510",
  1881. "contact_form": "https://www.durbin.senate.gov/contact/",
  1882. "fax": "202-228-0400",
  1883. "office": "711 Hart Senate Office Building",
  1884. "rss_url": "http://durbin.senate.gov/public/index.cfm/rss/feed"
  1885. },
  1886. "leadership_title": "Minority Whip",
  1887. "party": "Democrat",
  1888. "person": {
  1889. "bioguideid": "D000563",
  1890. "birthday": "1944-11-21",
  1891. "cspanid": 6741,
  1892. "firstname": "Richard",
  1893. "gender": "male",
  1894. "gender_label": "Male",
  1895. "lastname": "Durbin",
  1896. "link": "https://www.govtrack.us/congress/members/richard_durbin/300038",
  1897. "middlename": "J.",
  1898. "name": "Sen. Richard Durbin [D-IL]",
  1899. "namemod": "",
  1900. "nickname": "",
  1901. "osid": "N00004981",
  1902. "pvsid": "26847",
  1903. "sortname": "Durbin, Richard (Sen.) [D-IL]",
  1904. "twitterid": "SenatorDurbin",
  1905. "youtubeid": "SenatorDurbin"
  1906. },
  1907. "phone": "202-224-2152",
  1908. "role_type": "senator",
  1909. "role_type_label": "Senator",
  1910. "senator_class": "class2",
  1911. "senator_class_label": "Class 2",
  1912. "senator_rank": "senior",
  1913. "senator_rank_label": "Senior",
  1914. "startdate": "2015-01-06",
  1915. "state": "IL",
  1916. "title": "Sen.",
  1917. "title_long": "Senator",
  1918. "website": "https://www.durbin.senate.gov"
  1919. },
  1920. {
  1921. "caucus": null,
  1922. "congress_numbers": [
  1923. 114,
  1924. 115,
  1925. 116
  1926. ],
  1927. "current": true,
  1928. "description": "Senior Senator for Wyoming",
  1929. "district": null,
  1930. "enddate": "2021-01-03",
  1931. "extra": {
  1932. "address": "379A Russell Senate Office Building Washington DC 20510",
  1933. "contact_form": "http://www.enzi.senate.gov/public/index.cfm/contact?p=e-mail-senator-enzi",
  1934. "fax": "202-228-0359",
  1935. "office": "379a Russell Senate Office Building",
  1936. "rss_url": "http://www.enzi.senate.gov/public/index.cfm/rss/feed"
  1937. },
  1938. "leadership_title": null,
  1939. "party": "Republican",
  1940. "person": {
  1941. "bioguideid": "E000285",
  1942. "birthday": "1944-02-01",
  1943. "cspanid": 45824,
  1944. "firstname": "Michael",
  1945. "gender": "male",
  1946. "gender_label": "Male",
  1947. "lastname": "Enzi",
  1948. "link": "https://www.govtrack.us/congress/members/michael_enzi/300041",
  1949. "middlename": "B.",
  1950. "name": "Sen. Michael Enzi [R-WY]",
  1951. "namemod": "",
  1952. "nickname": "",
  1953. "osid": "N00006249",
  1954. "pvsid": "558",
  1955. "sortname": "Enzi, Michael (Sen.) [R-WY]",
  1956. "twitterid": "SenatorEnzi",
  1957. "youtubeid": "senatorenzi"
  1958. },
  1959. "phone": "202-224-3424",
  1960. "role_type": "senator",
  1961. "role_type_label": "Senator",
  1962. "senator_class": "class2",
  1963. "senator_class_label": "Class 2",
  1964. "senator_rank": "senior",
  1965. "senator_rank_label": "Senior",
  1966. "startdate": "2015-01-06",
  1967. "state": "WY",
  1968. "title": "Sen.",
  1969. "title_long": "Senator",
  1970. "website": "https://www.enzi.senate.gov"
  1971. },
  1972. {
  1973. "caucus": null,
  1974. "congress_numbers": [
  1975. 114,
  1976. 115,
  1977. 116
  1978. ],
  1979. "current": true,
  1980. "description": "Senior Senator for South Carolina",
  1981. "district": null,
  1982. "enddate": "2021-01-03",
  1983. "extra": {
  1984. "address": "290 Russell Senate Office Building Washington DC 20510",
  1985. "contact_form": "https://www.lgraham.senate.gov/public/index.cfm/e-mail-senator-graham",
  1986. "fax": "202-224-3808",
  1987. "office": "290 Russell Senate Office Building",
  1988. "rss_url": "http://www.lgraham.senate.gov/public/index.cfm?FuseAction=Rss.Feed"
  1989. },
  1990. "leadership_title": null,
  1991. "party": "Republican",
  1992. "person": {
  1993. "bioguideid": "G000359",
  1994. "birthday": "1955-07-09",
  1995. "cspanid": 36782,
  1996. "firstname": "Lindsey",
  1997. "gender": "male",
  1998. "gender_label": "Male",
  1999. "lastname": "Graham",
  2000. "link": "https://www.govtrack.us/congress/members/lindsey_graham/300047",
  2001. "middlename": "O.",
  2002. "name": "Sen. Lindsey Graham [R-SC]",
  2003. "namemod": "",
  2004. "nickname": "",
  2005. "osid": "N00009975",
  2006. "pvsid": "21992",
  2007. "sortname": "Graham, Lindsey (Sen.) [R-SC]",
  2008. "twitterid": "GrahamBlog",
  2009. "youtubeid": "USSenLindseyGraham"
  2010. },
  2011. "phone": "202-224-5972",
  2012. "role_type": "senator",
  2013. "role_type_label": "Senator",
  2014. "senator_class": "class2",
  2015. "senator_class_label": "Class 2",
  2016. "senator_rank": "senior",
  2017. "senator_rank_label": "Senior",
  2018. "startdate": "2015-01-06",
  2019. "state": "SC",
  2020. "title": "Sen.",
  2021. "title_long": "Senator",
  2022. "website": "https://www.lgraham.senate.gov/public"
  2023. },
  2024. {
  2025. "caucus": null,
  2026. "congress_numbers": [
  2027. 114,
  2028. 115,
  2029. 116
  2030. ],
  2031. "current": true,
  2032. "description": "Senior Senator for Oklahoma",
  2033. "district": null,
  2034. "enddate": "2021-01-03",
  2035. "extra": {
  2036. "address": "205 Russell Senate Office Building Washington DC 20510",
  2037. "contact_form": "https://www.inhofe.senate.gov/contact",
  2038. "fax": "202-228-0380",
  2039. "office": "205 Russell Senate Office Building",
  2040. "rss_url": "http://www.inhofe.senate.gov/rss/feeds/?type=all&cachebuster=eea6c4d7%2d939c%2d5c1e%2db6c7aa3b8b291208"
  2041. },
  2042. "leadership_title": null,
  2043. "party": "Republican",
  2044. "person": {
  2045. "bioguideid": "I000024",
  2046. "birthday": "1934-11-17",
  2047. "cspanid": 5619,
  2048. "firstname": "James",
  2049. "gender": "male",
  2050. "gender_label": "Male",
  2051. "lastname": "Inhofe",
  2052. "link": "https://www.govtrack.us/congress/members/james_inhofe/300055",
  2053. "middlename": "M.",
  2054. "name": "Sen. James “Jim” Inhofe [R-OK]",
  2055. "namemod": "",
  2056. "nickname": "Jim",
  2057. "osid": "N00005582",
  2058. "pvsid": "27027",
  2059. "sortname": "Inhofe, James “Jim” (Sen.) [R-OK]",
  2060. "twitterid": "InhofePress",
  2061. "youtubeid": "jiminhofepressoffice"
  2062. },
  2063. "phone": "202-224-4721",
  2064. "role_type": "senator",
  2065. "role_type_label": "Senator",
  2066. "senator_class": "class2",
  2067. "senator_class_label": "Class 2",
  2068. "senator_rank": "senior",
  2069. "senator_rank_label": "Senior",
  2070. "startdate": "2015-01-06",
  2071. "state": "OK",
  2072. "title": "Sen.",
  2073. "title_long": "Senator",
  2074. "website": "https://www.inhofe.senate.gov"
  2075. },
  2076. {
  2077. "caucus": null,
  2078. "congress_numbers": [
  2079. 114,
  2080. 115,
  2081. 116
  2082. ],
  2083. "current": true,
  2084. "description": "Senior Senator for Kentucky",
  2085. "district": null,
  2086. "enddate": "2021-01-03",
  2087. "extra": {
  2088. "address": "317 Russell Senate Office Building Washington DC 20510",
  2089. "contact_form": "http://www.mcconnell.senate.gov/public/index.cfm?p=contact",
  2090. "fax": "202-224-2499",
  2091. "office": "317 Russell Senate Office Building",
  2092. "rss_url": "http://www.mcconnell.senate.gov/public/?a=rss.feed"
  2093. },
  2094. "leadership_title": "Majority Leader",
  2095. "party": "Republican",
  2096. "person": {
  2097. "bioguideid": "M000355",
  2098. "birthday": "1942-02-20",
  2099. "cspanid": 2351,
  2100. "firstname": "Mitch",
  2101. "gender": "male",
  2102. "gender_label": "Male",
  2103. "lastname": "McConnell",
  2104. "link": "https://www.govtrack.us/congress/members/mitch_mcconnell/300072",
  2105. "middlename": "",
  2106. "name": "Sen. Mitch McConnell [R-KY]",
  2107. "namemod": "",
  2108. "nickname": "",
  2109. "osid": "N00003389",
  2110. "pvsid": "53298",
  2111. "sortname": "McConnell, Mitch (Sen.) [R-KY]",
  2112. "twitterid": "McConnellPress",
  2113. "youtubeid": null
  2114. },
  2115. "phone": "202-224-2541",
  2116. "role_type": "senator",
  2117. "role_type_label": "Senator",
  2118. "senator_class": "class2",
  2119. "senator_class_label": "Class 2",
  2120. "senator_rank": "senior",
  2121. "senator_rank_label": "Senior",
  2122. "startdate": "2015-01-06",
  2123. "state": "KY",
  2124. "title": "Sen.",
  2125. "title_long": "Senator",
  2126. "website": "https://www.mcconnell.senate.gov"
  2127. },
  2128. {
  2129. "caucus": null,
  2130. "congress_numbers": [
  2131. 114,
  2132. 115,
  2133. 116
  2134. ],
  2135. "current": true,
  2136. "description": "Senior Senator for Rhode Island",
  2137. "district": null,
  2138. "enddate": "2021-01-03",
  2139. "extra": {
  2140. "address": "728 Hart Senate Office Building Washington DC 20510",
  2141. "contact_form": "https://www.reed.senate.gov/contact/",
  2142. "fax": "202-224-4680",
  2143. "office": "728 Hart Senate Office Building",
  2144. "rss_url": "https://www.reed.senate.gov//rss/feeds/?type=all"
  2145. },
  2146. "leadership_title": null,
  2147. "party": "Democrat",
  2148. "person": {
  2149. "bioguideid": "R000122",
  2150. "birthday": "1949-11-12",
  2151. "cspanid": 24239,
  2152. "firstname": "John",
  2153. "gender": "male",
  2154. "gender_label": "Male",
  2155. "lastname": "Reed",
  2156. "link": "https://www.govtrack.us/congress/members/john_reed/300081",
  2157. "middlename": "F.",
  2158. "name": "Sen. John “Jack” Reed [D-RI]",
  2159. "namemod": "",
  2160. "nickname": "Jack",
  2161. "osid": "N00000362",
  2162. "pvsid": "27060",
  2163. "sortname": "Reed, John “Jack” (Sen.) [D-RI]",
  2164. "twitterid": "SenJackReed",
  2165. "youtubeid": "SenatorReed"
  2166. },
  2167. "phone": "202-224-4642",
  2168. "role_type": "senator",
  2169. "role_type_label": "Senator",
  2170. "senator_class": "class2",
  2171. "senator_class_label": "Class 2",
  2172. "senator_rank": "senior",
  2173. "senator_rank_label": "Senior",
  2174. "startdate": "2015-01-06",
  2175. "state": "RI",
  2176. "title": "Sen.",
  2177. "title_long": "Senator",
  2178. "website": "https://www.reed.senate.gov"
  2179. },
  2180. {
  2181. "caucus": null,
  2182. "congress_numbers": [
  2183. 114,
  2184. 115,
  2185. 116
  2186. ],
  2187. "current": true,
  2188. "description": "Senior Senator for Kansas",
  2189. "district": null,
  2190. "enddate": "2021-01-03",
  2191. "extra": {
  2192. "address": "109 Hart Senate Office Building Washington DC 20510",
  2193. "contact_form": "https://www.roberts.senate.gov/public/?p=EmailPat",
  2194. "fax": "202-224-3514",
  2195. "office": "109 Hart Senate Office Building",
  2196. "rss_url": "http://www.roberts.senate.gov/public/?a=rss.feed"
  2197. },
  2198. "leadership_title": null,
  2199. "party": "Republican",
  2200. "person": {
  2201. "bioguideid": "R000307",
  2202. "birthday": "1936-04-20",
  2203. "cspanid": 16354,
  2204. "firstname": "Pat",
  2205. "gender": "male",
  2206. "gender_label": "Male",
  2207. "lastname": "Roberts",
  2208. "link": "https://www.govtrack.us/congress/members/pat_roberts/300083",
  2209. "middlename": "",
  2210. "name": "Sen. Pat Roberts [R-KS]",
  2211. "namemod": "",
  2212. "nickname": "",
  2213. "osid": "N00005285",
  2214. "pvsid": "26866",
  2215. "sortname": "Roberts, Pat (Sen.) [R-KS]",
  2216. "twitterid": "SenPatRoberts",
  2217. "youtubeid": "SenPatRoberts"
  2218. },
  2219. "phone": "202-224-4774",
  2220. "role_type": "senator",
  2221. "role_type_label": "Senator",
  2222. "senator_class": "class2",
  2223. "senator_class_label": "Class 2",
  2224. "senator_rank": "senior",
  2225. "senator_rank_label": "Senior",
  2226. "startdate": "2015-01-06",
  2227. "state": "KS",
  2228. "title": "Sen.",
  2229. "title_long": "Senator",
  2230. "website": "https://www.roberts.senate.gov"
  2231. },
  2232. {
  2233. "caucus": null,
  2234. "congress_numbers": [
  2235. 114,
  2236. 115,
  2237. 116
  2238. ],
  2239. "current": true,
  2240. "description": "Junior Senator for West Virginia",
  2241. "district": null,
  2242. "enddate": "2021-01-03",
  2243. "extra": {
  2244. "address": "172 Russell Senate Office Building Washington DC 20510",
  2245. "contact_form": "https://www.capito.senate.gov/contact/contact-shelley",
  2246. "fax": "202-225-7856",
  2247. "office": "172 Russell Senate Office Building"
  2248. },
  2249. "leadership_title": null,
  2250. "party": "Republican",
  2251. "person": {
  2252. "bioguideid": "C001047",
  2253. "birthday": "1953-11-26",
  2254. "cspanid": 83737,
  2255. "firstname": "Shelley",
  2256. "gender": "female",
  2257. "gender_label": "Female",
  2258. "lastname": "Capito",
  2259. "link": "https://www.govtrack.us/congress/members/shelley_capito/400061",
  2260. "middlename": "Moore",
  2261. "name": "Sen. Shelley Capito [R-WV]",
  2262. "namemod": "",
  2263. "nickname": "",
  2264. "osid": "N00009771",
  2265. "pvsid": "11701",
  2266. "sortname": "Capito, Shelley (Sen.) [R-WV]",
  2267. "twitterid": "SenCapito",
  2268. "youtubeid": null
  2269. },
  2270. "phone": "202-224-6472",
  2271. "role_type": "senator",
  2272. "role_type_label": "Senator",
  2273. "senator_class": "class2",
  2274. "senator_class_label": "Class 2",
  2275. "senator_rank": "junior",
  2276. "senator_rank_label": "Junior",
  2277. "startdate": "2015-01-06",
  2278. "state": "WV",
  2279. "title": "Sen.",
  2280. "title_long": "Senator",
  2281. "website": "https://www.capito.senate.gov"
  2282. },
  2283. {
  2284. "caucus": null,
  2285. "congress_numbers": [
  2286. 114,
  2287. 115,
  2288. 116
  2289. ],
  2290. "current": true,
  2291. "description": "Junior Senator for Massachusetts",
  2292. "district": null,
  2293. "enddate": "2021-01-03",
  2294. "extra": {
  2295. "address": "255 Dirksen Senate Office Building Washington DC 20510",
  2296. "contact_form": "https://www.markey.senate.gov/contact",
  2297. "office": "255 Dirksen Senate Office Building"
  2298. },
  2299. "leadership_title": null,
  2300. "party": "Democrat",
  2301. "person": {
  2302. "bioguideid": "M000133",
  2303. "birthday": "1946-07-11",
  2304. "cspanid": 260,
  2305. "firstname": "Edward",
  2306. "gender": "male",
  2307. "gender_label": "Male",
  2308. "lastname": "Markey",
  2309. "link": "https://www.govtrack.us/congress/members/edward_markey/400253",
  2310. "middlename": "J.",
  2311. "name": "Sen. Edward “Ed” Markey [D-MA]",
  2312. "namemod": "",
  2313. "nickname": "Ed",
  2314. "osid": "N00000270",
  2315. "pvsid": "26900",
  2316. "sortname": "Markey, Edward “Ed” (Sen.) [D-MA]",
  2317. "twitterid": "SenMarkey",
  2318. "youtubeid": "RepMarkey"
  2319. },
  2320. "phone": "202-224-2742",
  2321. "role_type": "senator",
  2322. "role_type_label": "Senator",
  2323. "senator_class": "class2",
  2324. "senator_class_label": "Class 2",
  2325. "senator_rank": "junior",
  2326. "senator_rank_label": "Junior",
  2327. "startdate": "2015-01-06",
  2328. "state": "MA",
  2329. "title": "Sen.",
  2330. "title_long": "Senator",
  2331. "website": "https://www.markey.senate.gov"
  2332. },
  2333. {
  2334. "caucus": null,
  2335. "congress_numbers": [
  2336. 114,
  2337. 115,
  2338. 116
  2339. ],
  2340. "current": true,
  2341. "description": "Senior Senator for New Mexico",
  2342. "district": null,
  2343. "enddate": "2021-01-03",
  2344. "extra": {
  2345. "address": "531 Hart Senate Office Building Washington DC 20510",
  2346. "contact_form": "https://www.tomudall.senate.gov/?p=contact",
  2347. "fax": "202-228-3261",
  2348. "office": "531 Hart Senate Office Building",
  2349. "rss_url": "http://tomudall.senate.gov/rss/?p=blog"
  2350. },
  2351. "leadership_title": null,
  2352. "party": "Democrat",
  2353. "person": {
  2354. "bioguideid": "U000039",
  2355. "birthday": "1948-05-18",
  2356. "cspanid": 10075,
  2357. "firstname": "Tom",
  2358. "gender": "male",
  2359. "gender_label": "Male",
  2360. "lastname": "Udall",
  2361. "link": "https://www.govtrack.us/congress/members/tom_udall/400413",
  2362. "middlename": "S.",
  2363. "name": "Sen. Tom Udall [D-NM]",
  2364. "namemod": "",
  2365. "nickname": "",
  2366. "osid": "N00006561",
  2367. "pvsid": "22658",
  2368. "sortname": "Udall, Tom (Sen.) [D-NM]",
  2369. "twitterid": "SenatorTomUdall",
  2370. "youtubeid": "senatortomudall"
  2371. },
  2372. "phone": "202-224-6621",
  2373. "role_type": "senator",
  2374. "role_type_label": "Senator",
  2375. "senator_class": "class2",
  2376. "senator_class_label": "Class 2",
  2377. "senator_rank": "senior",
  2378. "senator_rank_label": "Senior",
  2379. "startdate": "2015-01-06",
  2380. "state": "NM",
  2381. "title": "Sen.",
  2382. "title_long": "Senator",
  2383. "website": "https://www.tomudall.senate.gov"
  2384. },
  2385. {
  2386. "caucus": null,
  2387. "congress_numbers": [
  2388. 114,
  2389. 115,
  2390. 116
  2391. ],
  2392. "current": true,
  2393. "description": "Senior Senator for Louisiana",
  2394. "district": null,
  2395. "enddate": "2021-01-03",
  2396. "extra": {
  2397. "address": "520 Hart Senate Office Building Washington DC 20510",
  2398. "contact_form": "https://www.cassidy.senate.gov/contact",
  2399. "fax": "202-225-7313",
  2400. "office": "520 Hart Senate Office Building"
  2401. },
  2402. "leadership_title": null,
  2403. "party": "Republican",
  2404. "person": {
  2405. "bioguideid": "C001075",
  2406. "birthday": "1957-09-28",
  2407. "cspanid": 1030546,
  2408. "firstname": "Bill",
  2409. "gender": "male",
  2410. "gender_label": "Male",
  2411. "lastname": "Cassidy",
  2412. "link": "https://www.govtrack.us/congress/members/bill_cassidy/412269",
  2413. "middlename": "",
  2414. "name": "Sen. Bill Cassidy [R-LA]",
  2415. "namemod": "",
  2416. "nickname": "",
  2417. "osid": "N00030245",
  2418. "pvsid": "69494",
  2419. "sortname": "Cassidy, Bill (Sen.) [R-LA]",
  2420. "twitterid": null,
  2421. "youtubeid": "SenatorBillCassidy"
  2422. },
  2423. "phone": "202-224-5824",
  2424. "role_type": "senator",
  2425. "role_type_label": "Senator",
  2426. "senator_class": "class2",
  2427. "senator_class_label": "Class 2",
  2428. "senator_rank": "senior",
  2429. "senator_rank_label": "Senior",
  2430. "startdate": "2015-01-06",
  2431. "state": "LA",
  2432. "title": "Sen.",
  2433. "title_long": "Senator",
  2434. "website": "https://www.cassidy.senate.gov"
  2435. },
  2436. {
  2437. "caucus": null,
  2438. "congress_numbers": [
  2439. 114,
  2440. 115,
  2441. 116
  2442. ],
  2443. "current": true,
  2444. "description": "Junior Senator for Michigan",
  2445. "district": null,
  2446. "enddate": "2021-01-03",
  2447. "extra": {
  2448. "address": "724 Hart Senate Office Building Washington DC 20510",
  2449. "contact_form": "https://www.peters.senate.gov/contact/email-gary",
  2450. "fax": "202-226-2356",
  2451. "office": "724 Hart Senate Office Building"
  2452. },
  2453. "leadership_title": null,
  2454. "party": "Democrat",
  2455. "person": {
  2456. "bioguideid": "P000595",
  2457. "birthday": "1958-12-01",
  2458. "cspanid": 50199,
  2459. "firstname": "Gary",
  2460. "gender": "male",
  2461. "gender_label": "Male",
  2462. "lastname": "Peters",
  2463. "link": "https://www.govtrack.us/congress/members/gary_peters/412305",
  2464. "middlename": "C.",
  2465. "name": "Sen. Gary Peters [D-MI]",
  2466. "namemod": "",
  2467. "nickname": "",
  2468. "osid": "N00029277",
  2469. "pvsid": "8749",
  2470. "sortname": "Peters, Gary (Sen.) [D-MI]",
  2471. "twitterid": "SenGaryPeters",
  2472. "youtubeid": "RepGaryPeters"
  2473. },
  2474. "phone": "202-224-6221",
  2475. "role_type": "senator",
  2476. "role_type_label": "Senator",
  2477. "senator_class": "class2",
  2478. "senator_class_label": "Class 2",
  2479. "senator_rank": "junior",
  2480. "senator_rank_label": "Junior",
  2481. "startdate": "2015-01-06",
  2482. "state": "MI",
  2483. "title": "Sen.",
  2484. "title_long": "Senator",
  2485. "website": "https://www.peters.senate.gov"
  2486. },
  2487. {
  2488. "caucus": null,
  2489. "congress_numbers": [
  2490. 114,
  2491. 115,
  2492. 116
  2493. ],
  2494. "current": true,
  2495. "description": "Senior Senator for Virginia",
  2496. "district": null,
  2497. "enddate": "2021-01-03",
  2498. "extra": {
  2499. "address": "703 Hart Senate Office Building Washington DC 20510",
  2500. "contact_form": "http://www.warner.senate.gov/public/index.cfm?p=Contact",
  2501. "fax": "202-224-6295",
  2502. "office": "703 Hart Senate Office Building",
  2503. "rss_url": "http://www.warner.senate.gov/public/?a=rss.feed"
  2504. },
  2505. "leadership_title": null,
  2506. "party": "Democrat",
  2507. "person": {
  2508. "bioguideid": "W000805",
  2509. "birthday": "1954-12-15",
  2510. "cspanid": 7630,
  2511. "firstname": "Mark",
  2512. "gender": "male",
  2513. "gender_label": "Male",
  2514. "lastname": "Warner",
  2515. "link": "https://www.govtrack.us/congress/members/mark_warner/412321",
  2516. "middlename": "",
  2517. "name": "Sen. Mark Warner [D-VA]",
  2518. "namemod": "",
  2519. "nickname": "",
  2520. "osid": "N00002097",
  2521. "pvsid": "535",
  2522. "sortname": "Warner, Mark (Sen.) [D-VA]",
  2523. "twitterid": "MarkWarner",
  2524. "youtubeid": "SenatorMarkWarner"
  2525. },
  2526. "phone": "202-224-2023",
  2527. "role_type": "senator",
  2528. "role_type_label": "Senator",
  2529. "senator_class": "class2",
  2530. "senator_class_label": "Class 2",
  2531. "senator_rank": "senior",
  2532. "senator_rank_label": "Senior",
  2533. "startdate": "2015-01-06",
  2534. "state": "VA",
  2535. "title": "Sen.",
  2536. "title_long": "Senator",
  2537. "website": "https://www.warner.senate.gov"
  2538. },
  2539. {
  2540. "caucus": null,
  2541. "congress_numbers": [
  2542. 114,
  2543. 115,
  2544. 116
  2545. ],
  2546. "current": true,
  2547. "description": "Junior Senator for Idaho",
  2548. "district": null,
  2549. "enddate": "2021-01-03",
  2550. "extra": {
  2551. "address": "483 Russell Senate Office Building Washington DC 20510",
  2552. "contact_form": "http://www.risch.senate.gov/public/index.cfm?p=Email",
  2553. "fax": "202-224-2573",
  2554. "office": "483 Russell Senate Office Building"
  2555. },
  2556. "leadership_title": null,
  2557. "party": "Republican",
  2558. "person": {
  2559. "bioguideid": "R000584",
  2560. "birthday": "1943-05-03",
  2561. "cspanid": 1020034,
  2562. "firstname": "James",
  2563. "gender": "male",
  2564. "gender_label": "Male",
  2565. "lastname": "Risch",
  2566. "link": "https://www.govtrack.us/congress/members/james_risch/412322",
  2567. "middlename": "",
  2568. "name": "Sen. James Risch [R-ID]",
  2569. "namemod": "",
  2570. "nickname": "",
  2571. "osid": "N00029441",
  2572. "pvsid": "2919",
  2573. "sortname": "Risch, James (Sen.) [R-ID]",
  2574. "twitterid": "SenatorRisch",
  2575. "youtubeid": "SenatorJamesRisch"
  2576. },
  2577. "phone": "202-224-2752",
  2578. "role_type": "senator",
  2579. "role_type_label": "Senator",
  2580. "senator_class": "class2",
  2581. "senator_class_label": "Class 2",
  2582. "senator_rank": "junior",
  2583. "senator_rank_label": "Junior",
  2584. "startdate": "2015-01-06",
  2585. "state": "ID",
  2586. "title": "Sen.",
  2587. "title_long": "Senator",
  2588. "website": "https://www.risch.senate.gov"
  2589. },
  2590. {
  2591. "caucus": null,
  2592. "congress_numbers": [
  2593. 114,
  2594. 115,
  2595. 116
  2596. ],
  2597. "current": true,
  2598. "description": "Senior Senator for New Hampshire",
  2599. "district": null,
  2600. "enddate": "2021-01-03",
  2601. "extra": {
  2602. "address": "506 Hart Senate Office Building Washington DC 20510",
  2603. "contact_form": "https://www.shaheen.senate.gov/contact/contact-jeanne",
  2604. "fax": "202-228-3194",
  2605. "office": "506 Hart Senate Office Building",
  2606. "rss_url": "http://www.shaheen.senate.gov/rss/"
  2607. },
  2608. "leadership_title": null,
  2609. "party": "Democrat",
  2610. "person": {
  2611. "bioguideid": "S001181",
  2612. "birthday": "1947-01-28",
  2613. "cspanid": 22850,
  2614. "firstname": "Jeanne",
  2615. "gender": "female",
  2616. "gender_label": "Female",
  2617. "lastname": "Shaheen",
  2618. "link": "https://www.govtrack.us/congress/members/jeanne_shaheen/412323",
  2619. "middlename": "",
  2620. "name": "Sen. Jeanne Shaheen [D-NH]",
  2621. "namemod": "",
  2622. "nickname": "",
  2623. "osid": "N00024790",
  2624. "pvsid": "1663",
  2625. "sortname": "Shaheen, Jeanne (Sen.) [D-NH]",
  2626. "twitterid": "SenatorShaheen",
  2627. "youtubeid": "senatorshaheen"
  2628. },
  2629. "phone": "202-224-2841",
  2630. "role_type": "senator",
  2631. "role_type_label": "Senator",
  2632. "senator_class": "class2",
  2633. "senator_class_label": "Class 2",
  2634. "senator_rank": "senior",
  2635. "senator_rank_label": "Senior",
  2636. "startdate": "2015-01-06",
  2637. "state": "NH",
  2638. "title": "Sen.",
  2639. "title_long": "Senator",
  2640. "website": "https://www.shaheen.senate.gov"
  2641. },
  2642. {
  2643. "caucus": null,
  2644. "congress_numbers": [
  2645. 114,
  2646. 115,
  2647. 116
  2648. ],
  2649. "current": true,
  2650. "description": "Junior Senator for Oregon",
  2651. "district": null,
  2652. "enddate": "2021-01-03",
  2653. "extra": {
  2654. "address": "313 Hart Senate Office Building Washington DC 20510",
  2655. "contact_form": "http://www.merkley.senate.gov/contact/",
  2656. "fax": "202-228-3997",
  2657. "office": "313 Hart Senate Office Building",
  2658. "rss_url": "http://www.merkley.senate.gov/rss/"
  2659. },
  2660. "leadership_title": null,
  2661. "party": "Democrat",
  2662. "person": {
  2663. "bioguideid": "M001176",
  2664. "birthday": "1956-10-24",
  2665. "cspanid": 1029842,
  2666. "firstname": "Jeff",
  2667. "gender": "male",
  2668. "gender_label": "Male",
  2669. "lastname": "Merkley",
  2670. "link": "https://www.govtrack.us/congress/members/jeff_merkley/412325",
  2671. "middlename": "",
  2672. "name": "Sen. Jeff Merkley [D-OR]",
  2673. "namemod": "",
  2674. "nickname": "",
  2675. "osid": "N00029303",
  2676. "pvsid": "23644",
  2677. "sortname": "Merkley, Jeff (Sen.) [D-OR]",
  2678. "twitterid": "SenJeffMerkley",
  2679. "youtubeid": "SenatorJeffMerkley"
  2680. },
  2681. "phone": "202-224-3753",
  2682. "role_type": "senator",
  2683. "role_type_label": "Senator",
  2684. "senator_class": "class2",
  2685. "senator_class_label": "Class 2",
  2686. "senator_rank": "junior",
  2687. "senator_rank_label": "Junior",
  2688. "startdate": "2015-01-06",
  2689. "state": "OR",
  2690. "title": "Sen.",
  2691. "title_long": "Senator",
  2692. "website": "https://www.merkley.senate.gov"
  2693. },
  2694. {
  2695. "caucus": null,
  2696. "congress_numbers": [
  2697. 114,
  2698. 115,
  2699. 116
  2700. ],
  2701. "current": true,
  2702. "description": "Junior Senator for Delaware",
  2703. "district": null,
  2704. "enddate": "2021-01-03",
  2705. "extra": {
  2706. "address": "127A Russell Senate Office Building Washington DC 20510",
  2707. "contact_form": "https://www.coons.senate.gov/contact",
  2708. "fax": "202-228-3075",
  2709. "office": "127a Russell Senate Office Building",
  2710. "rss_url": "http://www.coons.senate.gov/rss/feeds/?type=all"
  2711. },
  2712. "leadership_title": null,
  2713. "party": "Democrat",
  2714. "person": {
  2715. "bioguideid": "C001088",
  2716. "birthday": "1963-09-09",
  2717. "cspanid": 9269028,
  2718. "firstname": "Chris",
  2719. "gender": "male",
  2720. "gender_label": "Male",
  2721. "lastname": "Coons",
  2722. "link": "https://www.govtrack.us/congress/members/chris_coons/412390",
  2723. "middlename": "Andrew",
  2724. "name": "Sen. Chris Coons [D-DE]",
  2725. "namemod": "",
  2726. "nickname": "",
  2727. "osid": "N00031820",
  2728. "pvsid": "122834",
  2729. "sortname": "Coons, Chris (Sen.) [D-DE]",
  2730. "twitterid": "ChrisCoons",
  2731. "youtubeid": "senatorchriscoons"
  2732. },
  2733. "phone": "202-224-5042",
  2734. "role_type": "senator",
  2735. "role_type_label": "Senator",
  2736. "senator_class": "class2",
  2737. "senator_class_label": "Class 2",
  2738. "senator_rank": "junior",
  2739. "senator_rank_label": "Junior",
  2740. "startdate": "2015-01-06",
  2741. "state": "DE",
  2742. "title": "Sen.",
  2743. "title_long": "Senator",
  2744. "website": "https://www.coons.senate.gov"
  2745. },
  2746. {
  2747. "caucus": null,
  2748. "congress_numbers": [
  2749. 114,
  2750. 115,
  2751. 116
  2752. ],
  2753. "current": true,
  2754. "description": "Junior Senator for Colorado",
  2755. "district": null,
  2756. "enddate": "2021-01-03",
  2757. "extra": {
  2758. "address": "354 Russell Senate Office Building Washington DC 20510",
  2759. "contact_form": "https://www.gardner.senate.gov/contact-cory/email-cory",
  2760. "fax": "202-225-5870",
  2761. "office": "354 Russell Senate Office Building"
  2762. },
  2763. "leadership_title": null,
  2764. "party": "Republican",
  2765. "person": {
  2766. "bioguideid": "G000562",
  2767. "birthday": "1974-08-22",
  2768. "cspanid": 623308,
  2769. "firstname": "Cory",
  2770. "gender": "male",
  2771. "gender_label": "Male",
  2772. "lastname": "Gardner",
  2773. "link": "https://www.govtrack.us/congress/members/cory_gardner/412406",
  2774. "middlename": "",
  2775. "name": "Sen. Cory Gardner [R-CO]",
  2776. "namemod": "",
  2777. "nickname": "",
  2778. "osid": "N00030780",
  2779. "pvsid": "30004",
  2780. "sortname": "Gardner, Cory (Sen.) [R-CO]",
  2781. "twitterid": "SenCoryGardner",
  2782. "youtubeid": null
  2783. },
  2784. "phone": "202-224-5941",
  2785. "role_type": "senator",
  2786. "role_type_label": "Senator",
  2787. "senator_class": "class2",
  2788. "senator_class_label": "Class 2",
  2789. "senator_rank": "junior",
  2790. "senator_rank_label": "Junior",
  2791. "startdate": "2015-01-06",
  2792. "state": "CO",
  2793. "title": "Sen.",
  2794. "title_long": "Senator",
  2795. "website": "https://www.gardner.senate.gov"
  2796. },
  2797. {
  2798. "caucus": null,
  2799. "congress_numbers": [
  2800. 114,
  2801. 115,
  2802. 116
  2803. ],
  2804. "current": true,
  2805. "description": "Junior Senator for Arkansas",
  2806. "district": null,
  2807. "enddate": "2021-01-03",
  2808. "extra": {
  2809. "address": "124 Russell Senate Office Building Washington DC 20510",
  2810. "contact_form": "http://www.cotton.senate.gov/?p=contact",
  2811. "office": "124 Russell Senate Office Building"
  2812. },
  2813. "leadership_title": null,
  2814. "party": "Republican",
  2815. "person": {
  2816. "bioguideid": "C001095",
  2817. "birthday": "1977-05-13",
  2818. "cspanid": 63928,
  2819. "firstname": "Tom",
  2820. "gender": "male",
  2821. "gender_label": "Male",
  2822. "lastname": "Cotton",
  2823. "link": "https://www.govtrack.us/congress/members/tom_cotton/412508",
  2824. "middlename": "",
  2825. "name": "Sen. Tom Cotton [R-AR]",
  2826. "namemod": "",
  2827. "nickname": "",
  2828. "osid": "N00033363",
  2829. "pvsid": "135651",
  2830. "sortname": "Cotton, Tom (Sen.) [R-AR]",
  2831. "twitterid": "SenTomCotton",
  2832. "youtubeid": "RepTomCotton"
  2833. },
  2834. "phone": "202-224-2353",
  2835. "role_type": "senator",
  2836. "role_type_label": "Senator",
  2837. "senator_class": "class2",
  2838. "senator_class_label": "Class 2",
  2839. "senator_rank": "junior",
  2840. "senator_rank_label": "Junior",
  2841. "startdate": "2015-01-06",
  2842. "state": "AR",
  2843. "title": "Sen.",
  2844. "title_long": "Senator",
  2845. "website": "https://www.cotton.senate.gov"
  2846. },
  2847. {
  2848. "caucus": null,
  2849. "congress_numbers": [
  2850. 114,
  2851. 115,
  2852. 116
  2853. ],
  2854. "current": true,
  2855. "description": "Junior Senator for Montana",
  2856. "district": null,
  2857. "enddate": "2021-01-03",
  2858. "extra": {
  2859. "address": "320 Hart Senate Office Building Washington DC 20510",
  2860. "contact_form": "https://www.daines.senate.gov/connect/email-steve",
  2861. "fax": "202-228-1236",
  2862. "office": "320 Hart Senate Office Building"
  2863. },
  2864. "leadership_title": null,
  2865. "party": "Republican",
  2866. "person": {
  2867. "bioguideid": "D000618",
  2868. "birthday": "1962-08-20",
  2869. "cspanid": 1034037,
  2870. "firstname": "Steve",
  2871. "gender": "male",
  2872. "gender_label": "Male",
  2873. "lastname": "Daines",
  2874. "link": "https://www.govtrack.us/congress/members/steve_daines/412549",
  2875. "middlename": "",
  2876. "name": "Sen. Steve Daines [R-MT]",
  2877. "namemod": "",
  2878. "nickname": "",
  2879. "osid": "N00033054",
  2880. "pvsid": "135720",
  2881. "sortname": "Daines, Steve (Sen.) [R-MT]",
  2882. "twitterid": "SteveDaines",
  2883. "youtubeid": "SteveDainesMT"
  2884. },
  2885. "phone": "202-224-2651",
  2886. "role_type": "senator",
  2887. "role_type_label": "Senator",
  2888. "senator_class": "class2",
  2889. "senator_class_label": "Class 2",
  2890. "senator_rank": "junior",
  2891. "senator_rank_label": "Junior",
  2892. "startdate": "2015-01-06",
  2893. "state": "MT",
  2894. "title": "Sen.",
  2895. "title_long": "Senator",
  2896. "website": "https://www.daines.senate.gov"
  2897. },
  2898. {
  2899. "caucus": null,
  2900. "congress_numbers": [
  2901. 114,
  2902. 115,
  2903. 116
  2904. ],
  2905. "current": true,
  2906. "description": "Junior Senator for New Jersey",
  2907. "district": null,
  2908. "enddate": "2021-01-03",
  2909. "extra": {
  2910. "address": "359 Dirksen Senate Office Building Washington DC 20510",
  2911. "contact_form": "https://www.booker.senate.gov/?p=contact",
  2912. "fax": "202-224-8378",
  2913. "office": "359 Dirksen Senate Office Building"
  2914. },
  2915. "leadership_title": null,
  2916. "party": "Democrat",
  2917. "person": {
  2918. "bioguideid": "B001288",
  2919. "birthday": "1969-04-27",
  2920. "cspanid": 84679,
  2921. "firstname": "Cory",
  2922. "gender": "male",
  2923. "gender_label": "Male",
  2924. "lastname": "Booker",
  2925. "link": "https://www.govtrack.us/congress/members/cory_booker/412598",
  2926. "middlename": "Anthony",
  2927. "name": "Sen. Cory Booker [D-NJ]",
  2928. "namemod": "",
  2929. "nickname": "",
  2930. "osid": "N00035267",
  2931. "pvsid": "76151",
  2932. "sortname": "Booker, Cory (Sen.) [D-NJ]",
  2933. "twitterid": "SenBooker",
  2934. "youtubeid": "SenCoryBooker"
  2935. },
  2936. "phone": "202-224-3224",
  2937. "role_type": "senator",
  2938. "role_type_label": "Senator",
  2939. "senator_class": "class2",
  2940. "senator_class_label": "Class 2",
  2941. "senator_rank": "junior",
  2942. "senator_rank_label": "Junior",
  2943. "startdate": "2015-01-06",
  2944. "state": "NJ",
  2945. "title": "Sen.",
  2946. "title_long": "Senator",
  2947. "website": "https://www.booker.senate.gov"
  2948. },
  2949. {
  2950. "caucus": null,
  2951. "congress_numbers": [
  2952. 114,
  2953. 115,
  2954. 116
  2955. ],
  2956. "current": true,
  2957. "description": "Junior Senator for Alaska",
  2958. "district": null,
  2959. "enddate": "2021-01-03",
  2960. "extra": {
  2961. "address": "702 Hart Senate Office Building Washington DC 20510",
  2962. "contact_form": "https://www.sullivan.senate.gov/contact/email",
  2963. "office": "702 Hart Senate Office Building"
  2964. },
  2965. "leadership_title": null,
  2966. "party": "Republican",
  2967. "person": {
  2968. "bioguideid": "S001198",
  2969. "birthday": "1964-11-13",
  2970. "cspanid": 1023262,
  2971. "firstname": "Dan",
  2972. "gender": "male",
  2973. "gender_label": "Male",
  2974. "lastname": "Sullivan",
  2975. "link": "https://www.govtrack.us/congress/members/dan_sullivan/412665",
  2976. "middlename": "",
  2977. "name": "Sen. Dan Sullivan [R-AK]",
  2978. "namemod": "",
  2979. "nickname": "",
  2980. "osid": "N00035774",
  2981. "pvsid": "114964",
  2982. "sortname": "Sullivan, Dan (Sen.) [R-AK]",
  2983. "twitterid": "SenDanSullivan",
  2984. "youtubeid": null
  2985. },
  2986. "phone": "202-224-3004",
  2987. "role_type": "senator",
  2988. "role_type_label": "Senator",
  2989. "senator_class": "class2",
  2990. "senator_class_label": "Class 2",
  2991. "senator_rank": "junior",
  2992. "senator_rank_label": "Junior",
  2993. "startdate": "2015-01-06",
  2994. "state": "AK",
  2995. "title": "Sen.",
  2996. "title_long": "Senator",
  2997. "website": "https://www.sullivan.senate.gov"
  2998. },
  2999. {
  3000. "caucus": null,
  3001. "congress_numbers": [
  3002. 114,
  3003. 115,
  3004. 116
  3005. ],
  3006. "current": true,
  3007. "description": "Junior Senator for Georgia",
  3008. "district": null,
  3009. "enddate": "2021-01-03",
  3010. "extra": {
  3011. "address": "455 Russell Senate Office Building Washington DC 20510",
  3012. "contact_form": "https://www.perdue.senate.gov/connect/email",
  3013. "office": "455 Russell Senate Office Building"
  3014. },
  3015. "leadership_title": null,
  3016. "party": "Republican",
  3017. "person": {
  3018. "bioguideid": "P000612",
  3019. "birthday": "1949-12-10",
  3020. "cspanid": 75920,
  3021. "firstname": "David",
  3022. "gender": "male",
  3023. "gender_label": "Male",
  3024. "lastname": "Perdue",
  3025. "link": "https://www.govtrack.us/congress/members/david_perdue/412666",
  3026. "middlename": "",
  3027. "name": "Sen. David Perdue [R-GA]",
  3028. "namemod": "",
  3029. "nickname": "",
  3030. "osid": "N00035516",
  3031. "pvsid": "151330",
  3032. "sortname": "Perdue, David (Sen.) [R-GA]",
  3033. "twitterid": "sendavidperdue",
  3034. "youtubeid": null
  3035. },
  3036. "phone": "202-224-3521",
  3037. "role_type": "senator",
  3038. "role_type_label": "Senator",
  3039. "senator_class": "class2",
  3040. "senator_class_label": "Class 2",
  3041. "senator_rank": "junior",
  3042. "senator_rank_label": "Junior",
  3043. "startdate": "2015-01-06",
  3044. "state": "GA",
  3045. "title": "Sen.",
  3046. "title_long": "Senator",
  3047. "website": "https://www.perdue.senate.gov"
  3048. },
  3049. {
  3050. "caucus": null,
  3051. "congress_numbers": [
  3052. 114,
  3053. 115,
  3054. 116
  3055. ],
  3056. "current": true,
  3057. "description": "Junior Senator for Iowa",
  3058. "district": null,
  3059. "enddate": "2021-01-03",
  3060. "extra": {
  3061. "address": "111 Russell Senate Office Building Washington DC 20510",
  3062. "contact_form": "https://www.ernst.senate.gov/public/index.cfm/contact",
  3063. "office": "111 Russell Senate Office Building"
  3064. },
  3065. "leadership_title": null,
  3066. "party": "Republican",
  3067. "person": {
  3068. "bioguideid": "E000295",
  3069. "birthday": "1970-07-01",
  3070. "cspanid": 75342,
  3071. "firstname": "Joni",
  3072. "gender": "female",
  3073. "gender_label": "Female",
  3074. "lastname": "Ernst",
  3075. "link": "https://www.govtrack.us/congress/members/joni_ernst/412667",
  3076. "middlename": "",
  3077. "name": "Sen. Joni Ernst [R-IA]",
  3078. "namemod": "",
  3079. "nickname": "",
  3080. "osid": "N00035483",
  3081. "pvsid": "128583",
  3082. "sortname": "Ernst, Joni (Sen.) [R-IA]",
  3083. "twitterid": "SenJoniErnst",
  3084. "youtubeid": null
  3085. },
  3086. "phone": "202-224-3254",
  3087. "role_type": "senator",
  3088. "role_type_label": "Senator",
  3089. "senator_class": "class2",
  3090. "senator_class_label": "Class 2",
  3091. "senator_rank": "junior",
  3092. "senator_rank_label": "Junior",
  3093. "startdate": "2015-01-06",
  3094. "state": "IA",
  3095. "title": "Sen.",
  3096. "title_long": "Senator",
  3097. "website": "https://www.ernst.senate.gov/public"
  3098. },
  3099. {
  3100. "caucus": null,
  3101. "congress_numbers": [
  3102. 114,
  3103. 115,
  3104. 116
  3105. ],
  3106. "current": true,
  3107. "description": "Junior Senator for North Carolina",
  3108. "district": null,
  3109. "enddate": "2021-01-03",
  3110. "extra": {
  3111. "address": "185 Dirksen Senate Office Building Washington DC 20510",
  3112. "contact_form": "https://www.tillis.senate.gov/public/index.cfm/email-me",
  3113. "office": "185 Dirksen Senate Office Building"
  3114. },
  3115. "leadership_title": null,
  3116. "party": "Republican",
  3117. "person": {
  3118. "bioguideid": "T000476",
  3119. "birthday": "1960-08-30",
  3120. "cspanid": 77055,
  3121. "firstname": "Thom",
  3122. "gender": "male",
  3123. "gender_label": "Male",
  3124. "lastname": "Tillis",
  3125. "link": "https://www.govtrack.us/congress/members/thom_tillis/412668",
  3126. "middlename": "",
  3127. "name": "Sen. Thom Tillis [R-NC]",
  3128. "namemod": "",
  3129. "nickname": "",
  3130. "osid": "N00035492",
  3131. "pvsid": "57717",
  3132. "sortname": "Tillis, Thom (Sen.) [R-NC]",
  3133. "twitterid": "senthomtillis",
  3134. "youtubeid": null
  3135. },
  3136. "phone": "202-224-6342",
  3137. "role_type": "senator",
  3138. "role_type_label": "Senator",
  3139. "senator_class": "class2",
  3140. "senator_class_label": "Class 2",
  3141. "senator_rank": "junior",
  3142. "senator_rank_label": "Junior",
  3143. "startdate": "2015-01-06",
  3144. "state": "NC",
  3145. "title": "Sen.",
  3146. "title_long": "Senator",
  3147. "website": "https://www.tillis.senate.gov/public"
  3148. },
  3149. {
  3150. "caucus": null,
  3151. "congress_numbers": [
  3152. 114,
  3153. 115,
  3154. 116
  3155. ],
  3156. "current": true,
  3157. "description": "Junior Senator for South Dakota",
  3158. "district": null,
  3159. "enddate": "2021-01-03",
  3160. "extra": {
  3161. "address": "502 Hart Senate Office Building Washington DC 20510",
  3162. "contact_form": "https://www.rounds.senate.gov/contact/email-mike",
  3163. "office": "502 Hart Senate Office Building"
  3164. },
  3165. "leadership_title": null,
  3166. "party": "Republican",
  3167. "person": {
  3168. "bioguideid": "R000605",
  3169. "birthday": "1954-10-24",
  3170. "cspanid": 78317,
  3171. "firstname": "Mike",
  3172. "gender": "male",
  3173. "gender_label": "Male",
  3174. "lastname": "Rounds",
  3175. "link": "https://www.govtrack.us/congress/members/mike_rounds/412669",
  3176. "middlename": "",
  3177. "name": "Sen. Mike Rounds [R-SD]",
  3178. "namemod": "",
  3179. "nickname": "",
  3180. "osid": "N00035187",
  3181. "pvsid": "7455",
  3182. "sortname": "Rounds, Mike (Sen.) [R-SD]",
  3183. "twitterid": "SenatorRounds",
  3184. "youtubeid": null
  3185. },
  3186. "phone": "202-224-5842",
  3187. "role_type": "senator",
  3188. "role_type_label": "Senator",
  3189. "senator_class": "class2",
  3190. "senator_class_label": "Class 2",
  3191. "senator_rank": "junior",
  3192. "senator_rank_label": "Junior",
  3193. "startdate": "2015-01-06",
  3194. "state": "SD",
  3195. "title": "Sen.",
  3196. "title_long": "Senator",
  3197. "website": "https://www.rounds.senate.gov"
  3198. },
  3199. {
  3200. "caucus": null,
  3201. "congress_numbers": [
  3202. 114,
  3203. 115,
  3204. 116
  3205. ],
  3206. "current": true,
  3207. "description": "Junior Senator for Nebraska",
  3208. "district": null,
  3209. "enddate": "2021-01-03",
  3210. "extra": {
  3211. "address": "136 Russell Senate Office Building Washington DC 20510",
  3212. "contact_form": "http://www.sasse.senate.gov/public/index.cfm/email-ben",
  3213. "office": "136 Russell Senate Office Building"
  3214. },
  3215. "leadership_title": null,
  3216. "party": "Republican",
  3217. "person": {
  3218. "bioguideid": "S001197",
  3219. "birthday": "1972-02-22",
  3220. "cspanid": 77429,
  3221. "firstname": "Benjamin",
  3222. "gender": "male",
  3223. "gender_label": "Male",
  3224. "lastname": "Sasse",
  3225. "link": "https://www.govtrack.us/congress/members/benjamin_sasse/412671",
  3226. "middlename": "Eric",
  3227. "name": "Sen. Benjamin Sasse [R-NE]",
  3228. "namemod": "",
  3229. "nickname": "",
  3230. "osid": "N00035544",
  3231. "pvsid": "150182",
  3232. "sortname": "Sasse, Benjamin (Sen.) [R-NE]",
  3233. "twitterid": "SenSasse",
  3234. "youtubeid": null
  3235. },
  3236. "phone": "202-224-4224",
  3237. "role_type": "senator",
  3238. "role_type_label": "Senator",
  3239. "senator_class": "class2",
  3240. "senator_class_label": "Class 2",
  3241. "senator_rank": "junior",
  3242. "senator_rank_label": "Junior",
  3243. "startdate": "2015-01-06",
  3244. "state": "NE",
  3245. "title": "Sen.",
  3246. "title_long": "Senator",
  3247. "website": "https://www.sasse.senate.gov/public"
  3248. },
  3249. {
  3250. "caucus": null,
  3251. "congress_numbers": [
  3252. 115,
  3253. 116,
  3254. 117
  3255. ],
  3256. "current": true,
  3257. "description": "Senior Senator for Idaho",
  3258. "district": null,
  3259. "enddate": "2023-01-03",
  3260. "extra": {
  3261. "address": "239 Dirksen Senate Office Building Washington DC 20510",
  3262. "contact_form": "https://www.crapo.senate.gov/contact",
  3263. "fax": "202-228-1375",
  3264. "office": "239 Dirksen Senate Office Building"
  3265. },
  3266. "leadership_title": null,
  3267. "party": "Republican",
  3268. "person": {
  3269. "bioguideid": "C000880",
  3270. "birthday": "1951-05-20",
  3271. "cspanid": 26440,
  3272. "firstname": "Michael",
  3273. "gender": "male",
  3274. "gender_label": "Male",
  3275. "lastname": "Crapo",
  3276. "link": "https://www.govtrack.us/congress/members/michael_crapo/300030",
  3277. "middlename": "D.",
  3278. "name": "Sen. Michael Crapo [R-ID]",
  3279. "namemod": "",
  3280. "nickname": "",
  3281. "osid": "N00006267",
  3282. "pvsid": "26830",
  3283. "sortname": "Crapo, Michael (Sen.) [R-ID]",
  3284. "twitterid": "MikeCrapo",
  3285. "youtubeid": "senatorcrapo"
  3286. },
  3287. "phone": "202-224-6142",
  3288. "role_type": "senator",
  3289. "role_type_label": "Senator",
  3290. "senator_class": "class3",
  3291. "senator_class_label": "Class 3",
  3292. "senator_rank": "senior",
  3293. "senator_rank_label": "Senior",
  3294. "startdate": "2017-01-03",
  3295. "state": "ID",
  3296. "title": "Sen.",
  3297. "title_long": "Senator",
  3298. "website": "https://www.crapo.senate.gov"
  3299. },
  3300. {
  3301. "caucus": null,
  3302. "congress_numbers": [
  3303. 115,
  3304. 116,
  3305. 117
  3306. ],
  3307. "current": true,
  3308. "description": "Senior Senator for Iowa",
  3309. "district": null,
  3310. "enddate": "2023-01-03",
  3311. "extra": {
  3312. "address": "135 Hart Senate Office Building Washington DC 20510",
  3313. "contact_form": "http://www.grassley.senate.gov/contact",
  3314. "fax": "202-224-6020",
  3315. "office": "135 Hart Senate Office Building",
  3316. "rss_url": "http://grassley.senate.gov/customcf/rss_feed.cfm"
  3317. },
  3318. "leadership_title": null,
  3319. "party": "Republican",
  3320. "person": {
  3321. "bioguideid": "G000386",
  3322. "birthday": "1933-09-17",
  3323. "cspanid": 1167,
  3324. "firstname": "Charles",
  3325. "gender": "male",
  3326. "gender_label": "Male",
  3327. "lastname": "Grassley",
  3328. "link": "https://www.govtrack.us/congress/members/charles_grassley/300048",
  3329. "middlename": "E.",
  3330. "name": "Sen. Charles “Chuck” Grassley [R-IA]",
  3331. "namemod": "",
  3332. "nickname": "Chuck",
  3333. "osid": "N00001758",
  3334. "pvsid": "53293",
  3335. "sortname": "Grassley, Charles “Chuck” (Sen.) [R-IA]",
  3336. "twitterid": "ChuckGrassley",
  3337. "youtubeid": "senchuckgrassley"
  3338. },
  3339. "phone": "202-224-3744",
  3340. "role_type": "senator",
  3341. "role_type_label": "Senator",
  3342. "senator_class": "class3",
  3343. "senator_class_label": "Class 3",
  3344. "senator_rank": "senior",
  3345. "senator_rank_label": "Senior",
  3346. "startdate": "2017-01-03",
  3347. "state": "IA",
  3348. "title": "Sen.",
  3349. "title_long": "Senator",
  3350. "website": "https://www.grassley.senate.gov"
  3351. },
  3352. {
  3353. "caucus": null,
  3354. "congress_numbers": [
  3355. 115,
  3356. 116,
  3357. 117
  3358. ],
  3359. "current": true,
  3360. "description": "Senior Senator for Vermont",
  3361. "district": null,
  3362. "enddate": "2023-01-03",
  3363. "extra": {
  3364. "address": "437 Russell Senate Office Building Washington DC 20510",
  3365. "contact_form": "https://www.leahy.senate.gov/contact/",
  3366. "fax": "202-224-3479",
  3367. "office": "437 Russell Senate Office Building",
  3368. "rss_url": "http://www.leahy.senate.gov/rss/feeds/press/"
  3369. },
  3370. "leadership_title": null,
  3371. "party": "Democrat",
  3372. "person": {
  3373. "bioguideid": "L000174",
  3374. "birthday": "1940-03-31",
  3375. "cspanid": 1552,
  3376. "firstname": "Patrick",
  3377. "gender": "male",
  3378. "gender_label": "Male",
  3379. "lastname": "Leahy",
  3380. "link": "https://www.govtrack.us/congress/members/patrick_leahy/300065",
  3381. "middlename": "J.",
  3382. "name": "Sen. Patrick Leahy [D-VT]",
  3383. "namemod": "",
  3384. "nickname": "",
  3385. "osid": "N00009918",
  3386. "pvsid": "53353",
  3387. "sortname": "Leahy, Patrick (Sen.) [D-VT]",
  3388. "twitterid": "SenatorLeahy",
  3389. "youtubeid": "SenatorPatrickLeahy"
  3390. },
  3391. "phone": "202-224-4242",
  3392. "role_type": "senator",
  3393. "role_type_label": "Senator",
  3394. "senator_class": "class3",
  3395. "senator_class_label": "Class 3",
  3396. "senator_rank": "senior",
  3397. "senator_rank_label": "Senior",
  3398. "startdate": "2017-01-03",
  3399. "state": "VT",
  3400. "title": "Sen.",
  3401. "title_long": "Senator",
  3402. "website": "https://www.leahy.senate.gov"
  3403. },
  3404. {
  3405. "caucus": null,
  3406. "congress_numbers": [
  3407. 115,
  3408. 116,
  3409. 117
  3410. ],
  3411. "current": true,
  3412. "description": "Senior Senator for Alaska",
  3413. "district": null,
  3414. "enddate": "2023-01-03",
  3415. "extra": {
  3416. "address": "522 Hart Senate Office Building Washington DC 20510",
  3417. "contact_form": "https://www.murkowski.senate.gov/public/index.cfm/contact",
  3418. "fax": "202-224-5301",
  3419. "office": "522 Hart Senate Office Building",
  3420. "rss_url": "http://www.murkowski.senate.gov/public/?a=rss.feed"
  3421. },
  3422. "leadership_title": null,
  3423. "party": "Republican",
  3424. "person": {
  3425. "bioguideid": "M001153",
  3426. "birthday": "1957-05-22",
  3427. "cspanid": 1004138,
  3428. "firstname": "Lisa",
  3429. "gender": "female",
  3430. "gender_label": "Female",
  3431. "lastname": "Murkowski",
  3432. "link": "https://www.govtrack.us/congress/members/lisa_murkowski/300075",
  3433. "middlename": "A.",
  3434. "name": "Sen. Lisa Murkowski [R-AK]",
  3435. "namemod": "",
  3436. "nickname": "",
  3437. "osid": "N00026050",
  3438. "pvsid": "15841",
  3439. "sortname": "Murkowski, Lisa (Sen.) [R-AK]",
  3440. "twitterid": "LisaMurkowski",
  3441. "youtubeid": "senatormurkowski"
  3442. },
  3443. "phone": "202-224-6665",
  3444. "role_type": "senator",
  3445. "role_type_label": "Senator",
  3446. "senator_class": "class3",
  3447. "senator_class_label": "Class 3",
  3448. "senator_rank": "senior",
  3449. "senator_rank_label": "Senior",
  3450. "startdate": "2017-01-03",
  3451. "state": "AK",
  3452. "title": "Sen.",
  3453. "title_long": "Senator",
  3454. "website": "https://www.murkowski.senate.gov"
  3455. },
  3456. {
  3457. "caucus": null,
  3458. "congress_numbers": [
  3459. 115,
  3460. 116,
  3461. 117
  3462. ],
  3463. "current": true,
  3464. "description": "Senior Senator for Washington",
  3465. "district": null,
  3466. "enddate": "2023-01-03",
  3467. "extra": {
  3468. "address": "154 Russell Senate Office Building Washington DC 20510",
  3469. "contact_form": "http://www.murray.senate.gov/public/index.cfm/contactme",
  3470. "fax": "202-224-0238",
  3471. "office": "154 Russell Senate Office Building",
  3472. "rss_url": "http://www.murray.senate.gov/public/?a=rss.feed"
  3473. },
  3474. "leadership_title": null,
  3475. "party": "Democrat",
  3476. "person": {
  3477. "bioguideid": "M001111",
  3478. "birthday": "1950-10-11",
  3479. "cspanid": 25277,
  3480. "firstname": "Patty",
  3481. "gender": "female",
  3482. "gender_label": "Female",
  3483. "lastname": "Murray",
  3484. "link": "https://www.govtrack.us/congress/members/patty_murray/300076",
  3485. "middlename": "",
  3486. "name": "Sen. Patty Murray [D-WA]",
  3487. "namemod": "",
  3488. "nickname": "",
  3489. "osid": "N00007876",
  3490. "pvsid": "53358",
  3491. "sortname": "Murray, Patty (Sen.) [D-WA]",
  3492. "twitterid": "PattyMurray",
  3493. "youtubeid": "SenatorPattyMurray"
  3494. },
  3495. "phone": "202-224-2621",
  3496. "role_type": "senator",
  3497. "role_type_label": "Senator",
  3498. "senator_class": "class3",
  3499. "senator_class_label": "Class 3",
  3500. "senator_rank": "senior",
  3501. "senator_rank_label": "Senior",
  3502. "startdate": "2017-01-03",
  3503. "state": "WA",
  3504. "title": "Sen.",
  3505. "title_long": "Senator",
  3506. "website": "https://www.murray.senate.gov/public"
  3507. },
  3508. {
  3509. "caucus": null,
  3510. "congress_numbers": [
  3511. 115,
  3512. 116,
  3513. 117
  3514. ],
  3515. "current": true,
  3516. "description": "Senior Senator for New York",
  3517. "district": null,
  3518. "enddate": "2023-01-03",
  3519. "extra": {
  3520. "address": "322 Hart Senate Office Building Washington DC 20510",
  3521. "contact_form": "https://www.schumer.senate.gov/contact/email-chuck",
  3522. "fax": "202-228-3027",
  3523. "office": "322 Hart Senate Office Building"
  3524. },
  3525. "leadership_title": "Minority Leader",
  3526. "party": "Democrat",
  3527. "person": {
  3528. "bioguideid": "S000148",
  3529. "birthday": "1950-11-23",
  3530. "cspanid": 5929,
  3531. "firstname": "Charles",
  3532. "gender": "male",
  3533. "gender_label": "Male",
  3534. "lastname": "Schumer",
  3535. "link": "https://www.govtrack.us/congress/members/charles_schumer/300087",
  3536. "middlename": "E.",
  3537. "name": "Sen. Charles “Chuck” Schumer [D-NY]",
  3538. "namemod": "",
  3539. "nickname": "Chuck",
  3540. "osid": "N00001093",
  3541. "pvsid": "26976",
  3542. "sortname": "Schumer, Charles “Chuck” (Sen.) [D-NY]",
  3543. "twitterid": "SenSchumer",
  3544. "youtubeid": "SenatorSchumer"
  3545. },
  3546. "phone": "202-224-6542",
  3547. "role_type": "senator",
  3548. "role_type_label": "Senator",
  3549. "senator_class": "class3",
  3550. "senator_class_label": "Class 3",
  3551. "senator_rank": "senior",
  3552. "senator_rank_label": "Senior",
  3553. "startdate": "2017-01-03",
  3554. "state": "NY",
  3555. "title": "Sen.",
  3556. "title_long": "Senator",
  3557. "website": "https://www.schumer.senate.gov"
  3558. },
  3559. {
  3560. "caucus": null,
  3561. "congress_numbers": [
  3562. 115,
  3563. 116,
  3564. 117
  3565. ],
  3566. "current": true,
  3567. "description": "Senior Senator for Alabama",
  3568. "district": null,
  3569. "enddate": "2023-01-03",
  3570. "extra": {
  3571. "address": "304 Russell Senate Office Building Washington DC 20510",
  3572. "contact_form": "https://www.shelby.senate.gov/public/index.cfm/emailsenatorshelby",
  3573. "fax": "202-224-3416",
  3574. "office": "304 Russell Senate Office Building",
  3575. "rss_url": "http://www.shelby.senate.gov/public/index.cfm/rss/feed"
  3576. },
  3577. "leadership_title": null,
  3578. "party": "Republican",
  3579. "person": {
  3580. "bioguideid": "S000320",
  3581. "birthday": "1934-05-06",
  3582. "cspanid": 1859,
  3583. "firstname": "Richard",
  3584. "gender": "male",
  3585. "gender_label": "Male",
  3586. "lastname": "Shelby",
  3587. "link": "https://www.govtrack.us/congress/members/richard_shelby/300089",
  3588. "middlename": "C.",
  3589. "name": "Sen. Richard Shelby [R-AL]",
  3590. "namemod": "",
  3591. "nickname": "",
  3592. "osid": "N00009920",
  3593. "pvsid": "53266",
  3594. "sortname": "Shelby, Richard (Sen.) [R-AL]",
  3595. "twitterid": "SenShelby",
  3596. "youtubeid": "SenatorRichardShelby"
  3597. },
  3598. "phone": "202-224-5744",
  3599. "role_type": "senator",
  3600. "role_type_label": "Senator",
  3601. "senator_class": "class3",
  3602. "senator_class_label": "Class 3",
  3603. "senator_rank": "senior",
  3604. "senator_rank_label": "Senior",
  3605. "startdate": "2017-01-03",
  3606. "state": "AL",
  3607. "title": "Sen.",
  3608. "title_long": "Senator",
  3609. "website": "https://www.shelby.senate.gov"
  3610. },
  3611. {
  3612. "caucus": null,
  3613. "congress_numbers": [
  3614. 115,
  3615. 116,
  3616. 117
  3617. ],
  3618. "current": true,
  3619. "description": "Senior Senator for Oregon",
  3620. "district": null,
  3621. "enddate": "2023-01-03",
  3622. "extra": {
  3623. "address": "221 Dirksen Senate Office Building Washington DC 20510",
  3624. "contact_form": "https://www.wyden.senate.gov/contact/",
  3625. "fax": "202-228-2717",
  3626. "office": "221 Dirksen Senate Office Building",
  3627. "rss_url": "http://www.wyden.senate.gov/rss/feeds/?type=all&"
  3628. },
  3629. "leadership_title": null,
  3630. "party": "Democrat",
  3631. "person": {
  3632. "bioguideid": "W000779",
  3633. "birthday": "1949-05-03",
  3634. "cspanid": 1962,
  3635. "firstname": "Ron",
  3636. "gender": "male",
  3637. "gender_label": "Male",
  3638. "lastname": "Wyden",
  3639. "link": "https://www.govtrack.us/congress/members/ron_wyden/300100",
  3640. "middlename": "",
  3641. "name": "Sen. Ron Wyden [D-OR]",
  3642. "namemod": "",
  3643. "nickname": "",
  3644. "osid": "N00007724",
  3645. "pvsid": "27036",
  3646. "sortname": "Wyden, Ron (Sen.) [D-OR]",
  3647. "twitterid": "RonWyden",
  3648. "youtubeid": "senronwyden"
  3649. },
  3650. "phone": "202-224-5244",
  3651. "role_type": "senator",
  3652. "role_type_label": "Senator",
  3653. "senator_class": "class3",
  3654. "senator_class_label": "Class 3",
  3655. "senator_rank": "senior",
  3656. "senator_rank_label": "Senior",
  3657. "startdate": "2017-01-03",
  3658. "state": "OR",
  3659. "title": "Sen.",
  3660. "title_long": "Senator",
  3661. "website": "https://www.wyden.senate.gov"
  3662. },
  3663. {
  3664. "caucus": null,
  3665. "congress_numbers": [
  3666. 115,
  3667. 116,
  3668. 117
  3669. ],
  3670. "current": true,
  3671. "description": "Junior Senator for Missouri",
  3672. "district": null,
  3673. "enddate": "2023-01-03",
  3674. "extra": {
  3675. "address": "260 Russell Senate Office Building Washington DC 20510",
  3676. "contact_form": "https://www.blunt.senate.gov/public/index.cfm/contact-roy",
  3677. "fax": "202-224-8149",
  3678. "office": "260 Russell Senate Office Building",
  3679. "rss_url": "http://www.blunt.senate.gov/public/?a=rss.feed"
  3680. },
  3681. "leadership_title": null,
  3682. "party": "Republican",
  3683. "person": {
  3684. "bioguideid": "B000575",
  3685. "birthday": "1950-01-10",
  3686. "cspanid": 45465,
  3687. "firstname": "Roy",
  3688. "gender": "male",
  3689. "gender_label": "Male",
  3690. "lastname": "Blunt",
  3691. "link": "https://www.govtrack.us/congress/members/roy_blunt/400034",
  3692. "middlename": "",
  3693. "name": "Sen. Roy Blunt [R-MO]",
  3694. "namemod": "",
  3695. "nickname": "",
  3696. "osid": "N00005195",
  3697. "pvsid": "418",
  3698. "sortname": "Blunt, Roy (Sen.) [R-MO]",
  3699. "twitterid": "RoyBlunt",
  3700. "youtubeid": "SenatorBlunt"
  3701. },
  3702. "phone": "202-224-5721",
  3703. "role_type": "senator",
  3704. "role_type_label": "Senator",
  3705. "senator_class": "class3",
  3706. "senator_class_label": "Class 3",
  3707. "senator_rank": "junior",
  3708. "senator_rank_label": "Junior",
  3709. "startdate": "2017-01-03",
  3710. "state": "MO",
  3711. "title": "Sen.",
  3712. "title_long": "Senator",
  3713. "website": "https://www.blunt.senate.gov/public"
  3714. },
  3715. {
  3716. "caucus": null,
  3717. "congress_numbers": [
  3718. 115,
  3719. 116,
  3720. 117
  3721. ],
  3722. "current": true,
  3723. "description": "Senior Senator for Arkansas",
  3724. "district": null,
  3725. "enddate": "2023-01-03",
  3726. "extra": {
  3727. "address": "141 Hart Senate Office Building Washington DC 20510",
  3728. "contact_form": "https://www.boozman.senate.gov/public/index.cfm/contact",
  3729. "fax": "202-228-1371",
  3730. "office": "141 Hart Senate Office Building",
  3731. "rss_url": "http://www.boozman.senate.gov/public/index.cfm/rss/feed"
  3732. },
  3733. "leadership_title": null,
  3734. "party": "Republican",
  3735. "person": {
  3736. "bioguideid": "B001236",
  3737. "birthday": "1950-12-10",
  3738. "cspanid": 92069,
  3739. "firstname": "John",
  3740. "gender": "male",
  3741. "gender_label": "Male",
  3742. "lastname": "Boozman",
  3743. "link": "https://www.govtrack.us/congress/members/john_boozman/400040",
  3744. "middlename": "",
  3745. "name": "Sen. John Boozman [R-AR]",
  3746. "namemod": "",
  3747. "nickname": "",
  3748. "osid": "N00013873",
  3749. "pvsid": "27958",
  3750. "sortname": "Boozman, John (Sen.) [R-AR]",
  3751. "twitterid": "JohnBoozman",
  3752. "youtubeid": "BoozmanPressOffice"
  3753. },
  3754. "phone": "202-224-4843",
  3755. "role_type": "senator",
  3756. "role_type_label": "Senator",
  3757. "senator_class": "class3",
  3758. "senator_class_label": "Class 3",
  3759. "senator_rank": "senior",
  3760. "senator_rank_label": "Senior",
  3761. "startdate": "2017-01-03",
  3762. "state": "AR",
  3763. "title": "Sen.",
  3764. "title_long": "Senator",
  3765. "website": "https://www.boozman.senate.gov/public"
  3766. },
  3767. {
  3768. "caucus": null,
  3769. "congress_numbers": [
  3770. 115,
  3771. 116,
  3772. 117
  3773. ],
  3774. "current": true,
  3775. "description": "Senior Senator for North Carolina",
  3776. "district": null,
  3777. "enddate": "2023-01-03",
  3778. "extra": {
  3779. "address": "217 Russell Senate Office Building Washington DC 20510",
  3780. "contact_form": "https://www.burr.senate.gov/contact/email",
  3781. "fax": "202-228-2981",
  3782. "office": "217 Russell Senate Office Building",
  3783. "rss_url": "http://www.burr.senate.gov/public/index.cfm?fuseaction=rss.feed"
  3784. },
  3785. "leadership_title": null,
  3786. "party": "Republican",
  3787. "person": {
  3788. "bioguideid": "B001135",
  3789. "birthday": "1955-11-30",
  3790. "cspanid": 31054,
  3791. "firstname": "Richard",
  3792. "gender": "male",
  3793. "gender_label": "Male",
  3794. "lastname": "Burr",
  3795. "link": "https://www.govtrack.us/congress/members/richard_burr/400054",
  3796. "middlename": "M.",
  3797. "name": "Sen. Richard Burr [R-NC]",
  3798. "namemod": "",
  3799. "nickname": "",
  3800. "osid": "N00002221",
  3801. "pvsid": "21787",
  3802. "sortname": "Burr, Richard (Sen.) [R-NC]",
  3803. "twitterid": "SenatorBurr",
  3804. "youtubeid": "SenatorRichardBurr"
  3805. },
  3806. "phone": "202-224-3154",
  3807. "role_type": "senator",
  3808. "role_type_label": "Senator",
  3809. "senator_class": "class3",
  3810. "senator_class_label": "Class 3",
  3811. "senator_rank": "senior",
  3812. "senator_rank_label": "Senior",
  3813. "startdate": "2017-01-03",
  3814. "state": "NC",
  3815. "title": "Sen.",
  3816. "title_long": "Senator",
  3817. "website": "https://www.burr.senate.gov"
  3818. },
  3819. {
  3820. "caucus": null,
  3821. "congress_numbers": [
  3822. 115,
  3823. 116,
  3824. 117
  3825. ],
  3826. "current": true,
  3827. "description": "Senior Senator for Georgia",
  3828. "district": null,
  3829. "enddate": "2023-01-03",
  3830. "extra": {
  3831. "address": "131 Russell Senate Office Building Washington DC 20510",
  3832. "contact_form": "https://www.isakson.senate.gov/public/index.cfm/email-me",
  3833. "fax": "202-228-0724",
  3834. "office": "131 Russell Senate Office Building",
  3835. "rss_url": "http://www.isakson.senate.gov/public/?a=RSS.Feed"
  3836. },
  3837. "leadership_title": null,
  3838. "party": "Republican",
  3839. "person": {
  3840. "bioguideid": "I000055",
  3841. "birthday": "1944-12-28",
  3842. "cspanid": 59135,
  3843. "firstname": "John",
  3844. "gender": "male",
  3845. "gender_label": "Male",
  3846. "lastname": "Isakson",
  3847. "link": "https://www.govtrack.us/congress/members/john_isakson/400194",
  3848. "middlename": "H.",
  3849. "name": "Sen. John “Johnny” Isakson [R-GA]",
  3850. "namemod": "",
  3851. "nickname": "Johnny",
  3852. "osid": "N00002593",
  3853. "pvsid": "1721",
  3854. "sortname": "Isakson, John “Johnny” (Sen.) [R-GA]",
  3855. "twitterid": "SenatorIsakson",
  3856. "youtubeid": "SenatorIsakson"
  3857. },
  3858. "phone": "202-224-3643",
  3859. "role_type": "senator",
  3860. "role_type_label": "Senator",
  3861. "senator_class": "class3",
  3862. "senator_class_label": "Class 3",
  3863. "senator_rank": "senior",
  3864. "senator_rank_label": "Senior",
  3865. "startdate": "2017-01-03",
  3866. "state": "GA",
  3867. "title": "Sen.",
  3868. "title_long": "Senator",
  3869. "website": "https://www.isakson.senate.gov"
  3870. },
  3871. {
  3872. "caucus": null,
  3873. "congress_numbers": [
  3874. 115,
  3875. 116,
  3876. 117
  3877. ],
  3878. "current": true,
  3879. "description": "Junior Senator for Kansas",
  3880. "district": null,
  3881. "enddate": "2023-01-03",
  3882. "extra": {
  3883. "address": "521 Dirksen Senate Office Building Washington DC 20510",
  3884. "contact_form": "https://www.moran.senate.gov/public/index.cfm/e-mail-jerry",
  3885. "fax": "202-228-6966",
  3886. "office": "521 Dirksen Senate Office Building",
  3887. "rss_url": "http://www.moran.senate.gov/public/index.cfm/rss/feed/"
  3888. },
  3889. "leadership_title": null,
  3890. "party": "Republican",
  3891. "person": {
  3892. "bioguideid": "M000934",
  3893. "birthday": "1954-05-29",
  3894. "cspanid": 45469,
  3895. "firstname": "Jerry",
  3896. "gender": "male",
  3897. "gender_label": "Male",
  3898. "lastname": "Moran",
  3899. "link": "https://www.govtrack.us/congress/members/jerry_moran/400284",
  3900. "middlename": "",
  3901. "name": "Sen. Jerry Moran [R-KS]",
  3902. "namemod": "",
  3903. "nickname": "",
  3904. "osid": "N00005282",
  3905. "pvsid": "542",
  3906. "sortname": "Moran, Jerry (Sen.) [R-KS]",
  3907. "twitterid": "JerryMoran",
  3908. "youtubeid": "senatorjerrymoran"
  3909. },
  3910. "phone": "202-224-6521",
  3911. "role_type": "senator",
  3912. "role_type_label": "Senator",
  3913. "senator_class": "class3",
  3914. "senator_class_label": "Class 3",
  3915. "senator_rank": "junior",
  3916. "senator_rank_label": "Junior",
  3917. "startdate": "2017-01-03",
  3918. "state": "KS",
  3919. "title": "Sen.",
  3920. "title_long": "Senator",
  3921. "website": "https://www.moran.senate.gov"
  3922. },
  3923. {
  3924. "caucus": null,
  3925. "congress_numbers": [
  3926. 115,
  3927. 116,
  3928. 117
  3929. ],
  3930. "current": true,
  3931. "description": "Junior Senator for Ohio",
  3932. "district": null,
  3933. "enddate": "2023-01-03",
  3934. "extra": {
  3935. "address": "448 Russell Senate Office Building Washington DC 20510",
  3936. "contact_form": "https://www.portman.senate.gov/public/index.cfm/contact?p=contact-form",
  3937. "office": "448 Russell Senate Office Building",
  3938. "rss_url": "http://www.portman.senate.gov/public/index.cfm/rss/feed"
  3939. },
  3940. "leadership_title": null,
  3941. "party": "Republican",
  3942. "person": {
  3943. "bioguideid": "P000449",
  3944. "birthday": "1955-12-19",
  3945. "cspanid": 31819,
  3946. "firstname": "Robert",
  3947. "gender": "male",
  3948. "gender_label": "Male",
  3949. "lastname": "Portman",
  3950. "link": "https://www.govtrack.us/congress/members/robert_portman/400325",
  3951. "middlename": "J.",
  3952. "name": "Sen. Robert “Rob” Portman [R-OH]",
  3953. "namemod": "",
  3954. "nickname": "Rob",
  3955. "osid": "N00003682",
  3956. "pvsid": "27008",
  3957. "sortname": "Portman, Robert “Rob” (Sen.) [R-OH]",
  3958. "twitterid": "SenRobPortman",
  3959. "youtubeid": "SenRobPortman"
  3960. },
  3961. "phone": "202-224-3353",
  3962. "role_type": "senator",
  3963. "role_type_label": "Senator",
  3964. "senator_class": "class3",
  3965. "senator_class_label": "Class 3",
  3966. "senator_rank": "junior",
  3967. "senator_rank_label": "Junior",
  3968. "startdate": "2017-01-03",
  3969. "state": "OH",
  3970. "title": "Sen.",
  3971. "title_long": "Senator",
  3972. "website": "https://www.portman.senate.gov"
  3973. },
  3974. {
  3975. "caucus": null,
  3976. "congress_numbers": [
  3977. 115,
  3978. 116,
  3979. 117
  3980. ],
  3981. "current": true,
  3982. "description": "Junior Senator for Pennsylvania",
  3983. "district": null,
  3984. "enddate": "2023-01-03",
  3985. "extra": {
  3986. "address": "248 Russell Senate Office Building Washington DC 20510",
  3987. "contact_form": "https://www.toomey.senate.gov/?p=contact",
  3988. "fax": "202-228-0284",
  3989. "office": "248 Russell Senate Office Building",
  3990. "rss_url": "http://toomey.senate.gov/rss/?p=hot_topic"
  3991. },
  3992. "leadership_title": null,
  3993. "party": "Republican",
  3994. "person": {
  3995. "bioguideid": "T000461",
  3996. "birthday": "1961-11-17",
  3997. "cspanid": 7958,
  3998. "firstname": "Patrick",
  3999. "gender": "male",
  4000. "gender_label": "Male",
  4001. "lastname": "Toomey",
  4002. "link": "https://www.govtrack.us/congress/members/patrick_toomey/400408",
  4003. "middlename": "J.",
  4004. "name": "Sen. Patrick “Pat” Toomey [R-PA]",
  4005. "namemod": "",
  4006. "nickname": "Pat",
  4007. "osid": "N00001489",
  4008. "pvsid": "24096",
  4009. "sortname": "Toomey, Patrick “Pat” (Sen.) [R-PA]",
  4010. "twitterid": "SenToomey",
  4011. "youtubeid": "sentoomey"
  4012. },
  4013. "phone": "202-224-4254",
  4014. "role_type": "senator",
  4015. "role_type_label": "Senator",
  4016. "senator_class": "class3",
  4017. "senator_class_label": "Class 3",
  4018. "senator_rank": "junior",
  4019. "senator_rank_label": "Junior",
  4020. "startdate": "2017-01-03",
  4021. "state": "PA",
  4022. "title": "Sen.",
  4023. "title_long": "Senator",
  4024. "website": "https://www.toomey.senate.gov"
  4025. },
  4026. {
  4027. "caucus": null,
  4028. "congress_numbers": [
  4029. 115,
  4030. 116,
  4031. 117
  4032. ],
  4033. "current": true,
  4034. "description": "Junior Senator for Maryland",
  4035. "district": null,
  4036. "enddate": "2023-01-03",
  4037. "extra": {
  4038. "address": "110 Hart Senate Office Building Washington DC 20510",
  4039. "contact_form": "http://www.vanhollen.senate.gov/contact/email",
  4040. "fax": "202-225-0375",
  4041. "office": "110 Hart Senate Office Building"
  4042. },
  4043. "leadership_title": null,
  4044. "party": "Democrat",
  4045. "person": {
  4046. "bioguideid": "V000128",
  4047. "birthday": "1959-01-10",
  4048. "cspanid": 20756,
  4049. "firstname": "Chris",
  4050. "gender": "male",
  4051. "gender_label": "Male",
  4052. "lastname": "Van Hollen",
  4053. "link": "https://www.govtrack.us/congress/members/chris_van_hollen/400415",
  4054. "middlename": "",
  4055. "name": "Sen. Chris Van Hollen [D-MD]",
  4056. "namemod": "Jr.",
  4057. "nickname": "",
  4058. "osid": "N00013820",
  4059. "pvsid": "6098",
  4060. "sortname": "Van Hollen, Chris (Sen.) [D-MD]",
  4061. "twitterid": "ChrisVanHollen",
  4062. "youtubeid": "RepChrisVanHollen"
  4063. },
  4064. "phone": "202-224-4654",
  4065. "role_type": "senator",
  4066. "role_type_label": "Senator",
  4067. "senator_class": "class3",
  4068. "senator_class_label": "Class 3",
  4069. "senator_rank": "junior",
  4070. "senator_rank_label": "Junior",
  4071. "startdate": "2017-01-03",
  4072. "state": "MD",
  4073. "title": "Sen.",
  4074. "title_long": "Senator",
  4075. "website": "https://www.vanhollen.senate.gov"
  4076. },
  4077. {
  4078. "caucus": null,
  4079. "congress_numbers": [
  4080. 115,
  4081. 116,
  4082. 117
  4083. ],
  4084. "current": true,
  4085. "description": "Senior Senator for South Dakota",
  4086. "district": null,
  4087. "enddate": "2023-01-03",
  4088. "extra": {
  4089. "address": "511 Dirksen Senate Office Building Washington DC 20510",
  4090. "contact_form": "http://www.thune.senate.gov/public/index.cfm/contact",
  4091. "fax": "202-228-5429",
  4092. "office": "511 Dirksen Senate Office Building",
  4093. "rss_url": "http://www.thune.senate.gov/public/index.cfm/rss/feed"
  4094. },
  4095. "leadership_title": null,
  4096. "party": "Republican",
  4097. "person": {
  4098. "bioguideid": "T000250",
  4099. "birthday": "1961-01-07",
  4100. "cspanid": 45552,
  4101. "firstname": "John",
  4102. "gender": "male",
  4103. "gender_label": "Male",
  4104. "lastname": "Thune",
  4105. "link": "https://www.govtrack.us/congress/members/john_thune/400546",
  4106. "middlename": "",
  4107. "name": "Sen. John Thune [R-SD]",
  4108. "namemod": "",
  4109. "nickname": "",
  4110. "osid": "N00004572",
  4111. "pvsid": "398",
  4112. "sortname": "Thune, John (Sen.) [R-SD]",
  4113. "twitterid": "SenJohnThune",
  4114. "youtubeid": "johnthune"
  4115. },
  4116. "phone": "202-224-2321",
  4117. "role_type": "senator",
  4118. "role_type_label": "Senator",
  4119. "senator_class": "class3",
  4120. "senator_class_label": "Class 3",
  4121. "senator_rank": "senior",
  4122. "senator_rank_label": "Senior",
  4123. "startdate": "2017-01-03",
  4124. "state": "SD",
  4125. "title": "Sen.",
  4126. "title_long": "Senator",
  4127. "website": "https://www.thune.senate.gov"
  4128. },
  4129. {
  4130. "caucus": null,
  4131. "congress_numbers": [
  4132. 115,
  4133. 116,
  4134. 117
  4135. ],
  4136. "current": true,
  4137. "description": "Senior Senator for Colorado",
  4138. "district": null,
  4139. "enddate": "2023-01-03",
  4140. "extra": {
  4141. "address": "261 Russell Senate Office Building Washington DC 20510",
  4142. "contact_form": "https://www.bennet.senate.gov/public/index.cfm/contact",
  4143. "fax": "202-228-5097",
  4144. "office": "261 Russell Senate Office Building",
  4145. "rss_url": "http://www.bennet.senate.gov/rss/feeds/?type=news"
  4146. },
  4147. "leadership_title": null,
  4148. "party": "Democrat",
  4149. "person": {
  4150. "bioguideid": "B001267",
  4151. "birthday": "1964-11-28",
  4152. "cspanid": 1031622,
  4153. "firstname": "Michael",
  4154. "gender": "male",
  4155. "gender_label": "Male",
  4156. "lastname": "Bennet",
  4157. "link": "https://www.govtrack.us/congress/members/michael_bennet/412330",
  4158. "middlename": "F.",
  4159. "name": "Sen. Michael Bennet [D-CO]",
  4160. "namemod": "",
  4161. "nickname": "",
  4162. "osid": "N00030608",
  4163. "pvsid": "110942",
  4164. "sortname": "Bennet, Michael (Sen.) [D-CO]",
  4165. "twitterid": "SenBennetCo",
  4166. "youtubeid": "SenatorBennet"
  4167. },
  4168. "phone": "202-224-5852",
  4169. "role_type": "senator",
  4170. "role_type_label": "Senator",
  4171. "senator_class": "class3",
  4172. "senator_class_label": "Class 3",
  4173. "senator_rank": "senior",
  4174. "senator_rank_label": "Senior",
  4175. "startdate": "2017-01-03",
  4176. "state": "CO",
  4177. "title": "Sen.",
  4178. "title_long": "Senator",
  4179. "website": "https://www.bennet.senate.gov/public"
  4180. },
  4181. {
  4182. "caucus": null,
  4183. "congress_numbers": [
  4184. 115,
  4185. 116,
  4186. 117
  4187. ],
  4188. "current": true,
  4189. "description": "Junior Senator for Indiana",
  4190. "district": null,
  4191. "enddate": "2023-01-03",
  4192. "extra": {
  4193. "address": "400 Russell Senate Office Building Washington DC 20510",
  4194. "contact_form": "https://www.young.senate.gov/contact",
  4195. "fax": "202-226-6866",
  4196. "office": "400 Russell Senate Office Building"
  4197. },
  4198. "leadership_title": null,
  4199. "party": "Republican",
  4200. "person": {
  4201. "bioguideid": "Y000064",
  4202. "birthday": "1972-08-24",
  4203. "cspanid": 1033743,
  4204. "firstname": "Todd",
  4205. "gender": "male",
  4206. "gender_label": "Male",
  4207. "lastname": "Young",
  4208. "link": "https://www.govtrack.us/congress/members/todd_young/412428",
  4209. "middlename": "C.",
  4210. "name": "Sen. Todd Young [R-IN]",
  4211. "namemod": "",
  4212. "nickname": "",
  4213. "osid": "N00030670",
  4214. "pvsid": "120345",
  4215. "sortname": "Young, Todd (Sen.) [R-IN]",
  4216. "twitterid": "SenToddYoung",
  4217. "youtubeid": "RepToddYoung"
  4218. },
  4219. "phone": "202-224-5623",
  4220. "role_type": "senator",
  4221. "role_type_label": "Senator",
  4222. "senator_class": "class3",
  4223. "senator_class_label": "Class 3",
  4224. "senator_rank": "junior",
  4225. "senator_rank_label": "Junior",
  4226. "startdate": "2017-01-03",
  4227. "state": "IN",
  4228. "title": "Sen.",
  4229. "title_long": "Senator",
  4230. "website": "https://www.young.senate.gov"
  4231. },
  4232. {
  4233. "caucus": null,
  4234. "congress_numbers": [
  4235. 115,
  4236. 116,
  4237. 117
  4238. ],
  4239. "current": true,
  4240. "description": "Junior Senator for Oklahoma",
  4241. "district": null,
  4242. "enddate": "2023-01-03",
  4243. "extra": {
  4244. "address": "316 Hart Senate Office Building Washington DC 20510",
  4245. "contact_form": "http://www.lankford.senate.gov/contact/email",
  4246. "office": "316 Hart Senate Office Building"
  4247. },
  4248. "leadership_title": null,
  4249. "party": "Republican",
  4250. "person": {
  4251. "bioguideid": "L000575",
  4252. "birthday": "1968-03-04",
  4253. "cspanid": 1033847,
  4254. "firstname": "James",
  4255. "gender": "male",
  4256. "gender_label": "Male",
  4257. "lastname": "Lankford",
  4258. "link": "https://www.govtrack.us/congress/members/james_lankford/412464",
  4259. "middlename": "",
  4260. "name": "Sen. James Lankford [R-OK]",
  4261. "namemod": "",
  4262. "nickname": "",
  4263. "osid": "N00031129",
  4264. "pvsid": "124938",
  4265. "sortname": "Lankford, James (Sen.) [R-OK]",
  4266. "twitterid": "SenatorLankford",
  4267. "youtubeid": "SenatorLankford"
  4268. },
  4269. "phone": "202-224-5754",
  4270. "role_type": "senator",
  4271. "role_type_label": "Senator",
  4272. "senator_class": "class3",
  4273. "senator_class_label": "Class 3",
  4274. "senator_rank": "junior",
  4275. "senator_rank_label": "Junior",
  4276. "startdate": "2017-01-03",
  4277. "state": "OK",
  4278. "title": "Sen.",
  4279. "title_long": "Senator",
  4280. "website": "https://www.lankford.senate.gov"
  4281. },
  4282. {
  4283. "caucus": null,
  4284. "congress_numbers": [
  4285. 115,
  4286. 116,
  4287. 117
  4288. ],
  4289. "current": true,
  4290. "description": "Junior Senator for South Carolina",
  4291. "district": null,
  4292. "enddate": "2023-01-03",
  4293. "extra": {
  4294. "address": "717 Hart Senate Office Building Washington DC 20510",
  4295. "contact_form": "https://www.scott.senate.gov/contact/email-me",
  4296. "fax": "202-225-3407",
  4297. "office": "717 Hart Senate Office Building",
  4298. "rss_url": "http://www.scott.senate.gov/rss.xml"
  4299. },
  4300. "leadership_title": null,
  4301. "party": "Republican",
  4302. "person": {
  4303. "bioguideid": "S001184",
  4304. "birthday": "1965-09-19",
  4305. "cspanid": 623506,
  4306. "firstname": "Tim",
  4307. "gender": "male",
  4308. "gender_label": "Male",
  4309. "lastname": "Scott",
  4310. "link": "https://www.govtrack.us/congress/members/tim_scott/412471",
  4311. "middlename": "",
  4312. "name": "Sen. Tim Scott [R-SC]",
  4313. "namemod": "",
  4314. "nickname": "",
  4315. "osid": "N00031782",
  4316. "pvsid": "11940",
  4317. "sortname": "Scott, Tim (Sen.) [R-SC]",
  4318. "twitterid": "SenatorTimScott",
  4319. "youtubeid": "SenatorTimScott"
  4320. },
  4321. "phone": "202-224-6121",
  4322. "role_type": "senator",
  4323. "role_type_label": "Senator",
  4324. "senator_class": "class3",
  4325. "senator_class_label": "Class 3",
  4326. "senator_rank": "junior",
  4327. "senator_rank_label": "Junior",
  4328. "startdate": "2017-01-03",
  4329. "state": "SC",
  4330. "title": "Sen.",
  4331. "title_long": "Senator",
  4332. "website": "https://www.scott.senate.gov"
  4333. },
  4334. {
  4335. "caucus": null,
  4336. "congress_numbers": [
  4337. 115,
  4338. 116,
  4339. 117
  4340. ],
  4341. "current": true,
  4342. "description": "Senior Senator for Connecticut",
  4343. "district": null,
  4344. "enddate": "2023-01-03",
  4345. "extra": {
  4346. "address": "706 Hart Senate Office Building Washington DC 20510",
  4347. "contact_form": "https://www.blumenthal.senate.gov/contact/",
  4348. "fax": "202-224-9673",
  4349. "office": "706 Hart Senate Office Building",
  4350. "rss_url": "http://www.blumenthal.senate.gov/rss/feeds/?type=all"
  4351. },
  4352. "leadership_title": null,
  4353. "party": "Democrat",
  4354. "person": {
  4355. "bioguideid": "B001277",
  4356. "birthday": "1946-02-13",
  4357. "cspanid": 21799,
  4358. "firstname": "Richard",
  4359. "gender": "male",
  4360. "gender_label": "Male",
  4361. "lastname": "Blumenthal",
  4362. "link": "https://www.govtrack.us/congress/members/richard_blumenthal/412490",
  4363. "middlename": "",
  4364. "name": "Sen. Richard Blumenthal [D-CT]",
  4365. "namemod": "",
  4366. "nickname": "",
  4367. "osid": "N00031685",
  4368. "pvsid": "1568",
  4369. "sortname": "Blumenthal, Richard (Sen.) [D-CT]",
  4370. "twitterid": "SenBlumenthal",
  4371. "youtubeid": "SenatorBlumenthal"
  4372. },
  4373. "phone": "202-224-2823",
  4374. "role_type": "senator",
  4375. "role_type_label": "Senator",
  4376. "senator_class": "class3",
  4377. "senator_class_label": "Class 3",
  4378. "senator_rank": "senior",
  4379. "senator_rank_label": "Senior",
  4380. "startdate": "2017-01-03",
  4381. "state": "CT",
  4382. "title": "Sen.",
  4383. "title_long": "Senator",
  4384. "website": "https://www.blumenthal.senate.gov"
  4385. },
  4386. {
  4387. "caucus": null,
  4388. "congress_numbers": [
  4389. 115,
  4390. 116,
  4391. 117
  4392. ],
  4393. "current": true,
  4394. "description": "Junior Senator for Florida",
  4395. "district": null,
  4396. "enddate": "2023-01-03",
  4397. "extra": {
  4398. "address": "284 Russell Senate Office Building Washington DC 20510",
  4399. "contact_form": "http://www.rubio.senate.gov/public/index.cfm/contact",
  4400. "fax": "202-228-0285",
  4401. "office": "284 Russell Senate Office Building",
  4402. "rss_url": "http://www.rubio.senate.gov/public/?a=rss.feed"
  4403. },
  4404. "leadership_title": null,
  4405. "party": "Republican",
  4406. "person": {
  4407. "bioguideid": "R000595",
  4408. "birthday": "1971-05-28",
  4409. "cspanid": 87599,
  4410. "firstname": "Marco",
  4411. "gender": "male",
  4412. "gender_label": "Male",
  4413. "lastname": "Rubio",
  4414. "link": "https://www.govtrack.us/congress/members/marco_rubio/412491",
  4415. "middlename": "",
  4416. "name": "Sen. Marco Rubio [R-FL]",
  4417. "namemod": "",
  4418. "nickname": "",
  4419. "osid": "N00030612",
  4420. "pvsid": "1601",
  4421. "sortname": "Rubio, Marco (Sen.) [R-FL]",
  4422. "twitterid": "SenRubioPress",
  4423. "youtubeid": "SenatorMarcoRubio"
  4424. },
  4425. "phone": "202-224-3041",
  4426. "role_type": "senator",
  4427. "role_type_label": "Senator",
  4428. "senator_class": "class3",
  4429. "senator_class_label": "Class 3",
  4430. "senator_rank": "junior",
  4431. "senator_rank_label": "Junior",
  4432. "startdate": "2017-01-03",
  4433. "state": "FL",
  4434. "title": "Sen.",
  4435. "title_long": "Senator",
  4436. "website": "https://www.rubio.senate.gov"
  4437. },
  4438. {
  4439. "caucus": null,
  4440. "congress_numbers": [
  4441. 115,
  4442. 116,
  4443. 117
  4444. ],
  4445. "current": true,
  4446. "description": "Junior Senator for Kentucky",
  4447. "district": null,
  4448. "enddate": "2023-01-03",
  4449. "extra": {
  4450. "address": "167 Russell Senate Office Building Washington DC 20510",
  4451. "contact_form": "https://www.paul.senate.gov/connect/email-rand",
  4452. "fax": "202-228-1373",
  4453. "office": "167 Russell Senate Office Building",
  4454. "rss_url": "http://paul.senate.gov/rss/?p=news"
  4455. },
  4456. "leadership_title": null,
  4457. "party": "Republican",
  4458. "person": {
  4459. "bioguideid": "P000603",
  4460. "birthday": "1963-01-07",
  4461. "cspanid": 9265241,
  4462. "firstname": "Rand",
  4463. "gender": "male",
  4464. "gender_label": "Male",
  4465. "lastname": "Paul",
  4466. "link": "https://www.govtrack.us/congress/members/rand_paul/412492",
  4467. "middlename": "",
  4468. "name": "Sen. Rand Paul [R-KY]",
  4469. "namemod": "",
  4470. "nickname": "",
  4471. "osid": "N00030836",
  4472. "pvsid": "117285",
  4473. "sortname": "Paul, Rand (Sen.) [R-KY]",
  4474. "twitterid": "RandPaul",
  4475. "youtubeid": "SenatorRandPaul"
  4476. },
  4477. "phone": "202-224-4343",
  4478. "role_type": "senator",
  4479. "role_type_label": "Senator",
  4480. "senator_class": "class3",
  4481. "senator_class_label": "Class 3",
  4482. "senator_rank": "junior",
  4483. "senator_rank_label": "Junior",
  4484. "startdate": "2017-01-03",
  4485. "state": "KY",
  4486. "title": "Sen.",
  4487. "title_long": "Senator",
  4488. "website": "https://www.paul.senate.gov"
  4489. },
  4490. {
  4491. "caucus": null,
  4492. "congress_numbers": [
  4493. 115,
  4494. 116,
  4495. 117
  4496. ],
  4497. "current": true,
  4498. "description": "Senior Senator for North Dakota",
  4499. "district": null,
  4500. "enddate": "2023-01-03",
  4501. "extra": {
  4502. "address": "338 Russell Senate Office Building Washington DC 20510",
  4503. "contact_form": "http://www.hoeven.senate.gov/public/index.cfm/email-the-senator",
  4504. "fax": "202-224-7999",
  4505. "office": "338 Russell Senate Office Building",
  4506. "rss_url": "http://www.hoeven.senate.gov/public/index.cfm/rss/feed"
  4507. },
  4508. "leadership_title": null,
  4509. "party": "Republican",
  4510. "person": {
  4511. "bioguideid": "H001061",
  4512. "birthday": "1957-03-13",
  4513. "cspanid": 85233,
  4514. "firstname": "John",
  4515. "gender": "male",
  4516. "gender_label": "Male",
  4517. "lastname": "Hoeven",
  4518. "link": "https://www.govtrack.us/congress/members/john_hoeven/412494",
  4519. "middlename": "",
  4520. "name": "Sen. John Hoeven [R-ND]",
  4521. "namemod": "",
  4522. "nickname": "",
  4523. "osid": "N00031688",
  4524. "pvsid": "41788",
  4525. "sortname": "Hoeven, John (Sen.) [R-ND]",
  4526. "twitterid": "SenJohnHoeven",
  4527. "youtubeid": "senatorjohnhoevennd"
  4528. },
  4529. "phone": "202-224-2551",
  4530. "role_type": "senator",
  4531. "role_type_label": "Senator",
  4532. "senator_class": "class3",
  4533. "senator_class_label": "Class 3",
  4534. "senator_rank": "senior",
  4535. "senator_rank_label": "Senior",
  4536. "startdate": "2017-01-03",
  4537. "state": "ND",
  4538. "title": "Sen.",
  4539. "title_long": "Senator",
  4540. "website": "https://www.hoeven.senate.gov"
  4541. },
  4542. {
  4543. "caucus": null,
  4544. "congress_numbers": [
  4545. 115,
  4546. 116,
  4547. 117
  4548. ],
  4549. "current": true,
  4550. "description": "Junior Senator for Utah",
  4551. "district": null,
  4552. "enddate": "2023-01-03",
  4553. "extra": {
  4554. "address": "361A Russell Senate Office Building Washington DC 20510",
  4555. "contact_form": "https://www.lee.senate.gov/public/index.cfm/contact",
  4556. "office": "361a Russell Senate Office Building",
  4557. "rss_url": "http://www.lee.senate.gov/public/index.cfm/rss/feed"
  4558. },
  4559. "leadership_title": null,
  4560. "party": "Republican",
  4561. "person": {
  4562. "bioguideid": "L000577",
  4563. "birthday": "1971-06-04",
  4564. "cspanid": 9267977,
  4565. "firstname": "Mike",
  4566. "gender": "male",
  4567. "gender_label": "Male",
  4568. "lastname": "Lee",
  4569. "link": "https://www.govtrack.us/congress/members/mike_lee/412495",
  4570. "middlename": "",
  4571. "name": "Sen. Mike Lee [R-UT]",
  4572. "namemod": "",
  4573. "nickname": "",
  4574. "osid": "N00031696",
  4575. "pvsid": "66395",
  4576. "sortname": "Lee, Mike (Sen.) [R-UT]",
  4577. "twitterid": "SenMikeLee",
  4578. "youtubeid": "senatormikelee"
  4579. },
  4580. "phone": "202-224-5444",
  4581. "role_type": "senator",
  4582. "role_type_label": "Senator",
  4583. "senator_class": "class3",
  4584. "senator_class_label": "Class 3",
  4585. "senator_rank": "junior",
  4586. "senator_rank_label": "Junior",
  4587. "startdate": "2017-01-03",
  4588. "state": "UT",
  4589. "title": "Sen.",
  4590. "title_long": "Senator",
  4591. "website": "https://www.lee.senate.gov/public"
  4592. },
  4593. {
  4594. "caucus": null,
  4595. "congress_numbers": [
  4596. 115,
  4597. 116,
  4598. 117
  4599. ],
  4600. "current": true,
  4601. "description": "Senior Senator for Wisconsin",
  4602. "district": null,
  4603. "enddate": "2023-01-03",
  4604. "extra": {
  4605. "address": "328 Hart Senate Office Building Washington DC 20510",
  4606. "contact_form": "https://www.ronjohnson.senate.gov/public/index.cfm/email-the-senator",
  4607. "fax": "920-230-7262",
  4608. "office": "328 Hart Senate Office Building",
  4609. "rss_url": "http://www.ronjohnson.senate.gov/public/index.cfm/rss/feed"
  4610. },
  4611. "leadership_title": null,
  4612. "party": "Republican",
  4613. "person": {
  4614. "bioguideid": "J000293",
  4615. "birthday": "1955-04-08",
  4616. "cspanid": 62835,
  4617. "firstname": "Ron",
  4618. "gender": "male",
  4619. "gender_label": "Male",
  4620. "lastname": "Johnson",
  4621. "link": "https://www.govtrack.us/congress/members/ron_johnson/412496",
  4622. "middlename": "",
  4623. "name": "Sen. Ron Johnson [R-WI]",
  4624. "namemod": "",
  4625. "nickname": "",
  4626. "osid": "N00032546",
  4627. "pvsid": "126217",
  4628. "sortname": "Johnson, Ron (Sen.) [R-WI]",
  4629. "twitterid": "SenRonJohnson",
  4630. "youtubeid": "SenatorRonJohnson"
  4631. },
  4632. "phone": "202-224-5323",
  4633. "role_type": "senator",
  4634. "role_type_label": "Senator",
  4635. "senator_class": "class3",
  4636. "senator_class_label": "Class 3",
  4637. "senator_rank": "senior",
  4638. "senator_rank_label": "Senior",
  4639. "startdate": "2017-01-03",
  4640. "state": "WI",
  4641. "title": "Sen.",
  4642. "title_long": "Senator",
  4643. "website": "https://www.ronjohnson.senate.gov"
  4644. },
  4645. {
  4646. "caucus": null,
  4647. "congress_numbers": [
  4648. 115,
  4649. 116,
  4650. 117
  4651. ],
  4652. "current": true,
  4653. "description": "Senior Senator for Hawaii",
  4654. "district": null,
  4655. "enddate": "2023-01-03",
  4656. "extra": {
  4657. "address": "722 Hart Senate Office Building Washington DC 20510",
  4658. "contact_form": "https://www.schatz.senate.gov/contact",
  4659. "fax": "202-228-1153",
  4660. "office": "722 Hart Senate Office Building"
  4661. },
  4662. "leadership_title": null,
  4663. "party": "Democrat",
  4664. "person": {
  4665. "bioguideid": "S001194",
  4666. "birthday": "1972-10-20",
  4667. "cspanid": 87784,
  4668. "firstname": "Brian",
  4669. "gender": "male",
  4670. "gender_label": "Male",
  4671. "lastname": "Schatz",
  4672. "link": "https://www.govtrack.us/congress/members/brian_schatz/412507",
  4673. "middlename": "Emanuel",
  4674. "name": "Sen. Brian Schatz [D-HI]",
  4675. "namemod": "",
  4676. "nickname": "",
  4677. "osid": "N00028138",
  4678. "pvsid": "17852",
  4679. "sortname": "Schatz, Brian (Sen.) [D-HI]",
  4680. "twitterid": "SenBrianSchatz",
  4681. "youtubeid": "senbrianschatz"
  4682. },
  4683. "phone": "202-224-3934",
  4684. "role_type": "senator",
  4685. "role_type_label": "Senator",
  4686. "senator_class": "class3",
  4687. "senator_class_label": "Class 3",
  4688. "senator_rank": "senior",
  4689. "senator_rank_label": "Senior",
  4690. "startdate": "2017-01-03",
  4691. "state": "HI",
  4692. "title": "Sen.",
  4693. "title_long": "Senator",
  4694. "website": "https://www.schatz.senate.gov"
  4695. },
  4696. {
  4697. "caucus": null,
  4698. "congress_numbers": [
  4699. 115,
  4700. 116,
  4701. 117
  4702. ],
  4703. "current": true,
  4704. "description": "Junior Senator for Illinois",
  4705. "district": null,
  4706. "enddate": "2023-01-03",
  4707. "extra": {
  4708. "address": "524 Hart Senate Office Building Washington DC 20510",
  4709. "contact_form": "https://www.duckworth.senate.gov/content/contact-senator",
  4710. "office": "524 Hart Senate Office Building"
  4711. },
  4712. "leadership_title": null,
  4713. "party": "Democrat",
  4714. "person": {
  4715. "bioguideid": "D000622",
  4716. "birthday": "1968-03-12",
  4717. "cspanid": 94484,
  4718. "firstname": "Tammy",
  4719. "gender": "female",
  4720. "gender_label": "Female",
  4721. "lastname": "Duckworth",
  4722. "link": "https://www.govtrack.us/congress/members/tammy_duckworth/412533",
  4723. "middlename": "",
  4724. "name": "Sen. Tammy Duckworth [D-IL]",
  4725. "namemod": "",
  4726. "nickname": "",
  4727. "osid": "N00027860",
  4728. "pvsid": "57442",
  4729. "sortname": "Duckworth, Tammy (Sen.) [D-IL]",
  4730. "twitterid": "SenDuckworth",
  4731. "youtubeid": "repduckworth"
  4732. },
  4733. "phone": "202-224-2854",
  4734. "role_type": "senator",
  4735. "role_type_label": "Senator",
  4736. "senator_class": "class3",
  4737. "senator_class_label": "Class 3",
  4738. "senator_rank": "junior",
  4739. "senator_rank_label": "Junior",
  4740. "startdate": "2017-01-03",
  4741. "state": "IL",
  4742. "title": "Sen.",
  4743. "title_long": "Senator",
  4744. "website": "https://www.duckworth.senate.gov"
  4745. },
  4746. {
  4747. "caucus": null,
  4748. "congress_numbers": [
  4749. 115,
  4750. 116,
  4751. 117
  4752. ],
  4753. "current": true,
  4754. "description": "Junior Senator for California",
  4755. "district": null,
  4756. "enddate": "2023-01-03",
  4757. "extra": {
  4758. "address": "112 Hart Senate Office Building Washington DC 20510",
  4759. "contact_form": "https://www.harris.senate.gov/contact",
  4760. "office": "112 Hart Senate Office Building"
  4761. },
  4762. "leadership_title": null,
  4763. "party": "Democrat",
  4764. "person": {
  4765. "bioguideid": "H001075",
  4766. "birthday": "1964-10-20",
  4767. "cspanid": 1018696,
  4768. "firstname": "Kamala",
  4769. "gender": "female",
  4770. "gender_label": "Female",
  4771. "lastname": "Harris",
  4772. "link": "https://www.govtrack.us/congress/members/kamala_harris/412678",
  4773. "middlename": "",
  4774. "name": "Sen. Kamala Harris [D-CA]",
  4775. "namemod": "",
  4776. "nickname": "",
  4777. "osid": "N00036915",
  4778. "pvsid": "120012",
  4779. "sortname": "Harris, Kamala (Sen.) [D-CA]",
  4780. "twitterid": "SenKamalaHarris",
  4781. "youtubeid": null
  4782. },
  4783. "phone": "202-224-3553",
  4784. "role_type": "senator",
  4785. "role_type_label": "Senator",
  4786. "senator_class": "class3",
  4787. "senator_class_label": "Class 3",
  4788. "senator_rank": "junior",
  4789. "senator_rank_label": "Junior",
  4790. "startdate": "2017-01-03",
  4791. "state": "CA",
  4792. "title": "Sen.",
  4793. "title_long": "Senator",
  4794. "website": "https://www.harris.senate.gov"
  4795. },
  4796. {
  4797. "caucus": null,
  4798. "congress_numbers": [
  4799. 115,
  4800. 116,
  4801. 117
  4802. ],
  4803. "current": true,
  4804. "description": "Junior Senator for Louisiana",
  4805. "district": null,
  4806. "enddate": "2023-01-03",
  4807. "extra": {
  4808. "address": "383 Russell Senate Office Building Washington DC 20510",
  4809. "contact_form": "https://www.kennedy.senate.gov/public/email-me",
  4810. "office": "383 Russell Senate Office Building"
  4811. },
  4812. "leadership_title": null,
  4813. "party": "Republican",
  4814. "person": {
  4815. "bioguideid": "K000393",
  4816. "birthday": "1951-11-21",
  4817. "cspanid": 1011723,
  4818. "firstname": "John",
  4819. "gender": "male",
  4820. "gender_label": "Male",
  4821. "lastname": "Kennedy",
  4822. "link": "https://www.govtrack.us/congress/members/john_kennedy/412679",
  4823. "middlename": "Neely",
  4824. "name": "Sen. John Kennedy [R-LA]",
  4825. "namemod": "",
  4826. "nickname": "",
  4827. "osid": "N00026823",
  4828. "pvsid": "35496",
  4829. "sortname": "Kennedy, John (Sen.) [R-LA]",
  4830. "twitterid": "SenJohnKennedy",
  4831. "youtubeid": null
  4832. },
  4833. "phone": "202-224-4623",
  4834. "role_type": "senator",
  4835. "role_type_label": "Senator",
  4836. "senator_class": "class3",
  4837. "senator_class_label": "Class 3",
  4838. "senator_rank": "junior",
  4839. "senator_rank_label": "Junior",
  4840. "startdate": "2017-01-03",
  4841. "state": "LA",
  4842. "title": "Sen.",
  4843. "title_long": "Senator",
  4844. "website": "https://www.kennedy.senate.gov/public"
  4845. },
  4846. {
  4847. "caucus": null,
  4848. "congress_numbers": [
  4849. 115,
  4850. 116,
  4851. 117
  4852. ],
  4853. "current": true,
  4854. "description": "Junior Senator for New Hampshire",
  4855. "district": null,
  4856. "enddate": "2023-01-03",
  4857. "extra": {
  4858. "address": "330 Hart Senate Office Building Washington DC 20510",
  4859. "contact_form": "https://www.hassan.senate.gov/content/contact-senator",
  4860. "office": "330 Hart Senate Office Building"
  4861. },
  4862. "leadership_title": null,
  4863. "party": "Democrat",
  4864. "person": {
  4865. "bioguideid": "H001076",
  4866. "birthday": "1958-02-27",
  4867. "cspanid": 67481,
  4868. "firstname": "Margaret",
  4869. "gender": "female",
  4870. "gender_label": "Female",
  4871. "lastname": "Hassan",
  4872. "link": "https://www.govtrack.us/congress/members/margaret_hassan/412680",
  4873. "middlename": "Wood",
  4874. "name": "Sen. Margaret “Maggie” Hassan [D-NH]",
  4875. "namemod": "",
  4876. "nickname": "Maggie",
  4877. "osid": "N00038397",
  4878. "pvsid": "42552",
  4879. "sortname": "Hassan, Margaret “Maggie” (Sen.) [D-NH]",
  4880. "twitterid": "Senatorhassan",
  4881. "youtubeid": null
  4882. },
  4883. "phone": "202-224-3324",
  4884. "role_type": "senator",
  4885. "role_type_label": "Senator",
  4886. "senator_class": "class3",
  4887. "senator_class_label": "Class 3",
  4888. "senator_rank": "junior",
  4889. "senator_rank_label": "Junior",
  4890. "startdate": "2017-01-03",
  4891. "state": "NH",
  4892. "title": "Sen.",
  4893. "title_long": "Senator",
  4894. "website": "https://www.hassan.senate.gov"
  4895. },
  4896. {
  4897. "caucus": null,
  4898. "congress_numbers": [
  4899. 115,
  4900. 116,
  4901. 117
  4902. ],
  4903. "current": true,
  4904. "description": "Junior Senator for Nevada",
  4905. "district": null,
  4906. "enddate": "2023-01-03",
  4907. "extra": {
  4908. "address": "204 Russell Senate Office Building Washington DC 20510",
  4909. "contact_form": "https://www.cortezmasto.senate.gov/contact",
  4910. "office": "204 Russell Senate Office Building"
  4911. },
  4912. "leadership_title": null,
  4913. "party": "Democrat",
  4914. "person": {
  4915. "bioguideid": "C001113",
  4916. "birthday": "1964-03-29",
  4917. "cspanid": 105698,
  4918. "firstname": "Catherine",
  4919. "gender": "female",
  4920. "gender_label": "Female",
  4921. "lastname": "Cortez Masto",
  4922. "link": "https://www.govtrack.us/congress/members/catherine_cortez_masto/412681",
  4923. "middlename": "",
  4924. "name": "Sen. Catherine Cortez Masto [D-NV]",
  4925. "namemod": "",
  4926. "nickname": "",
  4927. "osid": "N00037161",
  4928. "pvsid": "69579",
  4929. "sortname": "Cortez Masto, Catherine (Sen.) [D-NV]",
  4930. "twitterid": "sencortezmasto",
  4931. "youtubeid": null
  4932. },
  4933. "phone": "202-224-3542",
  4934. "role_type": "senator",
  4935. "role_type_label": "Senator",
  4936. "senator_class": "class3",
  4937. "senator_class_label": "Class 3",
  4938. "senator_rank": "junior",
  4939. "senator_rank_label": "Junior",
  4940. "startdate": "2017-01-03",
  4941. "state": "NV",
  4942. "title": "Sen.",
  4943. "title_long": "Senator",
  4944. "website": "https://www.cortezmasto.senate.gov"
  4945. },
  4946. {
  4947. "caucus": null,
  4948. "congress_numbers": [
  4949. 115,
  4950. 116
  4951. ],
  4952. "current": true,
  4953. "description": "Junior Senator for Alabama",
  4954. "district": null,
  4955. "enddate": "2021-01-03",
  4956. "extra": {
  4957. "address": "326 Russell Senate Office Building Washington DC 20510",
  4958. "contact_form": "https://www.jones.senate.gov/content/contact-senator",
  4959. "office": "326 Russell Senate Office Building"
  4960. },
  4961. "leadership_title": null,
  4962. "party": "Democrat",
  4963. "person": {
  4964. "bioguideid": "J000300",
  4965. "birthday": "1954-05-04",
  4966. "cspanid": 1024592,
  4967. "firstname": "Doug",
  4968. "gender": "male",
  4969. "gender_label": "Male",
  4970. "lastname": "Jones",
  4971. "link": "https://www.govtrack.us/congress/members/doug_jones/412741",
  4972. "middlename": "",
  4973. "name": "Sen. Doug Jones [D-AL]",
  4974. "namemod": "",
  4975. "nickname": "",
  4976. "osid": "N00024817",
  4977. "pvsid": "176464",
  4978. "sortname": "Jones, Doug (Sen.) [D-AL]",
  4979. "twitterid": "sendougjones",
  4980. "youtubeid": null
  4981. },
  4982. "phone": "202-224-4124",
  4983. "role_type": "senator",
  4984. "role_type_label": "Senator",
  4985. "senator_class": "class2",
  4986. "senator_class_label": "Class 2",
  4987. "senator_rank": "junior",
  4988. "senator_rank_label": "Junior",
  4989. "startdate": "2018-01-03",
  4990. "state": "AL",
  4991. "title": "Sen.",
  4992. "title_long": "Senator",
  4993. "website": "https://www.jones.senate.gov"
  4994. },
  4995. {
  4996. "caucus": null,
  4997. "congress_numbers": [
  4998. 115
  4999. ],
  5000. "current": true,
  5001. "description": "Junior Senator for Mississippi",
  5002. "district": null,
  5003. "enddate": "2018-11-27",
  5004. "extra": {
  5005. "address": "G12 Dirksen Senate Office Building Washington DC 20510",
  5006. "contact_form": "https://www.hydesmith.senate.gov/content/contact-senator",
  5007. "end-type": "special-election",
  5008. "how": "appointment",
  5009. "office": "G12 Dirksen Senate Office Building"
  5010. },
  5011. "leadership_title": null,
  5012. "party": "Republican",
  5013. "person": {
  5014. "bioguideid": "H001079",
  5015. "birthday": "1959-05-10",
  5016. "cspanid": null,
  5017. "firstname": "Cindy",
  5018. "gender": "female",
  5019. "gender_label": "Female",
  5020. "lastname": "Hyde-Smith",
  5021. "link": "https://www.govtrack.us/congress/members/cindy_hyde_smith/412743",
  5022. "middlename": "",
  5023. "name": "Sen. Cindy Hyde-Smith [R-MS]",
  5024. "namemod": "",
  5025. "nickname": "",
  5026. "osid": "N00043298",
  5027. "pvsid": null,
  5028. "sortname": "Hyde-Smith, Cindy (Sen.) [R-MS]",
  5029. "twitterid": "SenHydeSmith",
  5030. "youtubeid": null
  5031. },
  5032. "phone": "202-224-5054",
  5033. "role_type": "senator",
  5034. "role_type_label": "Senator",
  5035. "senator_class": "class2",
  5036. "senator_class_label": "Class 2",
  5037. "senator_rank": "junior",
  5038. "senator_rank_label": "Junior",
  5039. "startdate": "2018-04-09",
  5040. "state": "MS",
  5041. "title": "Sen.",
  5042. "title_long": "Senator",
  5043. "website": "https://www.hydesmith.senate.gov"
  5044. },
  5045. {
  5046. "caucus": null,
  5047. "congress_numbers": [
  5048. 115,
  5049. 116
  5050. ],
  5051. "current": true,
  5052. "description": "Junior Senator for Arizona",
  5053. "district": null,
  5054. "enddate": "2020-11-03",
  5055. "extra": {
  5056. "address": "G12 Dirksen Senate Office Building Washington DC 20510",
  5057. "contact_form": "https://www.kyl.senate.gov/content/contact-senator-kyl",
  5058. "end-type": "special-election",
  5059. "fax": "202-228-2862",
  5060. "how": "appointment",
  5061. "office": "G12 Dirksen Senate Office Building"
  5062. },
  5063. "leadership_title": null,
  5064. "party": "Republican",
  5065. "person": {
  5066. "bioguideid": "K000352",
  5067. "birthday": "1942-04-25",
  5068. "cspanid": null,
  5069. "firstname": "Jon",
  5070. "gender": "male",
  5071. "gender_label": "Male",
  5072. "lastname": "Kyl",
  5073. "link": "https://www.govtrack.us/congress/members/jon_kyl/300062",
  5074. "middlename": "",
  5075. "name": "Sen. Jon Kyl [R-AZ]",
  5076. "namemod": "",
  5077. "nickname": "",
  5078. "osid": "N00006406",
  5079. "pvsid": "26721",
  5080. "sortname": "Kyl, Jon (Sen.) [R-AZ]",
  5081. "twitterid": null,
  5082. "youtubeid": null
  5083. },
  5084. "phone": "202-224-2235",
  5085. "role_type": "senator",
  5086. "role_type_label": "Senator",
  5087. "senator_class": "class3",
  5088. "senator_class_label": "Class 3",
  5089. "senator_rank": "junior",
  5090. "senator_rank_label": "Junior",
  5091. "startdate": "2018-09-05",
  5092. "state": "AZ",
  5093. "title": "Sen.",
  5094. "title_long": "Senator",
  5095. "website": "https://www.kyl.senate.gov"
  5096. },
  5097. {
  5098. "caucus": null,
  5099. "congress_numbers": [
  5100. 115,
  5101. 116
  5102. ],
  5103. "current": true,
  5104. "description": "Junior Senator for Minnesota",
  5105. "district": null,
  5106. "enddate": "2021-01-03",
  5107. "extra": {
  5108. "address": "309 Hart Senate Office Building Washington DC 20510",
  5109. "contact_form": "https://www.smith.senate.gov/content/contact-senator",
  5110. "office": "309 Hart Senate Office Building"
  5111. },
  5112. "leadership_title": null,
  5113. "party": "Democrat",
  5114. "person": {
  5115. "bioguideid": "S001203",
  5116. "birthday": "1958-03-04",
  5117. "cspanid": 111313,
  5118. "firstname": "Tina",
  5119. "gender": "female",
  5120. "gender_label": "Female",
  5121. "lastname": "Smith",
  5122. "link": "https://www.govtrack.us/congress/members/tina_smith/412742",
  5123. "middlename": "Flint",
  5124. "name": "Sen. Tina Smith [D-MN]",
  5125. "namemod": "",
  5126. "nickname": "",
  5127. "osid": "N00042353",
  5128. "pvsid": "152968",
  5129. "sortname": "Smith, Tina (Sen.) [D-MN]",
  5130. "twitterid": "SenTinaSmith",
  5131. "youtubeid": null
  5132. },
  5133. "phone": "202-224-5641",
  5134. "role_type": "senator",
  5135. "role_type_label": "Senator",
  5136. "senator_class": "class2",
  5137. "senator_class_label": "Class 2",
  5138. "senator_rank": "junior",
  5139. "senator_rank_label": "Junior",
  5140. "startdate": "2018-11-07",
  5141. "state": "MN",
  5142. "title": "Sen.",
  5143. "title_long": "Senator",
  5144. "website": "https://www.smith.senate.gov"
  5145. }