votesmart 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. data/.gitignore +1 -0
  2. data/History.txt +20 -0
  3. data/README.rdoc +48 -0
  4. data/Rakefile +45 -0
  5. data/VERSION.yml +4 -0
  6. data/lib/mcll4r/MIT-LICENSE +20 -0
  7. data/lib/mcll4r/README +19 -0
  8. data/lib/mcll4r/mcll4r.rb +24 -0
  9. data/lib/mcll4r/mcll4r_test.rb +35 -0
  10. data/lib/vote_smart.rb +22 -0
  11. data/lib/vote_smart/address.rb +42 -0
  12. data/lib/vote_smart/candidate.rb +32 -0
  13. data/lib/vote_smart/candidate_bio.rb +16 -0
  14. data/lib/vote_smart/candidate_office.rb +15 -0
  15. data/lib/vote_smart/committee.rb +23 -0
  16. data/lib/vote_smart/common.rb +97 -0
  17. data/lib/vote_smart/district.rb +38 -0
  18. data/lib/vote_smart/election.rb +21 -0
  19. data/lib/vote_smart/leadership.rb +16 -0
  20. data/lib/vote_smart/local.rb +21 -0
  21. data/lib/vote_smart/measure.rb +16 -0
  22. data/lib/vote_smart/notes.rb +11 -0
  23. data/lib/vote_smart/npat.rb +11 -0
  24. data/lib/vote_smart/office.rb +119 -0
  25. data/lib/vote_smart/official.rb +131 -0
  26. data/lib/vote_smart/phone.rb +12 -0
  27. data/lib/vote_smart/rating.rb +43 -0
  28. data/lib/vote_smart/state.rb +29 -0
  29. data/lib/vote_smart/vote.rb +70 -0
  30. data/lib/votesmart.rb +1 -0
  31. data/script/autospec +6 -0
  32. data/script/console +10 -0
  33. data/script/destroy +14 -0
  34. data/script/generate +14 -0
  35. data/script/is_gem_built +40 -0
  36. data/spec/responses/Address.get_office.106446.js +1 -0
  37. data/spec/responses/Address.get_office.1721.js +1 -0
  38. data/spec/responses/District.get_by_office_state.7.GA.js +1 -0
  39. data/spec/responses/District.get_by_office_state.8.GA.js +1 -0
  40. data/spec/responses/District.get_by_office_state.9.GA.js +1 -0
  41. data/spec/responses/Office.get_offices_by_type.C.js +1 -0
  42. data/spec/responses/Office.get_offices_by_type.L.js +1 -0
  43. data/spec/responses/Office.get_offices_by_type.P.js +1 -0
  44. data/spec/responses/Office.get_offices_by_type.S.js +1 -0
  45. data/spec/responses/Office.get_types.js +1 -0
  46. data/spec/responses/Official.get_by_district.20451.js +1 -0
  47. data/spec/responses/Official.get_by_district.20689.js +1 -0
  48. data/spec/responses/Official.get_by_district.21397.js +1 -0
  49. data/spec/responses/Official.get_by_district.21946.js +1 -0
  50. data/spec/responses/Official.get_by_office_state.12.CO.js +1 -0
  51. data/spec/responses/Official.get_by_office_state.12.GA.js +1 -0
  52. data/spec/responses/Official.get_by_office_state.13.GA.js +1 -0
  53. data/spec/responses/Official.get_by_office_state.33.GA.js +1 -0
  54. data/spec/responses/Official.get_by_office_state.42.GA.js +1 -0
  55. data/spec/responses/Official.get_by_office_state.44.GA.js +1 -0
  56. data/spec/responses/Official.get_by_office_state.45.GA.js +1 -0
  57. data/spec/responses/Official.get_by_office_state.53.GA.js +1 -0
  58. data/spec/responses/Rating.get_sig.1863.js +1 -0
  59. data/spec/responses/State.get_state.GA.js +1 -0
  60. data/spec/responses/State.get_state_ids.js +1 -0
  61. data/spec/responses/authorization_failed.js +1 -0
  62. data/spec/spec_helper.rb +98 -0
  63. data/spec/vote_smart/district_spec.rb +36 -0
  64. data/spec/vote_smart/office_spec.rb +96 -0
  65. data/spec/vote_smart/official_spec.rb +56 -0
  66. data/spec/vote_smart/rating_spec.rb +15 -0
  67. data/spec/vote_smart/state_spec.rb +28 -0
  68. data/tasks/spec_json.rake +64 -0
  69. data/votesmart.gemspec +116 -0
  70. metadata +149 -0
