sample_json.json 194 KB

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