sba 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (74) hide show
  1. data/.gitignore +41 -0
  2. data/.rspec +3 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.md +10 -0
  5. data/LICENSE.mkd +20 -0
  6. data/README.mkd +72 -0
  7. data/Rakefile +16 -0
  8. data/autotest/discover.rb +1 -0
  9. data/lib/faraday/multipart.rb +29 -0
  10. data/lib/faraday/raise_error.rb +31 -0
  11. data/lib/faraday/response/raise_error.rb +32 -0
  12. data/lib/sba.rb +51 -0
  13. data/lib/sba/client.rb +44 -0
  14. data/lib/sba/client/connection.rb +37 -0
  15. data/lib/sba/client/data.rb +73 -0
  16. data/lib/sba/client/licenses.rb +111 -0
  17. data/lib/sba/client/loans.rb +125 -0
  18. data/lib/sba/client/request.rb +37 -0
  19. data/lib/sba/client/sites.rb +71 -0
  20. data/lib/sba/client/urls.rb +134 -0
  21. data/lib/sba/configuration.rb +44 -0
  22. data/lib/sba/version.rb +3 -0
  23. data/sba.gemspec +37 -0
  24. data/spec/data_spec.rb +103 -0
  25. data/spec/fixtures/all_sites_keywords.json +1393 -0
  26. data/spec/fixtures/business_type_state.json +81 -0
  27. data/spec/fixtures/business_type_state_city.json +131 -0
  28. data/spec/fixtures/business_type_state_county.json +101 -0
  29. data/spec/fixtures/business_type_zip.json +111 -0
  30. data/spec/fixtures/by_business_type.json +601 -0
  31. data/spec/fixtures/by_state.json +71 -0
  32. data/spec/fixtures/city_links_for_state.json +30 -0
  33. data/spec/fixtures/data_city.json +87543 -0
  34. data/spec/fixtures/data_city_county.json +88355 -0
  35. data/spec/fixtures/data_county.json +813 -0
  36. data/spec/fixtures/data_specific_city.json +15 -0
  37. data/spec/fixtures/data_specific_county.json +2493 -0
  38. data/spec/fixtures/doing_business_as.json +591 -0
  39. data/spec/fixtures/employer_requirements.json +2211 -0
  40. data/spec/fixtures/entity_filing.json +551 -0
  41. data/spec/fixtures/federal_and_state_financing_for.json +973 -0
  42. data/spec/fixtures/loan_grants.json +901 -0
  43. data/spec/fixtures/loan_grants_by_industry_specialty.json +533 -0
  44. data/spec/fixtures/loan_grants_by_specialty.json +210 -0
  45. data/spec/fixtures/loan_grants_industry.json +324 -0
  46. data/spec/fixtures/loan_grants_state_ind_spec.json +381 -0
  47. data/spec/fixtures/loan_grants_state_industry.json +381 -0
  48. data/spec/fixtures/loan_grants_state_specialty.json +362 -0
  49. data/spec/fixtures/primary_url_for_athens.json +15 -0
  50. data/spec/fixtures/primary_url_for_clarke_county.json +29 -0
  51. data/spec/fixtures/rec_sites_categories.json +249 -0
  52. data/spec/fixtures/rec_sites_categories.xml +1 -0
  53. data/spec/fixtures/rec_sites_domain.json +9 -0
  54. data/spec/fixtures/rec_sites_domain.xml +1 -0
  55. data/spec/fixtures/rec_sites_keyword.json +17 -0
  56. data/spec/fixtures/rec_sites_keywords.xml +1 -0
  57. data/spec/fixtures/rec_sites_master_term.json +9 -0
  58. data/spec/fixtures/rec_sites_master_term.xml +1 -0
  59. data/spec/fixtures/state_financing_for.json +73 -0
  60. data/spec/fixtures/state_licenses.json +11191 -0
  61. data/spec/fixtures/tax_registration.json +1101 -0
  62. data/spec/fixtures/url_city.json +6063 -0
  63. data/spec/fixtures/url_city_county.json +6875 -0
  64. data/spec/fixtures/url_county.json +813 -0
  65. data/spec/fixtures/url_specific_city.json +141 -0
  66. data/spec/fixtures/url_specific_county.json +477 -0
  67. data/spec/helper.rb +27 -0
  68. data/spec/licenses_spec.rb +148 -0
  69. data/spec/loans_spec.rb +193 -0
  70. data/spec/sba_ruby/client_spec.rb +8 -0
  71. data/spec/sba_spec.rb +9 -0
  72. data/spec/sites_spec.rb +101 -0
  73. data/spec/urls_spec.rb +188 -0
  74. metadata +345 -0
