forked from openhouse/us-senate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
us-senate.json
5302 lines (5302 loc) · 261 KB
/
us-senate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"state_name": "Alaska",
"state_name_slug": "alaska",
"state_code": "AK",
"state_code_slug": "ak",
"class": "II",
"bioguide": "S001198",
"thomas": "2290",
"opensecrets": "N00035774",
"votesmart": "114964",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "Daniel Sullivan",
"name_slug": "daniel-sullivan",
"first_name": "Daniel",
"middle_name": null,
"last_name": "Sullivan",
"name_suffix": null,
"goes_by": "Dan",
"pronunciation": "DAN SUHL-ih-vuhn",
"gender": "male",
"ethnicity": "white-american",
"religion": "roman-catholic",
"openly_lgbtq": "no",
"date_of_birth": "1964-11-13",
"entered_office": "2015-01-03",
"term_end": "2021-01-03",
"biography": "Dan Sullivan is a Senator from Alaska; born in Fairview Park, Cuyahoga County, Ohio, November 13, 1964; graduated Culver Military Academy, Culver, Ind., 1983; B.A., Harvard University, 1987; M.F.S. and J.D., Georgetown University, 1993; United States Marine Corps 1993-1997; United States Marine Corps Reserves 1997-present, attaining the rank of lieutenant colonel; lawyer; White House aide and director on the National Security Council staff during the George W. Bush administration; assistant U.S. secretary of state for economic, energy and business affairs 2006-2009; attorney general of Alaska 2009-2010; Commissioner of Alaska Department of Natural Resources 2010-2013; elected as a Republican to the United States Senate in 2014 for the term ending January 3, 2021.",
"phone": "202-224-3004",
"fax": "202-224-6501",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "702 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "702 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.sullivan.senate.gov",
"contact_page": "https://www.sullivan.senate.gov/contact/email",
"facebook_url": "https://www.facebook.com/SenDanSullivan",
"twitter_handle": "SenDanSullivan",
"twitter_url": "https://twitter.com/SenDanSullivan",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/daniel-sullivan.jpg"
},
{
"state_name": "Alaska",
"state_name_slug": "alaska",
"state_code": "AK",
"state_code_slug": "ak",
"class": "III",
"bioguide": "M001153",
"thomas": "1694",
"opensecrets": "N00026050",
"votesmart": "15841",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "Lisa Murkowski",
"name_slug": "lisa-murkowski",
"first_name": "Lisa",
"middle_name": null,
"last_name": "Murkowski",
"name_suffix": null,
"goes_by": null,
"pronunciation": "LEE-suh mer-COW-skee",
"gender": "female",
"ethnicity": "white-american",
"religion": "roman-catholic",
"openly_lgbtq": "no",
"date_of_birth": "1957-05-22",
"entered_office": "2002-12-20",
"term_end": "2023-01-03",
"biography": "Lisa Murkowski (daughter of Frank Hughes Murkowski), a Senator from Alaska; born in Ketchikan, Alaska, on May 22, 1957; attended public schools in Fairbanks, AK; attended Willamette University in Salem, Oregon, 1975-1977; B.A. in Economics, Georgetown University 1980; J.D., Willamette College of Law 1985; attorney; member, Alaska Bar Association; Anchorage District Court attorney 1987-1989; private practice 1989-1996; Mayor's Task Force on the Homeless 1990-1991; Anchorage Equal Rights Commission 1997-1998; Alaska State house of representatives 1999-2002; appointed to the U.S. Senate on December 20, 2002, to fill the vacancy caused by the resignation of her father, Frank H. Murkowski; elected to the U.S. Senate in 2004; unsuccessful candidate for renomination in 2010, but subsequently elected as a write-in candidate in the November 2, 2010, general election, for the term ending January 3, 2017; Republican Conference vice-chair (2009-2010); chair, Committee on Energy and Natural Resources (One Hundred Fourteenth Congress).",
"phone": "202-224-6665",
"fax": "202-224-5301",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "709 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "709 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.murkowski.senate.gov",
"contact_page": "https://www.murkowski.senate.gov/public/index.cfm/contact",
"facebook_url": "https://www.facebook.com/SenLisaMurkowski",
"twitter_handle": "lisamurkowski",
"twitter_url": "https://twitter.com/lisamurkowski",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/lisa-murkowski.jpg"
},
{
"state_name": "Alabama",
"state_name_slug": "alabama",
"state_code": "AL",
"state_code_slug": "al",
"class": "II",
"bioguide": "J000300",
"thomas": null,
"opensecrets": "N00024817",
"votesmart": "176464",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Gordon Jones",
"name_slug": "gordon-jones",
"first_name": "Gordon",
"middle_name": "Douglas",
"last_name": "Jones",
"name_suffix": null,
"goes_by": "Doug",
"pronunciation": "DOAG JOANZ",
"gender": "male",
"ethnicity": "white-american",
"religion": "united-methodist",
"openly_lgbtq": "no",
"date_of_birth": "1954-05-04",
"entered_office": "2018-01-03",
"term_end": "2020-01-03",
"biography": "Doug Jones, a Senator from Alabama; born in Fairfield, Ala., May 4, 1954; B.S., University of Alabama, 1976; J.D., Samford University, Cumberland School of Law, 1979; staff counsel to Alabama senator Howell Heflin on the U.S. Senate Committee on the Judiciary; assistant U.S. attorney for the Northern District of Alabama, 1980-1984; practiced law in Birmingham, Ala., U.S. attorney for the Northern District of Alabama, 1997-2001; elected as a Democrat to the United States Senate in a special election on December 12, 2017, to fill the vacancy caused by the resignation of Jefferson Sessions, a seat subsequently held by appointed senator Luther Strange, for the term ending January 3, 2021, and took the oath of office on January 3, 2018.",
"phone": "202-224-4124",
"fax": "202-224-3149",
"latitude": "38.892542",
"longitude": "-77.007415",
"address_complete": "326 Russell Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "326 Russell Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "https://www.jones.senate.gov/",
"contact_page": "https://www.jones.senate.gov/content/contact-senator",
"facebook_url": "https://www.facebook.com/senatordougjones/",
"twitter_handle": "sendougjones",
"twitter_url": "https://twitter.com/sendougjones",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/gordon-jones.jpg"
},
{
"state_name": "Alabama",
"state_name_slug": "alabama",
"state_code": "AL",
"state_code_slug": "al",
"class": "III",
"bioguide": "S000320",
"thomas": "1049",
"opensecrets": "N00009920",
"votesmart": "53266",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "Richard Shelby",
"name_slug": "richard-shelby",
"first_name": "Richard ",
"middle_name": "C.",
"last_name": "Shelby",
"name_suffix": null,
"goes_by": null,
"pronunciation": "RICH-erd SHELL-bee",
"gender": "male",
"ethnicity": "white-american",
"religion": "presbyterian",
"openly_lgbtq": "no",
"date_of_birth": "1934-05-06",
"entered_office": "1987-01-03",
"term_end": "2023-01-03",
"biography": "Richard Shelby, a Senator and a Representative from Alabama; born in Birmingham, Ala., May 6, 1934; attended the public schools; graduated, University of Alabama 1957; graduated, University of Alabama School of Law 1963; admitted to the Alabama bar in 1961 and commenced practice in Tuscaloosa; city prosecutor, Tuscaloosa 1963-1971; United States Commissioner, Northern District of Alabama 1966-1970; Member, Alabama State Senate 1970-1978; elected as a Democrat to the Ninety-sixth Congress in 1978; reelected to the three succeeding Congresses and served from January 3, 1979, to January 3, 1987; was not a candidate for reelection to the House of Representatives in 1986, but was elected to the United States Senate; reelected in 1992, 1998, 2004, and again in 2010 for the term ending January 3, 2017; changed from the Democratic to the Republican Party in 1994; Chair, Select Committee on Intelligence (One Hundred Fifth and One Hundred Sixth Congresses, One Hundred Seventh Congress [January 20, 2001-June 6, 2001]), Committee on Banking, Housing and Urban Affairs (One Hundred Eighth and One Hundred Ninth Congresses, One Hundred Fourteenth Congress).",
"phone": "202-224-5744",
"fax": "202-224-3416",
"latitude": "38.892542",
"longitude": "-77.007415",
"address_complete": "304 Russell Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "304 Russell Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.shelby.senate.gov",
"contact_page": "https://www.shelby.senate.gov/public/index.cfm/emailsenatorshelby",
"facebook_url": "https://www.facebook.com/RichardShelby",
"twitter_handle": "SenShelby",
"twitter_url": "https://twitter.com/SenShelby",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/richard-shelby.jpg"
},
{
"state_name": "Arkansas",
"state_name_slug": "arkansas",
"state_code": "AR",
"state_code_slug": "ar",
"class": "III",
"bioguide": "B001236",
"thomas": "1687",
"opensecrets": "N00013873",
"votesmart": "27958",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "John Boozman",
"name_slug": "john-boozman",
"first_name": "John",
"middle_name": null,
"last_name": "Boozman",
"name_suffix": null,
"goes_by": null,
"pronunciation": "JAHN BOHZ-muhn",
"gender": "male",
"ethnicity": "white-american",
"religion": "southern-baptist",
"openly_lgbtq": "no",
"date_of_birth": "1950-12-10",
"entered_office": "2011-01-03",
"term_end": "2023-01-03",
"biography": "John Boozman, a Senator and a Representative from Arkansas; born in Shreveport, La., December 10, 1950; graduated from Northside High School, Fort Smith, Ark.; attended the University of Arkansas, Fayetteville, Ark., 1969-1972; graduated Southern College of Optometry, 1977; optometrist; business owner; rancher; member of the Rogers, Ark., school board; elected as a Republican to the One Hundred Seventh Congress by special election to fill the vacancy caused by the resignation of United States Representative Asa Hutchinson; reelected to the four succeeding Congresses (November 20, 2001-January 3, 2011); was not a candidate for reelection to the House of Representatives but was elected as a Republican to the United States Senate in 2010 for the term ending January 3, 2017.",
"phone": "202-224-4843",
"fax": "202-228-1371",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "141 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "141 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.boozman.senate.gov",
"contact_page": "https://www.boozman.senate.gov/public/index.cfm/contact",
"facebook_url": "https://www.facebook.com/JohnBoozman/",
"twitter_handle": "JohnBoozman",
"twitter_url": "https://twitter.com/JohnBoozman",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/john-boozman.jpg"
},
{
"state_name": "Arkansas",
"state_name_slug": "arkansas",
"state_code": "AR",
"state_code_slug": "ar",
"class": "II",
"bioguide": "C001095",
"thomas": "2098",
"opensecrets": "N00033363",
"votesmart": "135651",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "Tom Cotton",
"name_slug": "tom-cotton",
"first_name": "Tom",
"middle_name": null,
"last_name": "Cotton",
"name_suffix": null,
"goes_by": null,
"pronunciation": "TAHM KAH-tn",
"gender": "male",
"ethnicity": "white-american",
"religion": "methodist",
"openly_lgbtq": "no",
"date_of_birth": "1977-05-13",
"entered_office": "2015-01-03",
"term_end": "2021-01-03",
"biography": "Tom Cotton, a Senator and a Representative from Arkansas; born in Dardanelle, Yell County, Ark., May 13, 1977; A.B., Harvard University, Cambridge, Mass., 1998; attended Claremont Graduate University, Claremont, Calif., 1998-1999; J.D., Harvard University, Cambridge, Mass., 2002; United States Army, 2004-2009; clerk, U.S. Court of Appeals, 2002-2003; lawyer, private practice; management consultant; farmer; elected as a Republican to the One Hundred Thirteenth Congress (January 3, 2013-January 3, 2015); was not a candidate for reelection to the House of Representatives but was elected as a Republican to the United States Senate in 2014 for the term ending January 3, 2021.",
"phone": "202-224-2353",
"fax": "479-927-1092",
"latitude": "38.892542",
"longitude": "-77.007415",
"address_complete": "124 Russell Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "124 Russell Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.cotton.senate.gov",
"contact_page": "https://www.cotton.senate.gov/?p=contact",
"facebook_url": "https://www.facebook.com/SenatorTomCotton",
"twitter_handle": "sentomcotton",
"twitter_url": "https://twitter.com/sentomcotton",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/tom-cotton.jpg"
},
{
"state_name": "Arizona",
"state_name_slug": "arizona",
"state_code": "AZ",
"state_code_slug": "az",
"class": "I",
"bioguide": "S001191",
"thomas": "2099",
"opensecrets": "N00033983",
"votesmart": "28338",
"fec": "S8AZ00197",
"maplight": null,
"wikidata": "Q1556541",
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Kyrsten Sinema",
"name_slug": "kyrsten-sinema",
"first_name": "Kyrsten",
"middle_name": null,
"last_name": "Sinema",
"name_suffix": null,
"goes_by": null,
"pronunciation": "KEERS-ten SI-nuh-muh",
"gender": "female",
"ethnicity": "white-american",
"religion": "unspecified",
"openly_lgbtq": "bisexual",
"date_of_birth": "1976-07-12",
"entered_office": "2019-01-03",
"term_end": "2025-01-03",
"biography": "Kyrsten Sinema is a Democratic member of the U.S. Senate from Arizona. Sinema was elected to the office on November 6, 2018. Sinema is a Democratic member of the U.S. House representing Arizona's 9th Congressional District. She was first elected in 2012 and sworn in on January 3, 2013, becoming the first openly bisexual member of Congress.",
"phone": "202-224-4521",
"fax": null,
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "825B&C Hart Senate Office Building, Washington DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "825B&C Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "https://www.sinema.senate.gov/",
"contact_page": "https://www.senate.gov/senators/116thCongress/SinemaKyrsten.htm",
"facebook_url": "https://www.facebook.com/KyrstenSinema/",
"twitter_handle": "kyrstensinema",
"twitter_url": "https://twitter.com/kyrstensinema",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/kyrsten-sinema.jpg"
},
{
"state_name": "Arizona",
"state_name_slug": "arizona",
"state_code": "AZ",
"state_code_slug": "az",
"class": "III",
"bioguide": "M001197",
"thomas": "2225",
"opensecrets": "N00033982",
"votesmart": "137299",
"fec": "S8AZ00221",
"maplight": null,
"wikidata": "Q6774492",
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "Martha McSally",
"name_slug": "martha-mcsally",
"first_name": "Martha",
"middle_name": null,
"last_name": "McSally",
"name_suffix": null,
"goes_by": null,
"pronunciation": "MARR-thuh MAK-suh-lee",
"gender": "female",
"ethnicity": "white-american",
"religion": "unspecified",
"openly_lgbtq": "no",
"date_of_birth": "1966-03-22",
"entered_office": "2019-01-03",
"term_end": "2021-01-03",
"biography": "Martha McSally was a Republican candidate for the U.S. Senate from Arizona. McSally lost the general election on November 6, 2018, after advancing from the primary on August 28, 2018. On December 18, 2018, Arizona Gov. Doug Ducey (R) announced the appointment of McSally to the U.S. Senate to replace Sen. Jon Kyl (R). Kyl, who was appointed to the U.S. Senate in September 2018 after the death of former Sen. John McCain (R), announced that he would resign as of December 31, 2018.",
"phone": "202-224-2235",
"fax": null,
"latitude": "38.892947",
"longitude": "-77.075686",
"address_complete": "B40D Dirksen Senate Office Building Washington DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "B40D Dirksen Senate Office Building Washington DC 20510",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "https://www.mcsally.senate.gov/",
"contact_page": "https://www.mcsally.senate.gov/",
"facebook_url": "https://www.facebook.com/MarthaMcSally/",
"twitter_handle": "marthamcsally",
"twitter_url": "https://twitter.com/marthamcsally",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/martha-mcsally.jpg"
},
{
"state_name": "California",
"state_name_slug": "california",
"state_code": "CA",
"state_code_slug": "ca",
"class": "I",
"bioguide": "F000062",
"thomas": "1332",
"opensecrets": "N00007364",
"votesmart": "53273",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Dianne Feinstein",
"name_slug": "dianne-feinstein",
"first_name": "Dianne",
"middle_name": null,
"last_name": "Feinstein",
"name_suffix": null,
"goes_by": null,
"pronunciation": "DIE-ann FINE-stine",
"gender": "female",
"ethnicity": "white-american",
"religion": "jewish",
"openly_lgbtq": "no",
"date_of_birth": "1933-06-22",
"entered_office": "1992-11-10",
"term_end": "2019-01-03",
"biography": "Dianne Feinstein, a Senator from California; born in San Francisco, Calif., June 22, 1933; attended the San Francisco public schools and graduated from the Convent of the Sacred Heart High School 1951; graduated, Stanford University 1955; Member, California Women's Board of Terms and Parole 1960-1966; Member, San Francisco Board of Supervisors 1970-1978, serving as president 1970-1971, 1974-1975, 1978; mayor of San Francisco 1978-1988; director, Bank of California 1988-1989; co-chair, San Francisco Education Fund's Permanent Fund 1988-1989; unsuccessful candidate for Governor of California 1990; elected in a special election on November 3, 1992, as a Democrat to the United States Senate to fill the term left vacant by the resignation of Pete Wilson; took office on November 4, 1992, and took the oath of office on November 10, 1992; reelected in 1994, 2000, 2006, and again in 2012 for the term ending January 3, 2019; chair, Committee on Rules and Administration (One Hundred Tenth Congress), Select Committee on Intelligence (One Hundred Eleventh to One Hundred Thirteenth Congresses).",
"phone": "202-224-3841",
"fax": "202-228-3954",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "331 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "331 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.feinstein.senate.gov",
"contact_page": "https://www.feinstein.senate.gov/public/index.cfm/e-mail-me",
"facebook_url": "https://www.facebook.com/SenatorFeinstein",
"twitter_handle": "SenFeinstein",
"twitter_url": "https://twitter.com/SenFeinstein",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/dianne-feinstein.jpg"
},
{
"state_name": "California",
"state_name_slug": "california",
"state_code": "CA",
"state_code_slug": "ca",
"class": "III",
"bioguide": "H001075",
"thomas": null,
"opensecrets": "N00036915",
"votesmart": "120012",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Kamala Harris",
"name_slug": "kamala-harris",
"first_name": "Kamala",
"middle_name": null,
"last_name": "Harris",
"name_suffix": null,
"goes_by": null,
"pronunciation": "KAH-muh-luh HAIR-iss",
"gender": "female",
"ethnicity": "asian-american",
"religion": "baptist",
"openly_lgbtq": "no",
"date_of_birth": "1964-10-20",
"entered_office": "2017-01-03",
"term_end": "2023-01-03",
"biography": "Kamala Harris, a Senator from California; born in Oakland, Calif., October 20, 1964; B.A., Howard University, 1986; J.D., University of California, Hastings College of the Law, 1989; admitted to the California bar in 1990; deputy district attorney, Alameda County, Calif., 1990-1998; managing attorney, San Francisco District Attorney’s Office; chief of the San Francisco City Attorney’s Division on Children and Families; district attorney of San Francisco 2004-2011; attorney general of California 2011-2016; elected as a Democrat to the United States Senate in 2016 for the term ending January 3, 2023.",
"phone": "202-224-3553",
"fax": "202-224-2200",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "112 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "112 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.harris.senate.gov",
"contact_page": "https://www.harris.senate.gov/content/contact-senator",
"facebook_url": "https://www.facebook.com/KamalaHarris",
"twitter_handle": "KamalaHarris",
"twitter_url": "https://twitter.com/KamalaHarris",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/kamala-harris.jpg"
},
{
"state_name": "Colorado",
"state_name_slug": "colorado",
"state_code": "CO",
"state_code_slug": "co",
"class": "II",
"bioguide": "G000562",
"thomas": "1998",
"opensecrets": "N00030780",
"votesmart": "30004",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "Cory Gardner",
"name_slug": "cory-gardner",
"first_name": "Cory",
"middle_name": null,
"last_name": "Gardner",
"name_suffix": null,
"goes_by": null,
"pronunciation": "CORE-ee GAHRD-ner",
"gender": "male",
"ethnicity": "white-american",
"religion": "lutheran",
"openly_lgbtq": "no",
"date_of_birth": "1974-08-22",
"entered_office": "2015-01-03",
"term_end": "2021-01-03",
"biography": "Cory Gardner, a Senator and a Representative from Colorado; born in Yuma, Yuma County, Colo., on August 22, 1974; graduated from Yuma High School, Yuma, Colo., 1993; B.A., Colorado State University, Fort Collins, Colo., 1997; J.D., University of Colorado, Boulder, Colo., 2001; agricultural advocate; staff, United States Senator Wayne Allard of Colorado, 2002-2005; member of the Colorado state house of representatives, 2005-2010; elected as a Republican to the One Hundred Twelfth and to the succeeding Congress (January 3, 2011-January 3, 2015); was not a candidate for reelection to the House of Representatives but was elected as a Republican to the United States Senate in 2014 for the term ending January 3, 2021.",
"phone": "202-224-5941",
"fax": "202-224-6524",
"latitude": "38.892542",
"longitude": "-77.007415",
"address_complete": "354 Russell Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "354 Russell Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.gardner.senate.gov",
"contact_page": "https://www.gardner.senate.gov/contact-cory/email-cory",
"facebook_url": "https://www.facebook.com/SenCoryGardner",
"twitter_handle": "sencorygardner",
"twitter_url": "https://twitter.com/sencorygardner",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/cory-gardner.jpg"
},
{
"state_name": "Colorado",
"state_name_slug": "colorado",
"state_code": "CO",
"state_code_slug": "co",
"class": "III",
"bioguide": "B001267",
"thomas": "1965",
"opensecrets": "N00030608",
"votesmart": "110942",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Michael Bennet",
"name_slug": "michael-bennet",
"first_name": "Michael ",
"middle_name": "F.",
"last_name": "Bennet",
"name_suffix": null,
"goes_by": null,
"pronunciation": "MAHY-kuhl BEN-ett",
"gender": "male",
"ethnicity": "white-american",
"religion": "unspecified",
"openly_lgbtq": "no",
"date_of_birth": "1964-11-28",
"entered_office": "2009-01-21",
"term_end": "2023-01-03",
"biography": "Michael Bennet, a Senator from Colorado; born in New Delhi, India, November 28, 1964; B.A., Wesleyan University, Middletown, Conn., 1987; J.D., Yale Law School, 1993, editor-in-chief of the Yale Law Journal; counsel to U.S. deputy attorney general 1995-1997; special assistant U.S. attorney, Conn., 1997; managing director, Anschutz Investment Co. 1997-2003; chief of staff to Mayor of Denver, Colo., 2003-2005; Superintendent, Denver Public Schools 2005-2009; appointed January 21, 2009, to the United States Senate for the term ending January 3, 2011, to fill the vacancy caused by the resignation of Kenneth L. Salazar; took the oath of office on January 22, 2009; elected to the U.S. Senate in 2010 for the term ending January 3, 2017; chair, Democratic Senatorial Campaign Committee (2013-2014).",
"phone": "202-224-5852",
"fax": "202-228-5097",
"latitude": "38.892542",
"longitude": "-77.007415",
"address_complete": "261 Russell Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "261 Russell Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.bennet.senate.gov",
"contact_page": "https://www.bennet.senate.gov/?p=contact",
"facebook_url": "https://www.facebook.com/senatorbennet",
"twitter_handle": "SenBennetCO",
"twitter_url": "https://twitter.com/SenBennetCO",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/michael-bennet.jpg"
},
{
"state_name": "Connecticut",
"state_name_slug": "connecticut",
"state_code": "CT",
"state_code_slug": "ct",
"class": "I",
"bioguide": "M001169",
"thomas": "1837",
"opensecrets": "N00027566",
"votesmart": "17189",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Christopher Murphy",
"name_slug": "christopher-murphy",
"first_name": "Christopher",
"middle_name": null,
"last_name": "Murphy",
"name_suffix": null,
"goes_by": "Chris",
"pronunciation": "KRISS MER-fee",
"gender": "male",
"ethnicity": "white-american",
"religion": "protestant",
"openly_lgbtq": "no",
"date_of_birth": "1973-08-03",
"entered_office": "2013-01-03",
"term_end": "2019-01-03",
"biography": "Christopher Murphy, a Senator and a Representative from Connecticut; born in White Plains, Westchester County, N.Y., August 3, 1973; B.A., Williams College, Williamstown, Mass., 1996; attended Exeter College, Oxford, England, 1994-1995; J.D., University of Connecticut, Hartford, Conn., 2002; lawyer, private practice; Southington, Conn., planning and zoning commission, 1997-1999; member of the Connecticut state house of representatives, 1999-2003; member of the Connecticut state senate, 2003-2006; elected as a Democrat to the One Hundred Tenth and to the two succeeding Congresses (January 3, 2007-January 3, 2013); was not a candidate for reelection to the House of Representatives but was elected as a Democrat to the United States Senate in 2012 for the term ending January 3, 2019.",
"phone": "202-224-4041",
"fax": "202-224-9750",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "136 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "136 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.murphy.senate.gov",
"contact_page": "https://www.murphy.senate.gov/contact",
"facebook_url": "https://www.facebook.com/ChrisMurphyCT",
"twitter_handle": "ChrisMurphyCT",
"twitter_url": "https://twitter.com/ChrisMurphyCT",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/christopher-murphy.jpg"
},
{
"state_name": "Connecticut",
"state_name_slug": "connecticut",
"state_code": "CT",
"state_code_slug": "ct",
"class": "III",
"bioguide": "B001277",
"thomas": "2076",
"opensecrets": "N00031685",
"votesmart": "1568",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Richard Blumenthal",
"name_slug": "richard-blumenthal",
"first_name": "Richard",
"middle_name": null,
"last_name": "Blumenthal",
"name_suffix": null,
"goes_by": "Dick",
"pronunciation": "DICK BLOO-mun-thawl",
"gender": "male",
"ethnicity": "white-american",
"religion": "jewish",
"openly_lgbtq": "no",
"date_of_birth": "1946-02-13",
"entered_office": "2011-01-05",
"term_end": "2023-01-03",
"biography": "Richard Blumenthal, a Senator from Connecticut; born in Brooklyn, N.Y., February 13, 1946; graduated Harvard University, B.A., 1967; attended Cambridge University, 1967-1968; graduated Yale University, J.D., 1973; editor-in-chief of the Yale Law Journal; served in the United States Marine Corps Reserves 1970-1976; White House aide 1969-1970; law clerk to United States Supreme Court Justice Harry A. Blackmun 1974-1975; administrative assistant to Senator Abraham Ribicoff 1975-1976; United States Attorney for Connecticut 1977-1981; lawyer; member of the Connecticut state house of representatives 1984-1987; member of the Connecticut state senate 1987-1990; attorney general of Connecticut 1991-2010; elected as a Democrat to the United States Senate in 2010 for the term ending January 3, 2017.",
"phone": "202-224-2823",
"fax": "202-224-9673",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "706 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "706 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.blumenthal.senate.gov",
"contact_page": "https://www.blumenthal.senate.gov/contact/",
"facebook_url": "https://www.facebook.com/SenBlumenthal/",
"twitter_handle": "SenBlumenthal",
"twitter_url": "https://twitter.com/SenBlumenthal",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/richard-blumenthal.jpg"
},
{
"state_name": "Delaware",
"state_name_slug": "delaware",
"state_code": "DE",
"state_code_slug": "de",
"class": "I",
"bioguide": "C000174",
"thomas": "179",
"opensecrets": "N00012508",
"votesmart": "22421",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Thomas Carper",
"name_slug": "thomas-carper",
"first_name": "Thomas",
"middle_name": "R.",
"last_name": "Carper",
"name_suffix": null,
"goes_by": "Tom",
"pronunciation": "TAHM KAR-per",
"gender": "male",
"ethnicity": "white-american",
"religion": "presbyterian",
"openly_lgbtq": "no",
"date_of_birth": "1947-01-23",
"entered_office": "2001-01-03",
"term_end": "2019-01-03",
"biography": "Thomas Carper, a Senator and a Representative from Delaware; born in Beckley, Raleigh County, W.Va., January 23, 1947; attended public schools; graduated, Whetstone High School, Columbus, Ohio 1964; B.A., Ohio State University, Columbus 1968; University of Delaware, Newark, M.B.A. 1975; served in the United States Navy 1968-1973; Naval Reserve, commander, 1973-1991; Delaware State Treasurer 1976-1983; elected as a Democrat to the Ninety-eighth and to the four succeeding Congresses (January 3, 1983-January 3, 1993); Governor of Delaware 1993-2001; chairman of the National Governors Association 1998-1999; elected to the United States Senate in 2000 for term commencing January 3, 2001; reelected in 2006 and again in 2012 for the term ending January 3, 2019; chair, Committee on Homeland Security and Governmental Affairs (One Hundred Thirteenth Congress).",
"phone": "202-224-2441",
"fax": "202-228-2190",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "513 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "513 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.carper.senate.gov",
"contact_page": "https://www.carper.senate.gov/public/index.cfm/email-senator-carper",
"facebook_url": "https://www.facebook.com/tomcarper",
"twitter_handle": "SenatorCarper",
"twitter_url": "https://twitter.com/SenatorCarper",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/thomas-carper.jpg"
},
{
"state_name": "Georgia",
"state_name_slug": "georgia",
"state_code": "GA",
"state_code_slug": "ga",
"class": "II",
"bioguide": "P000612",
"thomas": "2286",
"opensecrets": "N00035516",
"votesmart": "151330",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "David Perdue",
"name_slug": "david-perdue",
"first_name": "David",
"middle_name": null,
"last_name": "Perdue",
"name_suffix": null,
"goes_by": null,
"pronunciation": "DAY-vid pur-DOO",
"gender": "male",
"ethnicity": "white-american",
"religion": "methodist",
"openly_lgbtq": "no",
"date_of_birth": "1949-12-10",
"entered_office": "2015-01-03",
"term_end": "2021-01-03",
"biography": "David Perdue, a Senator from Georgia; born in Macon, Bibb County, Ga., December 10, 1949; B.S., Georgia Institute of Technology, 1972; M.S., Georgia Institute of Technology, 1976; management consultant; company executive; elected as a Republican to the United States Senate in 2014 for the term ending January 3, 2021.",
"phone": "202-224-3521",
"fax": "202-228-1031",
"latitude": "38.892542",
"longitude": "-77.007415",
"address_complete": "383 Russell Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "383 Russell Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.perdue.senate.gov",
"contact_page": "https://www.perdue.senate.gov/connect/email",
"facebook_url": "https://www.facebook.com/SenatorDavidPerdue",
"twitter_handle": "sendavidperdue",
"twitter_url": "https://twitter.com/sendavidperdue",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/david-perdue.jpg"
},
{
"state_name": "Georgia",
"state_name_slug": "georgia",
"state_code": "GA",
"state_code_slug": "ga",
"class": "III",
"bioguide": "I000055",
"thomas": "1608",
"opensecrets": "N00002593",
"votesmart": "1721",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "republican",
"name": "Johnny Isakson",
"name_slug": "johnny-isakson",
"first_name": "Johnny",
"middle_name": null,
"last_name": "Isakson",
"name_suffix": null,
"goes_by": null,
"pronunciation": "JAH-nee AHY-zick-suhn",
"gender": "male",
"ethnicity": "white-american",
"religion": "methodist",
"openly_lgbtq": "no",
"date_of_birth": "1944-12-28",
"entered_office": "2005-01-03",
"term_end": "2023-01-03",
"biography": "John Isakson, a Senator and a Representative from Georgia; born in Atlanta, Fulton County, Ga., December 28, 1944; graduated from the University of Georgia, Athens, Ga., 1966; served in the Georgia Air National Guard 1966-1972; member of the Georgia state general assembly, 1976-1990; unsuccessful candidate for election as Governor of Georgia 1990; member of the Georgia state senate 1993-1996; unsuccessful candidate for election to the United States Senate in 1996; chair of the Georgia board of education 1996; elected as a Republican to the One Hundred Sixth Congress by special election to fill the vacancy created when United States Representative Newt Gingrich did not take his seat in the One Hundred Sixth Congress; reelected to the two succeeding Congresses (February 23, 1999-January 3, 2005); was not a candidate for reelection to the House of Representatives, but was elected to the United States Senate in 2004; reelected in 2010 for the term ending January 3, 2017; chair, Committee on Veterans' Affairs (One Hundred Fourteenth Congress), Select Committee on Ethics (One Hundred Fourteenth Congress).",
"phone": "202-224-3643",
"fax": "202-228-0724",
"latitude": "38.892542",
"longitude": "-77.007415",
"address_complete": "131 Russell Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "131 Russell Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.isakson.senate.gov",
"contact_page": "https://www.isakson.senate.gov/public/index.cfm/email-me",
"facebook_url": "https://www.facebook.com/isakson",
"twitter_handle": "SenatorIsakson",
"twitter_url": "https://twitter.com/SenatorIsakson",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/johnny-isakson.jpg"
},
{
"state_name": "Hawaii",
"state_name_slug": "hawaii",
"state_code": "HI",
"state_code_slug": "hi",
"class": "III",
"bioguide": "S001194",
"thomas": "2173",
"opensecrets": "N00028138",
"votesmart": "17852",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Brian Shcatz",
"name_slug": "brian-shcatz",
"first_name": "Brian",
"middle_name": null,
"last_name": "Shcatz",
"name_suffix": null,
"goes_by": null,
"pronunciation": "BRAHY-uhn SHAHTS [Rhymes with shots, not cats]",
"gender": "male",
"ethnicity": "white-american",
"religion": "jewish",
"openly_lgbtq": "no",
"date_of_birth": "1972-10-20",
"entered_office": "2012-12-26",
"term_end": "2023-01-03",
"biography": "Brian Schatz, a Senator from Hawaii; born in Ann Arbor, Washtenaw County, Mich., October 20, 1972; attended Punahou School in Honolulu, Hawaii; B.A. Pomona College 1994; teacher; member of the Hawaii state house of representatives, 1998-2006; CEO, Helping Hands Hawaii, 2002-2010; Chairman, Democratic Party of Hawaii, 2008-2011; Hawaii lieutenant governor, 2010-2012; appointed as a Democrat to the United States Senate on December 26, 2012, to fill the vacancy caused by the death of Daniel Inouye, and took the oath of office on December 27, 2012; elected in 2014 in a special election for the term ending January 3, 2017.",
"phone": "202-224-6542",
"fax": "202-228-1153",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "722 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "722 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",
"address_type": "Building",
"website": "http://www.schatz.senate.gov",
"contact_page": "https://www.schatz.senate.gov/contact",
"facebook_url": "https://www.facebook.com/SenBrianSchatz",
"twitter_handle": "brianschatz",
"twitter_url": "https://twitter.com/brianschatz",
"photo_url": "https://cdn.civil.services/us-senate/headshots/512x512/brian-shcatz.jpg"
},
{
"state_name": "Hawaii",
"state_name_slug": "hawaii",
"state_code": "HI",
"state_code_slug": "hi",
"class": "I",
"bioguide": "H001042",
"thomas": "1844",
"opensecrets": "N00028139",
"votesmart": "1677",
"fec": null,
"maplight": null,
"wikidata": null,
"google_entity_id": null,
"title": "senator",
"party": "democrat",
"name": "Mazie Hirono",
"name_slug": "mazie-hirono",
"first_name": "Mazie",
"middle_name": "K.",
"last_name": "Hirono",
"name_suffix": null,
"goes_by": null,
"pronunciation": "MAY-zee hear-OH-noh [O's unrounded]",
"gender": "female",
"ethnicity": "asian-american",
"religion": "buddhism",
"openly_lgbtq": "no",
"date_of_birth": "1947-11-03",
"entered_office": "2013-01-03",
"term_end": "2019-01-03",
"biography": "Mazie Hirono, a Senator and a Representative from Hawaii; born in Fukushima, Japan, November 3, 1947; graduated from Kaimuki High School, Honolulu, Hawaii; B.A., University of Hawaii, Manoa, Hawaii, 1970; J.D., Georgetown University, Washington, D.C., 1978; lawyer, private practice; member of the Hawaii state house of representatives, 1981-1994; Hawaii lieutenant governor, 1994-2002; elected as a Democrat to the One Hundred Tenth and to the two succeeding Congresses (January 3, 2007-January 3, 2013); was not a candidate for reelection to the House of Representatives but was elected as a Democrat to the United States Senate in 2012 for the term ending January 3, 2019.",
"phone": "202-224-6361",
"fax": "202-224-2126",
"latitude": "38.892839",
"longitude": "-77.004356",
"address_complete": "330 Hart Senate Office Building, Washington, DC 20510",
"address_number": null,
"address_prefix": null,
"address_street": "330 Hart Senate Office Building",
"address_sec_unit_type": null,
"address_sec_unit_num": null,
"address_city": "Washington",
"address_state": "DC",
"address_zipcode": "20510",