@@ -0,0 +1,29 @@
1
+ module VoteSmart
2
+
3
+ class State < Common
4
+
5
+ attr_accessor :id, :name, :largest_city
6
+
7
+ set_attribute_map "stateId" => :id, "name" => :name, "largestCity" => :largest_city
8
+
9
+ def self.all
10
+ response_child(get_state_ids, "stateList", "list", "state").collect {|attributes| State.new(attributes)}
11
+ end
12
+
13
+ def self.find_by_id state_id
14
+ response = response_child(get_state(state_id), "state", "details")
15
+ State.new(response) unless response.empty?
16
+ end
17
+
18
+ # Returns a list of states and their 2 digit IDs
19
+ def self.get_state_ids
20
+ request("State.getStateIDs")
21
+ end
22
+
23
+ # Returns detailed state information
24
+ def self.get_state state_id
25
+ request("State.getState", "stateId" => state_id)
26
+ end
27
+
28
+ end
29
+ end
@@ -0,0 +1,70 @@
1
+ module VoteSmart
2
+
3
+ class Vote < Common
4
+
5
+ # Returns a list of categories with votes assigned for the year and state provided
6
+ def self.get_categories year, state_id = 'NA'
7
+ request("Votes.getCategories", "stateId" => state_id)
8
+ end
9
+
10
+ # Returns detailed bill information
11
+ def self.get_bill bill_id
12
+ request("Votes.getBill", "billId" => bill_id)
13
+ end
14
+
15
+ # Returns a bill's action/stage(signed by prez, passed senate) detailed information
16
+ def self.get_bill_action act_id
17
+ request("Votes.getBillAction", "actionId" => act_id)
18
+ end
19
+
20
+ # Get's a bill's action's votes
21
+ def self.get_bill_action_votes act_id
22
+ request("Votes.getBillActionVotes", "actionId" => act_id)
23
+ end
24
+
25
+ # Gets a single candidate's vote on a bill
26
+ def self.get_bill_action_votes_by_official act_id, can_id
27
+ request("Votes.getBillActionVoteByOfficial", "actionId" => act_id, "candidateId" => can_id)
28
+ end
29
+
30
+ # Gets a list of bills that fit the criteria
31
+ def self.get_bills_by_category_year_state category_id, year, state = 'NA'
32
+ request("Votes.getBillsByCategoryYearState", "categoryId" => category_id, "year" => year, "stateId" => state)
33
+ end
34
+
35
+ # Gets a list of bills that fit the criteria
36
+ def self.get_bills_by_year_state year, state_id = 'NA'
37
+ request("Votes.getBillsByYearState", "year" => year, "stateId" => state_id)
38
+ end
39
+
40
+ # Gets a list of bills that fit the criteria
41
+ def self.get_bills_by_official_year can_id, year
42
+ request("Votes.getBillsByOfficialYear", "candidateId" => can_id, "year" => year)
43
+ end
44
+
45
+ # Gets a list of bills that fit the criteria
46
+ def self.get_bills_by_official_category can_id, category_id
47
+ request("Votes.getBillsByOfficialCategory", "candidateId" => can_id, "categoryId" => category_id)
48
+ end
49
+
50
+ # Gets a list of bills that fit the criteria
51
+ def self.get_bills_by_sponsor_year can_id, year
52
+ request("Votes.getBillsBySponsorYear", "candidateId" => can_id, "year" => year)
53
+ end
54
+
55
+ # Gets a list of bills that fit the criteria
56
+ def self.get_bills_by_sponsor_category can_id, category_id
57
+ request("Votes.getBillsBySponsorCategory", "candiateId" => can_id, "categoryId" => category_id)
58
+ end
59
+
60
+ # Gets a list of bills that fit the criteria
61
+ def self.get_bills_by_state_recent ammount, state_id = 'NA'
62
+ request("Votes.getBillsByStateRecent", "stateId" => state_id, "ammount" => ammount)
63
+ end
64
+
65
+ # Gets a list of vetoes for the provided candidate
66
+ def self.get_vetoes can_id
67
+ request("Votes.getVetoes", "candidateId" => can_id)
68
+ end
69
+ end
70
+ end
@@ -0,0 +1 @@
1
+ require 'vote_smart'
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ ENV['RSPEC'] = 'true' # allows autotest to discover rspec
3
+ ENV['AUTOTEST'] = 'true' # allows autotest to run w/ color on linux
4
+
5
+ system((RUBY_PLATFORM =~ /mswin|mingw/ ? 'autotest.bat' : 'autotest'), *ARGV) ||
6
+ $stderr.puts("Unable to find autotest. Please install ZenTest or fix your PATH")
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env ruby
2
+ # File: script/console
3
+ irb = RUBY_PLATFORM =~ /(:?mswin|mingw)/ ? 'irb.bat' : 'irb'
4
+
5
+ libs = " -r irb/completion"
6
+ # Perhaps use a console_lib to store any extra methods I may want available in the cosole
7
+ # libs << " -r #{File.dirname(__FILE__) + '/../lib/console_lib/console_logger.rb'}"
8
+ libs << " -r #{File.dirname(__FILE__) + '/../lib/vote_smart.rb'}"
9
+ puts "Loading vote_smart gem"
10
+ exec "#{irb} #{libs} --simple-prompt"
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
+
4
+ begin
5
+ require 'rubigen'
6
+ rescue LoadError
7
+ require 'rubygems'
8
+ require 'rubigen'
9
+ end
10
+ require 'rubigen/scripts/destroy'
11
+
12
+ ARGV.shift if ['--help', '-h'].include?(ARGV[0])
13
+ RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
14
+ RubiGen::Scripts::Destroy.new.run(ARGV)
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
+
4
+ begin
5
+ require 'rubigen'
6
+ rescue LoadError
7
+ require 'rubygems'
8
+ require 'rubigen'
9
+ end
10
+ require 'rubigen/scripts/generate'
11
+
12
+ ARGV.shift if ['--help', '-h'].include?(ARGV[0])
13
+ RubiGen::Base.use_component_sources! [:rubygems, :newgem, :newgem_theme, :test_unit]
14
+ RubiGen::Scripts::Generate.new.run(ARGV)
@@ -0,0 +1,40 @@
1
+ #!/usr/bin/env ruby
2
+ APP_ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..'))
3
+
4
+ require 'rubygems/specification'
5
+ require 'net/http'
6
+
7
+ @gem_name = "netroots-ruby-votesmart"
8
+ @gem_spec_file = "ruby-votesmart.gemspec"
9
+
10
+ @gem_spec = eval(File.open(File.join(APP_ROOT, @gem_spec_file)) {|f| f.read })
11
+
12
+ @gem_path = "/gems/#{@gem_name}-#{@gem_spec.version}.gem"
13
+
14
+ def gem_available_on_server?
15
+ Net::HTTP.start('gems.github.com') {|http|
16
+ req = Net::HTTP::Head.new(@gem_path)
17
+ response = http.request(req)
18
+ return response.code == "200"
19
+ }
20
+ end
21
+
22
+ def gem_is_in_specfile?
23
+ fetcher = Gem::SpecFetcher.new
24
+ specs = fetcher.load_specs(URI.parse('http://gems.github.com/'), 'specs')
25
+ specs.any?{|(name, spec)| name == @gem_name and spec.version.to_s == @gem_spec.version.to_s }
26
+ end
27
+
28
+
29
+ is_built = false
30
+
31
+ while not is_built
32
+
33
+ if gem_available_on_server? && gem_is_in_specfile?
34
+ is_built = true
35
+ system "say 'gem is built'"
36
+ else
37
+ Kernel.sleep(10)
38
+ end
39
+
40
+ end
@@ -0,0 +1 @@
1
+ {"address":{"generalInfo":{"title":"Project Vote Smart - Campaign Address - Lois Court","linkBack":"http:\/\/votesmart.org\/bio.php?can_id=106446"},"candidate":{"lastName":"Court","title":"Rep.","nickName":"","middleName":"","firstName":"Lois","suffix":""},"office":{"notes":{"contactName":"","contactTitle":""},"phone":{"ttyd":"","tollFree":"","fax1":"","fax2":"","phone1":"303-866-2967","phone2":""},"address":{"city":"Denver","zip":"80203","type":"Capitol","street":"Colorado State Capitol\n200 East Colfax","state":"CO"}}}}
@@ -0,0 +1 @@
1
+ {"address":{"generalInfo":{"title":"Project Vote Smart - Campaign Address - John Isakson","linkBack":"http:\/\/votesmart.org\/bio.php?can_id=1721"},"candidate":{"lastName":"Isakson","title":"Sen.","nickName":"Johnny","middleName":"H.","firstName":"John","suffix":""},"office":[{"notes":{"contactName":"","contactTitle":""},"phone":{"ttyd":"","tollFree":"","fax1":"770-661-0768","fax2":"","phone1":"770-661-0999","phone2":""},"address":{"city":"Atlanta","zip":"30339","type":"District","street":"One Overton Park\n3625 Cumberland Boulevard\nSuite 970","state":"GA"}},{"notes":{"contactName":"Heath Garrett","contactTitle":"Chief of Staff"},"phone":{"ttyd":"","tollFree":"","fax1":"","fax2":"","phone1":"202-224-3643","phone2":""},"address":{"city":"Washington","zip":"20510","type":"Key Staff","street":"120 Russell Senate Office Building","state":"DC"}},{"notes":{"contactName":"Molly Manning","contactTitle":"Scheduler"},"phone":{"ttyd":"","tollFree":"","fax1":"","fax2":"","phone1":"202-224-3643","phone2":""},"address":{"city":"Washington","zip":"20510","type":"Key Staff","street":"120 Russell Senate Office Building","state":"DC"}},{"notes":{"contactName":"Sheridan Watson","contactTitle":"Press Secretary"},"phone":{"ttyd":"","tollFree":"","fax1":"","fax2":"","phone1":"202-224-3643","phone2":""},"address":{"city":"Washington","zip":"20510","type":"Key Staff","street":"120 Russell Senate Office Building","state":"DC"}},{"notes":{"contactName":"","contactTitle":""},"phone":{"ttyd":"","tollFree":"","fax1":"202-228-0724","fax2":"","phone1":"202-224-3643","phone2":""},"address":{"city":"Washington","zip":"20510","type":"Washington, D.C.","street":"120 Russell Senate Office Building","state":"DC"}}]}}
@@ -0,0 +1 @@
1
+ {"error":{"errorMessage":"No districts found fitting this criteria."}}
@@ -0,0 +1 @@
1
+ {"districtList":{"generalInfo":{"title":"Project Vote Smart - Search Districts","linkBack":"http:\/\/votesmart.org\/"},"district":[{"name":"District 1","stateId":"GA","officeId":"8","districtId":"20689"},{"name":"District 2","stateId":"GA","officeId":"8","districtId":"22001"},{"name":"District 3","stateId":"GA","officeId":"8","districtId":"22002"},{"name":"District 4","stateId":"GA","officeId":"8","districtId":"22003"},{"name":"District 5","stateId":"GA","officeId":"8","districtId":"22004"},{"name":"District 6","stateId":"GA","officeId":"8","districtId":"22005"},{"name":"District 7","stateId":"GA","officeId":"8","districtId":"22006"},{"name":"District 8","stateId":"GA","officeId":"8","districtId":"20706"},{"name":"District 9","stateId":"GA","officeId":"8","districtId":"22007"},{"name":"District 10","stateId":"GA","officeId":"8","districtId":"22008"},{"name":"District 11","stateId":"GA","officeId":"8","districtId":"22009"},{"name":"District 12","stateId":"GA","officeId":"8","districtId":"22010"},{"name":"District 13","stateId":"GA","officeId":"8","districtId":"22011"},{"name":"District 14","stateId":"GA","officeId":"8","districtId":"22012"},{"name":"District 15","stateId":"GA","officeId":"8","districtId":"22013"},{"name":"District 16","stateId":"GA","officeId":"8","districtId":"22014"},{"name":"District 17","stateId":"GA","officeId":"8","districtId":"22015"},{"name":"District 18","stateId":"GA","officeId":"8","districtId":"22016"},{"name":"District 19","stateId":"GA","officeId":"8","districtId":"22017"},{"name":"District 20","stateId":"GA","officeId":"8","districtId":"22018"},{"name":"District 21","stateId":"GA","officeId":"8","districtId":"22019"},{"name":"District 22","stateId":"GA","officeId":"8","districtId":"22020"},{"name":"District 23","stateId":"GA","officeId":"8","districtId":"22021"},{"name":"District 24","stateId":"GA","officeId":"8","districtId":"22022"},{"name":"District 25","stateId":"GA","officeId":"8","districtId":"22023"},{"name":"District 26","stateId":"GA","officeId":"8","districtId":"22024"},{"name":"District 27","stateId":"GA","officeId":"8","districtId":"22025"},{"name":"District 28","stateId":"GA","officeId":"8","districtId":"22026"},{"name":"District 29","stateId":"GA","officeId":"8","districtId":"22027"},{"name":"District 30","stateId":"GA","officeId":"8","districtId":"22028"},{"name":"District 31","stateId":"GA","officeId":"8","districtId":"22029"},{"name":"District 32","stateId":"GA","officeId":"8","districtId":"22030"},{"name":"District 33","stateId":"GA","officeId":"8","districtId":"22031"},{"name":"District 34","stateId":"GA","officeId":"8","districtId":"22032"},{"name":"District 35","stateId":"GA","officeId":"8","districtId":"22033"},{"name":"District 36","stateId":"GA","officeId":"8","districtId":"22034"},{"name":"District 37","stateId":"GA","officeId":"8","districtId":"22035"},{"name":"District 38","stateId":"GA","officeId":"8","districtId":"22036"},{"name":"District 39","stateId":"GA","officeId":"8","districtId":"22037"},{"name":"District 40","stateId":"GA","officeId":"8","districtId":"22038"},{"name":"District 41","stateId":"GA","officeId":"8","districtId":"22039"},{"name":"District 42","stateId":"GA","officeId":"8","districtId":"22040"},{"name":"District 43","stateId":"GA","officeId":"8","districtId":"22041"},{"name":"District 44","stateId":"GA","officeId":"8","districtId":"22042"},{"name":"District 45","stateId":"GA","officeId":"8","districtId":"22043"},{"name":"District 46","stateId":"GA","officeId":"8","districtId":"22044"},{"name":"District 47","stateId":"GA","officeId":"8","districtId":"22045"},{"name":"District 48","stateId":"GA","officeId":"8","districtId":"22046"},{"name":"District 49","stateId":"GA","officeId":"8","districtId":"22047"},{"name":"District 50","stateId":"GA","officeId":"8","districtId":"22048"},{"name":"District 51","stateId":"GA","officeId":"8","districtId":"22049"},{"name":"District 52","stateId":"GA","officeId":"8","districtId":"22050"},{"name":"District 53","stateId":"GA","officeId":"8","districtId":"22051"},{"name":"District 54","stateId":"GA","officeId":"8","districtId":"22052"},{"name":"District 55","stateId":"GA","officeId":"8","districtId":"22053"},{"name":"District 56","stateId":"GA","officeId":"8","districtId":"22054"},{"name":"District 57","stateId":"GA","officeId":"8","districtId":"22055"},{"name":"District 58","stateId":"GA","officeId":"8","districtId":"22056"},{"name":"District 59","stateId":"GA","officeId":"8","districtId":"22057"},{"name":"District 60","stateId":"GA","officeId":"8","districtId":"22058"},{"name":"District 61","stateId":"GA","officeId":"8","districtId":"22059"},{"name":"District 62","stateId":"GA","officeId":"8","districtId":"22060"},{"name":"District 63","stateId":"GA","officeId":"8","districtId":"22061"},{"name":"District 64","stateId":"GA","officeId":"8","districtId":"22062"},{"name":"District 65","stateId":"GA","officeId":"8","districtId":"22063"},{"name":"District 66","stateId":"GA","officeId":"8","districtId":"22064"},{"name":"District 67","stateId":"GA","officeId":"8","districtId":"22065"},{"name":"District 68","stateId":"GA","officeId":"8","districtId":"22066"},{"name":"District 69","stateId":"GA","officeId":"8","districtId":"22067"},{"name":"District 70","stateId":"GA","officeId":"8","districtId":"22068"},{"name":"District 71","stateId":"GA","officeId":"8","districtId":"22069"},{"name":"District 72","stateId":"GA","officeId":"8","districtId":"22070"},{"name":"District 73","stateId":"GA","officeId":"8","districtId":"22071"},{"name":"District 74","stateId":"GA","officeId":"8","districtId":"22072"},{"name":"District 75","stateId":"GA","officeId":"8","districtId":"22073"},{"name":"District 76","stateId":"GA","officeId":"8","districtId":"22074"},{"name":"District 77","stateId":"GA","officeId":"8","districtId":"22075"},{"name":"District 78","stateId":"GA","officeId":"8","districtId":"22076"},{"name":"District 79","stateId":"GA","officeId":"8","districtId":"22077"},{"name":"District 80","stateId":"GA","officeId":"8","districtId":"22078"},{"name":"District 81","stateId":"GA","officeId":"8","districtId":"22079"},{"name":"District 82","stateId":"GA","officeId":"8","districtId":"22080"},{"name":"District 83","stateId":"GA","officeId":"8","districtId":"22081"},{"name":"District 84","stateId":"GA","officeId":"8","districtId":"22082"},{"name":"District 85","stateId":"GA","officeId":"8","districtId":"22083"},{"name":"District 86","stateId":"GA","officeId":"8","districtId":"22084"},{"name":"District 87","stateId":"GA","officeId":"8","districtId":"22085"},{"name":"District 88","stateId":"GA","officeId":"8","districtId":"22086"},{"name":"District 89","stateId":"GA","officeId":"8","districtId":"22087"},{"name":"District 90","stateId":"GA","officeId":"8","districtId":"22088"},{"name":"District 91","stateId":"GA","officeId":"8","districtId":"22089"},{"name":"District 92","stateId":"GA","officeId":"8","districtId":"22090"},{"name":"District 93","stateId":"GA","officeId":"8","districtId":"22091"},{"name":"District 94","stateId":"GA","officeId":"8","districtId":"22092"},{"name":"District 95","stateId":"GA","officeId":"8","districtId":"22093"},{"name":"District 96","stateId":"GA","officeId":"8","districtId":"20707"},{"name":"District 97","stateId":"GA","officeId":"8","districtId":"22094"},{"name":"District 98","stateId":"GA","officeId":"8","districtId":"22095"},{"name":"District 99","stateId":"GA","officeId":"8","districtId":"22096"},{"name":"District 100","stateId":"GA","officeId":"8","districtId":"22097"},{"name":"District 101","stateId":"GA","officeId":"8","districtId":"22098"},{"name":"District 102","stateId":"GA","officeId":"8","districtId":"22099"},{"name":"District 103","stateId":"GA","officeId":"8","districtId":"22100"},{"name":"District 104","stateId":"GA","officeId":"8","districtId":"22101"},{"name":"District 105","stateId":"GA","officeId":"8","districtId":"22102"},{"name":"District 106","stateId":"GA","officeId":"8","districtId":"22103"},{"name":"District 107","stateId":"GA","officeId":"8","districtId":"22104"},{"name":"District 108","stateId":"GA","officeId":"8","districtId":"22105"},{"name":"District 109","stateId":"GA","officeId":"8","districtId":"22106"},{"name":"District 110","stateId":"GA","officeId":"8","districtId":"22107"},{"name":"District 111","stateId":"GA","officeId":"8","districtId":"22108"},{"name":"District 112","stateId":"GA","officeId":"8","districtId":"22109"},{"name":"District 113","stateId":"GA","officeId":"8","districtId":"22110"},{"name":"District 114","stateId":"GA","officeId":"8","districtId":"22111"},{"name":"District 115","stateId":"GA","officeId":"8","districtId":"22112"},{"name":"District 116","stateId":"GA","officeId":"8","districtId":"22113"},{"name":"District 117","stateId":"GA","officeId":"8","districtId":"22114"},{"name":"District 118","stateId":"GA","officeId":"8","districtId":"22115"},{"name":"District 119","stateId":"GA","officeId":"8","districtId":"22116"},{"name":"District 120","stateId":"GA","officeId":"8","districtId":"22117"},{"name":"District 121","stateId":"GA","officeId":"8","districtId":"22118"},{"name":"District 122","stateId":"GA","officeId":"8","districtId":"22119"},{"name":"District 123","stateId":"GA","officeId":"8","districtId":"22120"},{"name":"District 124","stateId":"GA","officeId":"8","districtId":"22121"},{"name":"District 125","stateId":"GA","officeId":"8","districtId":"22122"},{"name":"District 126","stateId":"GA","officeId":"8","districtId":"22123"},{"name":"District 127","stateId":"GA","officeId":"8","districtId":"22124"},{"name":"District 128","stateId":"GA","officeId":"8","districtId":"22125"},{"name":"District 129","stateId":"GA","officeId":"8","districtId":"22126"},{"name":"District 130","stateId":"GA","officeId":"8","districtId":"22127"},{"name":"District 131","stateId":"GA","officeId":"8","districtId":"22128"},{"name":"District 132","stateId":"GA","officeId":"8","districtId":"22129"},{"name":"District 133","stateId":"GA","officeId":"8","districtId":"22130"},{"name":"District 134","stateId":"GA","officeId":"8","districtId":"22131"},{"name":"District 135","stateId":"GA","officeId":"8","districtId":"22132"},{"name":"District 136","stateId":"GA","officeId":"8","districtId":"22133"},{"name":"District 137","stateId":"GA","officeId":"8","districtId":"22134"},{"name":"District 138","stateId":"GA","officeId":"8","districtId":"22135"},{"name":"District 139","stateId":"GA","officeId":"8","districtId":"22136"},{"name":"District 140","stateId":"GA","officeId":"8","districtId":"22137"},{"name":"District 141","stateId":"GA","officeId":"8","districtId":"22138"},{"name":"District 142","stateId":"GA","officeId":"8","districtId":"22139"},{"name":"District 143","stateId":"GA","officeId":"8","districtId":"22140"},{"name":"District 144","stateId":"GA","officeId":"8","districtId":"22141"},{"name":"District 145","stateId":"GA","officeId":"8","districtId":"22142"},{"name":"District 146","stateId":"GA","officeId":"8","districtId":"22143"},{"name":"District 147","stateId":"GA","officeId":"8","districtId":"22144"},{"name":"District 148","stateId":"GA","officeId":"8","districtId":"22145"},{"name":"District 149","stateId":"GA","officeId":"8","districtId":"22146"},{"name":"District 150","stateId":"GA","officeId":"8","districtId":"22147"},{"name":"District 151","stateId":"GA","officeId":"8","districtId":"22148"},{"name":"District 152","stateId":"GA","officeId":"8","districtId":"22149"},{"name":"District 153","stateId":"GA","officeId":"8","districtId":"22150"},{"name":"District 154","stateId":"GA","officeId":"8","districtId":"22151"},{"name":"District 155","stateId":"GA","officeId":"8","districtId":"22152"},{"name":"District 156","stateId":"GA","officeId":"8","districtId":"22153"},{"name":"District 157","stateId":"GA","officeId":"8","districtId":"22154"},{"name":"District 158","stateId":"GA","officeId":"8","districtId":"22155"},{"name":"District 159","stateId":"GA","officeId":"8","districtId":"22156"},{"name":"District 160","stateId":"GA","officeId":"8","districtId":"22157"},{"name":"District 161","stateId":"GA","officeId":"8","districtId":"22158"},{"name":"District 162","stateId":"GA","officeId":"8","districtId":"22159"},{"name":"District 163","stateId":"GA","officeId":"8","districtId":"22160"},{"name":"District 164","stateId":"GA","officeId":"8","districtId":"22161"},{"name":"District 165","stateId":"GA","officeId":"8","districtId":"22162"},{"name":"District 166","stateId":"GA","officeId":"8","districtId":"22163"},{"name":"District 167","stateId":"GA","officeId":"8","districtId":"22164"},{"name":"District 168","stateId":"GA","officeId":"8","districtId":"22165"},{"name":"District 169","stateId":"GA","officeId":"8","districtId":"22166"},{"name":"District 170","stateId":"GA","officeId":"8","districtId":"22167"},{"name":"District 171","stateId":"GA","officeId":"8","districtId":"22168"},{"name":"District 172","stateId":"GA","officeId":"8","districtId":"22169"},{"name":"District 173","stateId":"GA","officeId":"8","districtId":"22170"},{"name":"District 174","stateId":"GA","officeId":"8","districtId":"22171"},{"name":"District 175","stateId":"GA","officeId":"8","districtId":"22172"},{"name":"District 176","stateId":"GA","officeId":"8","districtId":"22173"},{"name":"District 177","stateId":"GA","officeId":"8","districtId":"22174"},{"name":"District 178","stateId":"GA","officeId":"8","districtId":"22175"},{"name":"District 179","stateId":"GA","officeId":"8","districtId":"22176"},{"name":"District 180","stateId":"GA","officeId":"8","districtId":"22177"}]}}
@@ -0,0 +1 @@
1
+ {"districtList":{"generalInfo":{"title":"Project Vote Smart - Search Districts","linkBack":"http:\/\/votesmart.org\/"},"district":[{"name":"District 1","stateId":"GA","officeId":"9","districtId":"21945"},{"name":"District 2","stateId":"GA","officeId":"9","districtId":"21946"},{"name":"District 3","stateId":"GA","officeId":"9","districtId":"21947"},{"name":"District 4","stateId":"GA","officeId":"9","districtId":"21948"},{"name":"District 5","stateId":"GA","officeId":"9","districtId":"21949"},{"name":"District 6","stateId":"GA","officeId":"9","districtId":"21950"},{"name":"District 7","stateId":"GA","officeId":"9","districtId":"21951"},{"name":"District 8","stateId":"GA","officeId":"9","districtId":"21952"},{"name":"District 9","stateId":"GA","officeId":"9","districtId":"21953"},{"name":"District 10","stateId":"GA","officeId":"9","districtId":"21954"},{"name":"District 11","stateId":"GA","officeId":"9","districtId":"21955"},{"name":"District 12","stateId":"GA","officeId":"9","districtId":"21956"},{"name":"District 13","stateId":"GA","officeId":"9","districtId":"21957"},{"name":"District 14","stateId":"GA","officeId":"9","districtId":"21958"},{"name":"District 15","stateId":"GA","officeId":"9","districtId":"21959"},{"name":"District 16","stateId":"GA","officeId":"9","districtId":"21960"},{"name":"District 17","stateId":"GA","officeId":"9","districtId":"21961"},{"name":"District 18","stateId":"GA","officeId":"9","districtId":"21962"},{"name":"District 19","stateId":"GA","officeId":"9","districtId":"21963"},{"name":"District 20","stateId":"GA","officeId":"9","districtId":"21964"},{"name":"District 21","stateId":"GA","officeId":"9","districtId":"21965"},{"name":"District 22","stateId":"GA","officeId":"9","districtId":"21966"},{"name":"District 23","stateId":"GA","officeId":"9","districtId":"21967"},{"name":"District 24","stateId":"GA","officeId":"9","districtId":"21968"},{"name":"District 25","stateId":"GA","officeId":"9","districtId":"21969"},{"name":"District 26","stateId":"GA","officeId":"9","districtId":"21970"},{"name":"District 27","stateId":"GA","officeId":"9","districtId":"21971"},{"name":"District 28","stateId":"GA","officeId":"9","districtId":"21972"},{"name":"District 29","stateId":"GA","officeId":"9","districtId":"21973"},{"name":"District 30","stateId":"GA","officeId":"9","districtId":"21974"},{"name":"District 31","stateId":"GA","officeId":"9","districtId":"21975"},{"name":"District 32","stateId":"GA","officeId":"9","districtId":"21976"},{"name":"District 33","stateId":"GA","officeId":"9","districtId":"21977"},{"name":"District 34","stateId":"GA","officeId":"9","districtId":"21978"},{"name":"District 35","stateId":"GA","officeId":"9","districtId":"21979"},{"name":"District 36","stateId":"GA","officeId":"9","districtId":"21980"},{"name":"District 37","stateId":"GA","officeId":"9","districtId":"21981"},{"name":"District 38","stateId":"GA","officeId":"9","districtId":"21982"},{"name":"District 39","stateId":"GA","officeId":"9","districtId":"21983"},{"name":"District 40","stateId":"GA","officeId":"9","districtId":"21984"},{"name":"District 41","stateId":"GA","officeId":"9","districtId":"21985"},{"name":"District 42","stateId":"GA","officeId":"9","districtId":"21986"},{"name":"District 43","stateId":"GA","officeId":"9","districtId":"21987"},{"name":"District 44","stateId":"GA","officeId":"9","districtId":"21988"},{"name":"District 45","stateId":"GA","officeId":"9","districtId":"21989"},{"name":"District 46","stateId":"GA","officeId":"9","districtId":"21990"},{"name":"District 47","stateId":"GA","officeId":"9","districtId":"21991"},{"name":"District 48","stateId":"GA","officeId":"9","districtId":"21992"},{"name":"District 49","stateId":"GA","officeId":"9","districtId":"21993"},{"name":"District 50","stateId":"GA","officeId":"9","districtId":"21994"},{"name":"District 51","stateId":"GA","officeId":"9","districtId":"21995"},{"name":"District 52","stateId":"GA","officeId":"9","districtId":"21996"},{"name":"District 53","stateId":"GA","officeId":"9","districtId":"21997"},{"name":"District 54","stateId":"GA","officeId":"9","districtId":"21998"},{"name":"District 55","stateId":"GA","officeId":"9","districtId":"21999"},{"name":"District 56","stateId":"GA","officeId":"9","districtId":"22000"}]}}
@@ -0,0 +1 @@
1
+ {"offices":{"generalInfo":{"title":"Project Vote Smart - Offices","linkBack":"http:\/\/votesmart.org\/"},"office":[{"name":"U.S. Senate","title":"Senator","officeId":"6","shortTitle":"Sen.","officeTypeId":"C","officeBranchId":"L","officeLevelId":"F"},{"name":"U.S. House","title":"Representative","officeId":"5","shortTitle":"Rep.","officeTypeId":"C","officeBranchId":"L","officeLevelId":"F"}]}}
@@ -0,0 +1 @@
1
+ {"offices":{"generalInfo":{"title":"Project Vote Smart - Offices","linkBack":"http:\/\/votesmart.org\/"},"office":[{"name":"State House","title":"Representative","officeId":"8","shortTitle":"Rep.","officeTypeId":"L","officeBranchId":"L","officeLevelId":"S"},{"name":"State Senate","title":"Senator","officeId":"9","shortTitle":"Sen.","officeTypeId":"L","officeBranchId":"L","officeLevelId":"S"},{"name":"State Assembly","title":"Assembly Member","officeId":"7","shortTitle":"AM","officeTypeId":"L","officeBranchId":"L","officeLevelId":"S"}]}}
@@ -0,0 +1 @@
1
+ {"offices":{"generalInfo":{"title":"Project Vote Smart - Offices","linkBack":"http:\/\/votesmart.org\/"},"office":[{"name":"President","title":"President","officeId":"1","shortTitle":"Pres.","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Veterans Affairs","title":"Secretary","officeId":"68","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Attorney General","title":"Attorney General","officeId":"55","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Agriculture","title":"Secretary","officeId":"56","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Commerce","title":"Secretary","officeId":"57","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Defense","title":"Secretary","officeId":"58","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Education","title":"Secretary","officeId":"59","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Energy","title":"Secretary","officeId":"60","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Health and Human Services","title":"Secretary","officeId":"61","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Homeland Security","title":"Secretary","officeId":"62","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Housing and Urban Development","title":"Secretary","officeId":"63","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Labor","title":"Secretary","officeId":"64","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of State","title":"Secretary","officeId":"65","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Transportation","title":"Secretary","officeId":"66","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of Treasury","title":"Secretary","officeId":"67","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"U.S. Secretary of the Interior","title":"Secretary","officeId":"69","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"Vice President","title":"Vice President","officeId":"2","shortTitle":"","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"}]}}
@@ -0,0 +1 @@
1
+ {"offices":{"generalInfo":{"title":"Project Vote Smart - Offices","linkBack":"http:\/\/votesmart.org\/"},"office":[{"name":"Director of the Department of Revenue","title":"Director","officeId":"31","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Education Secretary","title":"Secretary","officeId":"33","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Insurance Commissioner","title":"Commissioner","officeId":"34","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Labor Commissioner","title":"Commissioner","officeId":"35","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Land Commissioner","title":"Commissioner","officeId":"36","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of State","title":"Secretary","officeId":"44","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Agriculture Commissioner","title":"Commissioner","officeId":"11","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chief Financial Officer","title":"","officeId":"14","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Agriculture","title":"Commissioner","officeId":"16","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Agriculture and Forestry","title":"Commissioner","officeId":"17","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Agriculture and Industry","title":"Commissioner","officeId":"18","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Schools and Public Lands","title":"Commissioner","officeId":"23","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of State Lands","title":"Commissioner","officeId":"24","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Service Commissioner","title":"Commissioner","officeId":"37","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Utilities Commissioner","title":"Commissioner","officeId":"38","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Railroad Commissioner","title":"Railroad Commissioner","officeId":"39","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Revenue Director","title":"Director","officeId":"40","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Agriculture","title":"Secretary","officeId":"41","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Education","title":"Secretary","officeId":"42","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Education and Cultural Affairs","title":"Secretary","officeId":"43","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Commonwealth","title":"Secretary","officeId":"45","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"State Mine Inspector","title":"","officeId":"46","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"State School Superintendent","title":"Superintendent","officeId":"47","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"State Superintendent of Public Instruction","title":"Superintendent","officeId":"48","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"State Superintendent of Schools","title":"Superintendent","officeId":"49","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Superintendent of Education","title":"Superintendent","officeId":"50","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Superintendent of Public Instruction","title":"Superintendent","officeId":"51","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Superintendent, Department of Education","title":"","officeId":"333","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Taxation Director","title":"","officeId":"334","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Transportation Director","title":"","officeId":"335","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Utilities and Transportation Commission","title":"","officeId":"336","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Tax Commissioner","title":"Commissioner","officeId":"52","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Treasurer and Insurance Commissioner","title":"Commissioner","officeId":"54","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Auditor","title":"","officeId":"13","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Service Commissioner, President","title":"","officeId":"269","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Service Commissioners","title":"","officeId":"270","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Utilities Commission Chair","title":"","officeId":"271","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Utilities Commission Vice-Chair","title":"","officeId":"272","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Revenue Commissioner","title":"","officeId":"273","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary Labor and Workforce Development","title":"","officeId":"276","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Administration","title":"","officeId":"277","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Administration and Finance","title":"","officeId":"278","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Aging","title":"","officeId":"279","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Agriculture and Forestry","title":"","officeId":"280","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Banking","title":"","officeId":"281","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Commerce","title":"","officeId":"282","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Commerce and Tourism","title":"","officeId":"283","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Commerce and Trade","title":"","officeId":"284","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Community and Economic Development","title":"","officeId":"285","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Conservation and Natural Resources","title":"","officeId":"286","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Department of Natural Resources and Environmental Control","title":"","officeId":"287","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Energy and Environmental Affairs","title":"","officeId":"288","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Energy, Minerals and Natural Resources","title":"","officeId":"289","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Environment and Natural Resources","title":"","officeId":"290","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Environmental Protection","title":"","officeId":"291","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Finance","title":"","officeId":"292","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Finance and Administration","title":"","officeId":"293","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Game, Fish and Parks","title":"","officeId":"294","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of General Services","title":"","officeId":"295","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Health","title":"","officeId":"296","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Comptroller","title":"Comptroller","officeId":"26","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Comptroller of the Treasury","title":"Comptroller","officeId":"27","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Education","title":"Director","officeId":"30","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Finance and Administration","title":"","officeId":"159","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Health and Environment","title":"","officeId":"297","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Health and Human Services","title":"","officeId":"298","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Health and Mental Hygiene","title":"","officeId":"299","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Health and Social Services","title":"","officeId":"300","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Housing and Economic Development","title":"","officeId":"301","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Human Services","title":"","officeId":"302","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Labor","title":"","officeId":"303","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Labor and Industry","title":"","officeId":"304","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Labor and Workforce Development Agency","title":"","officeId":"305","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Legislative Affairs","title":"","officeId":"306","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Corporation Commissioner (Public Utilities)","title":"","officeId":"166","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Natural Resources","title":"","officeId":"307","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Budget and Finance","title":"","officeId":"167","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Business and Industry","title":"","officeId":"168","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Department of Agriculture","title":"","officeId":"169","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Department of Education","title":"","officeId":"170","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Planning and Policy","title":"","officeId":"308","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Division of Revenue","title":"","officeId":"172","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Education","title":"","officeId":"173","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Finance","title":"","officeId":"174","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Finance and Administration","title":"","officeId":"175","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Health and Human Services","title":"","officeId":"176","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Insurance","title":"","officeId":"177","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Labor","title":"","officeId":"178","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Public Safety","title":"","officeId":"309","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Labor Licensing and Regulation","title":"","officeId":"179","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Mining and Reclamation Division","title":"","officeId":"181","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Parks, Recreation and Tourism","title":"","officeId":"182","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Public Safety","title":"","officeId":"183","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Revenue","title":"","officeId":"184","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Revenue and Taxation","title":"","officeId":"185","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Social Services","title":"","officeId":"186","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of State Housing Authority","title":"","officeId":"187","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of State Planning Office","title":"","officeId":"188","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Board of Agriculture","title":"","officeId":"190","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Bureau of Land Management","title":"","officeId":"191","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department for Public Health","title":"","officeId":"192","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Administration","title":"Director","officeId":"82","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Administration (Finance and Administration Cabinet)","title":"","officeId":"193","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Administrative Services","title":"","officeId":"194","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Agriculture","title":"","officeId":"195","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Civil Rights","title":"","officeId":"196","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Commerce","title":"","officeId":"197","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Community Health","title":"","officeId":"198","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Consumer and Business Services","title":"","officeId":"199","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Economic and Community Development","title":"","officeId":"200","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Public Welfare","title":"","officeId":"310","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Elections","title":"","officeId":"201","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Employment, Training and Rehabilitation","title":"","officeId":"202","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Environmental Quality","title":"","officeId":"203","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Finance","title":"","officeId":"204","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Fish, Wildlife and Parks","title":"","officeId":"205","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Health","title":"","officeId":"206","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Health and Human Services","title":"","officeId":"207","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Revenue","title":"","officeId":"311","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Revenue & Regulation","title":"","officeId":"312","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Taxation and Revenue","title":"","officeId":"313","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Technology","title":"","officeId":"314","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Agency of Commerce and Community Development","title":"","officeId":"320","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Agency of Human services","title":"","officeId":"321","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Public Safety","title":"","officeId":"141","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Taxation and Finance","title":"","officeId":"142","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Health and Welfare","title":"","officeId":"208","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Human Services","title":"","officeId":"209","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Insurance","title":"","officeId":"210","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Labor","title":"","officeId":"211","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Labor and Economic Growth","title":"","officeId":"212","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Labor and Industrial Relations","title":"","officeId":"213","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Labor and Training","title":"","officeId":"214","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Land Conservation and Development","title":"","officeId":"215","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Lands","title":"","officeId":"216","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Management and Budget","title":"","officeId":"217","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Military and Veterans Affairs","title":"","officeId":"218","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Natural Resources","title":"","officeId":"219","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Personnel and Administration","title":"","officeId":"220","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Protective and Regulatory Services","title":"","officeId":"221","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Public Health","title":"","officeId":"222","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Public Safety","title":"","officeId":"223","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Public Safety Standards and Training","title":"","officeId":"224","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of State Employer","title":"","officeId":"225","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Transportation","title":"","officeId":"226","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Treasury","title":"","officeId":"227","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Department of Veterans' Affairs","title":"","officeId":"228","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Division of Special Revenue","title":"","officeId":"229","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Elections Enforcement Commission","title":"","officeId":"230","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Finance Authority","title":"","officeId":"231","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Human Services Department","title":"","officeId":"232","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Office of Homeland Security and Preparedness","title":"","officeId":"233","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the Office of the State Budget","title":"","officeId":"234","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the State Board of Land","title":"","officeId":"235","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of the State Department of Conservation and Natural Resources","title":"","officeId":"236","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Transportation","title":"","officeId":"189","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Elections Division Director","title":"","officeId":"237","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Elementary and Secondary Education Commissioner","title":"","officeId":"238","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Emergency Management Agency Director","title":"","officeId":"239","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Environmental Management Commissioner","title":"","officeId":"240","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Executive Director Natural Resources Commission","title":"","officeId":"241","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Executive Director of the Department of Housing and Community Affairs","title":"","officeId":"242","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Executive Director of the Workers' Compensation Board","title":"","officeId":"243","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Executive Secretary of Board of Commissioners for Public Lands","title":"","officeId":"244","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Finance Director","title":"","officeId":"245","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Financial Regulation Commissioner","title":"","officeId":"246","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Higher Education Commissioner","title":"","officeId":"247","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Inspector General","title":"","officeId":"248","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Insurance and Safety Fire Commissioner","title":"","officeId":"250","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Agency of Natural Resources","title":"","officeId":"322","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Insurance Director","title":"","officeId":"249","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Labor and Industries Commissioner","title":"","officeId":"254","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Labor and Industry Commissioner","title":"","officeId":"255","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Labor and Industry Review Commissioner","title":"","officeId":"256","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"President of Public Utilities Commission","title":"","officeId":"262","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Labor Commissioner (Department of Labor)","title":"","officeId":"251","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Labor Commissioner (Labor and Industry)","title":"","officeId":"252","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Labor Commissioner (Secretary of Labor, Licensing, and Regulation)","title":"","officeId":"253","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Natural Resources and Conservation Director","title":"","officeId":"259","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Natural Resources Director","title":"","officeId":"258","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Office of Homeland Security Director","title":"","officeId":"260","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Budget","title":"","officeId":"323","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"President of the Board of Public Utilities","title":"","officeId":"263","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"President of the State Board of Education","title":"","officeId":"264","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Department of Agriculture","title":"","officeId":"324","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Health and Human Services Director","title":"","officeId":"266","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Health Commissioner","title":"","officeId":"265","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Safety Commissioner","title":"","officeId":"267","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Public Service Commission Chair","title":"","officeId":"268","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Superintendent of the Insurance Department","title":"","officeId":"332","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Education Commissioner","title":"Commissioner","officeId":"32","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Attorney General","title":"Attorney General","officeId":"12","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Adjutant General","title":"Adjutant General","officeId":"10","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Department of Health and Hospitals","title":"","officeId":"325","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Clerk of Courts","title":"","officeId":"110","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Administrator of the Office of State Lands","title":"","officeId":"83","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Agricultural Commissioner","title":"","officeId":"84","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Department of Revenue","title":"","officeId":"326","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Agriculture Director","title":"","officeId":"85","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Education Cabinet","title":"","officeId":"327","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Auditor and Inspector","title":"","officeId":"88","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Auditor General","title":"","officeId":"87","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Auditor of Accounts","title":"","officeId":"89","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Auditor of Public Accounts","title":"","officeId":"90","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Board of Education Chair","title":"","officeId":"91","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Budget Director","title":"","officeId":"92","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of Board of Elections","title":"","officeId":"93","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of Elections Commission","title":"","officeId":"94","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of Licensing and Regulation Commission","title":"","officeId":"95","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of Public Service Commission","title":"","officeId":"96","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of Public Utilities Commission","title":"","officeId":"97","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of Rail Development Commission","title":"","officeId":"98","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of the Public Utilities Commission","title":"","officeId":"99","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of the Railroad Commission","title":"","officeId":"100","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chair of the Transport Commission","title":"","officeId":"101","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chairman of Board of Education","title":"","officeId":"102","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chairman of the Department of Agriculture","title":"","officeId":"103","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chairman of the Department of Land and Natural Resources","title":"","officeId":"104","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chairman of the State Board of Elections","title":"","officeId":"105","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chairman of the Tax Commission","title":"","officeId":"106","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chief Business Officer of Office for Economic Development","title":"","officeId":"107","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chief Executive Officer of Finance Authority","title":"","officeId":"108","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of the Environment","title":"","officeId":"328","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Chief of the Office of Economic Growth","title":"","officeId":"109","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Transportation","title":"","officeId":"315","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Transportation and Construction","title":"","officeId":"316","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Veterans Affairs","title":"","officeId":"317","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Clerk of the Supreme Court","title":"","officeId":"111","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commission on Indian Affairs","title":"","officeId":"112","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Administration","title":"","officeId":"113","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Administrative and Financial Services","title":"","officeId":"114","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Veterans' Services","title":"","officeId":"318","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Agriculture and Consumer Services","title":"","officeId":"115","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Wildlife and Parks","title":"","officeId":"319","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Agriculture and Industries","title":"","officeId":"116","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"State Auditor","title":"","officeId":"329","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Agriculture and Markets","title":"","officeId":"117","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"State Courts Administrator","title":"","officeId":"330","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Banking and Finance","title":"","officeId":"118","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Commerce","title":"","officeId":"119","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Commerce and Insurance","title":"","officeId":"120","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Conservation","title":"","officeId":"121","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Corrections","title":"","officeId":"122","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Defense, Veterans and Emergency Management","title":"","officeId":"123","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Economic and Community Development","title":"","officeId":"124","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Environment and Conservation","title":"","officeId":"125","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Environmental Protection","title":"","officeId":"126","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Environmental Quality","title":"","officeId":"127","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Finance","title":"","officeId":"128","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of General Land Office","title":"","officeId":"129","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Health","title":"","officeId":"130","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Health and Human Services","title":"","officeId":"131","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Health and Social Services","title":"","officeId":"132","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Inland Fisheries and Wildlife","title":"","officeId":"133","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Insurance","title":"","officeId":"134","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Labor","title":"","officeId":"135","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Labor and Industries","title":"","officeId":"136","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Labor and Workforce","title":"","officeId":"137","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Marine Resources","title":"","officeId":"138","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Natural Resources","title":"","officeId":"139","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Professional and Financial Regulation","title":"","officeId":"140","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"State Mine Inspector (Office of Mine Safety and Licensing)","title":"","officeId":"331","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Administration","title":"","officeId":"146","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Administrative Services","title":"","officeId":"147","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Banking","title":"","officeId":"148","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Banking and Insurance","title":"","officeId":"149","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Banking, Insurance, Securities, and Health Care Administration","title":"","officeId":"150","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Environmental Protection","title":"","officeId":"151","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Health","title":"","officeId":"152","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Health and Senior Services","title":"","officeId":"153","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Human Services","title":"","officeId":"154","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Labor and Workforce Development","title":"","officeId":"155","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Personnel","title":"","officeId":"156","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Transportation","title":"","officeId":"157","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Education","title":"Commissioner","officeId":"19","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Elections","title":"Commissioner","officeId":"20","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Public Lands","title":"Commissioner","officeId":"21","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Revenue","title":"Commissioner","officeId":"22","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the General Land Office","title":"Commissioner","officeId":"25","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Controller","title":"","officeId":"28","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Corporation Commissioner","title":"Commissioner","officeId":"29","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Department of Veterans' Affairs","title":"","officeId":"158","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Trustee, Office of Hawaiian Affairs","title":"","officeId":"86","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Executive Director of the Department of Revenue","title":"Executive Director of the Department of Revenue","officeId":"462","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Executive Director of Environmental Quality","title":"","officeId":"463","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of the Office of Administration","title":"","officeId":"160","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Transportation","title":"","officeId":"143","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Veterans Affairs","title":"","officeId":"145","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Veteran's Affairs","title":"","officeId":"144","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Comptroller General","title":"","officeId":"161","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Comptroller of Public Accounts","title":"","officeId":"162","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Comissioner of State Board of Elections","title":"","officeId":"460","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Coordinator of Indian Affairs","title":"","officeId":"163","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Corporation Commission Chairman","title":"","officeId":"164","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Corporation Commission Vice-Chairman","title":"","officeId":"165","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"School Superintendent","title":"","officeId":"274","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Ombudsman","title":"","officeId":"261","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Treasurer","title":"Treasurer","officeId":"53","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Commissioner of Agriculture and Commerce","title":"Commissioner of Agriculture and Commerce","officeId":"447","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Director of Labor and Industrial Relations","title":"","officeId":"180","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Food and Agriculture","title":"","officeId":"456","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Labor and Workforce Development Agenc","title":"","officeId":"458","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Secretary of Business, Housing, and Transportation","title":"","officeId":"459","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Legislative Post Auditor","title":"Legislative Post Auditor","officeId":"445","shortTitle":"","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"},{"name":"Executive Council","title":"Executive Councilor","officeId":"464","shortTitle":"Councilor","officeTypeId":"S","officeBranchId":"E","officeLevelId":"S"}]}}
@@ -0,0 +1 @@
1
+ {"officeTypes":{"generalInfo":{"title":"Project Vote Smart - Offices","linkBack":"http:\/\/votesmart.org\/"},"type":[{"name":"Presidential and Cabinet","officeTypeId":"P","officeBranchId":"E","officeLevelId":"F"},{"name":"Congressional","officeTypeId":"C","officeBranchId":"L","officeLevelId":"F"},{"name":"Supreme Court","officeTypeId":"J","officeBranchId":"J","officeLevelId":"F"},{"name":"Governor and Cabinet","officeTypeId":"G","officeBranchId":"E","officeLevelId":"S"},{"name":"State Judicial","officeTypeId":"K","officeBranchId":"J","officeLevelId":"S"},{"name":"State Legislature","officeTypeId":"L","officeBranchId":"L","officeLevelId":"S"},{"name":"State Wide","officeTypeId":"S","officeBranchId":"E","officeLevelId":"L"},{"name":"Local Judicial","officeTypeId":"H","officeBranchId":"J","officeLevelId":"L"},{"name":"Local Legislative","officeTypeId":"N","officeBranchId":"L","officeLevelId":"L"},{"name":"Local Executive","officeTypeId":"M","officeBranchId":"E","officeLevelId":"L"}]}}
@@ -0,0 +1 @@
1
+ {"candidateList":{"generalInfo":{"title":"Project Vote Smart - Search Candidates","linkBack":"http:\/\/votesmart.org\/"},"candidate":{"electionDistrictName":"","lastName":"Isakson","candidateId":"1721","title":"Senator","officeDistrictName":"","nickName":"Johnny","electionYear":"","electionStatus":"","electionParties":"Republican","middleName":"H.","firstName":"John","electionDistrictId":"","officeParties":"Republican","electionStateId":"","officeStateId":"GA","officeDistrictId":"20451","suffix":""}}}
@@ -0,0 +1 @@
1
+ {"candidateList":{"generalInfo":{"title":"Project Vote Smart - Search Candidates","linkBack":"http:\/\/votesmart.org\/"},"candidate":{"electionDistrictName":"","lastName":"Neal","candidateId":"31691","title":"Representative","officeDistrictName":"","nickName":"","electionYear":"","electionStatus":"","electionParties":"Republican","middleName":"","firstName":"Jay","electionDistrictId":"","officeParties":"Republican","electionStateId":"","officeStateId":"GA","officeDistrictId":"20689","suffix":""}}}
@@ -0,0 +1 @@
1
+ {"candidateList":{"generalInfo":{"title":"Project Vote Smart - Search Candidates","linkBack":"http:\/\/votesmart.org\/"},"candidate":{"electionDistrictName":"","lastName":"Court","candidateId":"106446","title":"Representative","officeDistrictName":"","nickName":"","electionYear":"","electionStatus":"","electionParties":"Democratic","middleName":"","firstName":"Lois","electionDistrictId":"","officeParties":"Democratic","electionStateId":"","officeStateId":"CO","officeDistrictId":"21397","suffix":""}}}
@@ -0,0 +1 @@
1
+ {"candidateList":{"generalInfo":{"title":"Project Vote Smart - Search Candidates","linkBack":"http:\/\/votesmart.org\/"},"candidate":{"electionDistrictName":"","lastName":"Jackson","candidateId":"17540","title":"Senator","officeDistrictName":"","nickName":"","electionYear":"","electionStatus":"","electionParties":"Democratic","middleName":"G.","firstName":"Lester","electionDistrictId":"","officeParties":"Democratic","electionStateId":"","officeStateId":"GA","officeDistrictId":"21946","suffix":"III"}}}
@@ -0,0 +1 @@
1
+ {"candidateList":{"generalInfo":{"title":"Project Vote Smart - Search Candidates","linkBack":"http://votesmart.org/"},"candidate":{"electionOfficeTypeId":"","electionOffice":"","lastName":"Suthers","candidateId":"29799","electionParties":"","title":"Attorney General","officeDistrictName":"","nickName":"","electionYear":"","electionStatus":"","middleName":"W.","officeId":"12","electionDistrictId":"","officeDistrictId":"","electionOfficeId":"","firstName":"John","officeTypeId":"S","suffix":"","officeName":"Attorney General","officeStateId":"CO","electionDistrictName":"","officeParties":"Republican","electionStateId":""}}}
@@ -0,0 +1 @@
1
+ {"candidateList":{"generalInfo":{"title":"Project Vote Smart - Search Candidates","linkBack":"http:\/\/votesmart.org\/"},"candidate":{"electionDistrictName":"","lastName":"Baker","candidateId":"1746","title":"Attorney General","officeDistrictName":"","nickName":"","electionYear":"","electionStatus":"","electionParties":"","middleName":"E.","firstName":"Thurbert","electionDistrictId":"","officeParties":"Democratic","electionStateId":"","officeStateId":"GA","officeDistrictId":"","suffix":""}}}
@@ -0,0 +1 @@
1
+ {"candidateList":{"generalInfo":{"title":"Project Vote Smart - Search Candidates","linkBack":"http:\/\/votesmart.org\/"},"candidate":{"electionDistrictName":"","lastName":"Hinton","candidateId":"72059","title":"Auditor","officeDistrictName":"","nickName":"","electionYear":"","electionStatus":"","electionParties":"","middleName":"W.","firstName":"Russell","electionDistrictId":"","officeParties":"","electionStateId":"","officeStateId":"GA","officeDistrictId":"","suffix":""}}}
@@ -0,0 +1 @@
1
+ {"error":{"errorMessage":"No officials found matching this criteria."}}
@@ -0,0 +1 @@
1
+ {"error":{"errorMessage":"No officials found matching this criteria."}}
@@ -0,0 +1 @@
1
+ {"candidateList":{"generalInfo":{"title":"Project Vote Smart - Search Candidates","linkBack":"http:\/\/votesmart.org\/"},"candidate":{"electionDistrictName":"","lastName":"Handel","candidateId":"69553","title":"Secretary","officeDistrictName":"","nickName":"","electionYear":"","electionStatus":"","electionParties":"","middleName":"","firstName":"Karen","electionDistrictId":"","officeParties":"Republican","electionStateId":"","officeStateId":"GA","officeDistrictId":"","suffix":""}}}
@@ -0,0 +1 @@
1
+ {"error":{"errorMessage":"No officials found matching this criteria."}}
@@ -0,0 +1 @@
1
+ {"error":{"errorMessage":"No officials found matching this criteria."}}
@@ -0,0 +1 @@
1
+ {"sig":{"contactName":"","city":"Washington","address":"601 E Street Northwest","name":"AARP","generalInfo":{"title":"Project Vote Smart - Interest Group Ratings","linkBack":"http://votesmart.org/issue_rating.php"},"zip":"20049","stateId":"NA","url":"http://www.aarp.org","phone1":"888-687-2277","sigId":"1863","phone2":"202-434-3525","fax":"","parentId":"-1","description":"Founded in 1958, AARP is a nonprofit, nonpartisan membership organization that helps people 50 and over improve the quality of their lives. AARP works tirelessly to fulfill its vision: a society in which everyone ages with dignity and purpose, and in which AARP helps people fulfill their goals and dreams. AARP speaks with one voice - united by a common motto: \"To serve, not be served.\" ","email":"","state":"DC"}}
@@ -0,0 +1 @@
1
+ {"state":{"generalInfo":{"title":"Project Vote Smart - States","linkBack":"http:\/\/votesmart.org\/mystate_statefacts.php?state_id=GA"},"details":{"usCircuit":"Eleventh","largestCity":"Atlanta","generalDate":"","bicameral":"t","name":"Georgia","stateType":"State","billUrl":"","senators":"2","lowerLegis":"House of Representatives","stateId":"GA","motto":"Wisdom, Justice, and Moderation","highPoint":"Brasstown Bald, 4,784 ft","bird":"brown thrasher","nickName":"Empire State of the South","termLimit":"0","reps":"0","upperLegis":"General Assembly","voterReg":"<p><br \/><br \/><strong> VOTER REGISTRATION DEADLINE <\/strong><br \/><br \/>Must register to vote 30 days before the election.<br \/>Can select party affiliation at the polls.<br \/>Do not have to register by political party to vote in the state&#39;s regular primaries or general elections.<br \/> <br \/><strong> QUALIFICATIONS <\/strong><br \/>To register to vote in the State of Georgia, an individual must meet the following qualifications:<br \/>&bull; A citizen of the United States <br \/>&bull; A legal resident of Georgia and of the county in which you wish to vote <br \/>&bull; At least 18 years of age by election day<br \/>&bull; Not be serving a sentence for conviction of a felony<br \/>&bull; Have not been judicially determined to be mentally incompetent<br \/><br \/><strong> OBTAINING A VOTER REGISTRATION FORM <\/strong><br \/><br \/>Download and complete a voter registration application <a href=\"http:\/\/www.sos.state.ga.us\/elections\/voter_registration\/voter_reg_app.htm\" target=\"_new\">here.<\/a><br \/><br \/>Contact your local county board of registrars&#39; office or election office, public library, public assistance office, recruitment office, schools and other government offices for a mail-in registration form.<br \/><br \/>&quot;Motor Voter&quot; registration is offered when you renew or apply for your driver&#39;s license at Department of Motor Vehicle Safety drivers license posts. <br \/><br \/>College students can obtain Georgia voter registration forms, or the necessary forms to register in any state in the U.S., from their school registrar&#39;s office or from the office of the Vice President of Academic Affairs<br \/><br \/><strong>GEORGIA ABSENTEE BALLOTS<\/strong><br \/><br \/><strong>Who Can Absentee Vote in Georgia?<\/strong><font face=\"Arial\" size=\"2\"><span style=\"font-size: 10pt; font-family: &#39;Arial&#39;,&#39;sans-serif&#39;\"><span class=\"style42\"><br \/><\/span><\/span><\/font><\/p><p>No reason is required when requesting an absentee ballot by mail.<br \/><\/p><p><strong>How Can I Acquire an Absentee Ballot?<\/strong><br \/><br \/>You may request an absentee ballot as early as 180 days before an election. Absentee ballots must be signed and received by the county board of registrars&#39; office on or before election day - no absentee ballots are issued on election day.<br \/><br \/>Applications for absentee ballots by uniformed or overseas voters can be accepted more than 180 days prior to a primary or election in which a federal candidate appears on the ballot as well as for any runoffs resulting therefrom including presidential preference primaries for two general elections.<br \/><br \/>Absentee Ballot Forms can be requested and from the voter&#39;s local County Board of Registrars Office. Completed forms can be mailed, faxed, or dropped off at the office. <a href=\"http:\/\/www.sos.state.ga.us\/elections\/elections\/voter_information\/2000_voter_info.asp\" target=\"_new\">Contact Information<\/a><br \/><br \/>Obtain an absentee ballot application online:<br \/><a href=\"http:\/\/www.sos.state.ga.us\/elections\/elections\/voter_information\/absentee_ballot_app.pdf\" target=\"_new\">English<\/a><br \/><a href=\"http:\/\/sos.georgia.gov\/elections\/elections\/voter_information\/spanish_absentee_ballot_app.pdf\">Spanish<\/a><br \/><br \/>Members of the military and other United States citizens living outside the United States temporarily or permanently may apply for an absentee ballot with the <a href=\"http:\/\/www.fvap.gov\/pubs\/onlinefpca.pdf\">Federal Postcard Application.<\/a><br \/><br \/><a href=\"http:\/\/www.overseasvotefoundation.org\/\" target=\"_new\">Additional Information for Overseas Voters<\/a><br \/><br \/><strong>Other Information on Absentee Voting in Georgia<\/strong><br \/><br \/>A physically disabled or illiterate voter may receive assistance from another voter in the same county or municipality or from the same category of relatives who can make an application for or deliver an absentee ballot. If the voter is outside of the county or municipality, then a notary public can provide such assistance. Any person who assists another person to vote absentee must complete an oath prescribed by law demonstrating the statutory disability and that the ballot was completed as the voter desired. No person may assist more than ten voters in a primary, election, or runoff<br \/><br \/>An application for an absentee ballot cannot be physically attached to a publication that advocates for or against a particular candidate, issue, etc., and distributed by any person, entity, or organization.<br \/><br \/><strong>ADVANCE VOTING IN GEORGIA<\/strong><br \/><br \/>Previously, Georgia election law permitted the casting of an absentee ballot only under certain specific requirements. Advance voting allows any registered voter to cast a ballot in person at the county voter registration office during normal business hours on the Monday through Friday of the week prior to an election simply as a matter of convenience.<\/p><p>For locations for advanced voting, click <a href=\"http:\/\/www.sos.georgia.gov\/cgi-bin\/AdvanceVoting.asp\" target=\"_blank\">here.<\/a> <br \/><\/p><p><span style=\"font-size: 10pt; font-family: &#39;Arial&#39;,&#39;sans-serif&#39;\"><\/span><a href=\"http:\/\/sos.georgia.gov\/elections\/advanced_voting.htm\">Information Regarding Advance Voting<\/a><br \/><br \/><em>Source of information:<\/em><br \/><br \/>GA Secretary of State<br \/>Elections Section<br \/>1104 West Tower<br \/>2 Martin Luther King Jr Dr SE<br \/>Atlanta, GA 30334 <br \/>Phone: 404-656-2871<br \/>Fax: 404-651-9531<br \/><br \/><a href=\"http:\/\/www.sos.state.ga.us\/elections\" target=\"_new\">http:\/\/www.sos.state.ga.us\/elections <\/a><\/p>","statehood":"Jan. 2, 1788 (fourth of original 13 states to ratify the Constitution)","population":"6,478,216 (1990)","area":"58,876 sq mi","termLength":"0","rollLower":"Roll no.","tree":"American Elm","capital":"Atlanta","rollUpper":"Roll no.","primaryDate":"","voteUrl":"","flower":"Cherokee rose","ltGov":"t","lowPoint":"sea level"}}}
@@ -0,0 +1 @@
1
+ {"stateList":{"generalInfo":{"title":"Project Vote Smart - States","linkBack":"http:\/\/votesmart.org\/mystate_statefacts.php"},"list":{"state":[{"name":"National","stateId":"NA"},{"name":"American Samoa","stateId":"AS"},{"name":"Florida","stateId":"FL"},{"name":"Michigan","stateId":"MI"},{"name":"Missouri","stateId":"MO"},{"name":"Montana","stateId":"MT"},{"name":"Idaho","stateId":"ID"},{"name":"District of Columbia","stateId":"DC"},{"name":"Georgia","stateId":"GA"},{"name":"Hawaii","stateId":"HI"},{"name":"Indiana","stateId":"IN"},{"name":"Minnesota","stateId":"MN"},{"name":"Connecticut","stateId":"CT"},{"name":"Delaware","stateId":"DE"},{"name":"Iowa","stateId":"IA"},{"name":"Illinois","stateId":"IL"},{"name":"North Carolina","stateId":"NC"},{"name":"New York","stateId":"NY"},{"name":"Pennsylvania","stateId":"PA"},{"name":"Ohio","stateId":"OH"},{"name":"Alaska","stateId":"AK"},{"name":"Arkansas","stateId":"AR"},{"name":"California","stateId":"CA"},{"name":"Colorado","stateId":"CO"},{"name":"Kansas","stateId":"KS"},{"name":"Arizona","stateId":"AZ"},{"name":"Oregon","stateId":"OR"},{"name":"Alabama","stateId":"AL"},{"name":"North Dakota","stateId":"ND"},{"name":"Rhode Island","stateId":"RI"},{"name":"South Carolina","stateId":"SC"},{"name":"South Dakota","stateId":"SD"},{"name":"Texas","stateId":"TX"},{"name":"Tennessee","stateId":"TN"},{"name":"Utah","stateId":"UT"},{"name":"West Virginia","stateId":"WV"},{"name":"Wyoming","stateId":"WY"},{"name":"Wisconsin","stateId":"WI"},{"name":"Oklahoma","stateId":"OK"},{"name":"Nebraska","stateId":"NE"},{"name":"Washington","stateId":"WA"},{"name":"New Hampshire","stateId":"NH"},{"name":"Maine","stateId":"ME"},{"name":"Maryland","stateId":"MD"},{"name":"New Mexico","stateId":"NM"},{"name":"Nevada","stateId":"NV"},{"name":"Massachusetts","stateId":"MA"},{"name":"Vermont","stateId":"VT"},{"name":"Guam","stateId":"GU"},{"name":"Puerto Rico","stateId":"PR"},{"name":"Virgin","stateId":"VI"},{"name":"Kentucky","stateId":"KY"},{"name":"Virginia","stateId":"VA"},{"name":"New Jersey","stateId":"NJ"},{"name":"Mississippi","stateId":"MS"},{"name":"Louisiana","stateId":"LA"}]}}}
@@ -0,0 +1 @@
1
+ {"error":{"errorMessage":"Authorization failed"}}
@@ -0,0 +1,98 @@
1
+ require 'rubygems'
2
+ require 'stringio'
3
+ require 'spec'
4
+ require "votesmart"
5
+
6
+ class Spec::Example::ExampleGroup
7
+
8
+ def stub_request_method klazz, request_method, args
9
+ clazz_name = klazz.name.split("::").last
10
+ params = [request_method].concat(args).join('.')
11
+
12
+ body = File.open("#{File.dirname(__FILE__)}/responses/#{clazz_name}.#{params}.js") {|f| f.read }
13
+ JSON.parse(body)
14
+ end
15
+
16
+ before :each do
17
+
18
+ VoteSmart::Common.stub!(:request).and_throw("request not stubbed!")
19
+
20
+ [VoteSmart::Address,
21
+ VoteSmart::Candidate,
22
+ VoteSmart::CandidateBio,
23
+ VoteSmart::Committee,
24
+ VoteSmart::District,
25
+ VoteSmart::Election,
26
+ VoteSmart::Leadership,
27
+ VoteSmart::Local,
28
+ VoteSmart::Measure,
29
+ VoteSmart::Npat,
30
+ VoteSmart::Office,
31
+ VoteSmart::Official,
32
+ VoteSmart::Rating,
33
+ VoteSmart::State,
34
+ VoteSmart::Vote].each do |klazz|
35
+
36
+ request_methods = klazz.methods.collect { |method| method if method.starts_with?("get_") }.compact
37
+
38
+ request_methods.each do |request_method|
39
+
40
+ klazz.stub!(request_method).and_return do |*args|
41
+ stub_request_method(klazz, request_method, args)
42
+ end
43
+ end
44
+
45
+ end
46
+
47
+ end
48
+
49
+ def self.it_should_find options = {}
50
+
51
+ count = options[:count]
52
+
53
+ if count
54
+ it "should get the right number" do
55
+ do_find.length.should == count
56
+ end
57
+ end
58
+
59
+ it_should_find_helper :item, options
60
+ it_should_find_helper :first, options
61
+ it_should_find_helper :last, options
62
+ end
63
+
64
+ def perform_find_do method
65
+ method == :item ? do_find : do_find.send(method)
66
+ end
67
+
68
+ def self.it_should_find_helper method, options
69
+ last = options[method]
70
+
71
+ if last
72
+ describe "method" do
73
+ last.each do |key, value|
74
+
75
+ if value.kind_of?(Hash)
76
+
77
+ it "should have the #{key}" do
78
+ perform_find_do(method).send(key).should_not be_nil
79
+ end
80
+
81
+ value.each do |k, v|
82
+ it "should set the #{key}.#{k}" do
83
+ perform_find_do(method).send(key).send(k).should == v
84
+ end
85
+ end
86
+
87
+ else
88
+
89
+ it "should set the #{key}" do
90
+ perform_find_do(method).send(key).should == value
91
+ end
92
+ end
93
+ end
94
+ end
95
+ end
96
+ end
97
+
98
+ end
@@ -0,0 +1,36 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ module VoteSmart
4
+ describe District do
5
+
6
+ describe "find_all_by_office_and_state" do
7
+
8
+ def do_find
9
+ District.find_all_by_office_id_and_state_id("9", "GA")
10
+ end
11
+
12
+ it_should_find :count => 56, :first => {:name => "District 1", :id => "21945"},
13
+ :last => {:name => "District 56", :id => "22000"}
14
+
15
+ end
16
+
17
+ describe "number" do
18
+
19
+ it "should parse out the number" do
20
+ @district = District.new "name" => "District 64"
21
+ @district.number.should == 64
22
+ end
23
+
24
+ it "should be nil if it cannot parse out the number" do
25
+ @district = District.new "name" => "District hah"
26
+ @district.number.should == nil
27
+ end
28
+
29
+ it "should be nil if there is no name" do
30
+ @district = District.new
31
+ @district.number.should == nil
32
+ end
33
+ end
34
+
35
+ end
36
+ end
@@ -0,0 +1,96 @@
1
+ require File.dirname(__FILE__) + '/../spec_helper'
2
+
3
+ module VoteSmart
4
+ describe Office do
5
+
6
+ describe "all" do
7
+
8
+ before :each do
9
+ Office::Type.stub!(:all).and_return([Office::Type.new("officeTypeId" => "P"),
10
+ Office::Type.new("officeTypeId" => "C")])
11
+ end
12
+
13
+ def do_find
14
+ Office.all
15
+ end
16
+
17
+ it_should_find :count => 19, :first => {:name => "President", :id => "1"},
18
+ :last => {:name => "U.S. House", :id => "5"}
19
+
20
+ end
21
+
22
+ describe "find_all_by_type" do
23
+
24
+ def do_find
25
+ Office.find_all_by_type_id("P")
26
+ end
27
+
28
+ it_should_find :count => 17, :first => {:name => "President", :id => "1"},
29
+ :last => {:name => "Vice President", :id => "2"}
30
+
31
+ end
32
+
33
+ describe "find_all_by_name" do
34
+
35
+ before :each do
36
+ Office::Type.stub!(:all).and_return([Office::Type.new("officeTypeId" => "P"),
37
+ Office::Type.new("officeTypeId" => "C"),
38
+ Office::Type.new("officeTypeId" => "S")])
39
+ end
40
+
41
+ def do_find
42
+ Office.find_all_by_name(["Secretary of State", "Attorney General"])
43
+ end
44
+
45
+ it_should_find :count => 2, :first => {:name => "Secretary of State", :id => "44"},
46
+ :last => {:name => "Attorney General", :id => "12"}
47
+ end
48
+
49
+ end
50
+
51
+ describe Office::Type do
52
+
53
+ describe "all" do
54
+
55
+ def do_find
56
+ Office::Type.all
57
+ end
58
+
59
+ it_should_find :count => 10, :first => {:name => "Presidential and Cabinet", :id => "P"},
60
+ :last => {:name => "Local Executive", :id => "M"}
61
+
62
+ end
63
+
64
+ describe "find_by_name" do
65
+
66
+ def do_find
67
+ Office::Type.find_by_name("State Legislature")
68
+ end
69
+
70
+ it_should_find :item => {:name => "State Legislature", :id => "L"}
71
+
72
+ end
73
+
74
+ describe "offices" do
75
+
76
+ def do_find
77
+ Office::Type.find_by_name("Presidential and Cabinet").offices
78
+ end
79
+
80
+ it_should_find :count => 17, :first => {:name => "President", :id => "1"},
81
+ :last => {:name => "Vice President", :id => "2"}
82
+
83
+ end
84
+
85
+ describe "offices_by_name" do
86
+
87
+ def do_find
88
+ Office::Type.find_by_name("Presidential and Cabinet").offices_by_name(["President", "Vice President"])
89
+ end
90
+
91
+ it_should_find :count => 2, :first => {:name => "President", :id => "1"},
92
+ :last => {:name => "Vice President", :id => "2"}
93
+
94
+ end
95
+ end
96
+ end