google-civic-ruby 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.travis.yml +6 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +28 -0
- data/Rakefile +1 -0
- data/google-civic-ruby.gemspec +28 -0
- data/lib/google-civic.rb +9 -0
- data/lib/google-civic/client.rb +34 -0
- data/lib/google-civic/connection.rb +42 -0
- data/lib/google-civic/election.rb +14 -0
- data/lib/google-civic/elections.rb +34 -0
- data/lib/google-civic/requester.rb +19 -0
- data/lib/google-civic/router.rb +35 -0
- data/lib/google-civic/version.rb +5 -0
- data/spec/google-civic/client_spec.rb +18 -0
- data/spec/google-civic/election_spec.rb +13 -0
- data/spec/google-civic/elections_spec.rb +29 -0
- data/spec/google-civic/requester_spec.rb +11 -0
- data/spec/spec_helper.rb +18 -0
- data/spec/support/fixtures/elections.json +20 -0
- data/spec/support/fixtures/representative_info.json +769 -0
- data/spec/support/fixtures/voter_info.json +290 -0
- data/spec/support/helpers/fixtures.rb +15 -0
- data/spec/support/helpers/requests.rb +5 -0
- data/spec/support/shared_examples/connection_to_the_client.rb +16 -0
- metadata +195 -0
@@ -0,0 +1,769 @@
|
|
1
|
+
{
|
2
|
+
"kind": "civicinfo#representativeInfoResponse",
|
3
|
+
"status": "success",
|
4
|
+
"normalizedInput": {
|
5
|
+
"line1": "1263 pacific ave",
|
6
|
+
"city": "kansas city",
|
7
|
+
"state": "KS",
|
8
|
+
"zip": "66102"
|
9
|
+
},
|
10
|
+
"divisions": {
|
11
|
+
"ocd-division/country:us/state:ks/county:wyandotte/council_district:2": {
|
12
|
+
"name": "Wyandotte County Commissioner District 2",
|
13
|
+
"scope": "countyCouncil"
|
14
|
+
},
|
15
|
+
"ocd-division/country:us/state:ks/cd:3": {
|
16
|
+
"name": "Kansas's 3rd congressional district",
|
17
|
+
"scope": "congressional",
|
18
|
+
"officeIds": [
|
19
|
+
"O0"
|
20
|
+
]
|
21
|
+
},
|
22
|
+
"ocd-division/country:us/state:ks/sldl:32": {
|
23
|
+
"name": "Kansas House of Representatives district 32",
|
24
|
+
"scope": "stateLower",
|
25
|
+
"officeIds": [
|
26
|
+
"O1"
|
27
|
+
]
|
28
|
+
},
|
29
|
+
"ocd-division/country:us/state:ks/place:kansas_city": {
|
30
|
+
"name": "Kansas City city",
|
31
|
+
"scope": "citywide",
|
32
|
+
"officeIds": [
|
33
|
+
"O2",
|
34
|
+
"O3",
|
35
|
+
"O4",
|
36
|
+
"O5",
|
37
|
+
"O6",
|
38
|
+
"O7",
|
39
|
+
"O8"
|
40
|
+
]
|
41
|
+
},
|
42
|
+
"ocd-division/country:us/state:ks/county:wyandotte": {
|
43
|
+
"name": "Wyandotte County",
|
44
|
+
"scope": "countywide"
|
45
|
+
},
|
46
|
+
"ocd-division/country:us": {
|
47
|
+
"name": "United States",
|
48
|
+
"scope": "national",
|
49
|
+
"officeIds": [
|
50
|
+
"O9",
|
51
|
+
"Oa"
|
52
|
+
]
|
53
|
+
},
|
54
|
+
"ocd-division/country:us/state:ks": {
|
55
|
+
"name": "Kansas",
|
56
|
+
"scope": "statewide",
|
57
|
+
"officeIds": [
|
58
|
+
"Ob",
|
59
|
+
"Oc",
|
60
|
+
"Od",
|
61
|
+
"Oe",
|
62
|
+
"Of",
|
63
|
+
"O10",
|
64
|
+
"O11"
|
65
|
+
]
|
66
|
+
},
|
67
|
+
"ocd-division/country:us/state:ks/sldu:6": {
|
68
|
+
"name": "Kansas State Senate district 6",
|
69
|
+
"scope": "stateUpper",
|
70
|
+
"officeIds": [
|
71
|
+
"O12"
|
72
|
+
]
|
73
|
+
}
|
74
|
+
},
|
75
|
+
"offices": {
|
76
|
+
"O0": {
|
77
|
+
"name": "United States House of Representatives KS-03",
|
78
|
+
"level": "federal",
|
79
|
+
"officialIds": [
|
80
|
+
"P0"
|
81
|
+
]
|
82
|
+
},
|
83
|
+
"O1": {
|
84
|
+
"name": "KS State House District 32",
|
85
|
+
"level": "state",
|
86
|
+
"officialIds": [
|
87
|
+
"P1"
|
88
|
+
]
|
89
|
+
},
|
90
|
+
"O2": {
|
91
|
+
"name": "Sheriff",
|
92
|
+
"level": "county",
|
93
|
+
"officialIds": [
|
94
|
+
"P2"
|
95
|
+
]
|
96
|
+
},
|
97
|
+
"O3": {
|
98
|
+
"name": "District Attorney",
|
99
|
+
"level": "county",
|
100
|
+
"officialIds": [
|
101
|
+
"P3"
|
102
|
+
]
|
103
|
+
},
|
104
|
+
"O4": {
|
105
|
+
"name": "Register of Deeds",
|
106
|
+
"level": "county",
|
107
|
+
"officialIds": [
|
108
|
+
"P4"
|
109
|
+
]
|
110
|
+
},
|
111
|
+
"O5": {
|
112
|
+
"name": "Director of Revenue",
|
113
|
+
"level": "county",
|
114
|
+
"officialIds": [
|
115
|
+
"P5"
|
116
|
+
]
|
117
|
+
},
|
118
|
+
"O6": {
|
119
|
+
"name": "Unified Government Clerk",
|
120
|
+
"level": "county",
|
121
|
+
"officialIds": [
|
122
|
+
"P6"
|
123
|
+
]
|
124
|
+
},
|
125
|
+
"O7": {
|
126
|
+
"name": "Unified Government Commission, At Large, District 1",
|
127
|
+
"level": "county",
|
128
|
+
"officialIds": [
|
129
|
+
"P7"
|
130
|
+
]
|
131
|
+
},
|
132
|
+
"O8": {
|
133
|
+
"name": "Unified Government Commission, At Large, District 2",
|
134
|
+
"level": "county",
|
135
|
+
"officialIds": [
|
136
|
+
"P8"
|
137
|
+
]
|
138
|
+
},
|
139
|
+
"O9": {
|
140
|
+
"name": "President",
|
141
|
+
"level": "federal",
|
142
|
+
"officialIds": [
|
143
|
+
"P9"
|
144
|
+
]
|
145
|
+
},
|
146
|
+
"Oa": {
|
147
|
+
"name": "Vice President",
|
148
|
+
"level": "federal",
|
149
|
+
"officialIds": [
|
150
|
+
"P10"
|
151
|
+
]
|
152
|
+
},
|
153
|
+
"Ob": {
|
154
|
+
"name": "Governor",
|
155
|
+
"level": "state",
|
156
|
+
"officialIds": [
|
157
|
+
"P11"
|
158
|
+
]
|
159
|
+
},
|
160
|
+
"Oc": {
|
161
|
+
"name": "State Treasurer",
|
162
|
+
"level": "state",
|
163
|
+
"officialIds": [
|
164
|
+
"P12"
|
165
|
+
]
|
166
|
+
},
|
167
|
+
"Od": {
|
168
|
+
"name": "Attorney General",
|
169
|
+
"level": "state",
|
170
|
+
"officialIds": [
|
171
|
+
"P13"
|
172
|
+
]
|
173
|
+
},
|
174
|
+
"Oe": {
|
175
|
+
"name": "Secretary of State",
|
176
|
+
"level": "state",
|
177
|
+
"officialIds": [
|
178
|
+
"P14"
|
179
|
+
]
|
180
|
+
},
|
181
|
+
"Of": {
|
182
|
+
"name": "Lieutenant Governor",
|
183
|
+
"level": "state",
|
184
|
+
"officialIds": [
|
185
|
+
"P15"
|
186
|
+
]
|
187
|
+
},
|
188
|
+
"O10": {
|
189
|
+
"name": "United States Senate",
|
190
|
+
"level": "federal",
|
191
|
+
"officialIds": [
|
192
|
+
"P16",
|
193
|
+
"P17"
|
194
|
+
]
|
195
|
+
},
|
196
|
+
"O11": {
|
197
|
+
"name": "Insurance Commissioner",
|
198
|
+
"level": "state",
|
199
|
+
"officialIds": [
|
200
|
+
"P18"
|
201
|
+
]
|
202
|
+
},
|
203
|
+
"O12": {
|
204
|
+
"name": "KS State Senate District 6",
|
205
|
+
"level": "state",
|
206
|
+
"officialIds": [
|
207
|
+
"P19"
|
208
|
+
]
|
209
|
+
}
|
210
|
+
},
|
211
|
+
"officials": {
|
212
|
+
"P0": {
|
213
|
+
"name": "Kevin Yoder",
|
214
|
+
"address": [
|
215
|
+
{
|
216
|
+
"line1": "215 Cannon HOB",
|
217
|
+
"city": "washington d.c.",
|
218
|
+
"state": "DC",
|
219
|
+
"zip": "20515"
|
220
|
+
}
|
221
|
+
],
|
222
|
+
"party": "Republican",
|
223
|
+
"phones": [
|
224
|
+
"(202) 225-2865"
|
225
|
+
],
|
226
|
+
"urls": [
|
227
|
+
"http://yoder.house.gov/"
|
228
|
+
],
|
229
|
+
"photoUrl": "http://yoder.house.gov/images/user_images/headshot.jpg",
|
230
|
+
"channels": [
|
231
|
+
{
|
232
|
+
"type": "Facebook",
|
233
|
+
"id": "CongressmanKevinYoder"
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"type": "Twitter",
|
237
|
+
"id": "RepKevinYoder"
|
238
|
+
}
|
239
|
+
]
|
240
|
+
},
|
241
|
+
"P1": {
|
242
|
+
"name": "Mike Peterson",
|
243
|
+
"address": [
|
244
|
+
{
|
245
|
+
"line1": "450 North 17th",
|
246
|
+
"city": "kansas city",
|
247
|
+
"state": "KS",
|
248
|
+
"zip": "66102"
|
249
|
+
}
|
250
|
+
],
|
251
|
+
"party": "Democratic",
|
252
|
+
"phones": [
|
253
|
+
"(785) 296-7371"
|
254
|
+
],
|
255
|
+
"urls": [
|
256
|
+
"http://www.kslegislature.org/li/b2013_14/members/rep_peterson_michael_1/"
|
257
|
+
],
|
258
|
+
"photoUrl": "http://www.kslegislature.org/li/m/images/pics/rep_peterson_michael_1.jpg",
|
259
|
+
"emails": [
|
260
|
+
"michael.peterson@house.ks.gov"
|
261
|
+
]
|
262
|
+
},
|
263
|
+
"P2": {
|
264
|
+
"name": "Donald Ash",
|
265
|
+
"address": [
|
266
|
+
{
|
267
|
+
"line1": "701 Nth 7th Street Suite 20",
|
268
|
+
"city": "kansas city",
|
269
|
+
"state": "KS",
|
270
|
+
"zip": "66101"
|
271
|
+
}
|
272
|
+
],
|
273
|
+
"party": "Democratic",
|
274
|
+
"phones": [
|
275
|
+
"(913) 573-2861"
|
276
|
+
],
|
277
|
+
"urls": [
|
278
|
+
"http://www.wycokck.org/DefaultDept32.aspx?id=2614"
|
279
|
+
],
|
280
|
+
"emails": [
|
281
|
+
"dash@wycokck.org"
|
282
|
+
]
|
283
|
+
},
|
284
|
+
"P3": {
|
285
|
+
"name": "Jerome Gorman",
|
286
|
+
"address": [
|
287
|
+
{
|
288
|
+
"line1": "701 Nth 7th Street Suite 10",
|
289
|
+
"city": "kansas city",
|
290
|
+
"state": "KS",
|
291
|
+
"zip": "66101"
|
292
|
+
}
|
293
|
+
],
|
294
|
+
"party": "Democratic",
|
295
|
+
"phones": [
|
296
|
+
"(913) 573-2851"
|
297
|
+
],
|
298
|
+
"urls": [
|
299
|
+
"http://www.wycokck.org/Internet2010DistAttyBanner.aspx?id=176&banner=6912&menu_id=946"
|
300
|
+
]
|
301
|
+
},
|
302
|
+
"P4": {
|
303
|
+
"name": "Nancy Burns",
|
304
|
+
"address": [
|
305
|
+
{
|
306
|
+
"line1": "710 n. 7th street",
|
307
|
+
"city": "kansas city",
|
308
|
+
"state": "KS",
|
309
|
+
"zip": "66101"
|
310
|
+
}
|
311
|
+
],
|
312
|
+
"party": "Unknown",
|
313
|
+
"phones": [
|
314
|
+
"(913) 573-2841"
|
315
|
+
],
|
316
|
+
"urls": [
|
317
|
+
"http://www.wycokck.org/Internetdept.aspx?id=2600&menu_id=1024&banner=15284"
|
318
|
+
],
|
319
|
+
"emails": [
|
320
|
+
"nburns@wycokck.org"
|
321
|
+
]
|
322
|
+
},
|
323
|
+
"P5": {
|
324
|
+
"name": "Debbie Pack",
|
325
|
+
"address": [
|
326
|
+
{
|
327
|
+
"line1": "710 n. 7th street",
|
328
|
+
"city": "kansas city",
|
329
|
+
"state": "KS",
|
330
|
+
"zip": "66101"
|
331
|
+
}
|
332
|
+
],
|
333
|
+
"party": "Unknown",
|
334
|
+
"phones": [
|
335
|
+
"(913) 573-2821"
|
336
|
+
],
|
337
|
+
"urls": [
|
338
|
+
"http://www.wycokck.org/treasury/"
|
339
|
+
],
|
340
|
+
"emails": [
|
341
|
+
"dpack@wycokck.org"
|
342
|
+
]
|
343
|
+
},
|
344
|
+
"P6": {
|
345
|
+
"name": "Bridgette D. Cobbins",
|
346
|
+
"address": [
|
347
|
+
{
|
348
|
+
"line1": "710 n. 7th street",
|
349
|
+
"city": "kansas city",
|
350
|
+
"state": "KS",
|
351
|
+
"zip": "66101"
|
352
|
+
}
|
353
|
+
],
|
354
|
+
"party": "Unknown",
|
355
|
+
"phones": [
|
356
|
+
"(913) 573-5260"
|
357
|
+
],
|
358
|
+
"urls": [
|
359
|
+
"http://www.wycokck.org/InternetDept.aspx?id=18992&menu_id=554&terms=Bridgette%20Cobbins"
|
360
|
+
],
|
361
|
+
"emails": [
|
362
|
+
"clerkwest@wycokck.org"
|
363
|
+
]
|
364
|
+
},
|
365
|
+
"P7": {
|
366
|
+
"name": "Vacant",
|
367
|
+
"address": [
|
368
|
+
{
|
369
|
+
"line1": "701 Nth 7th Street Suite 979",
|
370
|
+
"city": "kansas city",
|
371
|
+
"state": "KS",
|
372
|
+
"zip": "66101"
|
373
|
+
}
|
374
|
+
],
|
375
|
+
"party": "Unknown",
|
376
|
+
"phones": [
|
377
|
+
"(913) 573-5040"
|
378
|
+
],
|
379
|
+
"urls": [
|
380
|
+
"http://www.wycokck.org/InternetDept.aspx?id=5750&menu_id=1278&banner=15284"
|
381
|
+
],
|
382
|
+
"channels": [
|
383
|
+
{
|
384
|
+
"type": "Facebook",
|
385
|
+
"id": "cityofkck"
|
386
|
+
},
|
387
|
+
{
|
388
|
+
"type": "Twitter",
|
389
|
+
"id": "CityofKCK"
|
390
|
+
}
|
391
|
+
]
|
392
|
+
},
|
393
|
+
"P8": {
|
394
|
+
"name": "John Mendez",
|
395
|
+
"address": [
|
396
|
+
{
|
397
|
+
"line1": "701 Nth 7th Street Suite 979",
|
398
|
+
"city": "kansas city",
|
399
|
+
"state": "KS",
|
400
|
+
"zip": "66101"
|
401
|
+
}
|
402
|
+
],
|
403
|
+
"party": "Unknown",
|
404
|
+
"phones": [
|
405
|
+
"(913) 573-5040"
|
406
|
+
],
|
407
|
+
"urls": [
|
408
|
+
"http://www.wycokck.org/Internetdept.aspx?id=5752&menu_id=1278&banner=15284"
|
409
|
+
],
|
410
|
+
"emails": [
|
411
|
+
"jmendez@wycokck.org"
|
412
|
+
],
|
413
|
+
"channels": [
|
414
|
+
{
|
415
|
+
"type": "Facebook",
|
416
|
+
"id": "cityofkck"
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"type": "Twitter",
|
420
|
+
"id": "CityofKCK"
|
421
|
+
}
|
422
|
+
]
|
423
|
+
},
|
424
|
+
"P9": {
|
425
|
+
"name": "Barack Hussein Obama II",
|
426
|
+
"address": [
|
427
|
+
{
|
428
|
+
"line1": "The White House",
|
429
|
+
"line2": "1600 Pennsylvania Avenue NW",
|
430
|
+
"line3": "",
|
431
|
+
"city": "Washington",
|
432
|
+
"state": "DC",
|
433
|
+
"zip": "20500"
|
434
|
+
}
|
435
|
+
],
|
436
|
+
"party": "Democrat",
|
437
|
+
"phones": [
|
438
|
+
"(202) 456-1111",
|
439
|
+
"(202) 456-1414"
|
440
|
+
],
|
441
|
+
"urls": [
|
442
|
+
"http://www.whitehouse.gov/administration/president_obama/",
|
443
|
+
"http://www.barackobama.com/index.php"
|
444
|
+
],
|
445
|
+
"photoUrl": "http://www.whitehouse.gov/sites/default/files/imagecache/admin_official_lowres/administration-official/ao_image/president_official_portrait_hires.jpg",
|
446
|
+
"channels": [
|
447
|
+
{
|
448
|
+
"type": "GooglePlus",
|
449
|
+
"id": "110031535020051778989"
|
450
|
+
},
|
451
|
+
{
|
452
|
+
"type": "Twitter",
|
453
|
+
"id": "barackobama"
|
454
|
+
},
|
455
|
+
{
|
456
|
+
"type": "Facebook",
|
457
|
+
"id": "barackobama"
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"type": "YouTube",
|
461
|
+
"id": "barackobama"
|
462
|
+
}
|
463
|
+
]
|
464
|
+
},
|
465
|
+
"P10": {
|
466
|
+
"name": "Joseph (Joe) Robinette Biden Jr.",
|
467
|
+
"address": [
|
468
|
+
{
|
469
|
+
"line1": "The White House",
|
470
|
+
"line2": "1600 Pennsylvania Avenue NW",
|
471
|
+
"line3": "",
|
472
|
+
"city": "Washington",
|
473
|
+
"state": "DC",
|
474
|
+
"zip": "20500"
|
475
|
+
}
|
476
|
+
],
|
477
|
+
"party": "Democrat",
|
478
|
+
"urls": [
|
479
|
+
"http://www.whitehouse.gov/administration/vice-president-biden"
|
480
|
+
],
|
481
|
+
"photoUrl": "http://www.whitehouse.gov/sites/default/files/imagecache/admin_official_lowres/administration-official/ao_image/vp_portrait.jpeg",
|
482
|
+
"channels": [
|
483
|
+
{
|
484
|
+
"type": "Twitter",
|
485
|
+
"id": "VP"
|
486
|
+
},
|
487
|
+
{
|
488
|
+
"type": "Twitter",
|
489
|
+
"id": "JoeBiden"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"type": "Facebook",
|
493
|
+
"id": "joebiden"
|
494
|
+
}
|
495
|
+
]
|
496
|
+
},
|
497
|
+
"P11": {
|
498
|
+
"name": "Sam Brownback",
|
499
|
+
"address": [
|
500
|
+
{
|
501
|
+
"line1": "Capitol",
|
502
|
+
"line2": "300 sw 10th ave.",
|
503
|
+
"city": "topeka",
|
504
|
+
"state": "KS",
|
505
|
+
"zip": "66612"
|
506
|
+
}
|
507
|
+
],
|
508
|
+
"phones": [
|
509
|
+
"(785) 296-3232"
|
510
|
+
],
|
511
|
+
"urls": [
|
512
|
+
"http://www.governor.ks.gov/"
|
513
|
+
],
|
514
|
+
"channels": [
|
515
|
+
{
|
516
|
+
"type": "Facebook",
|
517
|
+
"id": "govsambrownback"
|
518
|
+
},
|
519
|
+
{
|
520
|
+
"type": "Twitter",
|
521
|
+
"id": "govsambrownback"
|
522
|
+
}
|
523
|
+
]
|
524
|
+
},
|
525
|
+
"P12": {
|
526
|
+
"name": "Ron Estes",
|
527
|
+
"address": [
|
528
|
+
{
|
529
|
+
"line1": "Kansas State Treasurer 900 SW Jackson",
|
530
|
+
"line2": "Suite 201",
|
531
|
+
"city": "topeka",
|
532
|
+
"state": "KS",
|
533
|
+
"zip": "66612"
|
534
|
+
}
|
535
|
+
],
|
536
|
+
"phones": [
|
537
|
+
"(785) 296-3171"
|
538
|
+
],
|
539
|
+
"urls": [
|
540
|
+
"http://www.kansasstatetreasurer.com/prodweb/main/index.php"
|
541
|
+
],
|
542
|
+
"emails": [
|
543
|
+
"ron@treasurer.ks.gov"
|
544
|
+
],
|
545
|
+
"channels": [
|
546
|
+
{
|
547
|
+
"type": "Facebook",
|
548
|
+
"id": "130975650300043"
|
549
|
+
},
|
550
|
+
{
|
551
|
+
"type": "Twitter",
|
552
|
+
"id": "RonEstesKS"
|
553
|
+
}
|
554
|
+
]
|
555
|
+
},
|
556
|
+
"P13": {
|
557
|
+
"name": "Derek Schmidt",
|
558
|
+
"address": [
|
559
|
+
{
|
560
|
+
"line1": "120 SW 10th Ave",
|
561
|
+
"line2": "2nd Floor",
|
562
|
+
"city": "topeka",
|
563
|
+
"state": "KS",
|
564
|
+
"zip": "66612"
|
565
|
+
}
|
566
|
+
],
|
567
|
+
"phones": [
|
568
|
+
"(785) 296-2215"
|
569
|
+
],
|
570
|
+
"urls": [
|
571
|
+
"http://ag.ks.gov/"
|
572
|
+
],
|
573
|
+
"channels": [
|
574
|
+
{
|
575
|
+
"type": "Twitter",
|
576
|
+
"id": "KSAGOffice"
|
577
|
+
}
|
578
|
+
]
|
579
|
+
},
|
580
|
+
"P14": {
|
581
|
+
"name": "Kris Kobach",
|
582
|
+
"address": [
|
583
|
+
{
|
584
|
+
"line1": "Kansas Secretary of State Memorial Hall",
|
585
|
+
"line2": "1st Floor",
|
586
|
+
"line3": "120 sw 10th avenue",
|
587
|
+
"city": "topeka",
|
588
|
+
"state": "KS",
|
589
|
+
"zip": "66612"
|
590
|
+
}
|
591
|
+
],
|
592
|
+
"phones": [
|
593
|
+
"(785) 296-4564"
|
594
|
+
],
|
595
|
+
"urls": [
|
596
|
+
"http://www.kssos.org/"
|
597
|
+
],
|
598
|
+
"emails": [
|
599
|
+
"kssos@sos.ks.gov"
|
600
|
+
],
|
601
|
+
"channels": [
|
602
|
+
{
|
603
|
+
"type": "Facebook",
|
604
|
+
"id": "Kansas-Secretary-of-State"
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"type": "Twitter",
|
608
|
+
"id": "kansassos"
|
609
|
+
}
|
610
|
+
]
|
611
|
+
},
|
612
|
+
"P15": {
|
613
|
+
"name": "Jeff Coyler",
|
614
|
+
"address": [
|
615
|
+
{
|
616
|
+
"line1": "State Capitol",
|
617
|
+
"line2": "2nd Floor",
|
618
|
+
"line3": "300 sw 10th ave.",
|
619
|
+
"city": "topeka",
|
620
|
+
"state": "KS",
|
621
|
+
"zip": "66612"
|
622
|
+
}
|
623
|
+
],
|
624
|
+
"phones": [
|
625
|
+
"(785) 296-2214"
|
626
|
+
],
|
627
|
+
"urls": [
|
628
|
+
"https://governor.ks.gov/about-the-office/lt-govenor-jeff-colyer"
|
629
|
+
]
|
630
|
+
},
|
631
|
+
"P16": {
|
632
|
+
"name": "Jerry Moran",
|
633
|
+
"address": [
|
634
|
+
{
|
635
|
+
"line1": "361A Russell Senate Office Building",
|
636
|
+
"city": "washington d.c.",
|
637
|
+
"state": "DC",
|
638
|
+
"zip": "20510"
|
639
|
+
}
|
640
|
+
],
|
641
|
+
"party": "Republican",
|
642
|
+
"phones": [
|
643
|
+
"(202) 224-6521"
|
644
|
+
],
|
645
|
+
"urls": [
|
646
|
+
"http://www.moran.senate.gov/public/"
|
647
|
+
],
|
648
|
+
"photoUrl": "http://moran.senate.gov/public/index.cfm/files/serve?File_id=cd666b47-46e3-4a48-bcf1-ea2890f99817",
|
649
|
+
"channels": [
|
650
|
+
{
|
651
|
+
"type": "Facebook",
|
652
|
+
"id": "jerrymoran"
|
653
|
+
},
|
654
|
+
{
|
655
|
+
"type": "Twitter",
|
656
|
+
"id": "JerryMoran"
|
657
|
+
},
|
658
|
+
{
|
659
|
+
"type": "YouTube",
|
660
|
+
"id": "senatorjerrymoran"
|
661
|
+
}
|
662
|
+
]
|
663
|
+
},
|
664
|
+
"P17": {
|
665
|
+
"name": "Pat Roberts",
|
666
|
+
"address": [
|
667
|
+
{
|
668
|
+
"line1": "109 Hart Senate Office Building",
|
669
|
+
"city": "washington d.c.",
|
670
|
+
"state": "DC",
|
671
|
+
"zip": "20510"
|
672
|
+
}
|
673
|
+
],
|
674
|
+
"party": "Republican",
|
675
|
+
"phones": [
|
676
|
+
"(202) 224-4774"
|
677
|
+
],
|
678
|
+
"urls": [
|
679
|
+
"http://www.roberts.senate.gov/public/"
|
680
|
+
],
|
681
|
+
"photoUrl": "http://roberts.senate.gov/public/index.cfm?a=Files.Serve&File_id=b42c6b05-966e-48ea-b3ed-9e5fc4ab1a0d",
|
682
|
+
"emails": [
|
683
|
+
"pat_roberts@roberts.senate.gov"
|
684
|
+
],
|
685
|
+
"channels": [
|
686
|
+
{
|
687
|
+
"type": "Facebook",
|
688
|
+
"id": "SenPatRoberts"
|
689
|
+
},
|
690
|
+
{
|
691
|
+
"type": "Twitter",
|
692
|
+
"id": "SenPatRoberts"
|
693
|
+
},
|
694
|
+
{
|
695
|
+
"type": "YouTube",
|
696
|
+
"id": "SenPatRoberts"
|
697
|
+
}
|
698
|
+
]
|
699
|
+
},
|
700
|
+
"P18": {
|
701
|
+
"name": "Sandy Praeger",
|
702
|
+
"address": [
|
703
|
+
{
|
704
|
+
"line1": "420 sw 9th street",
|
705
|
+
"city": "topeka",
|
706
|
+
"state": "KS",
|
707
|
+
"zip": "66612"
|
708
|
+
}
|
709
|
+
],
|
710
|
+
"phones": [
|
711
|
+
"(785) 296-3071"
|
712
|
+
],
|
713
|
+
"urls": [
|
714
|
+
"http://www.ksinsurance.org/"
|
715
|
+
],
|
716
|
+
"emails": [
|
717
|
+
"commissioner@ksinsurance.org"
|
718
|
+
],
|
719
|
+
"channels": [
|
720
|
+
{
|
721
|
+
"type": "Facebook",
|
722
|
+
"id": "KansasInsuranceDepartment"
|
723
|
+
}
|
724
|
+
]
|
725
|
+
},
|
726
|
+
"P19": {
|
727
|
+
"name": "Pat Pettey",
|
728
|
+
"address": [
|
729
|
+
{
|
730
|
+
"line1": "Kansas State Capitol",
|
731
|
+
"line2": "300 SW 10th St.",
|
732
|
+
"line3": "Room 125-E",
|
733
|
+
"city": "Topeka",
|
734
|
+
"state": "KS",
|
735
|
+
"zip": "66612-1504"
|
736
|
+
},
|
737
|
+
{
|
738
|
+
"line1": "5316 Lakewood Street",
|
739
|
+
"line2": "",
|
740
|
+
"line3": "",
|
741
|
+
"city": "Kansas City",
|
742
|
+
"state": "KS",
|
743
|
+
"zip": "66106"
|
744
|
+
}
|
745
|
+
],
|
746
|
+
"party": "Democratic",
|
747
|
+
"phones": [
|
748
|
+
"(785) 296-7375"
|
749
|
+
],
|
750
|
+
"urls": [
|
751
|
+
"http://www.kslegislature.org/li/b2013_14/members/sen_pettey_pat_1/"
|
752
|
+
],
|
753
|
+
"photoUrl": "http://www.kslegislature.org/li/m/images/pics/sen_pettey_pat_1.jpg",
|
754
|
+
"emails": [
|
755
|
+
"Pat.Pettey@senate.ks.gov"
|
756
|
+
],
|
757
|
+
"channels": [
|
758
|
+
{
|
759
|
+
"type": "Twitter",
|
760
|
+
"id": "PatHPettey"
|
761
|
+
},
|
762
|
+
{
|
763
|
+
"type": "Facebook",
|
764
|
+
"id": "PetteyForSenate"
|
765
|
+
}
|
766
|
+
]
|
767
|
+
}
|
768
|
+
}
|
769
|
+
}
|