@@ -0,0 +1,44 @@
1
+ require 'faraday'
2
+
3
+ module SBA
4
+ module Configuration
5
+ VALID_OPTIONS_KEYS = [
6
+ :adapter,
7
+ :endpoint,
8
+ :user_agent,
9
+ :proxy,
10
+ :format].freeze
11
+
12
+ VALID_FORMATS = [
13
+ :json,
14
+ :xml].freeze
15
+
16
+ DEFAULT_ADAPTER = Faraday.default_adapter
17
+ DEFAULT_ENDPOINT = nil
18
+ DEFAULT_PROXY = nil
19
+ DEFAULT_FORMAT = :json
20
+ DEFAULT_USER_AGENT = "SBA Ruby Gem #{SBA::VERSION}".freeze
21
+
22
+ attr_accessor *VALID_OPTIONS_KEYS
23
+
24
+ def self.extended(base)
25
+ base.reset
26
+ end
27
+
28
+ def configure
29
+ yield self
30
+ end
31
+
32
+ def options
33
+ VALID_OPTIONS_KEYS.inject({}){|o,k| o.merge!(k => send(k)) }
34
+ end
35
+
36
+ def reset
37
+ self.adapter = DEFAULT_ADAPTER
38
+ self.user_agent = DEFAULT_USER_AGENT
39
+ self.endpoint = DEFAULT_ENDPOINT
40
+ self.format = DEFAULT_FORMAT
41
+ self.proxy = DEFAULT_FORMAT
42
+ end
43
+ end
44
+ end
@@ -0,0 +1,3 @@
1
+ module SBA
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,37 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path("../lib/sba/version", __FILE__)
3
+
4
+ Gem::Specification.new do |s|
5
+ s.add_development_dependency("bundler", "~> 1.0")
6
+ s.add_development_dependency("json", "~> 1.4")
7
+ s.add_development_dependency("maruku", "~> 0.6")
8
+ s.add_development_dependency("nokogiri", "~> 1.4")
9
+ s.add_development_dependency("rake", "~> 0.8")
10
+ s.add_development_dependency("rspec", "~> 2.1")
11
+ s.add_development_dependency("simplecov", "~> 0.3")
12
+ s.add_development_dependency("webmock", "~> 1.5")
13
+ s.add_development_dependency("yard", "~> 0.6")
14
+ s.add_development_dependency("ZenTest", "~> 4.4")
15
+ s.add_runtime_dependency("hashie", "~> 0.4.0")
16
+ s.add_runtime_dependency("faraday", "~> 0.5.3")
17
+ s.add_runtime_dependency("faraday_middleware", "~> 0.3.0")
18
+ s.add_runtime_dependency("multi_json", "~> 0.0.5")
19
+ s.add_runtime_dependency("multi_xml", "~> 0.2.0")
20
+ s.authors = ["Dan Melton", "Ryan Resella"]
21
+ s.description = %q{A Ruby wrapper for the SBA APIs.}
22
+ s.post_install_message =<<eos
23
+ Using this gem in your project or organization? Add it to the apps wiki!
24
+ https://github.com/codeforamerica/sba/wiki/apps
25
+ eos
26
+ s.email = ["dan@codeforamerica.org", "ryan@codeforamerica.org"]
27
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
28
+ s.files = `git ls-files`.split("\n")
29
+ s.homepage = "http://rubygems.org/gems/sba"
30
+ s.name = "sba"
31
+ s.platform = Gem::Platform::RUBY
32
+ s.require_paths = ["lib"]
33
+ s.required_rubygems_version = Gem::Requirement.new(">= 1.3.6") if s.respond_to? :required_rubygems_version=
34
+ s.summary = s.description
35
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
36
+ s.version = SBA::VERSION
37
+ end
@@ -0,0 +1,103 @@
1
+ require 'helper'
2
+
3
+ describe SBA do
4
+ describe ".data_city_county" do
5
+ before do
6
+ stub_request(:get, 'http://api.sba.gov/geodata/city_county_data_for_state_of/ca.json').
7
+ with().
8
+ to_return(:body => fixture('data_city_county.json'),
9
+ :headers => {'Content-Type' => 'application/json'})
10
+ end
11
+ it "should request the correct resource" do
12
+ SBA.data_city_county('ca')
13
+ a_request(:get, 'http://api.sba.gov/geodata/city_county_data_for_state_of/ca.json').
14
+ with().
15
+ should have_been_made
16
+ end
17
+ it "should return the correct results" do
18
+ test = SBA.data_city_county('ca')
19
+ test.should be_an Array
20
+ test[0]["url"].should == "http://www.ci.adelanto.ca.us/"
21
+ test[1]["url"].should == "http://ci.agoura-hills.ca.us/"
22
+ end
23
+ end
24
+ describe ".data_city" do
25
+ before do
26
+ stub_request(:get, 'http://api.sba.gov/geodata/city_data_for_state_of/ca.json').
27
+ with().
28
+ to_return(:body => fixture('data_city.json'),
29
+ :headers => {'Content-Type' => 'application/json'})
30
+ end
31
+ it "should request the correct resource" do
32
+ SBA.data_city('ca')
33
+ a_request(:get, 'http://api.sba.gov/geodata/city_data_for_state_of/ca.json').
34
+ with().
35
+ should have_been_made
36
+ end
37
+ it "should return the correct results" do
38
+ test = SBA.data_city('ca')
39
+ test.should be_an Array
40
+ test[0]["url"].should == "http://www.ci.adelanto.ca.us/"
41
+ test[1]["url"].should == "http://ci.agoura-hills.ca.us/"
42
+ end
43
+ end
44
+ describe ".data_county" do
45
+ before do
46
+ stub_request(:get, 'http://api.sba.gov/geodata/county_data_for_state_of/ca.json').
47
+ with().
48
+ to_return(:body => fixture('data_county.json'),
49
+ :headers => {'Content-Type' => 'application/json'})
50
+ end
51
+ it "should request the correct resource" do
52
+ SBA.data_county('ca')
53
+ a_request(:get, 'http://api.sba.gov/geodata/county_data_for_state_of/ca.json').
54
+ with().
55
+ should have_been_made
56
+ end
57
+ it "should return the correct results" do
58
+ test = SBA.data_county('ca')
59
+ test.should be_an Array
60
+ test[0]["url"].should == "http://www.acgov.org/"
61
+ test[1]["url"].should == "http://www.alpinecountyca.gov/"
62
+ end
63
+ end
64
+ describe ".data_specific_city" do
65
+ before do
66
+ stub_request(:get, 'http://api.sba.gov/geodata/all_data_for_city_of/seattle/wa.json').
67
+ with().
68
+ to_return(:body => fixture('data_specific_city.json'),
69
+ :headers => {'Content-Type' => 'application/json'})
70
+ end
71
+ it "should request the correct resource" do
72
+ SBA.data_specific_city('seattle', 'wa')
73
+ a_request(:get, 'http://api.sba.gov/geodata/all_data_for_city_of/seattle/wa.json').
74
+ with().
75
+ should have_been_made
76
+ end
77
+ it "should return the correct results" do
78
+ test = SBA.data_specific_city('seattle', 'wa')
79
+ test.should be_an Array
80
+ test[0]["url"].should == "http://seattle.gov/"
81
+ end
82
+ end
83
+ describe ".data_specific_county" do
84
+ before do
85
+ stub_request(:get, 'http://api.sba.gov/geodata/all_data_for_county_of/frederick%20county/md.json').
86
+ with().
87
+ to_return(:body => fixture('data_specific_county.json'),
88
+ :headers => {'Content-Type' => 'application/json'})
89
+ end
90
+ it "should request the correct resource" do
91
+ SBA.data_specific_county('frederick county', 'md')
92
+ a_request(:get, 'http://api.sba.gov/geodata/all_data_for_county_of/frederick%20county/md.json').
93
+ with().
94
+ should have_been_made
95
+ end
96
+ it "should return the correct results" do
97
+ test = SBA.data_specific_county('frederick county', 'md')
98
+ test.should be_an Array
99
+ test[0]["url"].should == "http://www.brunswickmd.gov/"
100
+ test[2]["url"].should == "http://www.emmitsburg.net/towngov/"
101
+ end
102
+ end
103
+ end
@@ -0,0 +1,1393 @@
1
+
2
+ {"recommended_sites_item150": [
3
+ {"title": "Tax Help and Training"},
4
+ {"url": "http://www.sba.gov/content/tax-help-and-training"},
5
+ {"description": "Get tax help and training and answers to popular tax questions from the IRS"},
6
+ {"keywords": "tax help, tax workshop, tax training, tax advice, tax help"},
7
+ {"category": "financing a business"},
8
+ {"orders": 1},
9
+ {"master_term": "Tax Help and Training"}] ,
10
+ "recommended_sites_item122": [
11
+ {"title": "Money \u0026 Interest Statistics"},
12
+ {"url": "http://www.sba.gov/content/money-interest-rates"},
13
+ {"description": "Find statistics on U.S. money and interest rates"},
14
+ {"keywords": "interest rate, interest rates, exchange rate, exchange rates, money statistics"},
15
+ {"category": "managing a business"},
16
+ {"orders": 1},
17
+ {"master_term": "money statistics"}] ,
18
+ "recommended_sites_item40": [
19
+ {"title": "LLC Tax Information"},
20
+ {"url": "http://www.irs.gov/businesses/small/article/0,,id=98277,00.html"},
21
+ {"description": "Info, tax returns, forms and guidance on operating an LLC"},
22
+ {"keywords": "limited liability company certificate"},
23
+ {"category": "registering a business"},
24
+ {"orders": 1},
25
+ {"master_term": "llc"}] ,
26
+ "recommended_sites_item99": [
27
+ {"title": "Green Business Guide"},
28
+ {"url": "http://www.sba.gov/content/green-business-guide"},
29
+ {"description": "Find resources that help small businesses expand their businesses while saving energy costs. "},
30
+ {"keywords": "environmental management, green regulations, green tips, green incentives, environmental regulations, go green, green technology, Green Business, green, green innovations, green marketing, environment, Green Marketing, green commuting"},
31
+ {"category": "managing a business"},
32
+ {"orders": 1},
33
+ {"master_term": "Going Green"}] ,
34
+ "recommended_sites_item12": [
35
+ {"title": "Starting a Child Care Business"},
36
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Starting-a-Child-Care-Business/ba-p/19299"},
37
+ {"description": "Read this business article in the Business.gov Community"},
38
+ {"keywords": "STARTING A CHILD DAYCARE, OPENING A CHILD CARE CENTER, IN HOME CHILD CARE, STARTING A CHILD CARE BUSINESS"},
39
+ {"category": "other"},
40
+ {"orders": 2},
41
+ {"master_term": "Child Care"}] ,
42
+ "recommended_sites_item151": [
43
+ {"title": "Tax Info for Specific Business Types"},
44
+ {"url": "http://www.sba.gov/content/tax-information-specific-business-types"},
45
+ {"description": "Get information about specific taxes for your industry"},
46
+ {"keywords": "construction tax, non profit tax, gas tax, entertainment tax, charities tax, manufacturing tax, nonprofit tax, farmer tax, charity tax, automotive tax, non-profit tax, agriculture tax, restaurant tax"},
47
+ {"category": "financing a business"},
48
+ {"orders": 1},
49
+ {"master_term": "Tax Info for Specific Business Types"}] ,
50
+ "recommended_sites_item123": [
51
+ {"title": "New Hire Reporting"},
52
+ {"url": "http://www.sba.gov/content/new-hire-reporting-your-state"},
53
+ {"description": "Find out about requirements for reporting your new hires"},
54
+ {"keywords": "New Hire Reporting"},
55
+ {"category": "business law"},
56
+ {"orders": 1},
57
+ {"master_term": "New hires"}] ,
58
+ "recommended_sites_item41": [
59
+ {"title": "Federal Tax Forms for Small Business"},
60
+ {"url": "http://www.irs.gov/businesses/small/article/0,,id=99200,00.html"},
61
+ {"description": "Pay and file your federal taxes with the IRS"},
62
+ {"keywords": "small business tax forms, federal small business tax forms, tax form for running a business, federal tax forms, tax forms, tax forms business, business tax forms, federal business tax forms"},
63
+ {"category": "financing a business"},
64
+ {"orders": 1},
65
+ {"master_term": "tax forms"}] ,
66
+ "recommended_sites_item13": [
67
+ {"title": "The Legal Steps to Buying a Business"},
68
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/The-Legal-Steps-to-Buying-a-Business/ba-p/14084"},
69
+ {"description": "Read this business article in the Business.gov Community"},
70
+ {"keywords": "BUYING A BUSINESS, BUYING A EXISTING BUSINESS, TO PURCHASE A GROCERY STORE, BUYING A BUSINESS IN CONNECTICUT, BUY A BUSINESS, BUY BUSINESS, BUYING BUSINESS, PURCHASE BUSINESS"},
71
+ {"category": "other"},
72
+ {"orders": 2},
73
+ {"master_term": "Buying a Business"}] ,
74
+ "recommended_sites_item152": [
75
+ {"title": "Telemarketing Laws"},
76
+ {"url": "http://www.sba.gov/content/telemarketing-laws"},
77
+ {"description": "Learn about the laws for telemarketing"},
78
+ {"keywords": "telemarketing company registration, telemarketing law, do not call list, fax advertising"},
79
+ {"category": "business law"},
80
+ {"orders": 1},
81
+ {"master_term": "telemarketing"}] ,
82
+ "recommended_sites_item124": [
83
+ {"title": "Non-Profit Resources"},
84
+ {"url": "http://www.sba.gov/content/nonprofit-organizations"},
85
+ {"description": "Grants tax info and government programs and services"},
86
+ {"keywords": "non-profit, faith base grant, NON-PROFIT ORG, 501(3)(C), non profit, tax exempt, NOT-FOR-PROFITS, NON-PROFIT BUINESS, 501(C)(3) NOT-FOR PROFIT ORGANIZATION, non-profit organizations, govt grants for food banks, NON-PROFITS., 5013C, nonprofit, faith based grant, NOT FOR PROFIT, NONPROFIT ORGANIZATON, 501C3 INFORMATION, non profit organizations, grant for 501c3, NON-PROFIT BUSINESS, NONPROFIT BUSINESS, non profits, church grants, 501 C 3 NON-PROFIT, 501 C3, nonprofits, grants fir non-profit organizations, NON-PROFITS, 501(C)(3), 501c3, federal grant for a church, NON-PROFIT/GRANTS, 501(C)3"},
87
+ {"category": "starting a business"},
88
+ {"orders": 1},
89
+ {"master_term": "non profit"}] ,
90
+ "recommended_sites_item70": [
91
+ {"title": "Digital Rights"},
92
+ {"url": "http://www.sba.gov/content/digital-rights"},
93
+ {"description": "Learn about copyright and protection laws for digital works, including text, movies, music and art"},
94
+ {"keywords": "digital rights, dcma, digital works"},
95
+ {"category": "business law"},
96
+ {"orders": 1},
97
+ {"master_term": "digital rights"}] ,
98
+ "recommended_sites_item42": [
99
+ {"title": "Starting a Child Care Center"},
100
+ {"url": "http://www.nal.usda.gov/ric/ricpubs/rural_child_care.htm"},
101
+ {"description": "Find information on how to start and operate a child care facility."},
102
+ {"keywords": "how to run a home based day care"},
103
+ {"category": "starting a business"},
104
+ {"orders": 1},
105
+ {"master_term": "child care"}] ,
106
+ "recommended_sites_item14": [
107
+ {"title": "The Truth Behind Unpaid Internships"},
108
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/The-Truth-Behind-Unpaid-Internships/ba-p/9340"},
109
+ {"description": "Read this business article in the Business.gov Community"},
110
+ {"keywords": "UNPAID INTERNS, UNPAID INTERNSHIPS, INTERN LAWS, UNPAID INTERNSHIP, REQUIREMENTS FOR STUDENT INTERNSHIPS"},
111
+ {"category": "other"},
112
+ {"orders": 2},
113
+ {"master_term": "Unpaid Interns"}] ,
114
+ "recommended_sites_item153": [
115
+ {"title": "Write a Business Plan"},
116
+ {"url": "http://www.sba.gov/content/templates-writing-business-plan"},
117
+ {"description": "Learn how to write a proper business plan to get your business off the ground fast"},
118
+ {"keywords": "writing a business plan, preparing a business plan, Write a Business Plan"},
119
+ {"category": "starting a business"},
120
+ {"orders": 1},
121
+ {"master_term": "Write a Business Plan"}] ,
122
+ "recommended_sites_item125": [
123
+ {"title": "Get Business Licenses and Permits"},
124
+ {"url": "http://www.sba.gov/content/obtaining-business-licenses-permits"},
125
+ {"description": "Search for licenses and permits required for your business"},
126
+ {"keywords": "LICENSES, LICENSE AND PERMIT, LICENSEING AND PERMITS, vendor license, PERMITS, BUSINESS LICENSES \u0026 PERMIT SEARCH, application for business license, LICENSES AND PERMITS, LICENCE AND PERMITS, licenses for vendors, BUSINESS LICENSES, BUSINESS PERMIT, LICENSES \u0026 PERMIT, federal permit, PERMIT, LICENSE \u0026 PERMITS, apply business licenses online, SELLERS PERMIT, PERMITME, PERMITS AND LICENSES, BUSINESS LICENSE, LICENSE AND PERMITS, LISCENSE AND PERMITS, license, PERMIT ME, BUSINESS LICENSE AND PERMITS, PERMITS AND LISCENCES"},
127
+ {"category": "registering a business"},
128
+ {"orders": 1},
129
+ {"master_term": "business licenses"}] ,
130
+ "recommended_sites_item71": [
131
+ {"title": "Small Business Disaster Assistance"},
132
+ {"url": "http://www.sba.gov/content/disaster-assistance"},
133
+ {"description": "Loans and tax relief to help your business recover from a disaster"},
134
+ {"keywords": "disaster loans, disaster loan, disaster tax relief, disaster assistance"},
135
+ {"category": "managing a business"},
136
+ {"orders": 1},
137
+ {"master_term": "disaster assistance"}] ,
138
+ "recommended_sites_item43": [
139
+ {"title": "Economic Stimulus \u0026 Small Business"},
140
+ {"url": "http://www.sba.gov"},
141
+ {"description": "How SBA uses stimulus money to assist small businesses."},
142
+ {"keywords": "arra, stimulus grants for small business, obamas green grant for small business, stimulus grant, obamas green grant for small business application, AMERICAN RECOVERY ACT, economic stimulus, obama small business grant, ECONOMIC RECOVERY, stmulus small business grant, obama give small business grant.gov, stimulus dollar grant to small business, obama small business grant forms, stimulus business grants, obama give small business grant.gov.com, RECOVERY ACT, stimulus grants, obama business grant/loan, stimulus small business grant, obama grants, AMERICAN RECOVERY AND REINVESTMENT ACT"},
143
+ {"category": "financing a business"},
144
+ {"orders": 1},
145
+ {"master_term": "economic stimulus"}] ,
146
+ "recommended_sites_item15": [
147
+ {"title": "HIRE Act of 2010 - New Tax Incentives!"},
148
+ {"url": "http://community2.business.gov/t5/Small-Business-Cents/HIRE-Act-of-2010-New-Tax-Incentives/ba-p/35874"},
149
+ {"description": "Read this business article in the Business.gov Community"},
150
+ {"keywords": "NEW HIRE ACT, 2010 HIRE ACT, FEDERAL HIRE ACT, HIRE ACT TAX?, HIRE ACT 2010, HIRE ACT, HIRE ACT FORMS"},
151
+ {"category": "other"},
152
+ {"orders": 2},
153
+ {"master_term": "Hire Act"}] ,
154
+ "recommended_sites_item154": [
155
+ {"title": "Severance Pay and Final Paycheck"},
156
+ {"url": "http://www.sba.gov/content/terminating-employees"},
157
+ {"description": "Find information about requirements for Severance Pay and Final Paycheck"},
158
+ {"keywords": "last paycheck, Layoff, firing an employee, WARN, layoff, Employee Termination, Severance, layoffs, employment termination, Final Paycheck, fire an employee"},
159
+ {"category": "business law"},
160
+ {"orders": 1},
161
+ {"master_term": "Severance"}] ,
162
+ "recommended_sites_item126": [
163
+ {"title": "Online Advertising Laws"},
164
+ {"url": "http://www.sba.gov/content/online-advertising"},
165
+ {"description": "Learn about the laws for advertising online"},
166
+ {"keywords": "spam law, advertising online, e-commerce, online advertising"},
167
+ {"category": "business law"},
168
+ {"orders": 1},
169
+ {"master_term": "Online"}] ,
170
+ "recommended_sites_item72": [
171
+ {"title": "Disaster Cleanup"},
172
+ {"url": "http://www.sba.gov/content/disaster-cleanup"},
173
+ {"description": "Tips and advice to help businesses recover from a disaster"},
174
+ {"keywords": "disaster cleanup"},
175
+ {"category": "managing a business"},
176
+ {"orders": 1},
177
+ {"master_term": "disaster cleanup"}] ,
178
+ "recommended_sites_item44": [
179
+ {"title": "Government Contracting by State"},
180
+ {"url": "http://www.sba.gov/category/navigation-structure/contracting/contracting-opportunities"},
181
+ {"description": "Access information by state on how to compete for government contracts"},
182
+ {"keywords": "Contracting, procurement officer, government contracting, contracting Opportunities, government contractor, Contracting, contractor, state contracting opportunities, federal contractor, contracting Opportunities, government jobs, federal contracting, Government Contracting Opportunities, procurement"},
183
+ {"category": "managing a business"},
184
+ {"orders": 1},
185
+ {"master_term": "Government Contracting"}] ,
186
+ "recommended_sites_item16": [
187
+ {"title": "A Guide to Estimate Your Startup Expenses"},
188
+ {"url": "http://community2.business.gov/t5/Small-Business-Cents/How-Much-Money-Do-I-Need-A-Guide-to-Estimate-Your-Startup/ba-p/33947"},
189
+ {"description": "Read this business article in the Business.gov Community"},
190
+ {"keywords": "COST ESTIMATION, S CORP START UP COST, STARTUP COSTS, START UP COSTS, COMMUNITY NON-PROFIT STARTUP COST, HOW MUCH MONEY WILL YOU NEED, START UP COST, COST CALCULATOR, COST OF STARTING A BUSINESS., S CROP START UP COST, HOW MUCH MONEY DO I NEED"},
191
+ {"category": "other"},
192
+ {"orders": 2},
193
+ {"master_term": "How Much Money"}] ,
194
+ "recommended_sites_item155": [
195
+ {"title": "Basics of Zoning Laws"},
196
+ {"url": "http://www.sba.gov/content/tips-choosing-business-location"},
197
+ {"description": "Get an overview of zoning to help you define how your property is used"},
198
+ {"keywords": "zoning regulations, zoning problems, zoning, zoning ordinance"},
199
+ {"category": "starting a business"},
200
+ {"orders": 1},
201
+ {"master_term": "Zoning Laws"}] ,
202
+ "recommended_sites_item127": [
203
+ {"title": "Privacy Laws for Financial Companies"},
204
+ {"url": "http://www.sba.gov/content/overview-privacy-laws"},
205
+ {"description": "Get information about privacy laws for financial companies"},
206
+ {"keywords": "privacy laws, Privacy Laws, privacy laws"},
207
+ {"category": "business law"},
208
+ {"orders": 1},
209
+ {"master_term": "Privacy Laws for Financial Companies"}] ,
210
+ "recommended_sites_item73": [
211
+ {"title": "Create a Disaster Plan for Your Business"},
212
+ {"url": "http://www.sba.gov/content/disaster-planning"},
213
+ {"description": "Resources to help your business survive a disaster"},
214
+ {"keywords": "disaster planning"},
215
+ {"category": "managing a business"},
216
+ {"orders": 1},
217
+ {"master_term": "disaster planning"}] ,
218
+ "recommended_sites_item45": [
219
+ {"title": "Government Contracting"},
220
+ {"url": "http://www.sba.gov/category/navigation-structure/contracting/doing-business-with-government"},
221
+ {"description": "Learn about requirements that set aside some government contracts for small businesses"},
222
+ {"keywords": "Government Contracting, government contractors, doing business as contractor license, US FEDERAL CONTRACTING"},
223
+ {"category": "managing a business"},
224
+ {"orders": 1},
225
+ {"master_term": "Government Contracting"}] ,
226
+ "recommended_sites_item17": [
227
+ {"title": "How to Find and Attract Investors"},
228
+ {"url": "http://community2.business.gov/t5/Small-Business-Cents/How-to-Find-and-Attract-Investors/ba-p/20352"},
229
+ {"description": "Read this business article in the Business.gov Community"},
230
+ {"keywords": "ATTRACT INVESTORS, ATTRACTING INVESTORS, FIND INVESTORS"},
231
+ {"category": "other"},
232
+ {"orders": 2},
233
+ {"master_term": "Attract Investors"}] ,
234
+ "recommended_sites_item156": [
235
+ {"title": "Toxic Release Inventory"},
236
+ {"url": "http://www.sba.gov/content/toxic-release-inventory"},
237
+ {"description": "Learn about the public EPA database that contains information on toxic chemical releases"},
238
+ {"keywords": "Toxic Release Inventory, TRI"},
239
+ {"category": "business law"},
240
+ {"orders": 1},
241
+ {"master_term": "Toxic Release Inventory"}] ,
242
+ "recommended_sites_item128": [
243
+ {"title": "Business Resources for Disabled People"},
244
+ {"url": "http://www.sba.gov/content/people-with-disabilities"},
245
+ {"description": "Find resources that help disabled people start, grow and manage a small business"},
246
+ {"keywords": "grants for disabled adults, federal grant for disablde, disabled business grants, federal grant for disabled, grants for disabled to start business, business grant for disabled, programs or grants to help low-income disabled people, grant disabled woman business, people with disabilities, grants for disabled, grants for disable adults, monority woman disabled grants, disabled owned businesses, disabled grants"},
247
+ {"category": "starting a business"},
248
+ {"orders": 1},
249
+ {"master_term": "Business Resources for Disabled People"}] ,
250
+ "recommended_sites_item0": [
251
+ {"title": "Changing a Business Name"},
252
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Changing-a-Business-Name/ba-p/2124"},
253
+ {"description": "Read this business article in the Business.gov Community"},
254
+ {"keywords": "CHANGE A BUSINESS NAME, CHANGING BUSINESS NAME, CHANGE MY BUSINESS NAME, FORMS TO CHANGE BUSINESS NAME, CHANGE BUSINESS NAME, CHANGE BUSINESS NAME FORM, CHANGING A BUSINESS NAME, BUSINESS NAME CHANGE, HOW TO CHANGE BUSINESS NAME, CHANGING YOUR BUSINESS NAME"},
255
+ {"category": "other"},
256
+ {"orders": 2},
257
+ {"master_term": "Change Business Name"}] ,
258
+ "recommended_sites_item46": [
259
+ {"title": "Online Services for Federal Contractors"},
260
+ {"url": "http://www.sba.gov/category/navigation-structure/contracting/getting-started"},
261
+ {"description": "Access tools that allow contractors to submit information to the government over the web. "},
262
+ {"keywords": "contractor services"},
263
+ {"category": "managing a business"},
264
+ {"orders": 1},
265
+ {"master_term": "Online Services for Federal Contractors"}] ,
266
+ "recommended_sites_item18": [
267
+ {"title": "I Need Money - Where do I get it?"},
268
+ {"url": "http://community2.business.gov/t5/Small-Business-Cents/I-Need-Money-Where-do-I-get-it/ba-p/7284"},
269
+ {"description": "Read this business article in the Business.gov Community"},
270
+ {"keywords": "FINANCING A BUSINESS, I NEED MONEY WEAR, FINANCING SMALL BUSINESS, FINANCING YOUR BUSINESS, FINANCING FOR S CORPORATIONS, I NEED MONEY - WHERE DO I GET IT?, FINANCING, I NEED MONEY WHERE, NEED MONEYTO START MY BUSSENSS IN 49707, FINANCING BUSINESS, I NEED MONEY, I NEED BUSINESS FUNDING I WANT TO START AND HELP COMMUNITY TO CREATE JOBS I NEED MONEY TO START, FINANCING FOR ENTREPRENEURS"},
271
+ {"category": "other"},
272
+ {"orders": 2},
273
+ {"master_term": "Need Money"}] ,
274
+ "recommended_sites_item74": [
275
+ {"title": "Small Business Guide to Emergency Preparedness"},
276
+ {"url": "http://www.sba.gov/content/disaster-preparedness"},
277
+ {"description": "Resources to help you plan for and recover from emergencies and natural disasters"},
278
+ {"keywords": "disaster preparedness, emergency preparedness"},
279
+ {"category": "managing a business"},
280
+ {"orders": 1},
281
+ {"master_term": "emergency preparedness"}] ,
282
+ "recommended_sites_item157": [
283
+ {"title": "Trade Statistics"},
284
+ {"url": "http://www.sba.gov/content/trade-statistics"},
285
+ {"description": "Find statistics on U.S. trade and exports"},
286
+ {"keywords": "foreign trade statistics, trade statistics, export statistics"},
287
+ {"category": "managing a business"},
288
+ {"orders": 1},
289
+ {"master_term": "trade statistics"}] ,
290
+ "recommended_sites_item129": [
291
+ {"title": "Pre-employment background checks"},
292
+ {"url": "http://www.sba.gov/content/performing-pre-employment-background-checks"},
293
+ {"description": "Learn about employers rights for pre-employment background checks"},
294
+ {"keywords": "PRE-EMPLOYMENT SCREENING, PRE-EMPLOYMENT BACKGROUND, pre employment background checks, PRE-EMPLOYMENT CREDI CHECH, pre employment screening, PRE-EMPLOYMENT CREDIT CHECK"},
295
+ {"category": "business law"},
296
+ {"orders": 1},
297
+ {"master_term": "Background checks"}] ,
298
+ "recommended_sites_item1": [
299
+ {"title": "Dress Code Policies"},
300
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Dress-Code-Policies/ba-p/14727"},
301
+ {"description": "Read this business article in the Business.gov Community"},
302
+ {"keywords": "DRESS CODES, BUSINESS DRESS CODE, SALON DRESS CODES, CREATING A DRESS CODE, DRESS CODE, TANNING BUSINESS DRESS CODE, SALON BUSINESS DRESS CODE, DRESS CODE POLICY"},
303
+ {"category": "other"},
304
+ {"orders": 2},
305
+ {"master_term": "Dress Code"}] ,
306
+ "recommended_sites_item47": [
307
+ {"title": "Small Business Assistance \u0026 Training"},
308
+ {"url": "http://www.sba.gov/category/navigation-structure/counseling-training/online-small-business-training/starting-business"},
309
+ {"description": "Connect with free resources to help you get started and expand your small business"},
310
+ {"keywords": "small business tools, small business assistance, small business training, small business resources, small business help, small business advice"},
311
+ {"category": "starting a business"},
312
+ {"orders": 1},
313
+ {"master_term": "Small Business Assistance \u0026 Training"}] ,
314
+ "recommended_sites_item19": [
315
+ {"title": "Loans for Business Owners with Poor Credit Scores"},
316
+ {"url": "http://community2.business.gov/t5/Small-Business-Cents/Loans-for-Business-Owners-with-Poor-Credit-Scores/ba-p/2293"},
317
+ {"description": "Read this business article in the Business.gov Community"},
318
+ {"keywords": "SMALL BUSINESS LOANS FOR POOR CREDIT, BAD CREDIT, BAD CREDIT LOANS, LOANS POOR CREDIT, HELP GETTING SMALL BUSINESS STARTED /PERSON WITH BAD CREDIT, LOANS FOR BAD CREDIT, LOANS AND BAD CREDIT, LENDERS OR BANKSWHO GIVES PERSONAL LOANS TO PEOPLE WITH BAD CREDIT, LOANS FOR BUSINESS OWNERS WITH POOR CREDIT, POOR CREDIT LOAN, LENDERS OR BANKS WHO GIVES PERSONAL LOANS TO PEOPLE WITH BAD CREDIT, BAD CREDIT BUSINESS LOANS"},
319
+ {"category": "other"},
320
+ {"orders": 2},
321
+ {"master_term": "Poor Credit"}] ,
322
+ "recommended_sites_item75": [
323
+ {"title": "Drug Free Workplace Policies"},
324
+ {"url": "http://www.sba.gov/content/drug-free-workplace"},
325
+ {"description": "Creating and Maintaining Drug Free Workplaces"},
326
+ {"keywords": "Drug Free Workplace Policies, DRUG FREE WORKPLACE, DRUG FREE POLICY SHEET"},
327
+ {"category": "business law"},
328
+ {"orders": 1},
329
+ {"master_term": "Drug Free Workplace"}] ,
330
+ "recommended_sites_item158": [
331
+ {"title": "Truth in Advertising"},
332
+ {"url": "http://www.sba.gov/content/truth-advertising"},
333
+ {"description": "Learn about requirements for truth in advertising"},
334
+ {"keywords": "deceptive pricing, TRUTH-IN-ADVERTISING LAWS, truth in advertising"},
335
+ {"category": "business law"},
336
+ {"orders": 1},
337
+ {"master_term": "truth in advertising"}] ,
338
+ "recommended_sites_item48": [
339
+ {"title": "Small Business Loans \u0026 Grants"},
340
+ {"url": "http://www.sba.gov/category/navigation-structure/loans-grants/small-business-loans"},
341
+ {"description": "Learn about various loan and grant options available to small business owners "},
342
+ {"keywords": null},
343
+ {"category": "financing a business"},
344
+ {"orders": 1},
345
+ {"master_term": "Small Business Loans \u0026 Grants"}] ,
346
+ "recommended_sites_item76": [
347
+ {"title": "Economic Indicators"},
348
+ {"url": "http://www.sba.gov/content/economic-indicators"},
349
+ {"description": "Data on major economic indicators used to measure the U.S. economy"},
350
+ {"keywords": "economic statistics"},
351
+ {"category": "managing a business"},
352
+ {"orders": 1},
353
+ {"master_term": "economic statistics"}] ,
354
+ "recommended_sites_item2": [
355
+ {"title": "How Do I Find an EIN?"},
356
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/How-Do-I-Find-an-EIN/ba-p/14469"},
357
+ {"description": "Read this business article in the Business.gov Community"},
358
+ {"keywords": "GET A FEDERAL TAX ID, FIND TAX ID, SEARCH EIN, VALIDATE EIN, FIND A COMPANY BY EIN, FEDERAL EIN #, EMPLOYER IDENTIFICATION NUMBER, TAX ID #, FEDERAL TAX ID SERACH, EIN LOOK UP, FIND A BUSINESS TAX ID, EIN NUMBERS, EIN#, EIN NUMBER, GET TAX ID #, VERIFY EMPLOYER IDENTIFICATION NUMBER, EMPLOYER IDENTIFICATION NUMER, FEDERAL TAX ID, EIN BUSINESS CHECK, EIN OBTAIN, FIND EIN NUMBER, EIN PERMIT, EMPLOYER ID NUMBER, NEED TO RETRIEVE EIN, LOOK UP EIN NUMBER, LOOK UP EIN, LOST EIN, EIN, TAX IDENTIFICATION NUMBERS, OBTAIN TAX ID NUMBER, EIN SEARCH, TAX IDENTIFICATION NUMBER, TAX ID/EIN, RETRIEVE MY EIN INFO, FIND FEDERAL TAX ID, FEDERAL TAX ID NUMBER, EIN LOOKUP, EMPLOYER IDENTIFICATION NUMBER (EIN) LOOKUP, VERIFY AN EIN, EIN SEARCH, MISPLACED EIN, HOW TO FIND FEDERAL TAX ID PREVIOUSLY ISSUED, FIND EIN, TAX ID NUMBER, TAX ID, CASTLE ROCKS EIN # TEXAS, FEIN SEARCH, TAX ID SEARCH, GET A TAX ID NUMBER, EMPLOYER IDENTIFICATION UMBER, VERIFY EIN, TAX ID NUMBERS, FIND AN EMPLOYER ID NUMBER, I CANT FIND MY EIN NUMBER"},
359
+ {"category": "other"},
360
+ {"orders": 2},
361
+ {"master_term": "EIN"}] ,
362
+ "recommended_sites_item159": [
363
+ {"title": "Types of Business Insurance"},
364
+ {"url": "http://www.sba.gov/content/types-business-insurance"},
365
+ {"description": "Learn about the various types of business insurance, including liability and property insurance"},
366
+ {"keywords": "professional liability, commercial property, home based business insurance, general liability, product liability"},
367
+ {"category": "financing a business"},
368
+ {"orders": 1},
369
+ {"master_term": "Types of Business Insurance"}] ,
370
+ "recommended_sites_item49": [
371
+ {"title": "Protect Trade Secrets \u0026 Intellectual Property"},
372
+ {"url": "http://www.sba.gov/category/navigation-structure/starting-managing-business/starting-business/business-law-regulations/intellectual-property"},
373
+ {"description": "How to protect trade secrets, patents, trademarks, and copyright"},
374
+ {"keywords": "trade secrets"},
375
+ {"category": "business law"},
376
+ {"orders": 1},
377
+ {"master_term": "trade secrets"}] ,
378
+ "recommended_sites_item77": [
379
+ {"title": "Ecosystems Protection"},
380
+ {"url": "http://www.sba.gov/content/ecosystems"},
381
+ {"description": "Find information about complying with ecosystems protection regulations"},
382
+ {"keywords": "wetlands, Ecosystems, watersheds"},
383
+ {"category": "business law"},
384
+ {"orders": 1},
385
+ {"master_term": "Ecosystems Protection"}] ,
386
+ "recommended_sites_item3": [
387
+ {"title": "How to Become (And Stay) Self-Employed, According to the Law"},
388
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/How-to-Become-And-Stay-Self-Employed-According-to-the-Law/ba-p/11838"},
389
+ {"description": "Read this business article in the Business.gov Community"},
390
+ {"keywords": "SELF EMPLOYEED, SELF EMPLOYED TAX, SELF -EMPLOYMENT, INCORPORATING YOURSELF, SELF-EMPLOYED, FEDERAL TAXES FOR SELF EMPLOYED, TEXAS SELF EMPLOYMENT TAX, SELF-EMPLOMENT, SELF EMPLOYMENT, AFFORDABLE HEALTH INSURANCE FOR SELF EMPLOYED IN FLORIDA, SELF EMPLOYMENT TAX FORMS, SELF EMPLOYMENT TAX, DO I NEED TO PAY TAX AS A SELF-EMPLOYER, SELF EMPLOYMENT TAX TEXAS, SELF EMPLOYMENT TAX RETURN, SELF-EMPLOYMENT, ALASKA SELF EMPLOYMENT TAXES, SELF EMPLOYED, SELF EMPLOYEMENT, SELF EMLOYER STEPS, SELF IMPLOYMENT TAXES"},
391
+ {"category": "other"},
392
+ {"orders": 2},
393
+ {"master_term": "Self Employed"}] ,
394
+ "recommended_sites_item100": [
395
+ {"title": "Green Commuting "},
396
+ {"url": "http://www.sba.gov/content/green-commuting"},
397
+ {"description": "Learn about various methods of green commuting, including telecommuting and mass transit"},
398
+ {"keywords": "telecommuting, green commuting"},
399
+ {"category": "managing a business"},
400
+ {"orders": 1},
401
+ {"master_term": "green commuting"}] ,
402
+ "recommended_sites_item78": [
403
+ {"title": "Environmental Emergency Preparedness"},
404
+ {"url": "http://www.sba.gov/content/emergency-preparedness-and-disaster-assistance-state-government-information"},
405
+ {"description": "How to prepare for and recover from environmental disasters"},
406
+ {"keywords": "emergency preparedness, chemical accidents, radiological emergencies, environmental disasters"},
407
+ {"category": "business law"},
408
+ {"orders": 2},
409
+ {"master_term": "environmental emergencies"}] ,
410
+ "recommended_sites_item4": [
411
+ {"title": "How to Legally Sell Your Goods at Fairs, Garage Sales, Flea Markets, and Craft Shows"},
412
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/How-to-Legally-Sell-Your-Goods-at-Fairs-Garage-Sales-Flea/ba-p/26883"},
413
+ {"description": "Read this business article in the Business.gov Community"},
414
+ {"keywords": "tag sales, garage sales, craft fair, CRAFT FAIRS, flea markets, LICENSE PERMIT TO SELL CRAFT IN FAIR, SALES TAX NUMBER FOR CRAFT FAIRS, garage sale, farmers' markets, craft show, flea market, LICENSE PERMIT TO SALE CRAFT IN FAIR, craft shows, farmer's market, fair, LICENSE PERMIT SALE CRAFT IN FAIR, farmers market, flea market vendors, farmer's markets, tag sale, farmers markets, ART FAIR, DO I NEED A BUSINESS LISCENCE IN MISSOURI TO SELL CRAFTS AT PARTIES FAIRS, flea market vendor, COOKIES AND CANDIES FOR SALE AT CRAFT SHOWS"},
415
+ {"category": "other"},
416
+ {"orders": 2},
417
+ {"master_term": "Flea Markets"}] ,
418
+ "recommended_sites_item101": [
419
+ {"title": "Green Purchasing"},
420
+ {"url": "http://www.sba.gov/content/green-guide-new-businesses"},
421
+ {"description": "Learn about green purchasing and how it can affect your bid on a government contract"},
422
+ {"keywords": "Green Purchasing"},
423
+ {"category": "managing a business"},
424
+ {"orders": 1},
425
+ {"master_term": "Government Green Purchasing"}] ,
426
+ "recommended_sites_item130": [
427
+ {"title": "Pesticide Regulations"},
428
+ {"url": "http://www.sba.gov/content/pesticides"},
429
+ {"description": "Learn about the regulation of pesticides in the United States"},
430
+ {"keywords": "fifra, pesticides, pesticide regulations"},
431
+ {"category": "business law"},
432
+ {"orders": 1},
433
+ {"master_term": "Pesticides"}] ,
434
+ "recommended_sites_item20": [
435
+ {"title": "Paying the Boss: 4 Tips for Setting Your Own Salary"},
436
+ {"url": "http://community2.business.gov/t5/Small-Business-Cents/Paying-the-Boss-4-Tips-for-Setting-Your-Own-Salary/ba-p/8019"},
437
+ {"description": "Read this business article in the Business.gov Community"},
438
+ {"keywords": "PAYING THE BOSS: TIPS FOR SETTING YOUR OWN SALARY, HOW TO PAY YOURSELF MORE, HOW DO YOU PAY YOURSELF, HOW DO I PAY MYSELF, HOW TO PAY YOURSELF"},
439
+ {"category": "other"},
440
+ {"orders": 2},
441
+ {"master_term": "Paying the Boss"}] ,
442
+ "recommended_sites_item79": [
443
+ {"title": "Employee Handbook Information"},
444
+ {"url": "http://www.sba.gov/content/employee-handbooks"},
445
+ {"description": "Learn about how to create an Employee Handbook"},
446
+ {"keywords": "HANDBOOK TEMPLATE, EMPLOYMENT HANDBOOK, EMPLOYMEE HANDBOOK, EMPLOYEE HANDBOOKS, Employee Handbook, HOW TO CREATE AN EMPLOYEE HANDBOOK, EMPLOYEE HANDBOOK TEMPLATE, HOW TO CREATE AN EMPLOYEE HANDBOOK"},
447
+ {"category": "business law"},
448
+ {"orders": 1},
449
+ {"master_term": "Employee Handbook"}] ,
450
+ "recommended_sites_item5": [
451
+ {"title": "Human Resources 101: A Quick Guide for Employers"},
452
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Human-Resources-101-A-Quick-Guide-for-Employers/ba-p/19610"},
453
+ {"description": "Read this business article in the Business.gov Community"},
454
+ {"keywords": "HIRE AN EMPLOYEE, HIRE EMPLOYEE, HIRE EMPLOYEES"},
455
+ {"category": "other"},
456
+ {"orders": 2},
457
+ {"master_term": "HR 101"}] ,
458
+ "recommended_sites_item102": [
459
+ {"title": "Green Product Development"},
460
+ {"url": "http://www.sba.gov/content/green-product-development"},
461
+ {"description": "Learn how businesses are using environmental problems to innovate and create services"},
462
+ {"keywords": "green energy products, environmental services, green product development, take back, green product, manufacturing, green products, servicizing, environmental product"},
463
+ {"category": "managing a business"},
464
+ {"orders": 1},
465
+ {"master_term": "Going Green"}] ,
466
+ "recommended_sites_item131": [
467
+ {"title": "Pollutants, Chemicals and Toxic Substances"},
468
+ {"url": "http://www.sba.gov/content/pollutants-chemicals"},
469
+ {"description": "Learn about the requirements to test chemicals for health and environmental effects"},
470
+ {"keywords": "tcsa, chemicals, toxic substances, asbestos, pollutants, mercury, Toxic Substances Control Act, lead"},
471
+ {"category": "business law"},
472
+ {"orders": 1},
473
+ {"master_term": "Pollutants"}] ,
474
+ "recommended_sites_item21": [
475
+ {"title": "SBA-Approved Franchises: How do they work and How does the loan application process change?"},
476
+ {"url": "http://community2.business.gov/t5/Small-Business-Cents/SBA-Approved-Franchises-How-do-they-work-and-How-does-the-loan/ba-p/24615"},
477
+ {"description": "Read this business article in the Business.gov Community"},
478
+ {"keywords": "sba-approved franchises, sba approved franchises, SBA APPROVED FRANCHISE, sba-approved franchise"},
479
+ {"category": "other"},
480
+ {"orders": 2},
481
+ {"master_term": "SBA Approved"}] ,
482
+ "recommended_sites_item6": [
483
+ {"title": "Marketing to Children: Where is the Line and Who Enforces it?"},
484
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Marketing-to-Children-Where-is-the-Line-and-Who-Enforces-it/ba-p/25477"},
485
+ {"description": "Read this business article in the Business.gov Community"},
486
+ {"keywords": "ADVERTISING AIMED AT CHILDREN, ADVERTISING CHILDRENS PRODUCTS, CHILDREN AND ADVERTISING, LAWS FOR ADVERTISING TO CHILDREN, CHILD ADVERTISING, CHILDREN ADVERSTISING"},
487
+ {"category": "other"},
488
+ {"orders": 2},
489
+ {"master_term": "Marketing Children"}] ,
490
+ "recommended_sites_item103": [
491
+ {"title": "Employing People with Disabilities"},
492
+ {"url": "http://www.sba.gov/content/hiring-people-with-disabilities"},
493
+ {"description": "Learn about requirements to accommodate employees with disabilities"},
494
+ {"keywords": "employees with disabilities, disabled employees, people with disabilities"},
495
+ {"category": "business law"},
496
+ {"orders": 1},
497
+ {"master_term": "Employees with Disabilities"}] ,
498
+ "recommended_sites_item160": [
499
+ {"title": "Labor Union Information"},
500
+ {"url": "http://www.sba.gov/content/unions"},
501
+ {"description": "Find information about unions for employers and union members"},
502
+ {"keywords": "labor unions, trade unions, local unions, unions"},
503
+ {"category": "business law"},
504
+ {"orders": 1},
505
+ {"master_term": "Unions"}] ,
506
+ "recommended_sites_item132": [
507
+ {"title": "Pollution Prevention and Recycling"},
508
+ {"url": "http://www.sba.gov/content/pollution-prevention"},
509
+ {"description": "Get information on how to make changes that reduce energy costs and improve energy efficiency"},
510
+ {"keywords": "Pollution Prevention, Recycling, recycle"},
511
+ {"category": "business law"},
512
+ {"orders": 1},
513
+ {"master_term": "Pollution Prevention and Recycling"}] ,
514
+ "recommended_sites_item50": [
515
+ {"title": "Ten Steps to Hiring New Employees"},
516
+ {"url": "http://www.sba.gov/content/10-steps-hiring-your-first-employee"},
517
+ {"description": "Learn the legal steps to hiring new employees"},
518
+ {"keywords": "employment, employees, employee"},
519
+ {"category": "business law"},
520
+ {"orders": 2},
521
+ {"master_term": "employment"}] ,
522
+ "recommended_sites_item22": [
523
+ {"title": "Employee Passes Away: Legal and Financial Considerations for Employers"},
524
+ {"url": "http://community2.business.gov/t5/Small-Business-Cents/When-An-Employee-Passes-Away-Legal-and-Financial-Considerations/ba-p/25607"},
525
+ {"description": "Read this business article in the Business.gov Community"},
526
+ {"keywords": "death of employees, EMPLOYEE DIES, EMPLOYEE PASSES AWAY, employee death, DECEASED EMPLOYEE, death of employee, PAYING DECEASED EMPLOYEES, FINAL PAY AFTER EMPLOYEE DEATH, EMPLOYER PAYMENTS AFTER DEATH OF EMPLOYEE, death of an employee, DECEASED EMPLOYEES, EMPLOYEES DEATH, employee passed away, employee's death, FINAL PAY RULES FOR RECENTLY DECEASED EMPLOYEE VIRGINIA, DEATH OF AN EMPLOYEE WHILE AN ACTIVE EMPLOYEE"},
527
+ {"category": "other"},
528
+ {"orders": 2},
529
+ {"master_term": "Employee Death"}] ,
530
+ "recommended_sites_item7": [
531
+ {"title": "NAICS Codes 101"},
532
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/NAICS-Codes-101/ba-p/17971"},
533
+ {"description": "Read this business article in the Business.gov Community"},
534
+ {"keywords": "NAICS 423910, NAICS CODE, NAICS CODES., HERBICIDES NAICS, NAICS 541613 SIZE STANDARD, NAICS, NAICS SIZE STANDARD, CHANGE NAICS CODE, NAICS CODE 4543, INSECTICIDES NAICS, APPLY FOR NAICS, NAICS 453310"},
535
+ {"category": "other"},
536
+ {"orders": 2},
537
+ {"master_term": "NAICS Codes"}] ,
538
+ "recommended_sites_item104": [
539
+ {"title": "Starting \u0026 Running a Home Based Business"},
540
+ {"url": "http://www.sba.gov/content/home-based-business"},
541
+ {"description": "How to start a business out of your home"},
542
+ {"keywords": "business at home, home based it firm , HOME-BASED BUSINESS, in home business, home based research opportunities , home based business regulations, breadbaking home business, home based internet work , HOME-BASED JOBS, work from home, home based networking business , export home based business, home based employment, real home based businesses, STARTING HOME-BASED, work from home business, home based business opportunities , HOME-BASED, work at home, home based home health care agency , HOME-BASED BUSINESSES, home business, home based facial business , steps for starting home based salon business in usa?"},
543
+ {"category": "other"},
544
+ {"orders": 1},
545
+ {"master_term": "home based business"}] ,
546
+ "recommended_sites_item161": [
547
+ {"title": "Managing Business Finances"},
548
+ {"url": "http://www.sba.gov/content/using-business-vs-personal-finances"},
549
+ {"description": "Get information about managing the financial operations of your business"},
550
+ {"keywords": "credit, finance, debt, lease"},
551
+ {"category": "financing a business"},
552
+ {"orders": 1},
553
+ {"master_term": "Managing Business Finances"}] ,
554
+ "recommended_sites_item133": [
555
+ {"title": "Product Labeling Rules"},
556
+ {"url": "http://www.sba.gov/content/product-labeling"},
557
+ {"description": "Learn how to properly label and package products"},
558
+ {"keywords": "product labeling, LABELING QUESTIONS, product labeling used components ft, HOW TO LABEL SNACK FOOD PACKAGES, product labeling used components on device, LABELING CONSUMER ELECTRONICS VOLTAGE, product packaging, HOW TO LABEL PACKAGED NUTS FOR NUTRITION FACTS, product advertising, labelling, HOW TO LABEL PACKAGED NUTS FOR NUTRITIONAL FACTS, LABELING CONSUMER ELECTRONICS VOLTAGE REQUIREMENTS, labeling, FOOD LABEL"},
559
+ {"category": "business law"},
560
+ {"orders": 1},
561
+ {"master_term": "product labeling"}] ,
562
+ "recommended_sites_item51": [
563
+ {"title": "Business Names"},
564
+ {"url": "http://www.sba.gov/content/5-steps-registering-your-business"},
565
+ {"description": "Get information pertaining to naming your business, registering and incorporating your business"},
566
+ {"keywords": "business names, business name, Business Name, trade name, name a business, business registration"},
567
+ {"category": "registering a business"},
568
+ {"orders": 1},
569
+ {"master_term": "Business Names"}] ,
570
+ "recommended_sites_item23": [
571
+ {"title": "10 Regulatory Steps You Must Follow When Hiring Your First Employee"},
572
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/10-Regulatory-Steps-You-Must-Follow-When-Hiring-Your-First/ba-p/5071"},
573
+ {"description": "Read this business article in the Business.gov Community"},
574
+ {"keywords": "TEN STEPS TO HIRING, TEN STEPS TO HIRING FIRST EMPLOYEE, 10 STEPS TO HIRING YOUR FIRST EMPLOYEE, 10 STEPS TO HIRE EMPLOYEES, TEN STEPS TO HIRING NEW EMPLOYEES, TEN STEPS TO HIRING YOUR FIRST EMPLOYEE, 10 STEPS TO HIRE NEW EMPLOYEE, TEN STEPS TO HIRING YOUR FIRST EMPLOYED, TEN STEPS TO HIRING YOUR FIRST EMPLOYESS, 10 STEPS TO HIRING, TEN STEPS HIRING"},
575
+ {"category": "other"},
576
+ {"orders": 2},
577
+ {"master_term": "Hiring First Employee"}] ,
578
+ "recommended_sites_item8": [
579
+ {"title": "Registering as a Woman, Minority, or Veteran Owned Business - Is it Necessary?"},
580
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Registering-as-a-Woman-Minority-or-Veteran-Owned-Business-Is-it/ba-p/23274"},
581
+ {"description": "Read this business article in the Business.gov Community"},
582
+ {"keywords": "WOMEN MINORITY CERTIFICATION, WOMEN OWNED BUSINESS REGISTRATION, WOMAN MINORITY BUSINESS, Minority Status, REGISTER AS MINORITY BUSINESS, Women, REGISTERING MINORITY BUSINESS, WOMEN OWNED, Minority Business Registration, Minority-Owned Businesses, Minority, Women Owned Business, WOMEN OWNED SELF CERTIFICATION, APPLICATION FOR WOMEN OWNED BUSINESS, Minoirty-Owned, Minority-Owned Business, WOMEN \u0026 MINORITY, MINORITY AND WOMEN OWNED BUSINESS, MINORITY CERTIFICATION, Application for Minority Owned Business, Minority Application, Minority Owned Business, Women-Owned, REGISTER A MINORITY BUSINESS, Minority-Owned, MINORITY CERTIFICATE, Women Owned Businesses, REGISTER AS WOMEN OWNED, REGISTER MINORITY, MINORITY BUSINESS APPLICATION, MINORITY REGISTRATION, MINORITY OWNED BUSINESS CERTIFICATE, REGISTER AS MINORITY, HOW TO BECOME CERTIFIED WOMEN OWNED, Minoirty Business, REGISTER A MINORITY BUSINESS IN FLORIDA, CERTIFICATION FOR WOMEN OWNED, MINORITY WOMEN OWNED CERTIFICATION, MINORITY BUSINESS CERTIFICATE, Minority O"},
583
+ {"category": "other"},
584
+ {"orders": 2},
585
+ {"master_term": "Registering Minority"}] ,
586
+ "recommended_sites_item105": [
587
+ {"title": "Household Employees"},
588
+ {"url": "http://www.sba.gov/content/household-employees"},
589
+ {"description": "Find information about employing workers in your household"},
590
+ {"keywords": "cleaning people, household employers, nanny, private nurse, babysitter, caretaker, Household Employees"},
591
+ {"category": "business law"},
592
+ {"orders": 1},
593
+ {"master_term": "Household Employees"}] ,
594
+ "recommended_sites_item162": [
595
+ {"title": "Venture Capital Financing"},
596
+ {"url": "http://www.sba.gov/content/venture-capital-primer-small-business"},
597
+ {"description": "Get info about seed and venture capital to start your business"},
598
+ {"keywords": "venture capital, private equity, seed"},
599
+ {"category": "financing a business"},
600
+ {"orders": 1},
601
+ {"master_term": "venture capital"}] ,
602
+ "recommended_sites_item134": [
603
+ {"title": "Production \u0026 Sales Statistics"},
604
+ {"url": "http://www.sba.gov/content/production-sales-statistics"},
605
+ {"description": "Find statistics on the production and sales of goods in the U.S."},
606
+ {"keywords": "production statistics, manufacturing statistics"},
607
+ {"category": "managing a business"},
608
+ {"orders": 1},
609
+ {"master_term": "production statistics"}] ,
610
+ "recommended_sites_item52": [
611
+ {"title": "Collecting Debts"},
612
+ {"url": "http://www.sba.gov/content/accepting-cash-only"},
613
+ {"description": "Learn how to legally and successfully collect debt"},
614
+ {"keywords": "collecting debt, overdue payments, customer debt, debt collection"},
615
+ {"category": "financing a business"},
616
+ {"orders": 1},
617
+ {"master_term": "Collecting Debts"}] ,
618
+ "recommended_sites_item24": [
619
+ {"title": "Business Expenses and Tax Deductions Explained - A 101 for Small Business Owners"},
620
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/Business-Expenses-and-Tax-Deductions-Explained-A-101-for-Small/ba-p/24309"},
621
+ {"description": "Read this business article in the Business.gov Community"},
622
+ {"keywords": "TRAVEL EXPENSE, BUSINESS EXPENSES, BUSINESS EXPENSE, SMALL BUSINESS EXPENSES AND TAXES DEDUCTIONS, DEDUCTIBLE BUSINESS EXPENSES, SMALL BUSINESS TAX DEDUCTIONS, TRAVEL EXPENSES, BUSINESS EXPENSES TAX"},
623
+ {"category": "other"},
624
+ {"orders": 2},
625
+ {"master_term": "Business Expenses"}] ,
626
+ "recommended_sites_item9": [
627
+ {"title": "Resources for Starting a Non-Emergency Medical Transportation Business"},
628
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Resources-for-Starting-a-Non-Emergency-Medical-Transportation/ba-p/20273"},
629
+ {"description": "Read this business article in the Business.gov Community"},
630
+ {"keywords": "NON-EMERGENCY MEDICAL TRANSPORTATION IN ILLINOIS, NON EMERGENCY MEDICAL TRANSPORTATION IN GEORGIA, MISSOURI NON EMERGENCY TRANSPORTATION, FLOSSMOOR IL NONEMERGENCY MEDICAL TRANSPORTATION, NON EMERGENCY MEDICAL TRANSPORT, MEDICAL NON-EMERGENCY TRANSPORTATION CONTRACTS, PATIENT NON EMERGENCY TRANSPORT, NON-EMERGENCY MEDICAL TRANSPORTATION 253 VOTES PERMITS LICENSES AND REGULATIONS FOR NON-EMERGENCY TRANSPORTATION BUSINESSES., START A NON EMERGENCY TRANSPORTATION BUSINESS, HOW TO START A NON EMERGENCY MEDICAL TRANSPORTATION BUSINESS, NON EMERGENCY MEDICAL TRANSPORTATION SERVICE, JOB NON EMERGENCY TRANSPORTATION BUSINESS IN SC, NON EMERGENCY MEDICAL TRANSPORTATION BUSINESS, START A NON EMERGENCY TRANSPORTATION BUSINESS IN SC, PATIENT NON EMERGENCY TRANSPORT IN VA, NON-EMERGENCY TRANSPORTATION BUSINESS IN ILLINOIS, BUISENESS PLAN FOR NON EMERGENCY TRANSPORTATION, NON EMERGENCY TRANSPORTATION FOR SENIORS IN TN., NON EMERGENCY MEDICAL TRANSPORTATION, NON EMERGENCY TRANSPORTATION BUSINESS IN GA, NON EMERGENCY TRANS"},
631
+ {"category": "other"},
632
+ {"orders": 2},
633
+ {"master_term": "Non-Emergency Medical"}] ,
634
+ "recommended_sites_item106": [
635
+ {"title": "Advertising and Marketing Laws"},
636
+ {"url": "http://www.sba.gov/content/how-comply-with-advertising-laws"},
637
+ {"description": "Learn about the laws for advertising and marketing your products"},
638
+ {"keywords": "advertising, ADVERTISING LAWS, small business advertising, small business marketing, ADVERTISING LAW, marketing"},
639
+ {"category": "business law"},
640
+ {"orders": 2},
641
+ {"master_term": "advertising"}] ,
642
+ "recommended_sites_item80": [
643
+ {"title": "Employment Discrimination and Harassment"},
644
+ {"url": "http://www.sba.gov/content/employment-discrimination-and-harassment"},
645
+ {"description": "Learn about laws pertaining to Employment Discrimination and Harassment"},
646
+ {"keywords": "workplace harassment, equal employment, discrimination law, DISCRIMINATION, Employment Discrimination and Harassment, AGE DISCRIMINATION, harassment law, employment discrimination, DISCRIMINATION LAWS AND HIRING, anti-discrimination law"},
647
+ {"category": "business law"},
648
+ {"orders": 1},
649
+ {"master_term": "Discrimination"}] ,
650
+ "recommended_sites_item163": [
651
+ {"title": "Veteran Owned Businesses"},
652
+ {"url": "http://www.sba.gov/content/veteran-service-disabled-veteran-owned"},
653
+ {"description": "Find resources to help veterans start their own businesses and locate government contracting jobs"},
654
+ {"keywords": "veteran grants , grants for veterans small business , Veterans, veteran grant , veterans grants , Service disabled veterans, grants for veterns small business , veterans start up grants, Veteran Business Development, veteran small business grants , grants for veterans "},
655
+ {"category": "starting a business"},
656
+ {"orders": 1},
657
+ {"master_term": "Veteran Owned Businesses"}] ,
658
+ "recommended_sites_item135": [
659
+ {"title": "Employee Benefits"},
660
+ {"url": "http://www.sba.gov/content/providing-employee-benefits"},
661
+ {"description": "Learn about requirements for Employee Benefits"},
662
+ {"keywords": "retirement plans, COBRA, employee benefit plans, COBRA INFO, health plans, social security taxes, COBRA/MEDICAL, workers compensation, benefit plans, COBRA COVERAGE"},
663
+ {"category": "business law"},
664
+ {"orders": 1},
665
+ {"master_term": "Benefits"}] ,
666
+ "recommended_sites_item25": [
667
+ {"title": "Employee Benefit Plans: What\u00e2\u20ac\u2122s Law and What\u00e2\u20ac\u2122s Optional"},
668
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/Employee-Benefit-Plans-What-s-Law-and-What-s-Optional/ba-p/2503"},
669
+ {"description": "Read this business article in the Business.gov Community"},
670
+ {"keywords": "EMPLOYEE BENEFIT PLANS, EMPLOYEE BENEFITS, MANDATED EMPLOYEE BENEFITS, BENEFIT PACKAGES, BENEFITS, MA REQUIRED BENEFITS, BENEFITS REQUIREMENTS FOR SMALL BUSINESSES IN CALIFORNIA, EXTENDED BENEFITS"},
671
+ {"category": "other"},
672
+ {"orders": 2},
673
+ {"master_term": "Employee Benefits"}] ,
674
+ "recommended_sites_item107": [
675
+ {"title": "Business Name Search \u0026 Registration"},
676
+ {"url": "http://www.sba.gov/content/how-do-i-register-business-name"},
677
+ {"description": "Find out where to search to find DBA filings in your state."},
678
+ {"keywords": "U.S. BUSINESS NAME SEARCH, FILING a DBA, DBA, LOOK UP A BUSINESS NAME, BUSINESS NAME LOOK UP, BNESS NAME SEARCH, DOING BUSINESS AS, search existing dba , FORM TO FILE DBA, File a DBA, HOW CAN I REGISTER MY BUSINESS NAME, BUSINESS NAME SEARCH, NAME SEARCH, US BUSINESS NAME SEARCH, FORM DBA, FIND a DBA, TRADE NAME SEARCH, VERIFY A BUSINESS NAME, COMPANY NAME SEARCH, BUS NAME SEARCH, search existing dbas, FILE DBA, DBA Application, FICTISIOUS BUSINESS NAME, SEARCH BUSINESS NAMES, BUSINESS NAME SEARCH MICHIGAN, DBA NAME SEARCH, FORMS FOR DBA, Search for DBA, BUSINESS NAME REGISTRY, FILING A BUSINESS NAME, GET A DBA, BUISNESS NAME SEARCH, dba business listing search, BUSINESS CERTIFICATE DBA, DBA FORMs, REGISTERED BUSINESS NAMES, BUSINESS NAME REGISTRATION, BUSINESS NAME SEARCHES, REGISTER BUSINESS NAME, DBA BUSINESS, DBA Search, SEARCH BUSINESS NAME, REGISTERING BUSINESS NAME, IS MY BUSINESS NAME AVAILABLE?, BUSINESS NAME SEARCH FOR MARYLAND, DBA Names, DOING BUSINESS AS DBA, DBA FORM, LOOK UP BUSINESS NAMES, HOW"},
679
+ {"category": "registering a business"},
680
+ {"orders": 2},
681
+ {"master_term": "dba seach"}] ,
682
+ "recommended_sites_item81": [
683
+ {"title": "Employment and Labor Laws"},
684
+ {"url": "http://www.sba.gov/content/employment-law-basics"},
685
+ {"description": "How to manage employees within the law"},
686
+ {"keywords": "employee, employment, employees"},
687
+ {"category": "business law"},
688
+ {"orders": 1},
689
+ {"master_term": "employment"}] ,
690
+ "recommended_sites_item53": [
691
+ {"title": "Accepting Cash and Checks"},
692
+ {"url": "http://www.sba.gov/content/accepting-checks"},
693
+ {"description": "Learn about best practices for accepting cash and checks at your place of business"},
694
+ {"keywords": "accepting checks, check policies, cash, check policy, bounced check, checks, check transmission"},
695
+ {"category": "financing a business"},
696
+ {"orders": 1},
697
+ {"master_term": "accepting checks"}] ,
698
+ "recommended_sites_item164": [
699
+ {"title": "Employing Veterans"},
700
+ {"url": "http://www.sba.gov/content/veterans-business-outreach-centers"},
701
+ {"description": "Find out about how employers can choose to hire veterans first"},
702
+ {"keywords": "managing veterans"},
703
+ {"category": "business law"},
704
+ {"orders": 1},
705
+ {"master_term": "Hiring veterans"}] ,
706
+ "recommended_sites_item136": [
707
+ {"title": "Register as a Federal Contractor"},
708
+ {"url": "http://www.sba.gov/content/register-government-contracting"},
709
+ {"description": "Find steps to get registered as Federal Contractor"},
710
+ {"keywords": "Contractor Registration"},
711
+ {"category": "managing a business"},
712
+ {"orders": 1},
713
+ {"master_term": "Contractor Registration"}] ,
714
+ "recommended_sites_item26": [
715
+ {"title": "Get to the Top! - Tips for Making your Business Web Site More Prominent in an Online Search"},
716
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/Get-to-the-Top-Tips-for-Making-your-Business-Web-Site-More/ba-p/30963"},
717
+ {"description": "Read this business article in the Business.gov Community"},
718
+ {"keywords": "SEO, SEARCH ENGINE OPTIMIZATION, QUESTION ABOUT SEO, SEARCH ENGINE"},
719
+ {"category": "other"},
720
+ {"orders": 2},
721
+ {"master_term": "SEO"}] ,
722
+ "recommended_sites_item108": [
723
+ {"title": "Expand Your Business"},
724
+ {"url": "http://www.sba.gov/content/ideas-growing-your-business"},
725
+ {"description": "Learn about resources available to help your small business grow and succeed"},
726
+ {"keywords": "Expand Your Business"},
727
+ {"category": "managing a business"},
728
+ {"orders": 1},
729
+ {"master_term": "Expand Your Business"}] ,
730
+ "recommended_sites_item82": [
731
+ {"title": "Employment Taxes"},
732
+ {"url": "http://www.sba.gov/content/employment-taxes-employers-and-self-employed-individuals"},
733
+ {"description": "Get information about withholding taxes from your employees"},
734
+ {"keywords": "employment taxes, withholding"},
735
+ {"category": "financing a business"},
736
+ {"orders": 1},
737
+ {"master_term": "Employment Taxes"}] ,
738
+ "recommended_sites_item54": [
739
+ {"title": "Farm Loans"},
740
+ {"url": "http://www.sba.gov/content/agriculture"},
741
+ {"description": "Learn about resources for the farm loan programs provided by U.S. Farm Service Agency (FSA)"},
742
+ {"keywords": "agricultural loans, farm loans, agriculture loans, fsa"},
743
+ {"category": "financing a business"},
744
+ {"orders": 1},
745
+ {"master_term": "Farm Loans"}] ,
746
+ "recommended_sites_item165": [
747
+ {"title": "Wage and Hour Laws"},
748
+ {"url": "http://www.sba.gov/content/wage-hour-laws"},
749
+ {"description": "Find information to help small businesses comply with Federal wage and hour laws"},
750
+ {"keywords": "hour laws, minimum wage, equal pay, overtime, Wage laws"},
751
+ {"category": "business law"},
752
+ {"orders": 1},
753
+ {"master_term": "Wage Laws"}] ,
754
+ "recommended_sites_item137": [
755
+ {"title": "Business Name Registration - Doing Business As"},
756
+ {"url": "http://www.sba.gov/content/register-your-fictitious-or-doing-business-dba-name"},
757
+ {"description": "Learn how to register a DBA business name with your state or local government."},
758
+ {"keywords": "renew dba , how to get a dba registration , irs dba requirements , renewing a dba , find dba , change dba , find dbas , dba appliation form , a and c doing business as, c \u0026 a doing business as , dba business listing search , information on dba , is the corporation at risk in dba , check dba availability , dba for internet sites , dba a class act , add to dba name , dba help , dba accounting , dba pay , dba regisration , llc dba , corporation as dba , dba license , dba format , llc veil pierced with dba , dba/llc, dba tax id , advantages of dba , does a pe need to have a dba , dba and business license , corporation name dba irs rules, dba renewal , file dba with united states department of revenue , doing business as forms, doing business as form "},
759
+ {"category": "registering a business"},
760
+ {"orders": 1},
761
+ {"master_term": "dba"}] ,
762
+ "recommended_sites_item27": [
763
+ {"title": "How to Register Your Small Business in Five Steps"},
764
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/How-to-Register-Your-Small-Business-in-Five-Steps/ba-p/4872"},
765
+ {"description": "Read this business article in the Business.gov Community"},
766
+ {"keywords": "HOW CAN I REGISTER MY BUSINESS NAME, REGISTER BUSINESS NAME, REGISTERING A BUSINESS, HOW TO REGISTER BUSINESS, REGISTER, REGISTERED BUSINESSES, REGISTER A BUSINESS NAME, HOW TO REGISTER YOUR BUSINESS, REGISTER YOUR BUSINESS, REGISTER AS A SMALL BUSINESS, REGISTER A BUSINESS, STEPS TO REGISTER A BUSINESS"},
767
+ {"category": "other"},
768
+ {"orders": 2},
769
+ {"master_term": "Register"}] ,
770
+ "recommended_sites_item109": [
771
+ {"title": "Identity Theft - Business Owner's Responsibilities"},
772
+ {"url": "http://www.sba.gov/content/identity-theft"},
773
+ {"description": "Learn your responsibilities to prevent fraud and identity theft"},
774
+ {"keywords": "ID theft, falsifying information, fraud, identity theft"},
775
+ {"category": "business law"},
776
+ {"orders": 1},
777
+ {"master_term": "fraud"}] ,
778
+ "recommended_sites_item83": [
779
+ {"title": "Energy Savings Calculator"},
780
+ {"url": "http://www.sba.gov/content/energy-efficiency"},
781
+ {"description": "Learn how much going green can save you with calculators for various types of products"},
782
+ {"keywords": "energy savings calculator, easy energy saving, energy efficient, alternative fuels, Construction energy Efficiency, motel energy efficiency, green construction, solar grants, environmental management, Air Pollution Prevention, Green Building Design, small business statistics, Waste Reuse, insulation, HVAC Upgrade, pollution prevention, ventilation efficiency, office equipment energy efficiency, Water Conservation, home energy savings, ENVIRONMENTAL TAX INCENTIVES, Energy Efficiency improvement, energy efficient, Renewable Energy, Paper Usage, recycle, water efficiency, slab, air condition upgrade, Financial Analysis, easy energy savings, Lighting, hybrids, store Energy Efficiency, Energy Management, environmental grants, green business loans, energy efficiency projects, pollution, new building, reduce waste, reusing waste, roofing, heating upgrade, calculate savings, air condition efficiency, fuel economy, saving water, home energy efficiency, Retail Energy Efficiency, energy efficiency loans, Energy Efficien"},
783
+ {"category": "managing a business"},
784
+ {"orders": 1},
785
+ {"master_term": "Savings Calculator"}] ,
786
+ "recommended_sites_item55": [
787
+ {"title": "Air Quality Regulations"},
788
+ {"url": "http://www.sba.gov/content/air-pollution"},
789
+ {"description": "Find information about complying with air quality regulations"},
790
+ {"keywords": "Air Pollution, pollutants, pollution, air quality, ozone, air permits, hazardous air"},
791
+ {"category": "business law"},
792
+ {"orders": 1},
793
+ {"master_term": "Air Quality"}] ,
794
+ "recommended_sites_item166": [
795
+ {"title": "Waste Management Regulations"},
796
+ {"url": "http://www.sba.gov/content/waste"},
797
+ {"description": "Find resources to help your business comply with regulations that apply to managing waste"},
798
+ {"keywords": "hazardous waste, municipal solid waste, land disposal, waste management, waste identification, industrial waste"},
799
+ {"category": "business law"},
800
+ {"orders": 1},
801
+ {"master_term": "Waste Management Regulations"}] ,
802
+ "recommended_sites_item138": [
803
+ {"title": "Small Business Grants"},
804
+ {"url": "http://www.sba.gov/content/research-grants-small-businesses"},
805
+ {"description": "Learn about grants available to small businesses"},
806
+ {"keywords": "education grants, disability grants , federal grant federal grants for dairies , elderly grants , free grants for small businesses, grant for bodyshop, grant for a small business children clothing store , grant for body shop , grants for opening a new restuarant , grants start up small bussiness , grants to purchase a walk-in refrigerator/freezer , grant funding for hospitals, grant to expand business, grants for online business, start up grant start up grants , health insurance grants , massage therapy grants , small bussiness grants , need grant to expand business , lawn care grants , reptile grant , merchandising grants , real grants , grants for clean fuel trucks , r\u0026d grants, inventor, grant money, free business government grant, loans and grants, grant deeds, apply for grants, automotive repair grants, business startup grant, child care grant, car grants, educational grants for film , equipment grants , fed. business grants , free grants for small business, freegrants, goverment grants for injured worke"},
807
+ {"category": "financing a business"},
808
+ {"orders": 1},
809
+ {"master_term": "grants"}] ,
810
+ "recommended_sites_item28": [
811
+ {"title": "How to Start a Food Concession Business"},
812
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/How-to-Start-a-Food-Concession-Business-An-Entrepreneur-s/ba-p/4455"},
813
+ {"description": "Read this business article in the Business.gov Community"},
814
+ {"keywords": "STARTING A CONCESSIONS BUSINESS EVENTS, CONCESSION, FOOD OR CONCESSION STAND, FOOD STAND, HEALTH AND SAFETY LAWS FOR FOOD CONCESSION, FOOD CONCESSION, HOT FOOD VENDORS, BAKERY CONCESSION, FOOD CONCESSION BUSINESS STARTUP, CONCESSION STAND"},
815
+ {"category": "other"},
816
+ {"orders": 2},
817
+ {"master_term": "Food Concession"}] ,
818
+ "recommended_sites_item84": [
819
+ {"title": "Environmental Grants, Loans and Incentives"},
820
+ {"url": "http://www.sba.gov/content/environmental-grants-loans"},
821
+ {"description": "Learn about financial incentives for environment-related projects and improvements for your building"},
822
+ {"keywords": "green Loans, grants for businesses going green, solar/wind energy grants, green and grant , green grant for personal products , grants for solar businesses , grants for solar energy , grants wind technology, green business grants for start-up businesses , grants for ethanol production , green Incentives, grants for solar energy business, solar energy grant, green company grants , personal energy efficient home repair grants, grants for green business , grant info for green buisiness, green technology grants , greenn business grant, renewable energy business grants , grants for hybrid cars, grants for green , grants for building a green home , green business grants , green grant , green building grants , grants forbuilding a green home , grants loans green business , green business grant , grinding waste wood reduction grants, Environmental Grants, loans and grants for a green business, solar energy grants, green company grant , green energy grants for small business , grants to start a green business , grants"},
823
+ {"category": "managing a business"},
824
+ {"orders": 1},
825
+ {"master_term": "Going Green"}] ,
826
+ "recommended_sites_item56": [
827
+ {"title": "Antitrust Law"},
828
+ {"url": "http://www.sba.gov/content/antitrust"},
829
+ {"description": "Learn about antitrust, which prohibits any anti-competitive activity"},
830
+ {"keywords": "acquisitions, antitrust, anti-trust, mergers"},
831
+ {"category": "business law"},
832
+ {"orders": 1},
833
+ {"master_term": "Antitrust"}] ,
834
+ "recommended_sites_item167": [
835
+ {"title": "Water Quality Regulations"},
836
+ {"url": "http://www.sba.gov/content/water"},
837
+ {"description": "Get information about the Clean Water Act and compliance assistance"},
838
+ {"keywords": "drinking water, Water Quality, wastewater, ground water, clean water act, stormwater, water laws, water pollutants, animal feeding"},
839
+ {"category": "business law"},
840
+ {"orders": 1},
841
+ {"master_term": "Water Quality Regulations"}] ,
842
+ "recommended_sites_item139": [
843
+ {"title": "Overseas Business Travel"},
844
+ {"url": "http://www.sba.gov/content/resources-doing-business-abroad"},
845
+ {"description": "Find the paperwork you need for doing business overseas including overseas business travel"},
846
+ {"keywords": "business overseas, overseas business, business abroad, passports, visas, overseas trade, abroad, business travel"},
847
+ {"category": "managing a business"},
848
+ {"orders": 1},
849
+ {"master_term": "Business Travel"}] ,
850
+ "recommended_sites_item29": [
851
+ {"title": "How to Start a Non-Profit Organization"},
852
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/How-to-Start-a-Non-Profit-Organization/ba-p/8058"},
853
+ {"description": "Read this business article in the Business.gov Community"},
854
+ {"keywords": "FORMING A NON PROFIT, START A NON PROFIT, START UP GRANTS FOR NON-PROFITS, STARTING A NOT FOR PROFIT, STARTING A NON PROFIT FLORIDA, starting a nonprofit, START NON-PROFIT ORGANIZATION, how to start a nonprofit, START NON PROFIT, STARTING A NON PROFIT ORGANIZATION KISSIMMEE FLORIDA, starting up a non-profit, starting up a nonprofit, STARTING A NON PROFIT ORGANIZATION, STARTE A NON PROFIT, start nonprofit, NONPROFIT STARTUP, STEPS TO STARTING A NOT FOR PROFIT IN FLORIDA, START A NON-PROFIT, NON PROFITS START UP, start a nonprofit, START A NOT FOR PROFIT BUSINESS, STARTING A NON PROFIT ORGANIZATION FLORIDA, how to start a non-profit, HOW TO START A NON-PROFIT ORGANIZATION IN OREGON, STARTING A NON-PROFIT, STARTING UP A NON PROFIT, STARTING A NON PROFIT, NON-PROFIT APPLICATON, STARTING A NON PROFIT ORGANIZATIONS, STARTING A NON-PROFIT ORGANIZATION, starting nonprofit, how to start a non profit, STARTING A NON-PROFIT CHARITY AS BUSINESS"},
855
+ {"category": "other"},
856
+ {"orders": 2},
857
+ {"master_term": "Start Non-Profit"}] ,
858
+ "recommended_sites_item85": [
859
+ {"title": "Environmental Management Systems"},
860
+ {"url": "http://www.sba.gov/content/environmental-management"},
861
+ {"description": "Learn how to enable an organization to reduce environmental impacts and increase efficiency."},
862
+ {"keywords": "ems, management guidance, partnerships, certified environmental, stewardship, iso 14001, environmental management, environmental training, sector programs, environmental planning, environmental management system, EPA, Environmental Management"},
863
+ {"category": "business law"},
864
+ {"orders": 1},
865
+ {"master_term": "Environmental Management Systems"}] ,
866
+ "recommended_sites_item57": [
867
+ {"title": "Bankruptcy Basics for Small Business"},
868
+ {"url": "http://www.sba.gov/content/bankruptcy"},
869
+ {"description": "Resources to help you understand bankruptcy laws and procedures."},
870
+ {"keywords": "BANKRUPTCY LAW, bankruptcy, BANKRUPTCY CODE, BUSINESS BANKRUPTCY LAW"},
871
+ {"category": "business law"},
872
+ {"orders": 1},
873
+ {"master_term": "bankruptcy"}] ,
874
+ "recommended_sites_item168": [
875
+ {"title": "Women Business Owners"},
876
+ {"url": "http://www.sba.gov/content/women-owned-businesses"},
877
+ {"description": "Info on programs that help women start and manage businesses"},
878
+ {"keywords": "WOMAN OWNED, government grants for women, grants for women, grants female small business owners , grants for single mothers , grants for single women , woman grants , women owned, WOMEN-OWNED BUSINESSES, grants for women businesses, government grants for female small business owners , grants for single mothers to start a business , single mom grants , business woman grants , women 1/4 dutch loan or grant to purchase small business , grants for women business owners, grant disabled woman business , grants for women business , woman owned grant proposals , educational loans and grants for women, womens business initial grant programs, women, WOMAN OWNED SMALL BUSINESS, small grants for women, grants for women owned businesses, grants for womens business , women grants business , grants women business , women business grant , Woman Owned Businesses, WOMEN OWNED BUSINESSES, business grants for women, grant for women small business , women owned businesses , women small businesses grants , grants for m"},
879
+ {"category": "starting a business"},
880
+ {"orders": 1},
881
+ {"master_term": "women"}] ,
882
+ "recommended_sites_item86": [
883
+ {"title": "Environmental Permits"},
884
+ {"url": "http://www.sba.gov/content/environmental-permits"},
885
+ {"description": "Get information about engaging in certain regulated activities that require environmental permits"},
886
+ {"keywords": "state permits, Clean Air Act, Endangered Species, wetlands, RCRA, Environmental Permits"},
887
+ {"category": "business law"},
888
+ {"orders": 1},
889
+ {"master_term": "Environmental Permits"}] ,
890
+ "recommended_sites_item58": [
891
+ {"title": "Environmental Compliance Resources"},
892
+ {"url": "http://www.sba.gov/content/basics-environmental-compliance"},
893
+ {"description": "Learn about regulations for companies relating to general environmental compliance"},
894
+ {"keywords": "compliance enforcement, compliance assistance, environmental compliance, chemical regulations, environmental regulations, chemical information, compliance monitoring"},
895
+ {"category": "business law"},
896
+ {"orders": 1},
897
+ {"master_term": "Environmental Compliance Resources"}] ,
898
+ "recommended_sites_item169": [
899
+ {"title": "Workers' Compensation for Employers"},
900
+ {"url": "http://www.sba.gov/content/workers-compensation"},
901
+ {"description": "Learn about workers' comp requirements for employers"},
902
+ {"keywords": "workers' comp, worker's compensation insurance, WORKMANS COMPENSATION, workers compensation classes, workman compensation, workmans comp, workers compensation, WORKES COMPENSATION, Workers' Compensation, workmans comp, workman's comp, workers comp, workers comp, workers compensation exemption, WORKERS COMPENSATION, workmans compensation"},
903
+ {"category": "business law"},
904
+ {"orders": 2},
905
+ {"master_term": "workers compensation"}] ,
906
+ "recommended_sites_item87": [
907
+ {"title": "Environmental Regulations"},
908
+ {"url": "http://www.sba.gov/content/environmental-regulations"},
909
+ {"description": "Learn about regulations that implement environmental laws enacted by Congress"},
910
+ {"keywords": "environmental regulatory compliance, environmental regulations, environmental compliance"},
911
+ {"category": "business law"},
912
+ {"orders": 1},
913
+ {"master_term": "Environmental Regulations"}] ,
914
+ "recommended_sites_item110": [
915
+ {"title": "Income Statistics"},
916
+ {"url": "http://www.sba.gov/content/income-statistics"},
917
+ {"description": "Find data on income and earnings of people in the U.S."},
918
+ {"keywords": "income statistics, earnings data, income data"},
919
+ {"category": "managing a business"},
920
+ {"orders": 1},
921
+ {"master_term": "income statistics"}] ,
922
+ "recommended_sites_item59": [
923
+ {"title": "Get Business Insurance"},
924
+ {"url": "http://www.sba.gov/content/business-insurance"},
925
+ {"description": "Learn your insurance requirements and how to get it "},
926
+ {"keywords": "insurance, small business insurance, commercial insurance, BUSINESS INSURANCE"},
927
+ {"category": "business law"},
928
+ {"orders": 1},
929
+ {"master_term": "insurance"}] ,
930
+ "recommended_sites_item88": [
931
+ {"title": "Exporting"},
932
+ {"url": "http://www.sba.gov/content/exporting-and-importing"},
933
+ {"description": "Learn about programs that offer training, counseling, and financial assistance to new exporters"},
934
+ {"keywords": "exporting, import goods, trade compliance, export finance, import, import goods, abroad, export, export goods, trade barrier, export financing, importing, importing, trade agreements, exporting goods, international trade, import, fair trade, export, export home based business, exporting goods, free trade, export goods, overseas, importing goods, exporting, export loans, exporting, importing goods, overseas"},
935
+ {"category": "managing a business"},
936
+ {"orders": 1},
937
+ {"master_term": "Exporting"}] ,
938
+ "recommended_sites_item111": [
939
+ {"title": "Incorporate Your Business"},
940
+ {"url": "http://www.sba.gov/content/incorporating-your-business"},
941
+ {"description": "Find out how to file incorporation forms with your state government"},
942
+ {"keywords": "legal structures, start a corporation, corporations, llc, incorporate, forming a corporation, new corporation, limited liability company, corporation, form a corporation, starting a corporation, limited liability corporation, legal structure, business types, limited liability company certificate, business structure, corporation forms"},
943
+ {"category": "registering a business"},
944
+ {"orders": 1},
945
+ {"master_term": "incorporation"}] ,
946
+ "recommended_sites_item140": [
947
+ {"title": "Rural Business Loans"},
948
+ {"url": "http://www.sba.gov/content/rural-business-loans"},
949
+ {"description": "Get information about exclusive loan programs for rural small business owners"},
950
+ {"keywords": "Rural Business Loans, rural"},
951
+ {"category": "financing a business"},
952
+ {"orders": 1},
953
+ {"master_term": "Rural Business Loans"}] ,
954
+ "recommended_sites_item30": [
955
+ {"title": "Setting up a Payroll System - A 10 Step Guide for Small Business"},
956
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/Setting-up-a-Payroll-System-A-10-Step-Guide-for-Small-Business/ba-p/25421"},
957
+ {"description": "Read this business article in the Business.gov Community"},
958
+ {"keywords": "WEEKLY OR BIWEEKLY PAYROLL, PAYROLL SERVICES, *SETTING UP A PAYROLL SYSTEM - A 10 STEP GUIDE FOR SMALL BUSINESS*, PAYROLL SERVICE PROVIDERS, payrolls, PAYROLL, SETTING UP A PAYROLL SYSTEM, PAYROLL FORMS"},
959
+ {"category": "other"},
960
+ {"orders": 2},
961
+ {"master_term": "Payroll System"}] ,
962
+ "recommended_sites_item89": [
963
+ {"title": "Extending Credit"},
964
+ {"url": "http://www.sba.gov/content/extending-credit-your-customers"},
965
+ {"description": "Learn how to extend credit to customers and the regulations regarding credit transactions"},
966
+ {"keywords": "customer credit, extending credit, credit"},
967
+ {"category": "financing a business"},
968
+ {"orders": 1},
969
+ {"master_term": "Extending Credit"}] ,
970
+ "recommended_sites_item112": [
971
+ {"title": "Computer and Information Security"},
972
+ {"url": "http://www.sba.gov/content/information-security"},
973
+ {"description": "Learn how to keep your business data safe from malicious attacks"},
974
+ {"keywords": "server security, internet security, information security, Computer and Information Security, computer security"},
975
+ {"category": "business law"},
976
+ {"orders": 1},
977
+ {"master_term": "Information Security"}] ,
978
+ "recommended_sites_item141": [
979
+ {"title": "SBA Loan Application Checklist"},
980
+ {"url": "http://www.sba.gov/content/sba-loan-application-checklist"},
981
+ {"description": "Find forms and steps to apply for an SBA loan"},
982
+ {"keywords": "sba loan form, SBA LOAN APPLICATION FORM, sba forms, sba loans, SBA LOAN APPLICATION CHECKLIST, sba loan, sba loan forms, sba loan application, sba form"},
983
+ {"category": "financing a business"},
984
+ {"orders": 2},
985
+ {"master_term": "sba loan"}] ,
986
+ "recommended_sites_item31": [
987
+ {"title": "Starting a Blog? Tips to Help You Start, Maintain \u0026 Grow a Small Business Blog!"},
988
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/Thinking-of-Starting-a-Blog-Tips-to-Help-You-Start-Maintain-amp/ba-p/9193"},
989
+ {"description": "Read this business article in the Business.gov Community"},
990
+ {"keywords": "START BLOG, business blogs, BLOG, starting a blog, blogging, business blogging, starting to blog, business blog, CREATE BLOG, BLOGS"},
991
+ {"category": "other"},
992
+ {"orders": 2},
993
+ {"master_term": "Blog"}] ,
994
+ "recommended_sites_item113": [
995
+ {"title": "Insurance Requirements for Employers"},
996
+ {"url": "http://www.sba.gov/content/insurance-requirements-employers"},
997
+ {"description": "Get information about regulations that business owners have to pay for certain types of insurance"},
998
+ {"keywords": "disability insurance, Workers' Compensation Insurance, Unemployment Insurance Tax"},
999
+ {"category": "financing a business"},
1000
+ {"orders": 1},
1001
+ {"master_term": "Insurance"}] ,
1002
+ "recommended_sites_item170": [
1003
+ {"title": "Workplace Posters"},
1004
+ {"url": "http://www.sba.gov/content/workplace-posters"},
1005
+ {"description": "Get all posters you need for your workplace"},
1006
+ {"keywords": "workplace poster, LABOR LAW POSTER, MA POSTERS, TEXAS POSTERS, UTAH WORKPLACE POSTERS, employee regulations, STATE POSTER PAGE, NEW YORK STATE POSTERS REQUIRED, N.J. STATE POSTER PAGE, STATE POSTERS, NY STATE POSTER REQUIREMENTS, OHIO EMPLOYMENT POSTERS, poster, COMPLIANCE POSTERS, OHIO LABOR LAW POSTERS, TEXAS STATE POSTERS, OHIO WORKPLACE POSTERS, posters, minimum wage, workplace posters, labor law, FEDERAL POSTERS, CHURCH WORKPLACE POSTERS, ILLINOIS WORK POSTERS, required posters, COMPLIANCE POSTERS, ILLINOIS EMPLOYMENT LAW POSTERS, TENNESSEE POSTERS, FREE WORKPLACE POSTERS, labor law posters, employment law, STATE POSTER, CHURCH WORKPLACE POSTERS, POSTERS FOR EMPLOYEES, employee rules, MINIMUM WAGE POSTERS, HAWAII EMPLOYMENT LAW POSTERS, CALIFORNIA EMPLOYMENT POSTERS"},
1007
+ {"category": "business law"},
1008
+ {"orders": 1},
1009
+ {"master_term": "workplace posters"}] ,
1010
+ "recommended_sites_item142": [
1011
+ {"title": "Search for Business Loans \u0026 Grants"},
1012
+ {"url": "http://www.sba.gov/content/sba-loans"},
1013
+ {"description": "Get a list of loans and grants for which your business might qualify"},
1014
+ {"keywords": "grants for small business, government grants, small business grants for women, loans and grants for felons, state business grants, agriculture equipment grants , education grant , ark grant , free grants for small business , free grants for small businesses , education grants , child care grant , dean grant trucking , federal grant , apply for a grant , web site grant , historical building grants , grant for body shop , justic dept grant , real estate grant , hudgrants , grant for working capital , stucco specialty contractor grants, grant funding for hospitals , real grants , grants for health care agency , grants to doctors , grants for keeping a business , governments grants for truck drivers , start a small business grant , grants for former inmates to start a business , transportation grant , grants for ice machines , income eligible grant/homeowners , grants for online business , business loans, small business loans, grant, grant money, business grants, grants for women in business, state grants for cl"},
1015
+ {"category": "financing a business"},
1016
+ {"orders": 2},
1017
+ {"master_term": "loans"}] ,
1018
+ "recommended_sites_item114": [
1019
+ {"title": "International Online Sales"},
1020
+ {"url": "http://www.sba.gov/content/international-online-sales"},
1021
+ {"description": "Learn about the legal and regulatory requirements when shipping overseas"},
1022
+ {"keywords": "selling internationally, international sales, online business"},
1023
+ {"category": "business law"},
1024
+ {"orders": 1},
1025
+ {"master_term": "international online sales"}] ,
1026
+ "recommended_sites_item60": [
1027
+ {"title": "How to Buy Government Surplus"},
1028
+ {"url": "http://www.sba.gov/content/buying-government-surplus"},
1029
+ {"description": "Learn about Government Auctions and how to participate"},
1030
+ {"keywords": "auctions, Government Surplus, auction"},
1031
+ {"category": "managing a business"},
1032
+ {"orders": 1},
1033
+ {"master_term": "Government Auctions"}] ,
1034
+ "recommended_sites_item32": [
1035
+ {"title": "Starting your Own Dog Treat Business - Healthy \"Dog Bakeries\" Done Right"},
1036
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/Tips-for-Starting-your-Own-Dog-Treat-Business-Healthy-Dog/ba-p/17109"},
1037
+ {"description": "Read this business article in the Business.gov Community"},
1038
+ {"keywords": "DOG TREAT HOMEBASED BUSINESS, DOG TREATS, DOG BAKERIES, DOG TREAT HOME BASED BUSINESS, HOME BASED DOG TREAT BUSINESS, DOG TREAT BUSINESS"},
1039
+ {"category": "other"},
1040
+ {"orders": 2},
1041
+ {"master_term": "Dog treat"}] ,
1042
+ "recommended_sites_item171": [
1043
+ {"title": "Workplace Safety and Health"},
1044
+ {"url": "http://www.sba.gov/content/workplace-safety-health"},
1045
+ {"description": "Learn about laws and regulations that ensure employees safe and healthy working environments"},
1046
+ {"keywords": "hazard, Workplace Safety, OSHA, workplace health, whistleblower"},
1047
+ {"category": "business law"},
1048
+ {"orders": 1},
1049
+ {"master_term": "Workplace Safety"}] ,
1050
+ "recommended_sites_item143": [
1051
+ {"title": "Securities and Financial Reporting"},
1052
+ {"url": "http://www.sba.gov/content/securities-law"},
1053
+ {"description": "Find information on how to comply with financial reporting laws enforced by the SEC"},
1054
+ {"keywords": "sox, securities, Sarbanes Oxley, financial statements, sec, financial reporting, edgar"},
1055
+ {"category": "business law"},
1056
+ {"orders": 1},
1057
+ {"master_term": "financial reporting"}] ,
1058
+ "recommended_sites_item115": [
1059
+ {"title": "Business Laws \u0026 Regulations"},
1060
+ {"url": "http://www.sba.gov/content/laws-and-regulations"},
1061
+ {"description": "Resources to help you comply with the basic laws of conducting business"},
1062
+ {"keywords": "corporate law, federal regulations"},
1063
+ {"category": "business law"},
1064
+ {"orders": 1},
1065
+ {"master_term": "business law"}] ,
1066
+ "recommended_sites_item61": [
1067
+ {"title": "Child Labor Laws"},
1068
+ {"url": "http://www.sba.gov/content/child-labor"},
1069
+ {"description": "Find information pertaining to Employing Youth \u0026 Child Labor Laws "},
1070
+ {"keywords": "HIRING YOUR CHILD, Child Labor Laws, HIRING MINORS, youth employment, VA CHILD LABOR LAWS"},
1071
+ {"category": "business law"},
1072
+ {"orders": 1},
1073
+ {"master_term": "Child Labor"}] ,
1074
+ "recommended_sites_item33": [
1075
+ {"title": "Personal Vehicle for Business Purposes - Tax Deductions and Insurance"},
1076
+ {"url": "http://community2.business.gov/t5/Small-Business-Matters/Using-Your-Personal-Vehicle-for-Business-Purposes-Tax-Deductions/ba-p/5995"},
1077
+ {"description": "Read this business article in the Business.gov Community"},
1078
+ {"keywords": "FUEL MILEAGE, MILEAGE RATE, EMPLOYER TO EMPLOYEE MILEAGE REIMBURSEMENT RATE, EMPLOYER TO EMPLOYEE MILEAGE REIMBURSEMENT, EMPLOYEE GAS MILEAGE RATE, HOW TO REPORT MILEAGE FOR DEDUCTIBLE TRAVEL, AUTO MILEAGE ALLOWANCES, MILEAGE REIMBURSEMENT RATES, GAS REIMBURSEMENT RATES, personal vehicle, GAS COMPENSATION, DEDUCTIBLE MILEAGE, MILEAGE REIMBURSEMENT GUIDELINES, MILEAGE REIMBURSEMENT, DEDUCT VEHICLE GAS, MILEAGE REIMBURSEMENTS, MILEAGE RATES, MILEAGE REIMBURSEMENT RATE, HOW TO KEEP TRACK OF MILEAGE FOR TRAVEL, TYPICAL MILEAGE REIMBURSEMENT, EMPLOYEE GAS MILEAGE REIMBURSEMENT, personal vehicles, MILEAGE DEDUCTION, MILEAGE REIMBURSMENT, GAS REEMBURSEMENT RATES, HOW TO REPORT MILEAGE, MILEAGE REINBURSEMENT"},
1079
+ {"category": "other"},
1080
+ {"orders": 2},
1081
+ {"master_term": "Personal Vehicle"}] ,
1082
+ "recommended_sites_item172": [
1083
+ {"title": "Zoning Laws for Home Based Businesses"},
1084
+ {"url": "http://www.sba.gov/content/zoning-laws-home-based-businesses"},
1085
+ {"description": "Learn about zoning laws that affect home based businesses"},
1086
+ {"keywords": "home based sewing business zoning, home based food business zoning "},
1087
+ {"category": "starting a business"},
1088
+ {"orders": 1},
1089
+ {"master_term": "home based zoning"}] ,
1090
+ "recommended_sites_item144": [
1091
+ {"title": "Hiring Employees \u0026 Contractors"},
1092
+ {"url": "http://www.sba.gov/content/self-employed-independent-contractors"},
1093
+ {"description": "Learn about requirements for hiring new employees or contractors"},
1094
+ {"keywords": "hiring contractors, Self Employed, independent Contractors, contractor, HIRING INDEPENDENT CONTRACTORS, Independent Contractor, Hiring Employees, Self Employment"},
1095
+ {"category": "business law"},
1096
+ {"orders": 1},
1097
+ {"master_term": "Hiring"}] ,
1098
+ "recommended_sites_item116": [
1099
+ {"title": "State Tax Forms"},
1100
+ {"url": "http://www.sba.gov/content/learn-about-your-state-and-local-tax-obligations"},
1101
+ {"description": "Get tax forms from your state government"},
1102
+ {"keywords": "tax forms business, STATE TAX RATES, STATE TAX REGISTRATION FORM, tax form for running a business, STATE TAX ID, state tax forms, STATE TAX RATES, STATE TAX LAW, small business tax forms, STATE TAX IDS, tax forms, state tax, STATE TAX REQUIREMENTS, state business tax forms, STATE TAX ID NUMBER, OBTAIN STATE TAX I.D. NUMBER, business tax forms, state taxes, STATE TAX REQUIREMENTS, state small business tax forms, STATE TAX LAWS, OBTAIN STATE TAX ID"},
1103
+ {"category": "financing a business"},
1104
+ {"orders": 2},
1105
+ {"master_term": "tax forms"}] ,
1106
+ "recommended_sites_item90": [
1107
+ {"title": "Federal Acquisitions Regulations"},
1108
+ {"url": "http://www.sba.gov/content/federal-acquisition-regulations-far"},
1109
+ {"description": "Learn about regulations that specify how Executive Branch agencies buy from vendors"},
1110
+ {"keywords": "federal acquisition regulations, FAR"},
1111
+ {"category": "managing a business"},
1112
+ {"orders": 1},
1113
+ {"master_term": "Federal Acquisitions Regulations"}] ,
1114
+ "recommended_sites_item62": [
1115
+ {"title": "Child Online Privacy Protection Act"},
1116
+ {"url": "http://www.sba.gov/content/childrens-online-privacy"},
1117
+ {"description": "Learn about the rules and regulations regarding COPPA"},
1118
+ {"keywords": "COPPA, Child Online Privacy Protection Act, CHILDRENS ONLINE PRIVACY PROTECTION ACT"},
1119
+ {"category": "business law"},
1120
+ {"orders": 1},
1121
+ {"master_term": "COPPA"}] ,
1122
+ "recommended_sites_item34": [
1123
+ {"title": "Misclassifying Workers as Independent Contractors Can Be Costly"},
1124
+ {"url": "http://community2.business.gov/t5/The-Industry-Word/Misclassifying-Workers-as-Independent-Contractors-Can-Be-Costly/ba-p/22324"},
1125
+ {"description": "Read this business article in the Business.gov Community"},
1126
+ {"keywords": "MISCLASSIFYING INDEPENDENT CONTRACTOR, INDEPENDENT CONTRACTOR VS EMPLOYEE, EMPLOYEE VS INDEPENDENT CONTRACTOR, EMPLOYEE VS. INDEPENDENT CONTRACTOR"},
1127
+ {"category": "other"},
1128
+ {"orders": 2},
1129
+ {"master_term": "Misclassifying"}] ,
1130
+ "recommended_sites_item173": [
1131
+ {"title": "Student Aid Information from Students.gov"},
1132
+ {"url": "http://www.students.gov/STUGOVWebApp/Public?topicID=13\u0026operation=maintopic"},
1133
+ {"description": "Find out about ways to pay for your education."},
1134
+ {"keywords": "school grants, re-education grants, grants for back to school women , school grants for women, moms school grants , scholarships and grants, grants for mothers returning to school , graduate school grant "},
1135
+ {"category": "financing a business"},
1136
+ {"orders": 1},
1137
+ {"master_term": "student aid"}] ,
1138
+ "recommended_sites_item145": [
1139
+ {"title": "Rules for an Online Business"},
1140
+ {"url": "http://www.sba.gov/content/setting-online-business"},
1141
+ {"description": "Rules for starting and running an Internet business"},
1142
+ {"keywords": "starting an internet business, e-commerce, e commerce, small business online, INTERNET BUSINESS, internet home business, online retail, INTERNET BUSINESSES, online business, ecommerce, INTERNET BASED BUSINESS, e-business"},
1143
+ {"category": "managing a business"},
1144
+ {"orders": 1},
1145
+ {"master_term": "e-commerce"}] ,
1146
+ "recommended_sites_item117": [
1147
+ {"title": "Choosing a Business Location"},
1148
+ {"url": "http://www.sba.gov/content/leasing-commercial-space"},
1149
+ {"description": "Find resources to help you select the best possible location for your business"},
1150
+ {"keywords": "locate commercial property, Choosing a Business Location, business location, locating property, site selection, lease negotiation, locate property, locating commercial property, lease rules"},
1151
+ {"category": "starting a business"},
1152
+ {"orders": 1},
1153
+ {"master_term": "Business Location"}] ,
1154
+ "recommended_sites_item91": [
1155
+ {"title": "Small Business Taxes"},
1156
+ {"url": "http://www.sba.gov/content/filing-and-paying-your-taxes"},
1157
+ {"description": "Get small business tax forms and resources"},
1158
+ {"keywords": "tax forms, e-file, small business taxes, tax resources, tax, taxes, filing business taxes, tax information, business tax forms"},
1159
+ {"category": "business law"},
1160
+ {"orders": 1},
1161
+ {"master_term": "taxes"}] ,
1162
+ "recommended_sites_item63": [
1163
+ {"title": "Environmental Cleanup"},
1164
+ {"url": "http://www.sba.gov/content/cleanup"},
1165
+ {"description": "Find information about complying with environmental cleanup regulations"},
1166
+ {"keywords": "land revitalization, hazardous waste, rcra, oil spills, brownfields, Environmental Cleanup, clean up"},
1167
+ {"category": "business law"},
1168
+ {"orders": 1},
1169
+ {"master_term": "Environmental Cleanup"}] ,
1170
+ "recommended_sites_item35": [
1171
+ {"title": "How to Sell on eBay"},
1172
+ {"url": "http://pages.ebay.com/education/selling.html"},
1173
+ {"description": "Learn how to set up an online business on eBay"},
1174
+ {"keywords": "ebay business, ebay, e bay, e-bay"},
1175
+ {"category": "other"},
1176
+ {"orders": 1},
1177
+ {"master_term": "eBay"}] ,
1178
+ "recommended_sites_item146": [
1179
+ {"title": "Federal Contracting Resources for Small Business Owners"},
1180
+ {"url": "http://www.sba.gov/content/small-business-certification-0"},
1181
+ {"description": "Locate resources that will help you understand how the federal government buys goods and services"},
1182
+ {"keywords": "small business contractor, government contracts"},
1183
+ {"category": "managing a business"},
1184
+ {"orders": 1},
1185
+ {"master_term": "Federal Contracting"}] ,
1186
+ "recommended_sites_item118": [
1187
+ {"title": "Managing Your Taxes"},
1188
+ {"url": "http://www.sba.gov/content/managing-your-tax-obligations"},
1189
+ {"description": "Learn how to manage your tax obligations throughout the year"},
1190
+ {"keywords": "taxes, tax deductions, estimated taxes, accounting, tax obligations, recordkeeping"},
1191
+ {"category": "financing a business"},
1192
+ {"orders": 1},
1193
+ {"master_term": "Managing Your Taxes"}] ,
1194
+ "recommended_sites_item92": [
1195
+ {"title": "Small Business Loans"},
1196
+ {"url": "http://www.sba.gov/content/find-business-loans-grants-other-financial-assistance"},
1197
+ {"description": "Learn about guaranteed loan programs and how to apply for them"},
1198
+ {"keywords": "business loan, small business loans, government loans, small business government loans, government business loans, small business loan, loan, business loans, loan information, loans, oans, government business loan, government small business loans"},
1199
+ {"category": "financing a business"},
1200
+ {"orders": 1},
1201
+ {"master_term": "loans"}] ,
1202
+ "recommended_sites_item64": [
1203
+ {"title": "Sales Tax for Online Business"},
1204
+ {"url": "http://www.sba.gov/content/collecting-sales-tax-over-internet"},
1205
+ {"description": "Learn about the rules and regulations regarding sales tax for online businesses"},
1206
+ {"keywords": "internet sales, online sales"},
1207
+ {"category": "business law"},
1208
+ {"orders": 1},
1209
+ {"master_term": "sales tax"}] ,
1210
+ "recommended_sites_item36": [
1211
+ {"title": "Federal Pell Grant Information"},
1212
+ {"url": "http://studentaid.ed.gov/PORTALSWebApp/students/english/PellGrants.jsp?tab=funding"},
1213
+ {"description": "Find information about the Federal Pell Grant and who is eligible to receive it."},
1214
+ {"keywords": "pell grant, pellgrants, pell grants"},
1215
+ {"category": "financing a business"},
1216
+ {"orders": 1},
1217
+ {"master_term": "grants"}] ,
1218
+ "recommended_sites_item147": [
1219
+ {"title": "Small Business Expenses and Tax Deductions"},
1220
+ {"url": "http://www.sba.gov/content/small-business-expenses-and-tax-deductions"},
1221
+ {"description": "Understanding business expenses and tax deductions"},
1222
+ {"keywords": "capital expenses, depreciation, amortization, tax deductions, business expenses"},
1223
+ {"category": "financing a business"},
1224
+ {"orders": 1},
1225
+ {"master_term": "Small Business Expenses and Tax Deductions"}] ,
1226
+ "recommended_sites_item119": [
1227
+ {"title": "Marketing Your Business"},
1228
+ {"url": "http://www.sba.gov/content/marketing-101"},
1229
+ {"description": "Get information about how to market a new small business"},
1230
+ {"keywords": "marketing, advertising"},
1231
+ {"category": "managing a business"},
1232
+ {"orders": 1},
1233
+ {"master_term": "Marketing"}] ,
1234
+ "recommended_sites_item93": [
1235
+ {"title": "Fish and Wildlife Regulations"},
1236
+ {"url": "http://www.sba.gov/content/fish-wildlife"},
1237
+ {"description": "Learn about regulations for companies relating to wildlife"},
1238
+ {"keywords": "endangered species, fish permits, wildlife regulations, migratory birds, wildlife permits, eagle permits, fish regulations"},
1239
+ {"category": "business law"},
1240
+ {"orders": 1},
1241
+ {"master_term": "Fish and Wildlife Regulations"}] ,
1242
+ "recommended_sites_item65": [
1243
+ {"title": "Market Research for Small Business"},
1244
+ {"url": "http://www.sba.gov/content/conducting-market-research"},
1245
+ {"description": "Find resources to help research your customers and competitors"},
1246
+ {"keywords": "consumer research, market research analysis, market research, target market, market research studies, market analysis"},
1247
+ {"category": "managing a business"},
1248
+ {"orders": 1},
1249
+ {"master_term": "market research"}] ,
1250
+ "recommended_sites_item37": [
1251
+ {"title": "USDA Research Grants"},
1252
+ {"url": "http://www.csrees.usda.gov/fo/funding.cfm"},
1253
+ {"description": "Learn about U.S. Department of Agriculture research grants."},
1254
+ {"keywords": "usda grants"},
1255
+ {"category": "financing a business"},
1256
+ {"orders": 1},
1257
+ {"master_term": "grants"}] ,
1258
+ "recommended_sites_item148": [
1259
+ {"title": "Starting a Green Business"},
1260
+ {"url": "http://www.sba.gov/content/starting-green-business"},
1261
+ {"description": "Learn about getting started as a green business and becoming \"green certified\""},
1262
+ {"keywords": "environmental business, Green Certification, green business home based, Ecolabeling"},
1263
+ {"category": "starting a business"},
1264
+ {"orders": 1},
1265
+ {"master_term": "Starting a Green Business"}] ,
1266
+ "recommended_sites_item94": [
1267
+ {"title": "Steps to Starting a Business"},
1268
+ {"url": "http://www.sba.gov/content/follow-these-steps-starting-business"},
1269
+ {"description": "Essential steps to starting a new business"},
1270
+ {"keywords": "startup business, new business, how to start a business, startup, business assistance, start up, set up a business, business help, start a business, start own business, business plan, business startup, starting a business"},
1271
+ {"category": "starting a business"},
1272
+ {"orders": 1},
1273
+ {"master_term": "starting a business"}] ,
1274
+ "recommended_sites_item66": [
1275
+ {"title": "Federal Regulations for the Consumer Goods Industry"},
1276
+ {"url": "http://www.sba.gov/content/consumer-goods-services"},
1277
+ {"description": "Find resources in complying with laws and regulations that apply to consumer goods industry"},
1278
+ {"keywords": "education, tobacco, computers, fitness, internet, product labeling, Consumer Goods, educational services, consumer protection, label, consumer services, food stamps, dry cleaning, textiles, appliances, health"},
1279
+ {"category": "business law"},
1280
+ {"orders": 1},
1281
+ {"master_term": "Consumer Goods Regulations"}] ,
1282
+ "recommended_sites_item38": [
1283
+ {"title": "Other Federal Grants on Grants.gov"},
1284
+ {"url": "http://www.grants.gov"},
1285
+ {"description": "Find out about non-business related federal grant programs and who is eligible to apply. "},
1286
+ {"keywords": "non-business grants, personal grants or loans , personal grants , wwwgrants.gov, grants.gov, www.grants.gov, personal home grants, none business loans and grants for disable and senior citizens"},
1287
+ {"category": "financing a business"},
1288
+ {"orders": 1},
1289
+ {"master_term": "grants"}] ,
1290
+ "recommended_sites_item149": [
1291
+ {"title": "Storage Tanks"},
1292
+ {"url": "http://www.sba.gov/content/storage-tanks"},
1293
+ {"description": "Learn about requirements and regulations for storage tanks"},
1294
+ {"keywords": "Storage Tanks"},
1295
+ {"category": "business law"},
1296
+ {"orders": 1},
1297
+ {"master_term": "Storage Tanks"}] ,
1298
+ "recommended_sites_item67": [
1299
+ {"title": "Buying a Franchise"},
1300
+ {"url": "http://www.sba.gov/content/consumer-guide-buying-franchise"},
1301
+ {"description": "Resources to help you decide if buying a franchise is for you"},
1302
+ {"keywords": "franchising, buy a franchise, franchise, buying a franchise"},
1303
+ {"category": "starting a business"},
1304
+ {"orders": 1},
1305
+ {"master_term": "franchise"}] ,
1306
+ "recommended_sites_item39": [
1307
+ {"title": "Tax Guide to Partnerships"},
1308
+ {"url": "http://www.irs.gov/businesses/small/article/0,,id=98214,00.html"},
1309
+ {"description": "Learn how to pay and file taxes for partnerships"},
1310
+ {"keywords": "partner, partnership, partnerships"},
1311
+ {"category": "registering a business"},
1312
+ {"orders": 2},
1313
+ {"master_term": "partnership"}] ,
1314
+ "recommended_sites_item95": [
1315
+ {"title": "Starting a Home-Based Food Production Business"},
1316
+ {"url": "http://www.sba.gov/content/food-beverage"},
1317
+ {"description": "Learn the rules for home-based catering or food production businesses"},
1318
+ {"keywords": "home based food permit , home based catering business , home based food business , home based bakery , home based bakery , home based cake business , home based catering business , home based food , restaurant regulations, restaurant laws, home based cake decorating , home based food preparation , home based restaurant , restaurant, home based catering , home based food business , home based take out food production, home based business baking goods , home based food , home based take out food production, home based meals , restaurants, home based restaurant , home based meals , home based cake business , home based catering , home based business baking goods , home based food preparation , home based coffee shop , restaurant law, home based coffee shop , home based coffee shop sample business plan , home based cake decorating , home based food permit "},
1319
+ {"category": "other"},
1320
+ {"orders": 1},
1321
+ {"master_term": "home based food business"}] ,
1322
+ "recommended_sites_item68": [
1323
+ {"title": "Consumer Credit Reports"},
1324
+ {"url": "http://www.sba.gov/content/credit-scores-and-factors-acquiring-financing"},
1325
+ {"description": "Get information about rules and regulations you must follow to ensure privacy of credit information. "},
1326
+ {"keywords": "credit report, privacy laws, fair credit reporting act, Pre-Employment Checks"},
1327
+ {"category": "business law"},
1328
+ {"orders": 1},
1329
+ {"master_term": "Credit Reports"}] ,
1330
+ "recommended_sites_item96": [
1331
+ {"title": "Hiring Foreign Workers"},
1332
+ {"url": "http://www.sba.gov/content/foreign-workers-immigration-and-employee-eligibility"},
1333
+ {"description": "Find information about how to hire Foreign Workers"},
1334
+ {"keywords": "guest workers, fair employment, foreign labor certification, Foreign Workers, IMMIGRATION AND VISAS, immigration employment, work visa, employee eligibility"},
1335
+ {"category": "business law"},
1336
+ {"orders": 1},
1337
+ {"master_term": "Foreign Workers"}] ,
1338
+ "recommended_sites_item120": [
1339
+ {"title": "Minority Owned Business Resources"},
1340
+ {"url": "http://www.sba.gov/content/minority-owned-businesses"},
1341
+ {"description": "Info on programs that help minorities start and manage businesses"},
1342
+ {"keywords": "minority business enterprise, black women grant, minority business enterprises, minority owned recycling business grants, minority grant, hispanic woman small business grant, minorities, minority black grants, minority black businessmen grants, native american small business grants, monority woman disabled grants, mbe, minority owned enterprise, grants minority buisness, minority, minority restaurant grants and loans, asian american grant"},
1343
+ {"category": "starting a business"},
1344
+ {"orders": 1},
1345
+ {"master_term": "minority"}] ,
1346
+ "recommended_sites_item10": [
1347
+ {"title": "Should My Company be an LLC, an S-Corp or Both?"},
1348
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Should-My-Company-be-an-LLC-an-S-Corp-or-Both/ba-p/2324"},
1349
+ {"description": "Read this business article in the Business.gov Community"},
1350
+ {"keywords": "LLCS, LLC VS S CORP, LIMITED LIABILITY, STARTING A LLC, LLC VS CORPORATION, s-corp, LLC, LIMITED LIABILITY CORPORATION, LLC VS CORPORATIONS, LIMITED LIABILTY COMPANY, STARTING AN LLC, Limited Liability Company, CORP VS LLC, LIMITED LIABILITIES COMPANY, llc's, s-corps"},
1351
+ {"category": "other"},
1352
+ {"orders": 2},
1353
+ {"master_term": "LLCvSCorp"}] ,
1354
+ "recommended_sites_item69": [
1355
+ {"title": "Demographics and Population Statistics"},
1356
+ {"url": "http://www.sba.gov/content/demographics"},
1357
+ {"description": "Find data on the U.S. population"},
1358
+ {"keywords": "demographics, labor statistics"},
1359
+ {"category": "managing a business"},
1360
+ {"orders": 1},
1361
+ {"master_term": "demographics"}] ,
1362
+ "recommended_sites_item97": [
1363
+ {"title": "Essential Government Forms"},
1364
+ {"url": "http://www.sba.gov/content/forms-managing-your-business"},
1365
+ {"description": "Obtain essential government forms and instructions that are most pertinent to your business"},
1366
+ {"keywords": "Government Forms, employment law forms, federal forms, employer forms, employment law"},
1367
+ {"category": "business law"},
1368
+ {"orders": 1},
1369
+ {"master_term": "Forms"}] ,
1370
+ "recommended_sites_item121": [
1371
+ {"title": "Register a Partnership"},
1372
+ {"url": "http://www.sba.gov/content/model-partnership-agreement"},
1373
+ {"description": "How to select a legal business structure"},
1374
+ {"keywords": "GENERAL PARTNERSHIP, partnership, GENERAL PARTNERSHIPS, LIMITED LIABILITY PARTNERSHIP, partnerships, PARTNERSHIP ORGANIZATION, partner"},
1375
+ {"category": "registering a business"},
1376
+ {"orders": 1},
1377
+ {"master_term": "partnership"}] ,
1378
+ "recommended_sites_item98": [
1379
+ {"title": "How to Register as a Federal Contractor"},
1380
+ {"url": "http://www.sba.gov/content/getting-d-u-n-s-number"},
1381
+ {"description": "Learn How to Register as a Federal Contractor and Obtain a D-U-N-S Number"},
1382
+ {"keywords": "d-u-n-s, duns, d-u-n-s number, duns number"},
1383
+ {"category": "managing a business"},
1384
+ {"orders": 1},
1385
+ {"master_term": "DUNS"}] ,
1386
+ "recommended_sites_item11": [
1387
+ {"title": "Starting a Business in the U.S. as a Foreign National"},
1388
+ {"url": "http://community2.business.gov/t5/Business-Law-Advisor/Starting-a-Business-in-the-U-S-as-a-Foreign-National/ba-p/3468"},
1389
+ {"description": "Read this business article in the Business.gov Community"},
1390
+ {"keywords": "FOREIGN COMPANY REGISTER, STARTING UP WITH A FOREIGN NATIONAL, REGULATIONS REGARDING BUSINESS STARTUP BY A FOREIGN INDIVIDUAL, AS FOREIGN NATIONAL, STARTING A SMALL BUSINESS FOR FOREIGNERS, REGISTER FOREIGN CORPORATION IN NEW MEXICO, FOREIGN NATIONALS, FOREIGN NATIONAL, FOREIGN NATIONAL STARTING A BUSINESS IN SAN ANTONIO, FOREIGN SMALL BUSINESS, FOREIGN BUSINESS IN US MARKET, NON RESIDENT ALIEN, FOREIGN NON RESIDENT BUSINESS REGISTRATION, FOREIGN CORPORATION REGISTRATION, FOREIGN COMPANY REGISTER IN US, FOREIGN BUSINESS, FOREIGN NATIONAL SAN ANTONIO, REGISTER A FOREIGN CORPORATION, SBA - FOREIGN OWNER, FOREIGN CORPORATION, STARTING AS A FOREIGN NATIONAL, FOREIGN COMPANY DOING BUSINESS IN CALIFORNIA, FOREIGN CORPORATION REGISTRATION VIRGIN ISLANDS, REGISTER FOREIGN COMPANY IN US, FOREIGN CITIZEN NEW BUSINESS, FOREIGN NATIONAL TO REGISTER IN NEW YORK, FOREIGNERS IN US, FOREIGN, FOREIGN NATIONAL IN TEXAS, FOREIGN OWNER, FOREIGN COMPANIES, FOREIGN OWNERSHIP, FOREIGN BUSINESS IN THE USA"},
1391
+ {"category": "other"},
1392
+ {"orders": 2},
1393
+ {"master_term": "Foreign National"}]}