open_civic_data 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: a62dc7b8e47b7344f473a7495d043819e809a667
4
+ data.tar.gz: f916764969dfbb45af8b3a2dca5b1f84ecf8f5b2
5
+ SHA512:
6
+ metadata.gz: 3de1a5461734f0045baafeedf0a2b10691fbd33bf0df75893546b19dc83c0951b2052534d2c90fa428cb476aff4df134c5972714d41920eb1f4e31f4ff9401f6
7
+ data.tar.gz: e183e9ba87f406d710bb09b7462fda480cfa2dd72b8352e6cf3dff7d4eb3be1e1c764d2c95fc5dc89a66a5a4ea18b8ff23b982367c5a6fcf3e60e6bd9afd7fbe
data/.gemtest ADDED
File without changes
data/.gitignore ADDED
@@ -0,0 +1,25 @@
1
+ *.gem
2
+ *~
3
+ *.rbc
4
+ .bundle
5
+ .rvmrc
6
+ .config
7
+ Gemfile.lock
8
+ coverage/*
9
+ doc/*
10
+ log/*
11
+ measurement/*
12
+ pkg/*
13
+ InstalledFiles
14
+ lib/bundler/man
15
+ rdoc
16
+ spec/reports
17
+ test/tmp
18
+ test/version_tmp
19
+ tmp
20
+ *.sw*
21
+
22
+ # YARD artifacts
23
+ .yardoc
24
+ _yardoc
25
+ doc/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --order random
data/.rubocop.yml ADDED
@@ -0,0 +1,81 @@
1
+ AllCops:
2
+ Includes:
3
+ - 'Gemfile'
4
+ - 'Rakefile'
5
+ - 'congress.gemspec'
6
+
7
+ # Avoid long parameter lists
8
+ ParameterLists:
9
+ Max: 4
10
+ CountKeywordArgs: true
11
+
12
+ MethodLength:
13
+ CountComments: false
14
+ Max: 15
15
+
16
+ # Avoid more than `Max` levels of nesting.
17
+ BlockNesting:
18
+ Max: 3
19
+
20
+ # Align with the style guide.
21
+ CollectionMethods:
22
+ PreferredMethods:
23
+ collect: 'map'
24
+ inject: 'reduce'
25
+ find: 'detect'
26
+ find_all: 'select'
27
+
28
+ # Do not force public/protected/private keyword to be indented at the same
29
+ # level as the def keyword. My personal preference is to outdent these keywords
30
+ # because I think when scanning code it makes it easier to identify the
31
+ # sections of code and visually separate them. When the keyword is at the same
32
+ # level I think it sort of blends in with the def keywords and makes it harder
33
+ # to scan the code and see where the sections are.
34
+ AccessModifierIndentation:
35
+ Enabled: false
36
+
37
+ # Limit line length
38
+ LineLength:
39
+ Enabled: false
40
+
41
+ # Disable documentation checking until a class needs to be documented once
42
+ Documentation:
43
+ Enabled: false
44
+
45
+ # Enforce Ruby 1.8-compatible hash syntax
46
+ #HashSyntax:
47
+ # EnforcedStyle: hash_rockets
48
+
49
+ # No spaces inside hash literals
50
+ SpaceInsideHashLiteralBraces:
51
+ EnforcedStyle: no_space
52
+
53
+ # Allow dots at the end of lines
54
+ DotPosition:
55
+ Enabled: false
56
+
57
+ # Don't require magic comment at the top of every file
58
+ Encoding:
59
+ Enabled: false
60
+
61
+ # Enforce outdenting of access modifiers (i.e. public, private, protected)
62
+ AccessModifierIndentation:
63
+ EnforcedStyle: outdent
64
+
65
+ EmptyLinesAroundAccessModifier:
66
+ Enabled: true
67
+
68
+ # Align ends correctly
69
+ EndAlignment:
70
+ AlignWith: variable
71
+
72
+ # Indentation of when/else
73
+ CaseIndentation:
74
+ IndentWhenRelativeTo: end
75
+ IndentOneStep: false
76
+
77
+ Lambda:
78
+ Enabled: false
79
+
80
+ NumericLiterals:
81
+ Enabled: false
data/.travis.yml ADDED
@@ -0,0 +1,17 @@
1
+ before_install:
2
+ - gem update bundler
3
+ - bundle --version
4
+ - gem update --system 2.1.11
5
+ - gem --version
6
+ bundler_args: --without development
7
+ language: ruby
8
+ rvm:
9
+ - 1.9.2
10
+ - 1.9.3
11
+ - 2.0.0
12
+ - 2.1.0
13
+ - ruby-head
14
+ matrix:
15
+ allow_failures:
16
+ - rvm: ruby-head
17
+ fast_finish: true
data/.yardopts ADDED
@@ -0,0 +1,3 @@
1
+ --markup markdown
2
+ -
3
+ LICENSE.md
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'rake'
4
+ gem 'yard'
5
+
6
+ group :test do
7
+ gem 'rspec', '>= 2.14'
8
+ gem 'rubocop', '>= 0.16', platforms: [:ruby_19, :ruby_20, :ruby_21]
9
+ gem 'webmock'
10
+ gem 'simplecov', require: false
11
+ gem 'yardstick'
12
+ end
13
+
14
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2014 Sunny Juneja
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,106 @@
1
+ # Ruby wrapper for the Open Civic Data API
2
+
3
+ [![Build Status](https://travis-ci.org/whatasunnyday/open_civic_data.png?branch=master)](https://travis-ci.org/whatasunnyday/open_civic_data)
4
+ [travis]: https://travis-ci.org/whatasunnyday/open_civic_data
5
+
6
+ The Open Civic Data API is a JSON API that provides search and lookup across government organizations, people, legislation, and events, provided by the Sunlight Foundation.
7
+
8
+ For more information, check the [API documentation][apidocs]
9
+ [apidocs]: http://docs.opencivicdata.org/en/latest/index.html
10
+
11
+ ## Installation
12
+ gem install open_civic_data
13
+
14
+ ## Documentation
15
+ [http://rdoc.info/github/whatasunnyday/open_civic_data/][documentation]
16
+ [documentation]: http://rdoc.info/github/whatasunnyday/open_civic_data/
17
+
18
+ ## Authentication
19
+
20
+ All requests to the Open Civic Data API require a Sunlight API key. An API key is
21
+ [free to register][register] and has no usage limits.
22
+ [register]: http://services.sunlightlabs.com/accounts/register/
23
+
24
+ ## Usage Examples
25
+
26
+ ###### Setup
27
+ ```ruby
28
+ require 'open_civic_data'
29
+ OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
30
+ ```
31
+
32
+ ###### Fetches governing bodies in a division.
33
+ ```ruby
34
+ OpenCivicData.jurisdictions
35
+ ```
36
+
37
+ ###### Fetches political geographies such as a state, county or congressional district.
38
+ ```ruby
39
+ OpenCivicData.divisions
40
+ ```
41
+
42
+ ###### Fetches people, typically politicians or gov officials.
43
+ ```ruby
44
+ OpenCivicData.people
45
+ ```
46
+
47
+ ###### Fetches groups of people, such as a city council, state senate or committee.
48
+ ```ruby
49
+ OpenCivicData.organizations
50
+ ```
51
+
52
+ ###### Fetches legislative event, such as a meeting or hearing.
53
+ ```ruby
54
+ OpenCivicData.events
55
+ ```
56
+
57
+ ###### Fetches legislative documents, resolutions, appointments, or contracts and its history.
58
+ ```ruby
59
+ OpenCivicData.bills
60
+ ```
61
+
62
+ ###### Fetches the record of vote taken on motions. May contain individual legilsator's yay/nay or outcome.
63
+ ```ruby
64
+ OpenCivicData.votes
65
+ ```
66
+
67
+ ###### All methods include an optional parameter to set search end points
68
+ ```ruby
69
+ # Returns legislators named 'Obama'
70
+ OpenCivicData.people({'name' => 'Obama'})
71
+
72
+ # Returns second page of results (results are paginated && 0 indexed)
73
+ OpenCivicData.votes({'page' => 1 })
74
+ ```
75
+
76
+ ## Supported Ruby Versions
77
+ This library aims to support and is [tested against][travis] the following Ruby
78
+ implementations:
79
+
80
+ * Ruby 1.9.2
81
+ * Ruby 1.9.3
82
+ * Ruby 2.0.0
83
+ * Ruby 2.1.0
84
+
85
+ If something doesn't work on one of these interpreters, it should be considered
86
+ a bug.
87
+
88
+ This library may inadvertently work (or seem to work) on other Ruby
89
+ implementations, however support will only be provided for the versions listed
90
+ above.
91
+
92
+ If you would like this library to support another Ruby version, you may
93
+ volunteer to be a maintainer. Being a maintainer entails making sure all tests
94
+ run and pass on that implementation. When something breaks on your
95
+ implementation, you will be personally responsible for providing patches in a
96
+ timely fashion. If critical issues for a particular implementation exist at the
97
+ time of a major release, support for that Ruby version may be dropped.
98
+
99
+ ## Special Thanks to
100
+ The [contributors][] of the [Congress gem][congress] where the ideas behind this gem were largely lifted from.
101
+ [contributors]: https://github.com/codeforamerica/congress/graphs/contributors
102
+ [congress]: https://github.com/codeforamerica/congress
103
+
104
+ ## Copyright
105
+ Copyright (c) 2014, Sunny Juneja. See [LICENSE][] for details.
106
+ [license]: https://github.com/whatasunnyday/open_civic_data/blob/master/LICENSE.md
data/Rakefile ADDED
@@ -0,0 +1,36 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task test: :rspec
8
+
9
+ begin
10
+ require 'rubocop/rake_task'
11
+ Rubocop::RakeTask.new
12
+ rescue LoadError
13
+ task :rubocop do
14
+ $stderr.puts 'Rubocop is disabled'
15
+ end
16
+ end
17
+
18
+ require 'yard'
19
+ namespace :doc do
20
+ YARD::Rake::YardocTask.new do |task|
21
+ task.files = %w[lib/**/*.rb]
22
+ task.options = %w[--markup markdown]
23
+ end
24
+ end
25
+
26
+ require 'yardstick/rake/measurement'
27
+ Yardstick::Rake::Measurement.new do |measurement|
28
+ measurement.output = 'measurement/report.txt'
29
+ end
30
+
31
+ require 'yardstick/rake/verify'
32
+ Yardstick::Rake::Verify.new do |verify|
33
+ verify.threshold = 71.0
34
+ end
35
+
36
+ task default: [:spec, :rubocop, :verify_measurements]
@@ -0,0 +1,86 @@
1
+ require 'open_civic_data/connection'
2
+ require 'open_civic_data/request'
3
+
4
+ module OpenCivicData
5
+ class Client
6
+ include Connection
7
+ include Request
8
+
9
+ attr_reader :key
10
+
11
+ def initialize(key)
12
+ fail ArgumentError, 'API key required' if key.nil?
13
+ @key = key
14
+ end
15
+
16
+ # Fetches governing bodies that exist within a division
17
+ # @return [Hashie::Rash] Jurisdiction's name, url, chambers, terms, and session details.
18
+ # @example
19
+ # OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
20
+ # OpenCivicData.jurisdictions
21
+ # @api public
22
+ def jurisdictions(options = {})
23
+ get('/jurisdictions/', options)
24
+ end
25
+
26
+ # Fetches political geographies such as a state, county or congressional district
27
+ # @return [Hashie::Rash] Division's geometries and list of child jurisdiction ids.
28
+ # @example
29
+ # OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
30
+ # OpenCivicData.divisions
31
+ # @api public
32
+ def divisions(options = {})
33
+ get('/divisions/', options)
34
+ end
35
+
36
+ # Fetches people, typically politicians or gov officials
37
+ # @return [Hashie::Rash] Person's name, image, contact details, and links.
38
+ # @example
39
+ # OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
40
+ # OpenCivicData.people
41
+ # @api public
42
+ def people(options = {})
43
+ get('/people/', options)
44
+ end
45
+
46
+ # Fetches groups of people, such as a city council, state senate or committee
47
+ # @return [Hashie::Rash] Organization's name, classification, parent id, contact details, links and posts.
48
+ # @example
49
+ # OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
50
+ # OpenCivicData.organizations
51
+ # @api public
52
+ def organizations(options = {})
53
+ get('/organizations/', options)
54
+ end
55
+
56
+ # Fetches legislative event, such as a meeting or hearing
57
+ # @return [Hashie::Rash] Event's type, name, description, when, end, status, location, and linked entities.
58
+ # @example
59
+ # OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
60
+ # OpenCivicData.events
61
+ # @api public
62
+ def events(options = {})
63
+ get('/events/', options)
64
+ end
65
+
66
+ # Fetches legislative documents and their history
67
+ # @return [Hashie::Rash] Bill's type, legislative body, session, name, chamber, title, type, subject and summary.
68
+ # @example
69
+ # OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
70
+ # OpenCivicData.bills
71
+ # @api public
72
+ def bills(options = {})
73
+ get('/bills/', options)
74
+ end
75
+
76
+ # Fetches the record of vote taken on motions
77
+ # @return [Hashie::Rash] Vote's organization, session, chamber, date, motion, type and passed or not.
78
+ # @example
79
+ # OpenCivicData.key = YOUR_SUNLIGHT_API_KEY
80
+ # OpenCivicData.votes
81
+ # @api public
82
+ def votes(options = {})
83
+ get('/votes/', options)
84
+ end
85
+ end
86
+ end
@@ -0,0 +1,27 @@
1
+ require 'faraday_middleware'
2
+
3
+ module OpenCivicData
4
+ module Connection
5
+ ENDPOINT = 'http://api.opencivicdata.org'.freeze
6
+
7
+ private
8
+
9
+ def connection
10
+ @connection ||= create_connection
11
+ end
12
+
13
+ def create_connection
14
+ Faraday.new(url: ENDPOINT) do |connection|
15
+ middlewares.each { |middleware| connection.use(middleware) }
16
+ connection.adapter(Faraday.default_adapter)
17
+ end
18
+ end
19
+
20
+ def middlewares
21
+ [Faraday::Request::UrlEncoded,
22
+ Faraday::Response::RaiseError,
23
+ Faraday::Response::Rashify,
24
+ Faraday::Response::ParseJson]
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,17 @@
1
+ module OpenCivicData
2
+ module Request
3
+ def get(path, options)
4
+ request(:get, path, options)
5
+ end
6
+
7
+ private
8
+
9
+ def request(method, path, options)
10
+ response = connection.send(method) do |request|
11
+ request.params['apikey'] = @key
12
+ request.url(path, options)
13
+ end
14
+ response.body
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,3 @@
1
+ module OpenCivicData
2
+ VERSION = '0.0.2'
3
+ end
@@ -0,0 +1,24 @@
1
+ require 'open_civic_data/client'
2
+
3
+ module OpenCivicData
4
+ extend self # rubocop:disable ModuleFunction
5
+ attr_accessor :key
6
+
7
+ # Alias for OpenCivicData::Client.new
8
+ #
9
+ # @return [OpenCivicData::Client]
10
+ def new(key = key)
11
+ yield self if block_given?
12
+ return @client if instance_variable_defined?(:@client) && @client.key == key
13
+ @client = OpenCivicData::Client.new(key)
14
+ end
15
+
16
+ # Delegate to OpenCivicData::Client
17
+ def method_missing(method, *args, &block)
18
+ return super unless new.respond_to?(method)
19
+ new.send(method, *args, &block)
20
+ end
21
+
22
+ # return [Boolean]
23
+ def respond_to_missing?(method_name, include_private = false) new.respond_to?(method_name, include_private) end # rubocop:disable SingleLineMethods
24
+ end
@@ -0,0 +1,22 @@
1
+ # encoding: utf-8
2
+ require File.expand_path('../lib/open_civic_data/version', __FILE__)
3
+
4
+ Gem::Specification.new do |spec|
5
+ spec.add_dependency 'faraday', '~> 0.8.7'
6
+ spec.add_dependency 'faraday_middleware', '~> 0.9.0'
7
+ spec.add_dependency 'hashie', '~> 2.0'
8
+ spec.add_dependency 'json', '~> 1.8'
9
+ spec.add_dependency 'rash', '~> 0.4'
10
+ spec.add_development_dependency 'bundler', '~> 1.0'
11
+ spec.author = 'Sunny Juneja'
12
+ spec.description = %q{Ruby wrapper for the Sunlight Open Civic Data API, is an collaborative effort to define schemas and provide tools for gathering information on government organizations, people, legislation, and events provided by the Sunlight Foundation.}
13
+ spec.email = 'me@sunnyjuneja.com'
14
+ spec.files = `git ls-files`.split("\n")
15
+ spec.homepage = 'https://github.com/whatasunnyday/open_civic_data'
16
+ spec.licenses = ['MIT']
17
+ spec.name = 'open_civic_data'
18
+ spec.require_paths = ['lib']
19
+ spec.summary = %q{Ruby wrapper for the Sunlight Open Civic Data API}
20
+ spec.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
21
+ spec.version = OpenCivicData::VERSION
22
+ end
@@ -0,0 +1 @@
1
+ {"meta": {"count": 100, "per_page": 100, "max_page": 5298, "page": 0, "total_count": 529811}, "results": [{"name": "HB 1", "title": "JobsOhio-Governor may create as economic development corporation", "openstates_id": "OHB00000090", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5473d3fc-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 10", "title": "Environmental voluntary actions-tax credit/exemption from fees/penalties", "openstates_id": "OHB00000099", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54741560-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 100", "title": "Lupus Education and Awareness Program", "openstates_id": "OHB00000189", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54745f0c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 101", "title": "Job creation/retention tax credit-for employees who work at home-trial period", "openstates_id": "OHB00000190", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547499c2-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 102", "title": "Certain labor requirements-cannot require or prohibit on public works", "openstates_id": "OHB00000191", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5474e3a0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 103", "title": "Confidentiality of personal information", "openstates_id": "OHB00000192", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54752518-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 104", "title": "Income tax refunds-contribute part to Ohio Historical Society", "openstates_id": "OHB00000193", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54756f46-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 105", "title": "Victims of domestic violence-rights", "openstates_id": "OHB00000194", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5475aa2e-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 106", "title": "Armed forces members-terminate rental agreements-change in deployment", "openstates_id": "OHB00000195", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5475e692-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 107", "title": "Motor vehicles-one license plate displayed on rear of vehicle", "openstates_id": "OHB00000196", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54762fda-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 108", "title": "Kennel owner-cruel treatment of dogs-a crime/prosecutorial discretion", "openstates_id": "OHB00000218", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5476a348-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 109", "title": "Continuous improvement or lower-require parents attend parent-teacher conference", "openstates_id": "OHB00000219", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5476dfc0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 11", "title": "Patient Protection & Affordable Care Act-limit state implementation/enforcement", "openstates_id": "OHB00000100", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54772322-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 110", "title": "Unclaimed funds-withhold finder fees & pay over directly to finder", "openstates_id": "OHB00000220", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54776102-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 111", "title": "Tax deduction-small business-reinvestment/ employee training/research & development", "openstates_id": "OHB00000221", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54779c08-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 112", "title": "Engine coolant/antifreeze-include bittering agent", "openstates_id": "OHB00000222", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5477ecbc-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 113", "title": "Taxpayer's Right to Know Act-open records/open meetings", "openstates_id": "OHB00000223", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54782b82-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 114", "title": "Appropriations-transportation & public safety-FY 2012 & 2013", "openstates_id": "OHB00000224", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5478d2ee-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 115", "title": "Educational Choice Scholarships-gradually increase number", "openstates_id": "OHB00000225", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547911aa-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 116", "title": "Schools-harassment/intimidation/bullying policies-instruction on/parental notice of", "openstates_id": "OHB00000226", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5479a98a-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 117", "title": "Corporal Brad Anthony Davis Memorial Hwy-part I-480 within Garfield Heights", "openstates_id": "OHB00000227", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5479e878-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 118", "title": "Judge/magistrate a victim-increase penalty/probation officer-personal info secret", "openstates_id": "OHB00000228", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547a4836-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 119", "title": "Tanning chemicals/services-regulate use of by persons under 18", "openstates_id": "OHB00000229", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547a8ce2-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 12", "title": "Medicaid-revise requirements", "openstates_id": "OHB00000101", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547ac9dc-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 120", "title": "Water Access To Every Residence Task Force", "openstates_id": "OHB00000230", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547b2f80-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 121", "title": "Child custody/visitation rights-parents called to active military service", "openstates_id": "OHB00000231", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547bc58a-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 122", "title": "Surplus lines insurance-regulation", "openstates_id": "OHB00000232", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547c5644-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 123", "title": "Appropriations-Workers' Compensation-FY 2012-2013", "openstates_id": "OHB00000233", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547cf55e-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 192", "title": "New Community Authority Law-revise", "openstates_id": "OHB00000361", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54ba15b0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 124", "title": "Appropriations-Industrial Commission-FY 2012-2013", "openstates_id": "OHB00000234", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547d9630-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 125", "title": "Prohibit abortion-unborn human with detectable fetal heartbeat", "openstates_id": "OHB00000235", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547df8b4-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 126", "title": "Driver's license/state id card-permit inclusion of next of kin", "openstates_id": "OHB00000248", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547e3db0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 127", "title": "Schedule I controlled substances-add substances", "openstates_id": "OHB00000249", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547e7cbc-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 128", "title": "Ambulance staffing/emergency medical services grants", "openstates_id": "OHB00000250", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547f1816-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 129", "title": "Bed bugs-awareness/education/prevention program/control infestations of", "openstates_id": "OHB00000251", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547f55f6-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 13", "title": "Medicaid-premium assistance component", "openstates_id": "OHB00000102", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547f93a4-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 130", "title": "Infrastructure Protection Center-create", "openstates_id": "OHB00000252", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/547fcf36-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 131", "title": "Consumer reports-prohibit employers using for employment purpose", "openstates_id": "OHB00000253", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54800ae6-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 132", "title": "Drug offense sentences-court consider that offender seeking medical assistance", "openstates_id": "OHB00000254", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54804718-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 133", "title": "Oil & gas leases on state land/Oil & Gas Leasing Board", "openstates_id": "OHB00000255", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5480dd2c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 134", "title": "Reduce income tax rate-capital gains reinvested in Ohio-based investments", "openstates_id": "OHB00000256", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54811b34-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 135", "title": "Free school meal benefits-require certification five times/per year", "openstates_id": "OHB00000257", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/548158a6-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 136", "title": "Educational Choice/Cleveland scholarships-replace/Special Education Scholarships", "openstates_id": "OHB00000258", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5481a2f2-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 137", "title": "Labor laws-uniform definition of employee/ standard for determining if an employee", "openstates_id": "OHB00000259", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5481e712-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 138", "title": "Humane society agent-certify training before appointment", "openstates_id": "OHB00000260", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5482470c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 139", "title": "Northeastern Ohio Universities Colleges of Medicine & Pharmacy-rename", "openstates_id": "OHB00000261", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5482dc4e-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 14", "title": "Statutory definition of \"vicious dog\"-remove pit bulls", "openstates_id": "OHB00000103", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54837d8e-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 140", "title": "GA leadership-Statehouse-management & access policies/set hours of operation", "openstates_id": "OHB00000262", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5483bc0e-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 141", "title": "Nurses-prescribe schedule II controlled substances-modify authority", "openstates_id": "OHB00000275", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5483ffb6-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 142", "title": "\"ListenFirst\" panels", "openstates_id": "OHB00000276", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54843bde-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 143", "title": "Youth sports-head injuries/concussions", "openstates_id": "OHB00000277", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5484d738-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 144", "title": "Online small business resource center", "openstates_id": "OHB00000278", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54851d06-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 145", "title": "Ohio Commission on Fatherhood-revise organization/duties", "openstates_id": "OHB00000279", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/548582fa-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 146", "title": "Retail liquor permits-prohibit issuance-near school/church/library/playground/park", "openstates_id": "OHB00000280", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5485c1c0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 147", "title": "OMVI conviction-disqualify commercial drivers", "openstates_id": "OHB00000281", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5485fd84-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 148", "title": "Macular Degeneration Awareness Month-March", "openstates_id": "OHB00000282", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54869ad2-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 149", "title": "Hospitals/surgical facilities-assignment of circulating nurses", "openstates_id": "OHB00000283", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5490066c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 15", "title": "Named highways-supportive resolutions/local gov'ts erect markers/no state funding", "openstates_id": "OHB00000104", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54904294-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 150", "title": "Regional transit authorities-additional procedure for subdivisions to join", "openstates_id": "OHB00000284", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549086a0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 151", "title": "Department of Transportation-enter into public-private partnerships", "openstates_id": "OHB00000285", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5490cb10-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 152", "title": "Amateur fighting events-under FOP/fire-fighter supervision-exempt from regulation", "openstates_id": "OHB00000291", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549160ca-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 153", "title": "Operating appropriations FY 2012 & 2013", "openstates_id": "OHB00000292", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54923946-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 154", "title": "Assault-victim health care worker/hospital security officer-increase penalty", "openstates_id": "OHB00000293", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54927f6e-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 155", "title": "Bullying-include electronic bullying/events off school premises/staff training", "openstates_id": "OHB00000294", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5492c23a-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 156", "title": "Medicaid reimbursement-nursing facilities-revise costs included", "openstates_id": "OHB00000295", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54930682-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 157", "title": "Dyslexia-teacher professional development on", "openstates_id": "OHB00000296", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5493a36c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 158", "title": "Amateur radio antennas-codify federal restrictions on local zoning", "openstates_id": "OHB00000297", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54944466-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 159", "title": "Elections-photographic identification", "openstates_id": "OHB00000298", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5494bbf8-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 16", "title": "Unaided visual estimation of speed-insufficient evidence", "openstates_id": "OHB00000105", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5494f94c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 160", "title": "Death penalty-abolish", "openstates_id": "OHB00000299", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54953c18-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 161", "title": "Candidate for sheriff-education/experience requirements-change", "openstates_id": "OHB00000300", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549579c6-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 162", "title": "Civil service veterans preference-eliminate requirement veteran be Ohio citizen", "openstates_id": "OHB00000301", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5495e1e0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 163", "title": "Coal mining laws-permit applications/set-back requirements-revise", "openstates_id": "OHB00000302", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54967808-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 164", "title": "Community school-serve school age adults-incarcerated/released from DYS", "openstates_id": "OHB00000303", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5496bf52-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 165", "title": "Charitable bingo-property tax exclusions", "openstates_id": "OHB00000315", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5497032c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 166", "title": "Emergency Medical Services Board-notify EMS & firefighters-need to renew certifications", "openstates_id": "OHB00000316", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54973efa-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 167", "title": "Income tax-deduct Pell Grant/College Opportunity Grant for room & board", "openstates_id": "OHB00000317", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5497dba8-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 168", "title": "Career Training Workforce Development Grant Program", "openstates_id": "OHB00000318", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54981a78-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 169", "title": "Issuance of professional licenses-revise laws governing", "openstates_id": "OHB00000319", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54985722-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 17", "title": "Withholding tax credit-employ previously unemployed individual", "openstates_id": "OHB00000106", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/54989318-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 170", "title": "Contracts in writing-shorten statute of limitations", "openstates_id": "OHB00000320", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5498f36c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 171", "title": "Human cloning/human-animal hybridization/ animal embryonic transfers-prohibit", "openstates_id": "OHB00000321", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549938e0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 172", "title": "Department of Insurance-web site post health insurance premium rates", "openstates_id": "OHB00000322", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549975e4-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 173", "title": "Body mass index screenings-optional in schools", "openstates_id": "OHB00000323", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/5499b892-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 174", "title": "George V. Voinovich Bridge-I 90/span Cuyahoga River in Cuyahoga County", "openstates_id": "OHB00000324", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549a18dc-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 175", "title": "David A. Gibson Memorial Highway-portion State Route 104 within Ross County", "openstates_id": "OHB00000333", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549a5784-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 176", "title": "Competitively bid public improvements-limit magnitude of change orders", "openstates_id": "OHB00000334", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549a9438-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 177", "title": "Military award license plates-retained by surviving spouse", "openstates_id": "OHB00000335", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549ad72c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 178", "title": "Motor vehicle inspection & maintenance program-decentralize", "openstates_id": "OHB00000336", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549b1322-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 179", "title": "Vietnam Veterans' Day-March 29", "openstates_id": "OHB00000337", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549b4ef0-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 18", "title": "Tax credit-business that increases payroll & expands into vacant facility", "openstates_id": "OHB00000107", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549be504-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 180", "title": "Massillon Tiger Football Booster Club license plate", "openstates_id": "OHB00000338", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549c30c2-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 181", "title": "Renters-notice of foreclosure & sale/convert to month-to-month tenancy", "openstates_id": "OHB00000339", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549c742e-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 182", "title": "Syringe exchange programs", "openstates_id": "OHB00000340", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549cc708-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 183", "title": "Certain retail liquor permits-no transfer if population quota restriction exceeded", "openstates_id": "OHB00000341", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549d036c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 184", "title": "Multiple System Atrophy Awareness Month-March", "openstates_id": "OHB00000342", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549d987c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 185", "title": "Ohio Aggregates and Industrial Minerals Awareness Week-third week in July", "openstates_id": "OHB00000349", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549e3a2a-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 186", "title": "Professional employer organization law-changes", "openstates_id": "OHB00000350", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549e7b0c-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 187", "title": "Residential mortgage servicers-regulate", "openstates_id": "OHB00000351", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549ebdc4-d90e-11e2-81e4-1231391cd4ec", "subject": []}, {"name": "HB 188", "title": "Ohio Constitutional Modernization Commission", "openstates_id": "OHB00000352", "other_names": [], "jurisdiction_id": "ocd-jurisdiction/country:us/state:oh/legislature", "chamber": null, "session": "129", "type": ["bill"], "id": "ocd-bill/549f53ba-d90e-11e2-81e4-1231391cd4ec", "subject": []}]}