simplewoo 0.2.0 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2b7ad2bd4cf318e9b0fec219e5bef755d15fd40f
4
- data.tar.gz: 01698a29d65d9c2e04c98c30e31c8f7302e67af2
3
+ metadata.gz: 1903cf67abe8ae6574fb978da1dd1a8bdcb69ce6
4
+ data.tar.gz: 287f644d3b01fcc5c9b318be91e8adc79fe1feee
5
5
  SHA512:
6
- metadata.gz: 313a88daf6dcedfefa1983c41fc0f99aeffc77bf549de0967174634f6521d5861212b41b217591e6e6bffb58e3777e238edffcb012374d528a435295d10fcc5a
7
- data.tar.gz: 03d2ce2ef91762fe0ff9bbdf39e732b4a3ed230ed4f5149dc91c15b69b57c1b2b9e25e6460fe5789a80606d269d1c24357ac2f1efe4474606ba4c0cd50b35201
6
+ metadata.gz: fe89e906c88f192a0b7f2a42050f4efc5f59bd4db79845b59fe08011f5c0427e8f77aaf2a65fe8045e3a6a68829a487ee56c1bccf8010cd6c14670eebc71c863
7
+ data.tar.gz: 594f6c11c10d7a2e5d65632f2cfe0e1bc67705bfd9a5ea59ccbd16319ba0031241ee81a3a9208a13c04d15aa26e68f0bbb3d0b3babe6726844db8b00d69d9977
data/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ ### 1.0.0
2
+
3
+ * Features
4
+ * Switch to Version 2 API endpoints, changing results path to match (by [@tomprats])
5
+
6
+ ### 0.3.0
7
+
8
+ * Features
9
+ * Version 2 API support (by [@carsonwright])
10
+ * Aliased match to match_for_slider (by [@tomprats])
11
+ * Aliased personality to personality_for_slider (by [@tomprats])
12
+
13
+ * Bug fix
14
+ * add_tags url bug corrected (by [@carsonwright])
15
+ * Trusted auth now uses correct header (by [@tomprats])
16
+
17
+ [@tomprats]:https://github.com/tomprats
18
+ [@carsonwright]:https://github.com/carsonwright
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Simplewoo
2
2
 
3
- TODO: Write a gem description
3
+ This is a API wrapper in Ruby for the Woofound Core API. [Woofound](https://woofound.com) is a personality matching and personalization engine. If you are interested in trying the API (currently in early beta stages) email support@woofound.com.
4
4
 
5
5
  ## Installation
6
6
 
@@ -18,6 +18,8 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
+ ####[Documentation](http://rdoc.info/gems/simplewoo)
22
+
21
23
  ### Configuration
22
24
 
23
25
  Simplewoo.configure do |client|
@@ -58,7 +60,6 @@ Or install it yourself as:
58
60
 
59
61
  client.sliders
60
62
 
61
- TODO: Write usage instructions here
62
63
 
63
64
  ## Contributing
64
65
 
@@ -9,12 +9,12 @@ module Simplewoo
9
9
  !!(self.api_token)
10
10
  end
11
11
 
12
- def authenticated?
13
- !!(basic_authenticated? || token_authenticated?)
12
+ def trusted_authenticated?
13
+ !!(self.trusted && self.email)
14
14
  end
15
15
 
16
- def api_token
17
- self.api_token ||= authenticate if authenticated?
16
+ def authenticated?
17
+ !!(basic_authenticated? || token_authenticated? || trusted_authenticated?)
18
18
  end
19
19
 
20
20
  # Authenticates the user with their email and password returning an api token
@@ -9,11 +9,10 @@ module Simplewoo
9
9
  #
10
10
  # @example Return the entity matches for a slider
11
11
  # Simplewoo::Client.match_for_slider(1).entities
12
- # @example Return the personality matches for a slider
13
- # Simplewoo::Client.match_for_slider(1).personalities
14
12
  def match_for_slider(id, options = {})
15
- get("/sliders/#{id}/results", options)._embedded
13
+ get("/sliders/#{id}/match", options)
16
14
  end
15
+ alias :match :match_for_slider
17
16
  end
18
17
  end
19
18
  end
@@ -1,4 +1,3 @@
1
-
2
1
  module Simplewoo
3
2
  class Client
4
3
  module Personality
@@ -11,8 +10,9 @@ module Simplewoo
11
10
  # @example Return the personalities for a slider
12
11
  # Simplewoo::Client.personality_for_slider(1)
13
12
  def personality_for_slider(id, options = {})
14
- get("/sliders/#{id}/results", options)._embedded.personalities
13
+ get("/sliders/#{id}/personality", options)
15
14
  end
15
+ alias :personality :personality_for_slider
16
16
 
17
17
  # Resets the slider
18
18
  #
@@ -20,8 +20,8 @@ module Simplewoo
20
20
  #
21
21
  # @return status only
22
22
  #
23
- # @example Return the personalities for a slider
24
- # Simplewoo::Client.personality_for_slider(1)
23
+ # @example Reset the personality for a slider
24
+ # Simplewoo::Client.reset(1)
25
25
  def reset(id, options = {})
26
26
  delete("/sliders/#{id}/reset", options)
27
27
  end
@@ -12,7 +12,7 @@ module Simplewoo
12
12
  # Simplewoo::Client.add_tag(1, 1, true)
13
13
  def add_tag(slider_id, tag_id, value, options = {})
14
14
  options.merge!(me: value)
15
- post("/sliders/#{slider_id}/tags/#{tag_id}/add", options)
15
+ post("/sliders/#{slider_id}/tags/#{tag_id}", options)
16
16
  end
17
17
 
18
18
  # Returns a tag
@@ -16,6 +16,7 @@ module Simplewoo
16
16
  end
17
17
  faraday.use AppSecretMiddleware, app_secret: self.app_secret
18
18
  faraday.use TrustedAppMiddleware, trusted: self.trusted
19
+ faraday.use AppVersionMiddleware
19
20
  faraday.response :logger if self.debug
20
21
  faraday.use ErrorMiddleware
21
22
  faraday.response :mashify
@@ -39,6 +40,18 @@ module Simplewoo
39
40
  @app.call(env)
40
41
  end
41
42
  end
43
+ class AppVersionMiddleware < Faraday::Middleware
44
+ def initialize(app, options = {})
45
+ @app = app
46
+ @options = options
47
+ end
48
+
49
+ def call(env)
50
+ env[:request_headers]["Accept"] = "application/vnd.woofound.v2"
51
+ @app.call(env)
52
+ end
53
+ end
54
+
42
55
  # Middleware for inserting the trusted header into requests
43
56
  class TrustedAppMiddleware < Faraday::Middleware
44
57
  def initialize(app, options = {})
@@ -47,7 +60,7 @@ module Simplewoo
47
60
  end
48
61
 
49
62
  def call(env)
50
- env[:request_headers]["Woofound-Use-Trusted"] = @options[:trusted].to_s
63
+ env[:request_headers]["Woofound-Use-Trusted-Auth"] = @options[:trusted].to_s
51
64
  @app.call(env)
52
65
  end
53
66
  end
@@ -1,3 +1,3 @@
1
1
  module Simplewoo
2
- VERSION = "0.2.0"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -17,7 +17,7 @@ describe Simplewoo::Client do
17
17
 
18
18
  it "gets the entities for a slider" do
19
19
  stub_woo(:get, "/sliders/1/entities/page/1", 200, ":some_token@", "entities")
20
- expect(response["_embedded"]["entities"][0].name).to eq("Nursery Worker")
20
+ expect(response["entities"][0].name).to eq("Nursery Worker")
21
21
  end
22
22
  end
23
23
 
@@ -12,18 +12,14 @@ describe Simplewoo::Client do
12
12
  end
13
13
 
14
14
  before(:each) do
15
- stub_woo(:get, "/sliders/1/results", 200, ":some_token@", "match_results")
15
+ stub_woo(:get, "/sliders/1/match", 200, ":some_token@", "match")
16
16
  end
17
17
 
18
- describe ".match_for_slider" do
18
+ describe ".match" do
19
19
  let(:client) { Simplewoo::Client.new(:api_token => "some_token") }
20
20
 
21
21
  it "returns the entities matched to the authenticated user" do
22
- expect(client.match_for_slider(1)).to respond_to(:entities)
23
- end
24
-
25
- it "returns the personality of the authenticated user" do
26
- expect(client.match_for_slider(1)).to respond_to(:personalities)
22
+ expect(client.match(1)).to respond_to(:entities)
27
23
  end
28
24
  end
29
25
  end
@@ -11,19 +11,19 @@ describe Simplewoo::Client do
11
11
  end
12
12
  end
13
13
 
14
- before(:each) do
15
- stub_woo(:get, "/sliders/1/results", 200, ":some_token@", "match_results")
16
- end
14
+ describe ".personality" do
15
+ before(:each) do
16
+ stub_woo(:get, "/sliders/1/personality", 200, ":some_token@", "personality")
17
+ end
17
18
 
18
- describe ".personality_for_slider" do
19
19
  let(:client) { Simplewoo::Client.new(:api_token => "some_token") }
20
20
 
21
21
  it "personality for the slider for the current user" do
22
- expect(client.personality_for_slider(1)).to be_a(Array)
22
+ expect(client.personality(1).personalities).to be_a(Array)
23
23
  end
24
24
 
25
25
  it "returns the personality of the authenticated user" do
26
- expect(client.personality_for_slider(1)).to_not be_empty
26
+ expect(client.personality(1).personalities).to_not be_empty
27
27
  end
28
28
  end
29
29
 
@@ -31,7 +31,7 @@ describe Simplewoo::Client do
31
31
  let(:client) { Simplewoo::Client.new(:api_token => "some_token") }
32
32
 
33
33
  it "resets the personality" do
34
- stub_woo(:delete, "/sliders/1/reset", 200, ":some_token@", "match_results")
34
+ stub_woo(:delete, "/sliders/1/reset", 200, ":some_token@", "personality")
35
35
  client.reset(1)
36
36
 
37
37
  expect(WebMock).to have_requested(:delete, "https://:some_token@api.woofound.com/sliders/1/reset").once
@@ -22,7 +22,7 @@ describe Simplewoo::Client do
22
22
  it "returns the HAL links to the api" do
23
23
  stub_woo(:get, "/", 200, "#{email}:#{password}@", "root")
24
24
 
25
- expect(client.root).to respond_to(:_links)
25
+ expect(client.root).to respond_to(:rels)
26
26
  end
27
27
  end
28
28
  end
@@ -34,7 +34,7 @@ describe Simplewoo::Client do
34
34
  it "returns the HAL links to the api" do
35
35
  stub_woo(:get, "/", 200, ":#{api_token}@", "root")
36
36
 
37
- expect(client.root).to respond_to(:_links)
37
+ expect(client.root).to respond_to(:rels)
38
38
  end
39
39
  end
40
40
  end
@@ -46,7 +46,7 @@ describe Simplewoo::Client do
46
46
  it "returns the HAL links to the api" do
47
47
  stub_woo(:get, "/", "root")
48
48
 
49
- expect(client.root).to respond_to(:_links)
49
+ expect(client.root).to respond_to(:rels)
50
50
  end
51
51
  end
52
52
  end
@@ -19,7 +19,7 @@ describe Simplewoo::Client do
19
19
  end
20
20
 
21
21
  it "returns the sliders for the app" do
22
- expect(client.sliders).to respond_to(:_embedded)
22
+ expect(client.sliders).to respond_to(:sliders)
23
23
  end
24
24
  end
25
25
 
@@ -27,11 +27,11 @@ describe Simplewoo::Client do
27
27
  let(:client) { Simplewoo::Client.new }
28
28
 
29
29
  before(:each) do
30
- stub_woo(:get, "/sliders/1", "slider")
30
+ stub_woo(:get, "/sliders/2", "slider")
31
31
  end
32
32
 
33
- it "returns the sliders for the app" do
34
- expect(client.slider(1)).to respond_to(:_embedded)
33
+ it "returns the slider for the app" do
34
+ expect(client.slider(2)).to respond_to(:name)
35
35
  end
36
36
  end
37
37
  end
@@ -16,7 +16,7 @@ describe Simplewoo::Client do
16
16
  let(:response) { client.add_tag(1, 1, true) }
17
17
 
18
18
  it "adds a tag for a user" do
19
- stub_woo(:post, "/sliders/1/tags/1/add?me=true", 204, ":some_token@", "empty")
19
+ stub_woo(:post, "/sliders/1/tags/1?me=true", 204, ":some_token@", "empty")
20
20
  response
21
21
  expect(client.last_response.status).to eq(204)
22
22
  end
@@ -27,7 +27,6 @@ describe Simplewoo::Client do
27
27
  response
28
28
  end
29
29
 
30
-
31
30
  it "returns the users email" do
32
31
  expect(response).to respond_to(:email)
33
32
  end
@@ -37,7 +36,7 @@ describe Simplewoo::Client do
37
36
  end
38
37
 
39
38
  it "sets the api_token" do
40
- expect(client.api_token).to eq("acce$$token")
39
+ expect(client.api_token).to eq("acce$$token")
41
40
  end
42
41
  end
43
42
  end
@@ -55,6 +54,18 @@ describe Simplewoo::Client do
55
54
  end
56
55
  end
57
56
 
57
+ context "authenticated with trusted authentication" do
58
+ let(:client) { Simplewoo::Client.new(:trusted => true, :email => "jason@example.com") }
59
+
60
+ before(:each) do
61
+ stub_woo(:get, "/users/me", "me")
62
+ end
63
+
64
+ it "returns the authenticated user" do
65
+ expect(client.me).to respond_to(:email)
66
+ end
67
+ end
68
+
58
69
  context "unauthenticated" do
59
70
  let(:client) { Simplewoo::Client.new }
60
71
 
@@ -11,7 +11,7 @@ describe Simplewoo::Error do
11
11
  end
12
12
  end
13
13
 
14
- let(:client) { Simplewoo::Client.new }
14
+ let(:client) { Simplewoo.new }
15
15
 
16
16
  describe ".errors" do
17
17
  it "returns a hash of methods" do
@@ -1,1549 +1,1547 @@
1
1
  {
2
- "_embedded": {
3
- "entities": [
4
- {
5
- "name": "Nursery Worker",
6
- "image": {
7
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/050c86054814a4f1fa63.jpg",
8
- "_640x640": {
9
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_640x640_050c86054814a4f1fa63.jpg"
10
- },
11
- "_506x540": {
12
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_506x540_050c86054814a4f1fa63.jpg"
13
- },
14
- "_480x208": {
15
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_480x208_050c86054814a4f1fa63.jpg"
16
- },
17
- "_320x320": {
18
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_320x320_050c86054814a4f1fa63.jpg"
19
- },
20
- "_306x540": {
21
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_306x540_050c86054814a4f1fa63.jpg"
22
- },
23
- "_300x300": {
24
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_300x300_050c86054814a4f1fa63.jpg"
25
- },
26
- "_260x260": {
27
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_260x260_050c86054814a4f1fa63.jpg"
28
- },
29
- "_253x270": {
30
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_253x270_050c86054814a4f1fa63.jpg"
31
- },
32
- "_240x104": {
33
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_240x104_050c86054814a4f1fa63.jpg"
34
- },
35
- "_166x166": {
36
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_166x166_050c86054814a4f1fa63.jpg"
37
- },
38
- "_150x150": {
39
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_150x150_050c86054814a4f1fa63.jpg"
40
- },
41
- "_120x120": {
42
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_120x120_050c86054814a4f1fa63.jpg"
43
- },
44
- "_90x90": {
45
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_90x90_050c86054814a4f1fa63.jpg"
46
- },
47
- "_83x83": {
48
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_83x83_050c86054814a4f1fa63.jpg"
49
- },
50
- "_60x60": {
51
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_60x60_050c86054814a4f1fa63.jpg"
52
- },
53
- "_45x45": {
54
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_45x45_050c86054814a4f1fa63.jpg"
55
- },
56
- "_30x30": {
57
- "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_30x30_050c86054814a4f1fa63.jpg"
58
- }
59
- },
60
- "uuid": "6806f840-3e73-0130-73dd-12313d00cdfe",
61
- "latitude": null,
62
- "longitude": null,
63
- "updated_at": "2013-01-31T17:02:45Z",
64
- "_links": {
65
- "self": {
66
- "href": "https://core.woofound.com/sliders/2/entities/12908"
67
- }
68
- },
69
- "blend": "NT",
70
- "green": "false",
71
- "active": "true",
72
- "bright": "false",
73
- "min_edu": "High School Diploma",
74
- "colleges": "[{\"name\":\"University of California Berkeley\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_california_berkeley.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_california_berkeley.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_california_berkeley.jpg\"},\"website\":\"http://www.berkeley.edu/\",\"twitter\":\"@ucberkeley\",\"facebook\":\"https://www.facebook.com/UCBerkeley\",\"linkedin\":\"http://www.linkedin.com/company/2517?trk=tyah\"},{\"name\":\"Pennsylvania State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pennsylvania_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pennsylvania_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pennsylvania_state_university.jpg\"},\"website\":\"http://www.psu.edu/\",\"twitter\":\"@penn_state\",\"facebook\":\"https://www.facebook.com/pennstate\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=40178\"},{\"name\":\"Washington State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/washington_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_washington_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_washington_state_university.jpg\"},\"website\":\"http://www.wsu.edu/\",\"twitter\":\"@wsunews\",\"facebook\":\"https://www.facebook.com/washingtonstateuniv\",\"linkedin\":\"http://www.linkedin.com/company/166875?trk=tyah\"},{\"name\":\"Cornell University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cornell_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cornell_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cornell_university.jpg\"},\"website\":\"http://www.cornell.edu/\",\"twitter\":\"@cornell\",\"facebook\":\"https://www.facebook.com/Cornell\",\"linkedin\":\"http://www.linkedin.com/company/3523?trk=tyah\"},{\"name\":\"Washington University in St. Louis\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/washington_university_in_st_louis.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_washington_university_in_st_louis.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_washington_university_in_st_louis.jpg\"},\"website\":\"http://wustl.edu/\",\"twitter\":\"@wustl\",\"facebook\":\"https://www.facebook.com/wustl\",\"linkedin\":\"http://www.linkedin.com/company/4608?trk=tyah\"}]",
75
- "onet_link": "http://www.onetonline.org/link/summary/45-2092.01",
76
- "avg_salary": "$10,000-20,000",
77
- "businesses": "[{\"name\":\"Swansons Nursery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/swansons_nursery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_swansons_nursery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_swansons_nursery.jpg\"},\"website\":\"http://www.swansonsnursery.com/\",\"twitter\":\"@swansons\",\"facebook\":\"https://www.facebook.com/pages/Swansons-Nursery/144985602200678\",\"linkedin\":\"http://www.linkedin.com/company/2467371?trk=tyah\"},{\"name\":\"Portland Nursery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/portland_nursery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_portland_nursery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_portland_nursery.jpg\"},\"website\":\"http://www.portlandnursery.com/\",\"twitter\":\"@pdxnursery\",\"facebook\":\"https://www.facebook.com/PortlandNursery1?v=wall\",\"linkedin\":null},{\"name\":\"Thornhill Nursery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/thornhill_nursery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_thornhill_nursery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_thornhill_nursery.jpg\"},\"website\":\"http://thornhillnursery.com/\",\"twitter\":\"@thornhillnsy\",\"facebook\":\"https://www.facebook.com/pages/Thornhill-Nursery/117398764963517\",\"linkedin\":null},{\"name\":\"Gethsemane Gardens\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/gethsemane_gardens.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_gethsemane_gardens.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_gethsemane_gardens.jpg\"},\"website\":\"http://www.gethsemanegardens.com/\",\"twitter\":\"@growgethsemane\",\"facebook\":\"https://www.facebook.com/pages/Gethsemane-Garden-Center/316505770524\",\"linkedin\":null},{\"name\":\"Barton Springs Nursery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/barton_springs_nursery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_barton_springs_nursery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_barton_springs_nursery.jpg\"},\"website\":\"http://www.bartonspringsnursery.net/\",\"twitter\":\"@bsn_plants\",\"facebook\":\"https://www.facebook.com/pages/Barton-Springs-Nursery/101176200455?ref=ts%2F\",\"linkedin\":null}]",
78
- "description": "Work in nursery facilities or at customer location planting, cultivating, harvesting, and transplanting trees, shrubs, or plants.",
79
- "growth_rate": null
2
+ "entities": [
3
+ {
4
+ "name": "Nursery Worker",
5
+ "image": {
6
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/050c86054814a4f1fa63.jpg",
7
+ "_640x640": {
8
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_640x640_050c86054814a4f1fa63.jpg"
9
+ },
10
+ "_506x540": {
11
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_506x540_050c86054814a4f1fa63.jpg"
12
+ },
13
+ "_480x208": {
14
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_480x208_050c86054814a4f1fa63.jpg"
15
+ },
16
+ "_320x320": {
17
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_320x320_050c86054814a4f1fa63.jpg"
18
+ },
19
+ "_306x540": {
20
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_306x540_050c86054814a4f1fa63.jpg"
21
+ },
22
+ "_300x300": {
23
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_300x300_050c86054814a4f1fa63.jpg"
24
+ },
25
+ "_260x260": {
26
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_260x260_050c86054814a4f1fa63.jpg"
27
+ },
28
+ "_253x270": {
29
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_253x270_050c86054814a4f1fa63.jpg"
30
+ },
31
+ "_240x104": {
32
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_240x104_050c86054814a4f1fa63.jpg"
33
+ },
34
+ "_166x166": {
35
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_166x166_050c86054814a4f1fa63.jpg"
36
+ },
37
+ "_150x150": {
38
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_150x150_050c86054814a4f1fa63.jpg"
39
+ },
40
+ "_120x120": {
41
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_120x120_050c86054814a4f1fa63.jpg"
42
+ },
43
+ "_90x90": {
44
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_90x90_050c86054814a4f1fa63.jpg"
45
+ },
46
+ "_83x83": {
47
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_83x83_050c86054814a4f1fa63.jpg"
48
+ },
49
+ "_60x60": {
50
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_60x60_050c86054814a4f1fa63.jpg"
51
+ },
52
+ "_45x45": {
53
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_45x45_050c86054814a4f1fa63.jpg"
54
+ },
55
+ "_30x30": {
56
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12908/_30x30_050c86054814a4f1fa63.jpg"
57
+ }
80
58
  },
81
- {
82
- "name": "Costume Attendant",
83
- "image": {
84
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/421e2e101be2985885a5.jpg",
85
- "_640x640": {
86
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_640x640_421e2e101be2985885a5.jpg"
87
- },
88
- "_506x540": {
89
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_506x540_421e2e101be2985885a5.jpg"
90
- },
91
- "_480x208": {
92
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_480x208_421e2e101be2985885a5.jpg"
93
- },
94
- "_320x320": {
95
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_320x320_421e2e101be2985885a5.jpg"
96
- },
97
- "_306x540": {
98
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_306x540_421e2e101be2985885a5.jpg"
99
- },
100
- "_300x300": {
101
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_300x300_421e2e101be2985885a5.jpg"
102
- },
103
- "_260x260": {
104
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_260x260_421e2e101be2985885a5.jpg"
105
- },
106
- "_253x270": {
107
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_253x270_421e2e101be2985885a5.jpg"
108
- },
109
- "_240x104": {
110
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_240x104_421e2e101be2985885a5.jpg"
111
- },
112
- "_166x166": {
113
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_166x166_421e2e101be2985885a5.jpg"
114
- },
115
- "_150x150": {
116
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_150x150_421e2e101be2985885a5.jpg"
117
- },
118
- "_120x120": {
119
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_120x120_421e2e101be2985885a5.jpg"
120
- },
121
- "_90x90": {
122
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_90x90_421e2e101be2985885a5.jpg"
123
- },
124
- "_83x83": {
125
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_83x83_421e2e101be2985885a5.jpg"
126
- },
127
- "_60x60": {
128
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_60x60_421e2e101be2985885a5.jpg"
129
- },
130
- "_45x45": {
131
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_45x45_421e2e101be2985885a5.jpg"
132
- },
133
- "_30x30": {
134
- "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_30x30_421e2e101be2985885a5.jpg"
135
- }
136
- },
137
- "uuid": "6b4f9c50-3e73-0130-73dd-12313d00cdfe",
138
- "latitude": null,
139
- "longitude": null,
140
- "updated_at": "2013-01-31T17:48:50Z",
141
- "_links": {
142
- "self": {
143
- "href": "https://core.woofound.com/sliders/2/entities/12909"
144
- }
145
- },
146
- "blend": "IPM",
147
- "green": "false",
148
- "active": "true",
149
- "bright": "false",
150
- "min_edu": "High School Diploma",
151
- "colleges": "[{\"name\":\"Abilene Christian University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/abilene_christian_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_abilene_christian_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_abilene_christian_university.jpg\"},\"website\":\"http://www.acu.edu/\",\"twitter\":\"@acuedu\",\"facebook\":\"https://www.facebook.com/abilenechristian\",\"linkedin\":\"http://www.linkedin.com/groups/Abilene-Christian-University-1910637/about\"},{\"name\":\"Abraham Baldwin Agricultural College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/abraham_baldwin_agricultural_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_abraham_baldwin_agricultural_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_abraham_baldwin_agricultural_college.jpg\"},\"website\":\"http://www.abac.edu/\",\"twitter\":\"@abac_college\",\"facebook\":\"https://www.facebook.com/1908ABAC\",\"linkedin\":\"http://www.linkedin.com/company/1838654?trk=tyah\"},{\"name\":\"Adams State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/adams_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_adams_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_adams_state_university.jpg\"},\"website\":\"http://www.adams.edu/\",\"twitter\":\"@adamsstate\",\"facebook\":\"https://www.facebook.com/adamsstate\",\"linkedin\":null},{\"name\":\"Adelphi University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/adelphi_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_adelphi_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_adelphi_university.jpg\"},\"website\":\"http://www.adelphi.edu/\",\"twitter\":\"@adelphiu\",\"facebook\":\"https://www.facebook.com/AdelphiU\",\"linkedin\":\"http://www.linkedin.com/company/162282?trk=tyah\"},{\"name\":\"Adirondack Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/adirondack_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_adirondack_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_adirondack_community_college.jpg\"},\"website\":\"http://www.sunyacc.edu/\",\"twitter\":\"@sunyadirondack\",\"facebook\":\"https://www.facebook.com/SUNYAdirondack\",\"linkedin\":\"http://www.linkedin.com/company/suny-adirondack/\"}]",
152
- "onet_link": "http://www.onetonline.org/link/summary/39-3092.00",
153
- "avg_salary": "$30,000-40,000",
154
- "businesses": "[{\"name\":\"Penumbra Theatre\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/penumbra_theatre.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_penumbra_theatre.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_penumbra_theatre.jpg\"},\"website\":\"http://www.penumbratheatre.org/\",\"twitter\":\"@penumbratheatre\",\"facebook\":\"https://www.facebook.com/pages/Penumbra-Theatre-Company/31586568925\",\"linkedin\":null},{\"name\":\"The Kennedy Center\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_kennedy_center.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_kennedy_center.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_kennedy_center.jpg\"},\"website\":\"http://www.kennedy-center.org/\",\"twitter\":\"@kencen\",\"facebook\":\"https://www.facebook.com/KennedyCenter\",\"linkedin\":\"http://www.linkedin.com/company/18805?trk=tyah\"},{\"name\":\"Cincinnati Playhouse in the Park\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cincinnati_playhouse_in_the_park.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cincinnati_playhouse_in_the_park.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cincinnati_playhouse_in_the_park.jpg\"},\"website\":\"http://www.cincyplay.com/\",\"twitter\":\"@cincyplay\",\"facebook\":\"https://www.facebook.com/pages/Cincinnati-Playhouse-in-the-Park/363863578286\",\"linkedin\":\"http://www.linkedin.com/company/929850?trk=tyah\"},{\"name\":\"Denver Performing Arts Complex\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/denver_performing_arts_complex.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_denver_performing_arts_complex.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_denver_performing_arts_complex.jpg\"},\"website\":\"http://www.denvercenter.org/\",\"twitter\":\"@denvercenter\",\"facebook\":\"https://www.facebook.com/DenverCenter\",\"linkedin\":\"http://www.linkedin.com/company/51560?trk=tyah\"},{\"name\":\"Eugene O'Neill Theater\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/eugene_o'neill_theater.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_eugene_o'neill_theater.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_eugene_o'neill_theater.jpg\"},\"website\":\"http://www.theoneill.org/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/The-Eugene-ONeill-Theater-Center/28066519878\",\"linkedin\":\"http://www.linkedin.com/company/1115534?trk=tyah\"}]",
155
- "description": "Select, fit, and take care of costumes for cast members, and aid entertainers. May assist with multiple costume changes during performances.",
156
- "growth_rate": null
59
+ "uuid": "6806f840-3e73-0130-73dd-12313d00cdfe",
60
+ "latitude": null,
61
+ "longitude": null,
62
+ "updated_at": "2013-01-31T17:02:45Z",
63
+ "rels": {
64
+ "self": {
65
+ "href": "https://core.woofound.com/sliders/2/entities/12908"
66
+ }
157
67
  },
158
- {
159
- "name": "Oil and Gas Field Worker",
160
- "image": {
161
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/ae2c31be773046799ed2.jpg",
162
- "_640x640": {
163
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_640x640_ae2c31be773046799ed2.jpg"
164
- },
165
- "_506x540": {
166
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_506x540_ae2c31be773046799ed2.jpg"
167
- },
168
- "_480x208": {
169
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_480x208_ae2c31be773046799ed2.jpg"
170
- },
171
- "_320x320": {
172
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_320x320_ae2c31be773046799ed2.jpg"
173
- },
174
- "_306x540": {
175
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_306x540_ae2c31be773046799ed2.jpg"
176
- },
177
- "_300x300": {
178
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_300x300_ae2c31be773046799ed2.jpg"
179
- },
180
- "_260x260": {
181
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_260x260_ae2c31be773046799ed2.jpg"
182
- },
183
- "_253x270": {
184
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_253x270_ae2c31be773046799ed2.jpg"
185
- },
186
- "_240x104": {
187
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_240x104_ae2c31be773046799ed2.jpg"
188
- },
189
- "_166x166": {
190
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_166x166_ae2c31be773046799ed2.jpg"
191
- },
192
- "_150x150": {
193
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_150x150_ae2c31be773046799ed2.jpg"
194
- },
195
- "_120x120": {
196
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_120x120_ae2c31be773046799ed2.jpg"
197
- },
198
- "_90x90": {
199
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_90x90_ae2c31be773046799ed2.jpg"
200
- },
201
- "_83x83": {
202
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_83x83_ae2c31be773046799ed2.jpg"
203
- },
204
- "_60x60": {
205
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_60x60_ae2c31be773046799ed2.jpg"
206
- },
207
- "_45x45": {
208
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_45x45_ae2c31be773046799ed2.jpg"
209
- },
210
- "_30x30": {
211
- "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_30x30_ae2c31be773046799ed2.jpg"
212
- }
213
- },
214
- "uuid": "6bfa5b30-3e73-0130-73dd-12313d00cdfe",
215
- "latitude": null,
216
- "longitude": null,
217
- "updated_at": "2013-02-01T17:01:05Z",
218
- "_links": {
219
- "self": {
220
- "href": "https://core.woofound.com/sliders/2/entities/12910"
221
- }
222
- },
223
- "blend": "TPA",
224
- "green": "false",
225
- "active": "true",
226
- "bright": "false",
227
- "min_edu": "High School Diploma",
228
- "colleges": "[{\"name\":\"Bakersfield College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bakersfield_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bakersfield_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bakersfield_college.jpg\"},\"website\":\"http://www.bakersfieldcollege.edu/\",\"twitter\":\"@bcrenegades\",\"facebook\":\"https://www.facebook.com/BakersfieldCollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/426522?trk=tyah\"},{\"name\":\"American Petroleum Institute\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/american_petroleum_institute.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_american_petroleum_institute.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_american_petroleum_institute.jpg\"},\"website\":\"http://www.api.org/\",\"twitter\":\"@energytomorrow\",\"facebook\":\"https://www.facebook.com/Energy.Tomorrow\",\"linkedin\":\"http://www.linkedin.com/company/236520?trk=tyah\"},{\"name\":\"Murchison Drilling Schools\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/murchison_drilling_schools.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_murchison_drilling_schools.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_murchison_drilling_schools.jpg\"},\"website\":\"http://www.murchisondrillingschools.com/\",\"twitter\":\"@trainingmds\",\"facebook\":\"https://www.facebook.com/pages/Murchison-Drilling-Schools/158018484232622\",\"linkedin\":\"http://www.linkedin.com/company/2650870?trk=tyah\"},{\"name\":\"Bates Technical College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bates_technical_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bates_technical_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bates_technical_college.jpg\"},\"website\":\"http://www.bates.ctc.edu/\",\"twitter\":\"@batestechnical\",\"facebook\":\"https://www.facebook.com/BatesTechnicalCollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/375057?trk=tyah\"},{\"name\":\"BCIT School of Energy\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bcit_school_of_energy.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bcit_school_of_energy.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bcit_school_of_energy.jpg\"},\"website\":\"http://www.bcit.ca/\",\"twitter\":\"@bcit\",\"facebook\":\"https://www.facebook.com/bcit.ca\",\"linkedin\":\"http://www.linkedin.com/company/8344?trk=tyah\"}]",
229
- "onet_link": "http://www.onetonline.org/link/summary/47-5012.00",
230
- "avg_salary": "$40,000-50,000",
231
- "businesses": "[{\"name\":\"Exxon Mobil\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/exxon_mobil.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_exxon_mobil.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_exxon_mobil.jpg\"},\"website\":\"http://www2.exxonmobil.com/\",\"twitter\":\"@exxonmobil\",\"facebook\":\"https://www.facebook.com/ExxonMobileCorp?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/1689?trk=tyah\"},{\"name\":\"ConocoPhillips\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/conocophillips.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_conocophillips.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_conocophillips.jpg\"},\"website\":\"http://www.conocophillips.com/\",\"twitter\":\"@conocophillips\",\"facebook\":\"https://www.facebook.com/conocophillips?ref=ts\",\"linkedin\":\"http://www.linkedin.com/company/3600?trk=tyah\"},{\"name\":\"Chevron\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/chevron.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_chevron.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_chevron.jpg\"},\"website\":\"http://www.chevron.com/\",\"twitter\":\"@chevron\",\"facebook\":\"https://www.facebook.com/Chevron\",\"linkedin\":\"http://www.linkedin.com/company/chevron\"},{\"name\":\"Anadarko Petroleum Corporation\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/anadarko_petroleum_corporation.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_anadarko_petroleum_corporation.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_anadarko_petroleum_corporation.jpg\"},\"website\":\"http://www.anadarko.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Anadarko-Petroleum-Corp-APC/171817376268721\",\"linkedin\":\"http://www.linkedin.com/company/5844?trk=tyah\"},{\"name\":\"BP America\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bp_america.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bp_america.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bp_america.jpg\"},\"website\":\"http://www.bp.com/\",\"twitter\":\"@bp_america\",\"facebook\":\"https://www.facebook.com/BPAmerica?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/1389?trk=tyah\"}]",
232
- "description": "Rig derrick equipment and operate pumps to circulate mud through drill hole.",
233
- "growth_rate": "0-9%"
68
+ "blend": "NT",
69
+ "green": "false",
70
+ "active": "true",
71
+ "bright": "false",
72
+ "min_edu": "High School Diploma",
73
+ "colleges": "[{\"name\":\"University of California Berkeley\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_california_berkeley.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_california_berkeley.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_california_berkeley.jpg\"},\"website\":\"http://www.berkeley.edu/\",\"twitter\":\"@ucberkeley\",\"facebook\":\"https://www.facebook.com/UCBerkeley\",\"linkedin\":\"http://www.linkedin.com/company/2517?trk=tyah\"},{\"name\":\"Pennsylvania State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pennsylvania_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pennsylvania_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pennsylvania_state_university.jpg\"},\"website\":\"http://www.psu.edu/\",\"twitter\":\"@penn_state\",\"facebook\":\"https://www.facebook.com/pennstate\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=40178\"},{\"name\":\"Washington State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/washington_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_washington_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_washington_state_university.jpg\"},\"website\":\"http://www.wsu.edu/\",\"twitter\":\"@wsunews\",\"facebook\":\"https://www.facebook.com/washingtonstateuniv\",\"linkedin\":\"http://www.linkedin.com/company/166875?trk=tyah\"},{\"name\":\"Cornell University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cornell_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cornell_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cornell_university.jpg\"},\"website\":\"http://www.cornell.edu/\",\"twitter\":\"@cornell\",\"facebook\":\"https://www.facebook.com/Cornell\",\"linkedin\":\"http://www.linkedin.com/company/3523?trk=tyah\"},{\"name\":\"Washington University in St. Louis\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/washington_university_in_st_louis.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_washington_university_in_st_louis.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_washington_university_in_st_louis.jpg\"},\"website\":\"http://wustl.edu/\",\"twitter\":\"@wustl\",\"facebook\":\"https://www.facebook.com/wustl\",\"linkedin\":\"http://www.linkedin.com/company/4608?trk=tyah\"}]",
74
+ "onet_link": "http://www.onetonline.org/link/summary/45-2092.01",
75
+ "avg_salary": "$10,000-20,000",
76
+ "businesses": "[{\"name\":\"Swansons Nursery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/swansons_nursery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_swansons_nursery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_swansons_nursery.jpg\"},\"website\":\"http://www.swansonsnursery.com/\",\"twitter\":\"@swansons\",\"facebook\":\"https://www.facebook.com/pages/Swansons-Nursery/144985602200678\",\"linkedin\":\"http://www.linkedin.com/company/2467371?trk=tyah\"},{\"name\":\"Portland Nursery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/portland_nursery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_portland_nursery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_portland_nursery.jpg\"},\"website\":\"http://www.portlandnursery.com/\",\"twitter\":\"@pdxnursery\",\"facebook\":\"https://www.facebook.com/PortlandNursery1?v=wall\",\"linkedin\":null},{\"name\":\"Thornhill Nursery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/thornhill_nursery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_thornhill_nursery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_thornhill_nursery.jpg\"},\"website\":\"http://thornhillnursery.com/\",\"twitter\":\"@thornhillnsy\",\"facebook\":\"https://www.facebook.com/pages/Thornhill-Nursery/117398764963517\",\"linkedin\":null},{\"name\":\"Gethsemane Gardens\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/gethsemane_gardens.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_gethsemane_gardens.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_gethsemane_gardens.jpg\"},\"website\":\"http://www.gethsemanegardens.com/\",\"twitter\":\"@growgethsemane\",\"facebook\":\"https://www.facebook.com/pages/Gethsemane-Garden-Center/316505770524\",\"linkedin\":null},{\"name\":\"Barton Springs Nursery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/barton_springs_nursery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_barton_springs_nursery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_barton_springs_nursery.jpg\"},\"website\":\"http://www.bartonspringsnursery.net/\",\"twitter\":\"@bsn_plants\",\"facebook\":\"https://www.facebook.com/pages/Barton-Springs-Nursery/101176200455?ref=ts%2F\",\"linkedin\":null}]",
77
+ "description": "Work in nursery facilities or at customer location planting, cultivating, harvesting, and transplanting trees, shrubs, or plants.",
78
+ "growth_rate": null
79
+ },
80
+ {
81
+ "name": "Costume Attendant",
82
+ "image": {
83
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/421e2e101be2985885a5.jpg",
84
+ "_640x640": {
85
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_640x640_421e2e101be2985885a5.jpg"
86
+ },
87
+ "_506x540": {
88
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_506x540_421e2e101be2985885a5.jpg"
89
+ },
90
+ "_480x208": {
91
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_480x208_421e2e101be2985885a5.jpg"
92
+ },
93
+ "_320x320": {
94
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_320x320_421e2e101be2985885a5.jpg"
95
+ },
96
+ "_306x540": {
97
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_306x540_421e2e101be2985885a5.jpg"
98
+ },
99
+ "_300x300": {
100
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_300x300_421e2e101be2985885a5.jpg"
101
+ },
102
+ "_260x260": {
103
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_260x260_421e2e101be2985885a5.jpg"
104
+ },
105
+ "_253x270": {
106
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_253x270_421e2e101be2985885a5.jpg"
107
+ },
108
+ "_240x104": {
109
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_240x104_421e2e101be2985885a5.jpg"
110
+ },
111
+ "_166x166": {
112
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_166x166_421e2e101be2985885a5.jpg"
113
+ },
114
+ "_150x150": {
115
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_150x150_421e2e101be2985885a5.jpg"
116
+ },
117
+ "_120x120": {
118
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_120x120_421e2e101be2985885a5.jpg"
119
+ },
120
+ "_90x90": {
121
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_90x90_421e2e101be2985885a5.jpg"
122
+ },
123
+ "_83x83": {
124
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_83x83_421e2e101be2985885a5.jpg"
125
+ },
126
+ "_60x60": {
127
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_60x60_421e2e101be2985885a5.jpg"
128
+ },
129
+ "_45x45": {
130
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_45x45_421e2e101be2985885a5.jpg"
131
+ },
132
+ "_30x30": {
133
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12909/_30x30_421e2e101be2985885a5.jpg"
134
+ }
234
135
  },
235
- {
236
- "name": "Product Promoter",
237
- "image": {
238
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/0f5ea8e452cd7290e117.jpg",
239
- "_640x640": {
240
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_640x640_0f5ea8e452cd7290e117.jpg"
241
- },
242
- "_506x540": {
243
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_506x540_0f5ea8e452cd7290e117.jpg"
244
- },
245
- "_480x208": {
246
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_480x208_0f5ea8e452cd7290e117.jpg"
247
- },
248
- "_320x320": {
249
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_320x320_0f5ea8e452cd7290e117.jpg"
250
- },
251
- "_306x540": {
252
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_306x540_0f5ea8e452cd7290e117.jpg"
253
- },
254
- "_300x300": {
255
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_300x300_0f5ea8e452cd7290e117.jpg"
256
- },
257
- "_260x260": {
258
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_260x260_0f5ea8e452cd7290e117.jpg"
259
- },
260
- "_253x270": {
261
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_253x270_0f5ea8e452cd7290e117.jpg"
262
- },
263
- "_240x104": {
264
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_240x104_0f5ea8e452cd7290e117.jpg"
265
- },
266
- "_166x166": {
267
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_166x166_0f5ea8e452cd7290e117.jpg"
268
- },
269
- "_150x150": {
270
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_150x150_0f5ea8e452cd7290e117.jpg"
271
- },
272
- "_120x120": {
273
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_120x120_0f5ea8e452cd7290e117.jpg"
274
- },
275
- "_90x90": {
276
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_90x90_0f5ea8e452cd7290e117.jpg"
277
- },
278
- "_83x83": {
279
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_83x83_0f5ea8e452cd7290e117.jpg"
280
- },
281
- "_60x60": {
282
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_60x60_0f5ea8e452cd7290e117.jpg"
283
- },
284
- "_45x45": {
285
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_45x45_0f5ea8e452cd7290e117.jpg"
286
- },
287
- "_30x30": {
288
- "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_30x30_0f5ea8e452cd7290e117.jpg"
289
- }
290
- },
291
- "uuid": "6df48c40-3e73-0130-73dd-12313d00cdfe",
292
- "latitude": null,
293
- "longitude": null,
294
- "updated_at": "2013-01-31T17:51:51Z",
295
- "_links": {
296
- "self": {
297
- "href": "https://core.woofound.com/sliders/2/entities/12911"
298
- }
299
- },
300
- "blend": "VM",
301
- "green": "false",
302
- "active": "true",
303
- "bright": "false",
304
- "min_edu": "High School Diploma",
305
- "colleges": "[{\"name\":\"Allen Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/default.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/_70x70_default.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/_50x50_default.jpg\"},\"website\":\"http://www.allencc.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Allen-Community-College/33234557182\",\"linkedin\":null},{\"name\":\"Altahama Technical College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/altahama_technical_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_altahama_technical_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_altahama_technical_college.jpg\"},\"website\":\"http://www.altamahatech.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/altamahatech\",\"linkedin\":null},{\"name\":\"Anne Arundel Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/anne_arundel_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_anne_arundel_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_anne_arundel_community_college.jpg\"},\"website\":\"http://www.aacc.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Anne-Arundel-Community-College-Arnold-Campus/109241192475814\",\"linkedin\":\"http://www.linkedin.com/groups/Anne-Arundel-Community-College-4437823?gid=4437823&mostPopular=&trk=tyah\"},{\"name\":\"Anoka-Ramsey Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/anoka-ramsey_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_anoka-ramsey_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_anoka-ramsey_community_college.jpg\"},\"website\":\"http://www.anokaramsey.edu/\",\"twitter\":\"@anokaramseycc\",\"facebook\":\"https://www.facebook.com/AnokaRamseyCommunityCollege\",\"linkedin\":\"http://www.linkedin.com/company/62255?trk=tyah\"},{\"name\":\"Arizona Western College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/arizona_western_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_arizona_western_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_arizona_western_college.jpg\"},\"website\":\"http://www.azwestern.edu/\",\"twitter\":\"@arizonawestern\",\"facebook\":\"https://www.facebook.com/pages/Arizona-Western-College/151417306672\",\"linkedin\":\"http://www.linkedin.com/company/33195?trk=tyah\"}]",
306
- "onet_link": "http://www.onetonline.org/link/summary/41-9011.00",
307
- "avg_salary": "$20,000-30,000",
308
- "businesses": "[{\"name\":\"The Promotion Company\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_promotion_company.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_promotion_company.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_promotion_company.jpg\"},\"website\":\"http://www.thepromotioncompany.net/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/tpcstaff\",\"linkedin\":null},{\"name\":\"Pinnacle Promotions\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pinnacle_promotions.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pinnacle_promotions.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pinnacle_promotions.jpg\"},\"website\":\"http://www.pinnaclepromotions.com/\",\"twitter\":\"@pinnaclepromos\",\"facebook\":\"https://www.facebook.com/PinnaclePromotions\",\"linkedin\":\"http://www.linkedin.com/company/pinnacle-promotions\"},{\"name\":\"A&M Promotions Company\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/am_promotions_company.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_am_promotions_company.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_am_promotions_company.jpg\"},\"website\":\"http://www.anmandco.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/AM-Promotions-Co-Scottsdale-Az-85254/143945576708\",\"linkedin\":null},{\"name\":\"The Vernon Company\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_vernon_company.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_vernon_company.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_vernon_company.jpg\"},\"website\":\"http://www.vernoncompany.com/\",\"twitter\":\"@vernonwantsu\",\"facebook\":\"https://www.facebook.com/getyourbrandon?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/65972?trk=tyah\"},{\"name\":\"Black Dog Promotions\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/black_dog_promotions.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_black_dog_promotions.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_black_dog_promotions.jpg\"},\"website\":\"http://www.blackdogpromotions.com/\",\"twitter\":\"@blackdogpromo\",\"facebook\":\"https://www.facebook.com/BlackDogPR\",\"linkedin\":\"http://www.linkedin.com/in/blackdogpromotions\"}]",
309
- "description": "Demonstrate merchandise and answer questions for the purpose of creating public interest in buying the product. May sell demonstrated merchandise.",
310
- "growth_rate": "10-19%"
136
+ "uuid": "6b4f9c50-3e73-0130-73dd-12313d00cdfe",
137
+ "latitude": null,
138
+ "longitude": null,
139
+ "updated_at": "2013-01-31T17:48:50Z",
140
+ "rels": {
141
+ "self": {
142
+ "href": "https://core.woofound.com/sliders/2/entities/12909"
143
+ }
311
144
  },
312
- {
313
- "name": "Mining Machine Operator",
314
- "image": {
315
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/19c00f025cb4acdc8c8b.jpg",
316
- "_640x640": {
317
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_640x640_19c00f025cb4acdc8c8b.jpg"
318
- },
319
- "_506x540": {
320
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_506x540_19c00f025cb4acdc8c8b.jpg"
321
- },
322
- "_480x208": {
323
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_480x208_19c00f025cb4acdc8c8b.jpg"
324
- },
325
- "_320x320": {
326
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_320x320_19c00f025cb4acdc8c8b.jpg"
327
- },
328
- "_306x540": {
329
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_306x540_19c00f025cb4acdc8c8b.jpg"
330
- },
331
- "_300x300": {
332
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_300x300_19c00f025cb4acdc8c8b.jpg"
333
- },
334
- "_260x260": {
335
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_260x260_19c00f025cb4acdc8c8b.jpg"
336
- },
337
- "_253x270": {
338
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_253x270_19c00f025cb4acdc8c8b.jpg"
339
- },
340
- "_240x104": {
341
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_240x104_19c00f025cb4acdc8c8b.jpg"
342
- },
343
- "_166x166": {
344
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_166x166_19c00f025cb4acdc8c8b.jpg"
345
- },
346
- "_150x150": {
347
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_150x150_19c00f025cb4acdc8c8b.jpg"
348
- },
349
- "_120x120": {
350
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_120x120_19c00f025cb4acdc8c8b.jpg"
351
- },
352
- "_90x90": {
353
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_90x90_19c00f025cb4acdc8c8b.jpg"
354
- },
355
- "_83x83": {
356
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_83x83_19c00f025cb4acdc8c8b.jpg"
357
- },
358
- "_60x60": {
359
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_60x60_19c00f025cb4acdc8c8b.jpg"
360
- },
361
- "_45x45": {
362
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_45x45_19c00f025cb4acdc8c8b.jpg"
363
- },
364
- "_30x30": {
365
- "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_30x30_19c00f025cb4acdc8c8b.jpg"
366
- }
367
- },
368
- "uuid": "70db11e0-3e73-0130-73dd-12313d00cdfe",
369
- "latitude": null,
370
- "longitude": null,
371
- "updated_at": "2013-01-31T16:51:40Z",
372
- "_links": {
373
- "self": {
374
- "href": "https://core.woofound.com/sliders/2/entities/12912"
375
- }
376
- },
377
- "blend": "TPA",
378
- "green": "true",
379
- "active": "true",
380
- "bright": "false",
381
- "min_edu": "High School Diploma",
382
- "colleges": "[{\"name\":\"Northcentral University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/northcentral_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_northcentral_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_northcentral_university.jpg\"},\"website\":\"http://www.ncu.edu/\",\"twitter\":\"@northcentralu\",\"facebook\":\"https://www.facebook.com/NorthcentralU\",\"linkedin\":\"http://www.linkedin.com/company/35183?trk=tyah\"},{\"name\":\"Edumine\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/edumine.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_edumine.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_edumine.jpg\"},\"website\":\"http://www.edumine.com/\",\"twitter\":\"@edumine\",\"facebook\":\"https://www.facebook.com/edumine\",\"linkedin\":\"http://www.linkedin.com/company/468859?trk=tyah\"},{\"name\":\"Vincennes University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/vincennes_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_vincennes_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_vincennes_university.jpg\"},\"website\":\"http://www.vinu.edu/\",\"twitter\":\"@vincennesu\",\"facebook\":\"https://www.facebook.com/vincennesuniversity\",\"linkedin\":\"http://www.linkedin.com/company/30770?trk=tyah\"},{\"name\":\"Arizona State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/arizona_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_arizona_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_arizona_state_university.jpg\"},\"website\":\"http://www.asu.edu/\",\"twitter\":\"@asu\",\"facebook\":\"https://www.facebook.com/arizonastateuniversity\",\"linkedin\":\"http://www.linkedin.com/company/arizona-state-university\"},{\"name\":\"Iom3\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/iom3.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_iom3.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_iom3.jpg\"},\"website\":\"http://www.iom3.org/\",\"twitter\":\"@iom3\",\"facebook\":\"https://www.facebook.com/iom3globalnetwork\",\"linkedin\":\"http://www.linkedin.com/groups?gid=40508\"}]",
383
- "onet_link": "http://www.onetonline.org/link/summary/47-5041.00",
384
- "avg_salary": "$50,000-60,000",
385
- "businesses": "[{\"name\":\"CONSOL Energy\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/consol_energy.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_consol_energy.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_consol_energy.jpg\"},\"website\":\"http://www.consolenergy.com/\",\"twitter\":\"@consol_energy\",\"facebook\":\"https://www.facebook.com/consolenergy\",\"linkedin\":\"http://www.linkedin.com/company/38666?trk=tyah\"},{\"name\":\"Newmont Mining Corporation\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/newmont_mining_corporation.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_newmont_mining_corporation.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_newmont_mining_corporation.jpg\"},\"website\":\"http://www.newmont.com/\",\"twitter\":\"@newmont\",\"facebook\":\"https://www.facebook.com/NewmontMiningCorporation\",\"linkedin\":\"http://www.linkedin.com/company/newmont-mining-corporation\"},{\"name\":\"Goldcorp, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/goldcorp,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_goldcorp,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_goldcorp,_inc.jpg\"},\"website\":\"http://www.goldcorp.com/\",\"twitter\":\"@goldcorp_inc\",\"facebook\":\"https://www.facebook.com/Goldcorp?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/374889?trk=tyah\"},{\"name\":\"Arch Coal, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/arch_coal,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_arch_coal,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_arch_coal,_inc.jpg\"},\"website\":\"http://www.archcoal.com/\",\"twitter\":\"@archcoal\",\"facebook\":\"https://www.facebook.com/pages/Arch-Coal-Inc/266877643381090\",\"linkedin\":\"http://www.linkedin.com/company/arch-coal-inc.\"},{\"name\":\"Barrick Gold\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/barrick_gold.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_barrick_gold.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_barrick_gold.jpg\"},\"website\":\"http://www.barrick.com/\",\"twitter\":\"@barrickgold\",\"facebook\":\"https://www.facebook.com/barrick.gold.corporation?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/11876?trk=tyah\"}]",
386
- "description": "Operate self-propelled mining machines that rip coal, metal and nonmetal ores, rock, stone, or sand from the mine face and load it onto conveyors or into shuttle cars in a continuous operation.",
387
- "growth_rate": null
145
+ "blend": "IPM",
146
+ "green": "false",
147
+ "active": "true",
148
+ "bright": "false",
149
+ "min_edu": "High School Diploma",
150
+ "colleges": "[{\"name\":\"Abilene Christian University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/abilene_christian_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_abilene_christian_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_abilene_christian_university.jpg\"},\"website\":\"http://www.acu.edu/\",\"twitter\":\"@acuedu\",\"facebook\":\"https://www.facebook.com/abilenechristian\",\"linkedin\":\"http://www.linkedin.com/groups/Abilene-Christian-University-1910637/about\"},{\"name\":\"Abraham Baldwin Agricultural College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/abraham_baldwin_agricultural_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_abraham_baldwin_agricultural_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_abraham_baldwin_agricultural_college.jpg\"},\"website\":\"http://www.abac.edu/\",\"twitter\":\"@abac_college\",\"facebook\":\"https://www.facebook.com/1908ABAC\",\"linkedin\":\"http://www.linkedin.com/company/1838654?trk=tyah\"},{\"name\":\"Adams State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/adams_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_adams_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_adams_state_university.jpg\"},\"website\":\"http://www.adams.edu/\",\"twitter\":\"@adamsstate\",\"facebook\":\"https://www.facebook.com/adamsstate\",\"linkedin\":null},{\"name\":\"Adelphi University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/adelphi_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_adelphi_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_adelphi_university.jpg\"},\"website\":\"http://www.adelphi.edu/\",\"twitter\":\"@adelphiu\",\"facebook\":\"https://www.facebook.com/AdelphiU\",\"linkedin\":\"http://www.linkedin.com/company/162282?trk=tyah\"},{\"name\":\"Adirondack Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/adirondack_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_adirondack_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_adirondack_community_college.jpg\"},\"website\":\"http://www.sunyacc.edu/\",\"twitter\":\"@sunyadirondack\",\"facebook\":\"https://www.facebook.com/SUNYAdirondack\",\"linkedin\":\"http://www.linkedin.com/company/suny-adirondack/\"}]",
151
+ "onet_link": "http://www.onetonline.org/link/summary/39-3092.00",
152
+ "avg_salary": "$30,000-40,000",
153
+ "businesses": "[{\"name\":\"Penumbra Theatre\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/penumbra_theatre.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_penumbra_theatre.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_penumbra_theatre.jpg\"},\"website\":\"http://www.penumbratheatre.org/\",\"twitter\":\"@penumbratheatre\",\"facebook\":\"https://www.facebook.com/pages/Penumbra-Theatre-Company/31586568925\",\"linkedin\":null},{\"name\":\"The Kennedy Center\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_kennedy_center.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_kennedy_center.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_kennedy_center.jpg\"},\"website\":\"http://www.kennedy-center.org/\",\"twitter\":\"@kencen\",\"facebook\":\"https://www.facebook.com/KennedyCenter\",\"linkedin\":\"http://www.linkedin.com/company/18805?trk=tyah\"},{\"name\":\"Cincinnati Playhouse in the Park\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cincinnati_playhouse_in_the_park.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cincinnati_playhouse_in_the_park.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cincinnati_playhouse_in_the_park.jpg\"},\"website\":\"http://www.cincyplay.com/\",\"twitter\":\"@cincyplay\",\"facebook\":\"https://www.facebook.com/pages/Cincinnati-Playhouse-in-the-Park/363863578286\",\"linkedin\":\"http://www.linkedin.com/company/929850?trk=tyah\"},{\"name\":\"Denver Performing Arts Complex\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/denver_performing_arts_complex.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_denver_performing_arts_complex.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_denver_performing_arts_complex.jpg\"},\"website\":\"http://www.denvercenter.org/\",\"twitter\":\"@denvercenter\",\"facebook\":\"https://www.facebook.com/DenverCenter\",\"linkedin\":\"http://www.linkedin.com/company/51560?trk=tyah\"},{\"name\":\"Eugene O'Neill Theater\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/eugene_o'neill_theater.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_eugene_o'neill_theater.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_eugene_o'neill_theater.jpg\"},\"website\":\"http://www.theoneill.org/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/The-Eugene-ONeill-Theater-Center/28066519878\",\"linkedin\":\"http://www.linkedin.com/company/1115534?trk=tyah\"}]",
154
+ "description": "Select, fit, and take care of costumes for cast members, and aid entertainers. May assist with multiple costume changes during performances.",
155
+ "growth_rate": null
156
+ },
157
+ {
158
+ "name": "Oil and Gas Field Worker",
159
+ "image": {
160
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/ae2c31be773046799ed2.jpg",
161
+ "_640x640": {
162
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_640x640_ae2c31be773046799ed2.jpg"
163
+ },
164
+ "_506x540": {
165
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_506x540_ae2c31be773046799ed2.jpg"
166
+ },
167
+ "_480x208": {
168
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_480x208_ae2c31be773046799ed2.jpg"
169
+ },
170
+ "_320x320": {
171
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_320x320_ae2c31be773046799ed2.jpg"
172
+ },
173
+ "_306x540": {
174
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_306x540_ae2c31be773046799ed2.jpg"
175
+ },
176
+ "_300x300": {
177
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_300x300_ae2c31be773046799ed2.jpg"
178
+ },
179
+ "_260x260": {
180
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_260x260_ae2c31be773046799ed2.jpg"
181
+ },
182
+ "_253x270": {
183
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_253x270_ae2c31be773046799ed2.jpg"
184
+ },
185
+ "_240x104": {
186
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_240x104_ae2c31be773046799ed2.jpg"
187
+ },
188
+ "_166x166": {
189
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_166x166_ae2c31be773046799ed2.jpg"
190
+ },
191
+ "_150x150": {
192
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_150x150_ae2c31be773046799ed2.jpg"
193
+ },
194
+ "_120x120": {
195
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_120x120_ae2c31be773046799ed2.jpg"
196
+ },
197
+ "_90x90": {
198
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_90x90_ae2c31be773046799ed2.jpg"
199
+ },
200
+ "_83x83": {
201
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_83x83_ae2c31be773046799ed2.jpg"
202
+ },
203
+ "_60x60": {
204
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_60x60_ae2c31be773046799ed2.jpg"
205
+ },
206
+ "_45x45": {
207
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_45x45_ae2c31be773046799ed2.jpg"
208
+ },
209
+ "_30x30": {
210
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12910/_30x30_ae2c31be773046799ed2.jpg"
211
+ }
388
212
  },
389
- {
390
- "name": "Animal Trainer",
391
- "image": {
392
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/c16f3a19d81727e06e85.jpg",
393
- "_640x640": {
394
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_640x640_c16f3a19d81727e06e85.jpg"
395
- },
396
- "_506x540": {
397
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_506x540_c16f3a19d81727e06e85.jpg"
398
- },
399
- "_480x208": {
400
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_480x208_c16f3a19d81727e06e85.jpg"
401
- },
402
- "_320x320": {
403
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_320x320_c16f3a19d81727e06e85.jpg"
404
- },
405
- "_306x540": {
406
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_306x540_c16f3a19d81727e06e85.jpg"
407
- },
408
- "_300x300": {
409
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_300x300_c16f3a19d81727e06e85.jpg"
410
- },
411
- "_260x260": {
412
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_260x260_c16f3a19d81727e06e85.jpg"
413
- },
414
- "_253x270": {
415
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_253x270_c16f3a19d81727e06e85.jpg"
416
- },
417
- "_240x104": {
418
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_240x104_c16f3a19d81727e06e85.jpg"
419
- },
420
- "_166x166": {
421
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_166x166_c16f3a19d81727e06e85.jpg"
422
- },
423
- "_150x150": {
424
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_150x150_c16f3a19d81727e06e85.jpg"
425
- },
426
- "_120x120": {
427
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_120x120_c16f3a19d81727e06e85.jpg"
428
- },
429
- "_90x90": {
430
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_90x90_c16f3a19d81727e06e85.jpg"
431
- },
432
- "_83x83": {
433
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_83x83_c16f3a19d81727e06e85.jpg"
434
- },
435
- "_60x60": {
436
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_60x60_c16f3a19d81727e06e85.jpg"
437
- },
438
- "_45x45": {
439
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_45x45_c16f3a19d81727e06e85.jpg"
440
- },
441
- "_30x30": {
442
- "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_30x30_c16f3a19d81727e06e85.jpg"
443
- }
444
- },
445
- "uuid": "738e3530-3e73-0130-73dd-12313d00cdfe",
446
- "latitude": null,
447
- "longitude": null,
448
- "updated_at": "2013-01-31T17:06:12Z",
449
- "_links": {
450
- "self": {
451
- "href": "https://core.woofound.com/sliders/2/entities/12913"
452
- }
453
- },
454
- "blend": "NMT",
455
- "green": "false",
456
- "active": "true",
457
- "bright": "false",
458
- "min_edu": "High School Diploma",
459
- "colleges": "[{\"name\":\"Animal Behavior College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/animal_behavior_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_animal_behavior_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_animal_behavior_college.jpg\"},\"website\":\"http://www.animalbehaviorcollege.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/AnimalBehaviorCollege\",\"linkedin\":\"http://www.linkedin.com/company/2145001?trk=tyah\"},{\"name\":\"Canisius College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/canisius_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_canisius_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_canisius_college.jpg\"},\"website\":\"http://www.canisius.edu/\",\"twitter\":\"@canisiuscollege\",\"facebook\":\"https://www.facebook.com/canisiuscollege\",\"linkedin\":\"http://www.linkedin.com/company/19479?trk=tyah\"},{\"name\":\"Lamar Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/lamar_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_lamar_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_lamar_community_college.jpg\"},\"website\":\"http://www.lamarcc.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/lamarcommunitycollege\",\"linkedin\":\"http://www.linkedin.com/company/784534?trk=tyah\"},{\"name\":\"Moorpark College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/moorpark_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_moorpark_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_moorpark_college.jpg\"},\"website\":\"http://www.moorparkcollege.edu/\",\"twitter\":\"@mpcollege_as\",\"facebook\":\"https://www.facebook.com/pages/Moorpark-College-Alumni/112579495458888\",\"linkedin\":\"http://www.linkedin.com/company/42747?trk=tyah\"},{\"name\":\"Bergin University of Canine Studies\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bergin_university_of_canine_studies.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bergin_university_of_canine_studies.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bergin_university_of_canine_studies.jpg\"},\"website\":\"http://berginu.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/BerginU\",\"linkedin\":\"http://www.linkedin.com/groups?gid=4269413&mostPopular=&trk=tyah\"}]",
460
- "onet_link": "http://www.onetonline.org/link/summary/39-2011.00",
461
- "avg_salary": "$20,000-30,000",
462
- "businesses": "[{\"name\":\"Petco\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/petco.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_petco.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_petco.jpg\"},\"website\":\"http://www.petco.com\",\"twitter\":\"@petco\",\"facebook\":\"https://www.facebook.com/PETCO\",\"linkedin\":\"http://www.linkedin.com/groups/Petco-Animal-Supplies-Inc-1794118?gid=1794118&mostPopular=&trk=tyah\"},{\"name\":\"Top Dog Obedience Training\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/top_dog_obedience_training.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_top_dog_obedience_training.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_top_dog_obedience_training.jpg\"},\"website\":\"http://www.topdogdallas.com/\",\"twitter\":\"@topdogobedience\",\"facebook\":\"https://www.facebook.com/TopDogDallas\",\"linkedin\":null},{\"name\":\"P.U.P.S. Dog Obedience Training\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pups_dog_obedience_training.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pups_dog_obedience_training.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pups_dog_obedience_training.jpg\"},\"website\":\"http://pupsdogobediencetraining.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/PUPS-Dog-Obedience-Training/122687871086570\",\"linkedin\":null},{\"name\":\"Canine University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/canine_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_canine_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_canine_university.jpg\"},\"website\":\"http://www.canineuniversity.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Canine-University/298095346118\",\"linkedin\":null},{\"name\":\"Gemini Dogs\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/gemini_dogs.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_gemini_dogs.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_gemini_dogs.jpg\"},\"website\":\"http://www.geminidogs.com/\",\"twitter\":\"@geminidogs\",\"facebook\":\"https://www.facebook.com/geminidogs\",\"linkedin\":\"http://www.linkedin.com/pub/michelle-allen/19/417/319\"}]",
463
- "description": "Train animals for riding, harness, security, performance, or obedience, or assisting persons with disabilities. Accustom animals to human voice and contact; and condition animals to respond to commands. Train animals according to prescribed standards for show or competition. May train animals to carry pack loads or work as part of pack team.",
464
- "growth_rate": "0-9%"
213
+ "uuid": "6bfa5b30-3e73-0130-73dd-12313d00cdfe",
214
+ "latitude": null,
215
+ "longitude": null,
216
+ "updated_at": "2013-02-01T17:01:05Z",
217
+ "rels": {
218
+ "self": {
219
+ "href": "https://core.woofound.com/sliders/2/entities/12910"
220
+ }
465
221
  },
466
- {
467
- "name": "Bartender",
468
- "image": {
469
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/252a54492423eabe16c1.jpg",
470
- "_640x640": {
471
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_640x640_252a54492423eabe16c1.jpg"
472
- },
473
- "_506x540": {
474
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_506x540_252a54492423eabe16c1.jpg"
475
- },
476
- "_480x208": {
477
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_480x208_252a54492423eabe16c1.jpg"
478
- },
479
- "_320x320": {
480
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_320x320_252a54492423eabe16c1.jpg"
481
- },
482
- "_306x540": {
483
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_306x540_252a54492423eabe16c1.jpg"
484
- },
485
- "_300x300": {
486
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_300x300_252a54492423eabe16c1.jpg"
487
- },
488
- "_260x260": {
489
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_260x260_252a54492423eabe16c1.jpg"
490
- },
491
- "_253x270": {
492
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_253x270_252a54492423eabe16c1.jpg"
493
- },
494
- "_240x104": {
495
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_240x104_252a54492423eabe16c1.jpg"
496
- },
497
- "_166x166": {
498
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_166x166_252a54492423eabe16c1.jpg"
499
- },
500
- "_150x150": {
501
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_150x150_252a54492423eabe16c1.jpg"
502
- },
503
- "_120x120": {
504
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_120x120_252a54492423eabe16c1.jpg"
505
- },
506
- "_90x90": {
507
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_90x90_252a54492423eabe16c1.jpg"
508
- },
509
- "_83x83": {
510
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_83x83_252a54492423eabe16c1.jpg"
511
- },
512
- "_60x60": {
513
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_60x60_252a54492423eabe16c1.jpg"
514
- },
515
- "_45x45": {
516
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_45x45_252a54492423eabe16c1.jpg"
517
- },
518
- "_30x30": {
519
- "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_30x30_252a54492423eabe16c1.jpg"
520
- }
521
- },
522
- "uuid": "769aa210-3e73-0130-73dd-12313d00cdfe",
523
- "latitude": null,
524
- "longitude": null,
525
- "updated_at": "2013-01-31T17:10:31Z",
526
- "_links": {
527
- "self": {
528
- "href": "https://core.woofound.com/sliders/2/entities/12914"
529
- }
530
- },
531
- "blend": "TMV",
532
- "green": "false",
533
- "active": "true",
534
- "bright": "true",
535
- "min_edu": "High School Diploma",
536
- "colleges": "[{\"name\":\"New York Bartending School\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/new_york_bartending_school.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_new_york_bartending_school.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_new_york_bartending_school.jpg\"},\"website\":\"http://www.newyorkbartendingschool.com/\",\"twitter\":\"@nybartendschool\",\"facebook\":\"https://www.facebook.com/pages/New-York-Bartending-School/26338938345\",\"linkedin\":null},{\"name\":\"Mixology Wine Institute\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/mixology_wine_institute.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_mixology_wine_institute.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_mixology_wine_institute.jpg\"},\"website\":\"http://mixologywine.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/MixologyWine?fref=ts\",\"linkedin\":null},{\"name\":\"Bartenders Professional Training Institute, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bartenders_professional_training_institute,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bartenders_professional_training_institute,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bartenders_professional_training_institute,_inc.jpg\"},\"website\":\"http://www.bartenderprotraining.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/bartendny\",\"linkedin\":null},{\"name\":\"Atlanta Bartending School\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/atlanta_bartending_school.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_atlanta_bartending_school.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_atlanta_bartending_school.jpg\"},\"website\":\"http://atlantabartendingschool.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Atlanta-Bartending-School/286974817093?fref=ts\",\"linkedin\":null},{\"name\":\"University of Mixology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_mixology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_mixology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_mixology.jpg\"},\"website\":\"http://universityofmixology.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/University-of-Mixology/117994357388\",\"linkedin\":null}]",
537
- "onet_link": "http://www.onetonline.org/link/summary/35-3011.00",
538
- "avg_salary": "$10,000-20,000",
539
- "businesses": "[{\"name\":\"Bar Agricole\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bar_agricole.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bar_agricole.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bar_agricole.jpg\"},\"website\":\"http://www.baragricole.com/\",\"twitter\":\"@baragricole\",\"facebook\":\"https://www.facebook.com/pages/Bar-Agricole/286956729303\",\"linkedin\":\"http://www.linkedin.com/company/1079854?trk=tyah\"},{\"name\":\"Cure\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cure.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cure.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cure.jpg\"},\"website\":\"http://www.curenola.com/\",\"twitter\":\"@curenola\",\"facebook\":\"https://www.facebook.com/curenola\",\"linkedin\":null},{\"name\":\"Drink\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/drink.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_drink.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_drink.jpg\"},\"website\":\"http://www.drinkfortpoint.com/\",\"twitter\":\"@drinkboston\",\"facebook\":\"https://www.facebook.com/DrinkFortPoint\",\"linkedin\":null},{\"name\":\"Holeman & Finch Public House\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/holeman__finch_public_house.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_holeman__finch_public_house.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_holeman__finch_public_house.jpg\"},\"website\":\"http://www.holeman-finch.com/\",\"twitter\":\"@chefhopkins\",\"facebook\":\"https://www.facebook.com/Holeman.Finch\",\"linkedin\":null},{\"name\":\"Rattle N Hum\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/rattle_n_hum.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_rattle_n_hum.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_rattle_n_hum.jpg\"},\"website\":\"http://www.rattlenhumbarnyc.com/\",\"twitter\":\"@rattlenhumbarny\",\"facebook\":\"https://www.facebook.com/pages/Rattle-N-Hum/122918434430242\",\"linkedin\":\"http://www.linkedin.com/company/1132918?trk=tyah\"}]",
540
- "description": "Mix and serve drinks to patrons, directly or through waitstaff.",
541
- "growth_rate": "0-9%"
222
+ "blend": "TPA",
223
+ "green": "false",
224
+ "active": "true",
225
+ "bright": "false",
226
+ "min_edu": "High School Diploma",
227
+ "colleges": "[{\"name\":\"Bakersfield College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bakersfield_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bakersfield_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bakersfield_college.jpg\"},\"website\":\"http://www.bakersfieldcollege.edu/\",\"twitter\":\"@bcrenegades\",\"facebook\":\"https://www.facebook.com/BakersfieldCollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/426522?trk=tyah\"},{\"name\":\"American Petroleum Institute\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/american_petroleum_institute.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_american_petroleum_institute.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_american_petroleum_institute.jpg\"},\"website\":\"http://www.api.org/\",\"twitter\":\"@energytomorrow\",\"facebook\":\"https://www.facebook.com/Energy.Tomorrow\",\"linkedin\":\"http://www.linkedin.com/company/236520?trk=tyah\"},{\"name\":\"Murchison Drilling Schools\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/murchison_drilling_schools.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_murchison_drilling_schools.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_murchison_drilling_schools.jpg\"},\"website\":\"http://www.murchisondrillingschools.com/\",\"twitter\":\"@trainingmds\",\"facebook\":\"https://www.facebook.com/pages/Murchison-Drilling-Schools/158018484232622\",\"linkedin\":\"http://www.linkedin.com/company/2650870?trk=tyah\"},{\"name\":\"Bates Technical College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bates_technical_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bates_technical_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bates_technical_college.jpg\"},\"website\":\"http://www.bates.ctc.edu/\",\"twitter\":\"@batestechnical\",\"facebook\":\"https://www.facebook.com/BatesTechnicalCollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/375057?trk=tyah\"},{\"name\":\"BCIT School of Energy\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bcit_school_of_energy.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bcit_school_of_energy.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bcit_school_of_energy.jpg\"},\"website\":\"http://www.bcit.ca/\",\"twitter\":\"@bcit\",\"facebook\":\"https://www.facebook.com/bcit.ca\",\"linkedin\":\"http://www.linkedin.com/company/8344?trk=tyah\"}]",
228
+ "onet_link": "http://www.onetonline.org/link/summary/47-5012.00",
229
+ "avg_salary": "$40,000-50,000",
230
+ "businesses": "[{\"name\":\"Exxon Mobil\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/exxon_mobil.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_exxon_mobil.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_exxon_mobil.jpg\"},\"website\":\"http://www2.exxonmobil.com/\",\"twitter\":\"@exxonmobil\",\"facebook\":\"https://www.facebook.com/ExxonMobileCorp?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/1689?trk=tyah\"},{\"name\":\"ConocoPhillips\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/conocophillips.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_conocophillips.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_conocophillips.jpg\"},\"website\":\"http://www.conocophillips.com/\",\"twitter\":\"@conocophillips\",\"facebook\":\"https://www.facebook.com/conocophillips?ref=ts\",\"linkedin\":\"http://www.linkedin.com/company/3600?trk=tyah\"},{\"name\":\"Chevron\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/chevron.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_chevron.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_chevron.jpg\"},\"website\":\"http://www.chevron.com/\",\"twitter\":\"@chevron\",\"facebook\":\"https://www.facebook.com/Chevron\",\"linkedin\":\"http://www.linkedin.com/company/chevron\"},{\"name\":\"Anadarko Petroleum Corporation\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/anadarko_petroleum_corporation.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_anadarko_petroleum_corporation.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_anadarko_petroleum_corporation.jpg\"},\"website\":\"http://www.anadarko.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Anadarko-Petroleum-Corp-APC/171817376268721\",\"linkedin\":\"http://www.linkedin.com/company/5844?trk=tyah\"},{\"name\":\"BP America\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bp_america.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bp_america.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bp_america.jpg\"},\"website\":\"http://www.bp.com/\",\"twitter\":\"@bp_america\",\"facebook\":\"https://www.facebook.com/BPAmerica?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/1389?trk=tyah\"}]",
231
+ "description": "Rig derrick equipment and operate pumps to circulate mud through drill hole.",
232
+ "growth_rate": "0-9%"
233
+ },
234
+ {
235
+ "name": "Product Promoter",
236
+ "image": {
237
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/0f5ea8e452cd7290e117.jpg",
238
+ "_640x640": {
239
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_640x640_0f5ea8e452cd7290e117.jpg"
240
+ },
241
+ "_506x540": {
242
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_506x540_0f5ea8e452cd7290e117.jpg"
243
+ },
244
+ "_480x208": {
245
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_480x208_0f5ea8e452cd7290e117.jpg"
246
+ },
247
+ "_320x320": {
248
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_320x320_0f5ea8e452cd7290e117.jpg"
249
+ },
250
+ "_306x540": {
251
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_306x540_0f5ea8e452cd7290e117.jpg"
252
+ },
253
+ "_300x300": {
254
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_300x300_0f5ea8e452cd7290e117.jpg"
255
+ },
256
+ "_260x260": {
257
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_260x260_0f5ea8e452cd7290e117.jpg"
258
+ },
259
+ "_253x270": {
260
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_253x270_0f5ea8e452cd7290e117.jpg"
261
+ },
262
+ "_240x104": {
263
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_240x104_0f5ea8e452cd7290e117.jpg"
264
+ },
265
+ "_166x166": {
266
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_166x166_0f5ea8e452cd7290e117.jpg"
267
+ },
268
+ "_150x150": {
269
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_150x150_0f5ea8e452cd7290e117.jpg"
270
+ },
271
+ "_120x120": {
272
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_120x120_0f5ea8e452cd7290e117.jpg"
273
+ },
274
+ "_90x90": {
275
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_90x90_0f5ea8e452cd7290e117.jpg"
276
+ },
277
+ "_83x83": {
278
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_83x83_0f5ea8e452cd7290e117.jpg"
279
+ },
280
+ "_60x60": {
281
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_60x60_0f5ea8e452cd7290e117.jpg"
282
+ },
283
+ "_45x45": {
284
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_45x45_0f5ea8e452cd7290e117.jpg"
285
+ },
286
+ "_30x30": {
287
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12911/_30x30_0f5ea8e452cd7290e117.jpg"
288
+ }
542
289
  },
543
- {
544
- "name": "Bicycle Repair",
545
- "image": {
546
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/85b742cfae723acd1825.jpg",
547
- "_640x640": {
548
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_640x640_85b742cfae723acd1825.jpg"
549
- },
550
- "_506x540": {
551
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_506x540_85b742cfae723acd1825.jpg"
552
- },
553
- "_480x208": {
554
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_480x208_85b742cfae723acd1825.jpg"
555
- },
556
- "_320x320": {
557
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_320x320_85b742cfae723acd1825.jpg"
558
- },
559
- "_306x540": {
560
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_306x540_85b742cfae723acd1825.jpg"
561
- },
562
- "_300x300": {
563
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_300x300_85b742cfae723acd1825.jpg"
564
- },
565
- "_260x260": {
566
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_260x260_85b742cfae723acd1825.jpg"
567
- },
568
- "_253x270": {
569
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_253x270_85b742cfae723acd1825.jpg"
570
- },
571
- "_240x104": {
572
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_240x104_85b742cfae723acd1825.jpg"
573
- },
574
- "_166x166": {
575
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_166x166_85b742cfae723acd1825.jpg"
576
- },
577
- "_150x150": {
578
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_150x150_85b742cfae723acd1825.jpg"
579
- },
580
- "_120x120": {
581
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_120x120_85b742cfae723acd1825.jpg"
582
- },
583
- "_90x90": {
584
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_90x90_85b742cfae723acd1825.jpg"
585
- },
586
- "_83x83": {
587
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_83x83_85b742cfae723acd1825.jpg"
588
- },
589
- "_60x60": {
590
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_60x60_85b742cfae723acd1825.jpg"
591
- },
592
- "_45x45": {
593
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_45x45_85b742cfae723acd1825.jpg"
594
- },
595
- "_30x30": {
596
- "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_30x30_85b742cfae723acd1825.jpg"
597
- }
598
- },
599
- "uuid": "796ba5b0-3e73-0130-73dd-12313d00cdfe",
600
- "latitude": null,
601
- "longitude": null,
602
- "updated_at": "2013-01-31T17:10:58Z",
603
- "_links": {
604
- "self": {
605
- "href": "https://core.woofound.com/sliders/2/entities/12915"
606
- }
607
- },
608
- "blend": "TPA",
609
- "green": "false",
610
- "active": "true",
611
- "bright": "true",
612
- "min_edu": "High School Diploma",
613
- "colleges": "[{\"name\":\"Ashworth College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ashworth_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ashworth_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ashworth_college.jpg\"},\"website\":\"http://www.ashworthcollege.edu/\",\"twitter\":\"@ashworthcollege\",\"facebook\":\"https://www.facebook.com/ashworthcollege\",\"linkedin\":\"http://www.linkedin.com/company/1430932?trk=tyah\"},{\"name\":\"Penn Foster Career School\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/penn_foster_career_school.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_penn_foster_career_school.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_penn_foster_career_school.jpg\"},\"website\":\"http://www.pennfoster.edu/\",\"twitter\":\"@pennfoster\",\"facebook\":\"https://www.facebook.com/pfcareerschool\",\"linkedin\":null},{\"name\":\"Southern New Hampshire University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/southern_new_hampshire_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_southern_new_hampshire_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_southern_new_hampshire_university.jpg\"},\"website\":\"http://www.snhu.edu/\",\"twitter\":\"@snhu\",\"facebook\":\"https://www.facebook.com/OfficialSNHU\",\"linkedin\":\"http://www.linkedin.com/groups?mostPopular=&gid=3688403\"},{\"name\":\"Liberty University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/liberty_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_liberty_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_liberty_university.jpg\"},\"website\":\"http://www.liberty.edu/\",\"twitter\":\"@libertyu\",\"facebook\":\"https://www.facebook.com/LibertyUniversity\",\"linkedin\":\"http://www.linkedin.com/company/9654?trk=tyah\"},{\"name\":\"New England Institute of Technology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/new_england_institute_of_technology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_new_england_institute_of_technology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_new_england_institute_of_technology.jpg\"},\"website\":\"http://www.neit.edu/\",\"twitter\":\"@neinstitutetech\",\"facebook\":\"https://www.facebook.com/NewEnglandTech\",\"linkedin\":\"http://www.linkedin.com/company/41129?trk=tyah\"}]",
614
- "onet_link": "http://www.onetonline.org/link/summary/49-3091.00",
615
- "avg_salary": "$20,000-30,000",
616
- "businesses": "[{\"name\":\"The Devil's Gear Bike Shop\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_devil's_gear_bike_shop.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_devil's_gear_bike_shop.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_devil's_gear_bike_shop.jpg\"},\"website\":\"http://www.thedevilsgear.com/\",\"twitter\":\"@thedevilsgear\",\"facebook\":\"https://www.facebook.com/thedevilsgear\",\"linkedin\":null},{\"name\":\"Intown Bicycles\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/intown_bicycles.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_intown_bicycles.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_intown_bicycles.jpg\"},\"website\":\"http://www.intownbicycles.com/\",\"twitter\":\"@intownbicycles\",\"facebook\":\"https://www.facebook.com/pages/Intown-Bicycles/179074262186089\",\"linkedin\":null},{\"name\":\"East Burke Sports\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/east_burke_sports.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_east_burke_sports.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_east_burke_sports.jpg\"},\"website\":\"http://www.eastburkesports.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/East-Burke-Sports/153752911314086\",\"linkedin\":null},{\"name\":\"Belmont Wheelworks\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/belmont_wheelworks.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_belmont_wheelworks.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_belmont_wheelworks.jpg\"},\"website\":\"http://wheelworks.com/articles/belmont-wheelworks-pg137.htm\",\"twitter\":\"@wheelworksbikes\",\"facebook\":\"https://www.facebook.com/belmontwheelworks\",\"linkedin\":null},{\"name\":\"Drummond Custom Cycles\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/drummond_custom_cycles.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_drummond_custom_cycles.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_drummond_custom_cycles.jpg\"},\"website\":\"http://drummondcycles.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/drummondcycles\",\"linkedin\":null}]",
617
- "description": "Repair and service bicycles.",
618
- "growth_rate": null
290
+ "uuid": "6df48c40-3e73-0130-73dd-12313d00cdfe",
291
+ "latitude": null,
292
+ "longitude": null,
293
+ "updated_at": "2013-01-31T17:51:51Z",
294
+ "rels": {
295
+ "self": {
296
+ "href": "https://core.woofound.com/sliders/2/entities/12911"
297
+ }
619
298
  },
620
- {
621
- "name": "Dental Laboratory Technician",
622
- "image": {
623
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/2c1935502736c9d3b028.jpg",
624
- "_640x640": {
625
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_640x640_2c1935502736c9d3b028.jpg"
626
- },
627
- "_506x540": {
628
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_506x540_2c1935502736c9d3b028.jpg"
629
- },
630
- "_480x208": {
631
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_480x208_2c1935502736c9d3b028.jpg"
632
- },
633
- "_320x320": {
634
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_320x320_2c1935502736c9d3b028.jpg"
635
- },
636
- "_306x540": {
637
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_306x540_2c1935502736c9d3b028.jpg"
638
- },
639
- "_300x300": {
640
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_300x300_2c1935502736c9d3b028.jpg"
641
- },
642
- "_260x260": {
643
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_260x260_2c1935502736c9d3b028.jpg"
644
- },
645
- "_253x270": {
646
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_253x270_2c1935502736c9d3b028.jpg"
647
- },
648
- "_240x104": {
649
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_240x104_2c1935502736c9d3b028.jpg"
650
- },
651
- "_166x166": {
652
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_166x166_2c1935502736c9d3b028.jpg"
653
- },
654
- "_150x150": {
655
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_150x150_2c1935502736c9d3b028.jpg"
656
- },
657
- "_120x120": {
658
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_120x120_2c1935502736c9d3b028.jpg"
659
- },
660
- "_90x90": {
661
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_90x90_2c1935502736c9d3b028.jpg"
662
- },
663
- "_83x83": {
664
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_83x83_2c1935502736c9d3b028.jpg"
665
- },
666
- "_60x60": {
667
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_60x60_2c1935502736c9d3b028.jpg"
668
- },
669
- "_45x45": {
670
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_45x45_2c1935502736c9d3b028.jpg"
671
- },
672
- "_30x30": {
673
- "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_30x30_2c1935502736c9d3b028.jpg"
674
- }
675
- },
676
- "uuid": "7c36d2a0-3e73-0130-73dd-12313d00cdfe",
677
- "latitude": null,
678
- "longitude": null,
679
- "updated_at": "2013-01-31T17:52:29Z",
680
- "_links": {
681
- "self": {
682
- "href": "https://core.woofound.com/sliders/2/entities/12916"
683
- }
684
- },
685
- "blend": "TAP",
686
- "green": "false",
687
- "active": "true",
688
- "bright": "false",
689
- "min_edu": "High School Diploma",
690
- "colleges": "[{\"name\":\"Argosy University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/argosy_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_argosy_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_argosy_university.jpg\"},\"website\":\"http://www.argosy.edu/\",\"twitter\":\"@argosyu\",\"facebook\":\"https://www.facebook.com/ArgosyStudents\",\"linkedin\":\"http://www.linkedin.com/company/162512?trk=tyah\"},{\"name\":\"ECPI University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ecpi_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ecpi_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ecpi_university.jpg\"},\"website\":\"http://www.ecpi.edu/\",\"twitter\":\"@ecpiuniversity\",\"facebook\":\"https://www.facebook.com/ECPIuniversity/?intcmp=facebook\",\"linkedin\":\"http://www.linkedin.com/company/ecpi-university\"},{\"name\":\"Sanford Brown\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/sanford_brown.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_sanford_brown.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_sanford_brown.jpg\"},\"website\":\"http://www.sanfordbrown.edu/\",\"twitter\":\"@sanfordbrownedu\",\"facebook\":\"https://www.facebook.com/sanfordbrownhealthschools\",\"linkedin\":\"http://www.linkedin.com/company/838989?trk=tyah\"},{\"name\":\"Kaplan University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/kaplan_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_kaplan_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_kaplan_university.jpg\"},\"website\":\"http://www.kaplanuniversity.edu/\",\"twitter\":\"@kaplanuniv\",\"facebook\":\"https://www.facebook.com/KaplanUniversity\",\"linkedin\":\"http://www.linkedin.com/groups?gid=2244040&trk=hb_side_g\"},{\"name\":\"Walden University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/walden_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_walden_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_walden_university.jpg\"},\"website\":\"http://www.waldenu.edu\",\"twitter\":\"@waldenu\",\"facebook\":\"https://www.facebook.com/waldenu?ref=s\",\"linkedin\":\"http://www.linkedin.com/company/17473?trk=tyah\"}]",
691
- "onet_link": "http://www.onetonline.org/link/summary/51-9081.00",
692
- "avg_salary": "$30,000-40,000",
693
- "businesses": "[{\"name\":\"Massachusetts Dental Society\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/massachusetts_dental_society.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_massachusetts_dental_society.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_massachusetts_dental_society.jpg\"},\"website\":\"http://www.massdental.org/\",\"twitter\":\"@massdental\",\"facebook\":\"https://www.facebook.com/massdental\",\"linkedin\":\"http://www.linkedin.com/company/2527650?trk=tyah\"},{\"name\":\"Friendship Dental Labs\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/friendship_dental_labs.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_friendship_dental_labs.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_friendship_dental_labs.jpg\"},\"website\":\"http://www.friendshipdentallab.com/\",\"twitter\":\"@friendshiplabs\",\"facebook\":\"https://www.facebook.com/FriendshipLabs\",\"linkedin\":\"http://www.linkedin.com/company/2428496?trk=tyah\"},{\"name\":\"Top Dentists\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/top_dentists.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_top_dentists.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_top_dentists.jpg\"},\"website\":\"http://www.topdentists.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/topdentists.com\",\"linkedin\":null},{\"name\":\"University of Maryland at Baltimore\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_maryland_at_baltimore.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_maryland_at_baltimore.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_maryland_at_baltimore.jpg\"},\"website\":\"http://www.umaryland.edu/\",\"twitter\":\"@umbnews\",\"facebook\":\"https://www.facebook.com/pages/University-of-Maryland-Baltimore/53789299214\",\"linkedin\":\"http://www.linkedin.com/company/university-of-maryland-baltimore-umb-\"},{\"name\":\"Washington Center for Dentistry\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/washington_center_for_dentistry.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_washington_center_for_dentistry.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_washington_center_for_dentistry.jpg\"},\"website\":\"http://www.washdent.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/washdent\",\"linkedin\":null}]",
694
- "description": "Construct and repair full or partial dentures or dental appliances.",
695
- "growth_rate": "0-9%"
299
+ "blend": "VM",
300
+ "green": "false",
301
+ "active": "true",
302
+ "bright": "false",
303
+ "min_edu": "High School Diploma",
304
+ "colleges": "[{\"name\":\"Allen Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/default.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/_70x70_default.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/_50x50_default.jpg\"},\"website\":\"http://www.allencc.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Allen-Community-College/33234557182\",\"linkedin\":null},{\"name\":\"Altahama Technical College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/altahama_technical_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_altahama_technical_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_altahama_technical_college.jpg\"},\"website\":\"http://www.altamahatech.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/altamahatech\",\"linkedin\":null},{\"name\":\"Anne Arundel Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/anne_arundel_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_anne_arundel_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_anne_arundel_community_college.jpg\"},\"website\":\"http://www.aacc.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Anne-Arundel-Community-College-Arnold-Campus/109241192475814\",\"linkedin\":\"http://www.linkedin.com/groups/Anne-Arundel-Community-College-4437823?gid=4437823&mostPopular=&trk=tyah\"},{\"name\":\"Anoka-Ramsey Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/anoka-ramsey_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_anoka-ramsey_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_anoka-ramsey_community_college.jpg\"},\"website\":\"http://www.anokaramsey.edu/\",\"twitter\":\"@anokaramseycc\",\"facebook\":\"https://www.facebook.com/AnokaRamseyCommunityCollege\",\"linkedin\":\"http://www.linkedin.com/company/62255?trk=tyah\"},{\"name\":\"Arizona Western College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/arizona_western_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_arizona_western_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_arizona_western_college.jpg\"},\"website\":\"http://www.azwestern.edu/\",\"twitter\":\"@arizonawestern\",\"facebook\":\"https://www.facebook.com/pages/Arizona-Western-College/151417306672\",\"linkedin\":\"http://www.linkedin.com/company/33195?trk=tyah\"}]",
305
+ "onet_link": "http://www.onetonline.org/link/summary/41-9011.00",
306
+ "avg_salary": "$20,000-30,000",
307
+ "businesses": "[{\"name\":\"The Promotion Company\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_promotion_company.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_promotion_company.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_promotion_company.jpg\"},\"website\":\"http://www.thepromotioncompany.net/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/tpcstaff\",\"linkedin\":null},{\"name\":\"Pinnacle Promotions\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pinnacle_promotions.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pinnacle_promotions.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pinnacle_promotions.jpg\"},\"website\":\"http://www.pinnaclepromotions.com/\",\"twitter\":\"@pinnaclepromos\",\"facebook\":\"https://www.facebook.com/PinnaclePromotions\",\"linkedin\":\"http://www.linkedin.com/company/pinnacle-promotions\"},{\"name\":\"A&M Promotions Company\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/am_promotions_company.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_am_promotions_company.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_am_promotions_company.jpg\"},\"website\":\"http://www.anmandco.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/AM-Promotions-Co-Scottsdale-Az-85254/143945576708\",\"linkedin\":null},{\"name\":\"The Vernon Company\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_vernon_company.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_vernon_company.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_vernon_company.jpg\"},\"website\":\"http://www.vernoncompany.com/\",\"twitter\":\"@vernonwantsu\",\"facebook\":\"https://www.facebook.com/getyourbrandon?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/65972?trk=tyah\"},{\"name\":\"Black Dog Promotions\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/black_dog_promotions.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_black_dog_promotions.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_black_dog_promotions.jpg\"},\"website\":\"http://www.blackdogpromotions.com/\",\"twitter\":\"@blackdogpromo\",\"facebook\":\"https://www.facebook.com/BlackDogPR\",\"linkedin\":\"http://www.linkedin.com/in/blackdogpromotions\"}]",
308
+ "description": "Demonstrate merchandise and answer questions for the purpose of creating public interest in buying the product. May sell demonstrated merchandise.",
309
+ "growth_rate": "10-19%"
310
+ },
311
+ {
312
+ "name": "Mining Machine Operator",
313
+ "image": {
314
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/19c00f025cb4acdc8c8b.jpg",
315
+ "_640x640": {
316
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_640x640_19c00f025cb4acdc8c8b.jpg"
317
+ },
318
+ "_506x540": {
319
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_506x540_19c00f025cb4acdc8c8b.jpg"
320
+ },
321
+ "_480x208": {
322
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_480x208_19c00f025cb4acdc8c8b.jpg"
323
+ },
324
+ "_320x320": {
325
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_320x320_19c00f025cb4acdc8c8b.jpg"
326
+ },
327
+ "_306x540": {
328
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_306x540_19c00f025cb4acdc8c8b.jpg"
329
+ },
330
+ "_300x300": {
331
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_300x300_19c00f025cb4acdc8c8b.jpg"
332
+ },
333
+ "_260x260": {
334
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_260x260_19c00f025cb4acdc8c8b.jpg"
335
+ },
336
+ "_253x270": {
337
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_253x270_19c00f025cb4acdc8c8b.jpg"
338
+ },
339
+ "_240x104": {
340
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_240x104_19c00f025cb4acdc8c8b.jpg"
341
+ },
342
+ "_166x166": {
343
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_166x166_19c00f025cb4acdc8c8b.jpg"
344
+ },
345
+ "_150x150": {
346
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_150x150_19c00f025cb4acdc8c8b.jpg"
347
+ },
348
+ "_120x120": {
349
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_120x120_19c00f025cb4acdc8c8b.jpg"
350
+ },
351
+ "_90x90": {
352
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_90x90_19c00f025cb4acdc8c8b.jpg"
353
+ },
354
+ "_83x83": {
355
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_83x83_19c00f025cb4acdc8c8b.jpg"
356
+ },
357
+ "_60x60": {
358
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_60x60_19c00f025cb4acdc8c8b.jpg"
359
+ },
360
+ "_45x45": {
361
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_45x45_19c00f025cb4acdc8c8b.jpg"
362
+ },
363
+ "_30x30": {
364
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12912/_30x30_19c00f025cb4acdc8c8b.jpg"
365
+ }
696
366
  },
697
- {
698
- "name": "Correspondence Clerk",
699
- "image": {
700
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/c6c46d2fbbcfae4e802f.jpg",
701
- "_640x640": {
702
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_640x640_c6c46d2fbbcfae4e802f.jpg"
703
- },
704
- "_506x540": {
705
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_506x540_c6c46d2fbbcfae4e802f.jpg"
706
- },
707
- "_480x208": {
708
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_480x208_c6c46d2fbbcfae4e802f.jpg"
709
- },
710
- "_320x320": {
711
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_320x320_c6c46d2fbbcfae4e802f.jpg"
712
- },
713
- "_306x540": {
714
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_306x540_c6c46d2fbbcfae4e802f.jpg"
715
- },
716
- "_300x300": {
717
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_300x300_c6c46d2fbbcfae4e802f.jpg"
718
- },
719
- "_260x260": {
720
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_260x260_c6c46d2fbbcfae4e802f.jpg"
721
- },
722
- "_253x270": {
723
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_253x270_c6c46d2fbbcfae4e802f.jpg"
724
- },
725
- "_240x104": {
726
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_240x104_c6c46d2fbbcfae4e802f.jpg"
727
- },
728
- "_166x166": {
729
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_166x166_c6c46d2fbbcfae4e802f.jpg"
730
- },
731
- "_150x150": {
732
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_150x150_c6c46d2fbbcfae4e802f.jpg"
733
- },
734
- "_120x120": {
735
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_120x120_c6c46d2fbbcfae4e802f.jpg"
736
- },
737
- "_90x90": {
738
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_90x90_c6c46d2fbbcfae4e802f.jpg"
739
- },
740
- "_83x83": {
741
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_83x83_c6c46d2fbbcfae4e802f.jpg"
742
- },
743
- "_60x60": {
744
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_60x60_c6c46d2fbbcfae4e802f.jpg"
745
- },
746
- "_45x45": {
747
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_45x45_c6c46d2fbbcfae4e802f.jpg"
748
- },
749
- "_30x30": {
750
- "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_30x30_c6c46d2fbbcfae4e802f.jpg"
751
- }
752
- },
753
- "uuid": "7ed78b40-3e73-0130-73dd-12313d00cdfe",
754
- "latitude": null,
755
- "longitude": null,
756
- "updated_at": "2013-01-31T17:45:57Z",
757
- "_links": {
758
- "self": {
759
- "href": "https://core.woofound.com/sliders/2/entities/12917"
760
- }
761
- },
762
- "blend": "P",
763
- "green": "false",
764
- "active": "true",
765
- "bright": "false",
766
- "min_edu": "High School Diploma",
767
- "colleges": "[{\"name\":\"Bryant & Stratton College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bryant__stratton_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bryant__stratton_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bryant__stratton_college.jpg\"},\"website\":\"http://www.bryantstratton.edu/\",\"twitter\":\"@bryantstratton\",\"facebook\":\"https://www.facebook.com/bryantandstratton\",\"linkedin\":\"http://www.linkedin.com/company/14469\"},{\"name\":\"Everest College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/everest_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_everest_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_everest_college.jpg\"},\"website\":\"http://www.new.everest.edu/\",\"twitter\":\"@everest_college\",\"facebook\":\"https://www.facebook.com/Everest\",\"linkedin\":null},{\"name\":\"Baker College Online\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/baker_college_online.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_baker_college_online.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_baker_college_online.jpg\"},\"website\":\"http://www.bakercollegeonline.com/\",\"twitter\":\"@bakeronline\",\"facebook\":\"https://www.facebook.com/bakeronline\",\"linkedin\":\"http://www.linkedin.com/company/16519?trk=tyah\"},{\"name\":\"DeVry University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/devry_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_devry_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_devry_university.jpg\"},\"website\":\"http://www.devry.edu/\",\"twitter\":\"@devryuniv\",\"facebook\":\"https://www.facebook.com/DEVRYUNIVERSITY?v=wall\",\"linkedin\":\"http://www.linkedin.com/groups?gid=36138&trk=anetsrch_name&goback=.gdr_1258641799789_1\"},{\"name\":\"University of Phoenix\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_phoenix.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_phoenix.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_phoenix.jpg\"},\"website\":\"http://www.phoenix.edu/\",\"twitter\":\"@uopx\",\"facebook\":\"https://www.facebook.com/universityofphoenix\",\"linkedin\":\"http://www.linkedin.com/company/university-of-phoenix\"}]",
768
- "onet_link": "http://www.onetonline.org/link/summary/43-4021.00",
769
- "avg_salary": "$30,000-40,000",
770
- "businesses": "[{\"name\":\"University of Kentucky\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_kentucky.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_kentucky.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_kentucky.jpg\"},\"website\":\"http://www.uky.edu/\",\"twitter\":\"@universityofky\",\"facebook\":\"https://www.facebook.com/universityofky\",\"linkedin\":\"http://www.linkedin.com/company/5998?trk=tyah\"},{\"name\":\"U.S. Department of the Treasury\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/us_department_of_the_treasury.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_us_department_of_the_treasury.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_us_department_of_the_treasury.jpg\"},\"website\":\"http://www.treasury.gov/\",\"twitter\":\"@ustreasury\",\"facebook\":\"https://www.facebook.com/ustreasury\",\"linkedin\":\"http://www.linkedin.com/company/1757358?trk=tyah\"},{\"name\":\"The University of Utah\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_university_of_utah.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_university_of_utah.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_university_of_utah.jpg\"},\"website\":\"http://www.utah.edu/\",\"twitter\":\"@uutah\",\"facebook\":\"https://www.facebook.com/universityofutah\",\"linkedin\":\"http://www.linkedin.com/company/4888?trk=tyah\"},{\"name\":\"Cox Enterprises, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cox_enterprises,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cox_enterprises,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cox_enterprises,_inc.jpg\"},\"website\":\"http://www.coxenterprises.com/\",\"twitter\":\"@coxenterprises\",\"facebook\":\"https://www.facebook.com/CoxEnterprises\",\"linkedin\":\"http://www.linkedin.com/company/163234?trk=tyah\"},{\"name\":\"The GEO Group\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_geo_group.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_geo_group.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_geo_group.jpg\"},\"website\":\"http://www.geogroup.com/\",\"twitter\":\"@thegeogroupcorp\",\"facebook\":\"https://www.facebook.com/GEOGroup\",\"linkedin\":\"http://www.linkedin.com/company/47738?trk=tyah\"}]",
771
- "description": "Compose letters or electronic correspondence in reply to requests for merchandise, damage claims, credit and other information, delinquent accounts, incorrect billings, or unsatisfactory services. Duties may include gathering data to formulate reply and preparing correspondence.",
772
- "growth_rate": "Declining"
367
+ "uuid": "70db11e0-3e73-0130-73dd-12313d00cdfe",
368
+ "latitude": null,
369
+ "longitude": null,
370
+ "updated_at": "2013-01-31T16:51:40Z",
371
+ "rels": {
372
+ "self": {
373
+ "href": "https://core.woofound.com/sliders/2/entities/12912"
374
+ }
773
375
  },
774
- {
775
- "name": "Broadcast News Analyst",
776
- "image": {
777
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/0fe57b11e8437323d9f5.jpg",
778
- "_640x640": {
779
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_640x640_0fe57b11e8437323d9f5.jpg"
780
- },
781
- "_506x540": {
782
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_506x540_0fe57b11e8437323d9f5.jpg"
783
- },
784
- "_480x208": {
785
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_480x208_0fe57b11e8437323d9f5.jpg"
786
- },
787
- "_320x320": {
788
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_320x320_0fe57b11e8437323d9f5.jpg"
789
- },
790
- "_306x540": {
791
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_306x540_0fe57b11e8437323d9f5.jpg"
792
- },
793
- "_300x300": {
794
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_300x300_0fe57b11e8437323d9f5.jpg"
795
- },
796
- "_260x260": {
797
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_260x260_0fe57b11e8437323d9f5.jpg"
798
- },
799
- "_253x270": {
800
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_253x270_0fe57b11e8437323d9f5.jpg"
801
- },
802
- "_240x104": {
803
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_240x104_0fe57b11e8437323d9f5.jpg"
804
- },
805
- "_166x166": {
806
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_166x166_0fe57b11e8437323d9f5.jpg"
807
- },
808
- "_150x150": {
809
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_150x150_0fe57b11e8437323d9f5.jpg"
810
- },
811
- "_120x120": {
812
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_120x120_0fe57b11e8437323d9f5.jpg"
813
- },
814
- "_90x90": {
815
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_90x90_0fe57b11e8437323d9f5.jpg"
816
- },
817
- "_83x83": {
818
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_83x83_0fe57b11e8437323d9f5.jpg"
819
- },
820
- "_60x60": {
821
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_60x60_0fe57b11e8437323d9f5.jpg"
822
- },
823
- "_45x45": {
824
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_45x45_0fe57b11e8437323d9f5.jpg"
825
- },
826
- "_30x30": {
827
- "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_30x30_0fe57b11e8437323d9f5.jpg"
828
- }
829
- },
830
- "uuid": "83001060-3e73-0130-73dd-12313d00cdfe",
831
- "latitude": null,
832
- "longitude": null,
833
- "updated_at": "2013-01-31T23:26:58Z",
834
- "_links": {
835
- "self": {
836
- "href": "https://core.woofound.com/sliders/2/entities/12918"
837
- }
838
- },
839
- "blend": "IVA",
840
- "green": "false",
841
- "active": "true",
842
- "bright": "false",
843
- "min_edu": "College Degree",
844
- "colleges": "[{\"name\":\"International College of Broadcasting\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/default.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/_70x70_default.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/_50x50_default.jpg\"},\"website\":\"http://www.icbcollege.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/groups/117867661606832/?fref=ts\",\"linkedin\":null},{\"name\":\"State University of New York at Oswego\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/state_university_of_new_york_at_oswego.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_state_university_of_new_york_at_oswego.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_state_university_of_new_york_at_oswego.jpg\"},\"website\":\"http://www.oswego.edu/\",\"twitter\":\"@sunyoswego\",\"facebook\":\"https://www.facebook.com/SUNYOswego\",\"linkedin\":\"http://www.linkedin.com/company/24300?trk=tyah\"},{\"name\":\"Brown Mackie College--Louisville\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/brown_mackie_college--louisville.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_brown_mackie_college--louisville.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_brown_mackie_college--louisville.jpg\"},\"website\":\"http://www.brownmackie.edu/louisville.aspx\",\"twitter\":\"@mybrownmackie\",\"facebook\":\"https://www.facebook.com/pages/Brown-Mackie-College-Louisville/120472914630582?fref=ts\",\"linkedin\":null},{\"name\":\"Emerson College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/emerson_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_emerson_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_emerson_college.jpg\"},\"website\":\"http://www.emerson.edu/\",\"twitter\":\"@emersoncollege\",\"facebook\":\"https://www.facebook.com/EmersonCollege\",\"linkedin\":\"http://www.linkedin.com/company/emerson-college\"},{\"name\":\"Columbia College Chicago\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/columbia_college_chicago.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_columbia_college_chicago.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_columbia_college_chicago.jpg\"},\"website\":\"http://www.colum.edu/\",\"twitter\":\"@columbiacollchi\",\"facebook\":\"https://www.facebook.com/columbiacollegechicago\",\"linkedin\":\"http://www.linkedin.com/company/7583?trk=tyah\"}]",
845
- "onet_link": "http://www.onetonline.org/link/summary/27-3021.00",
846
- "avg_salary": "$50,000-60,000",
847
- "businesses": "[{\"name\":\"NBC News\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/nbc_news.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_nbc_news.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_nbc_news.jpg\"},\"website\":\"http://www.nbcnews.com/\",\"twitter\":\"@nbcnews\",\"facebook\":\"https://www.facebook.com/NBCNews\",\"linkedin\":\"http://www.linkedin.com/company/1827?trk=tyah\"},{\"name\":\"Fox News\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/fox_news.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_fox_news.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_fox_news.jpg\"},\"website\":\"http://www.foxnews.com/\",\"twitter\":\"@foxnews\",\"facebook\":\"https://www.facebook.com/FoxNews\",\"linkedin\":\"http://www.linkedin.com/company/163884?trk=tyah\"},{\"name\":\"ABC News\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/abc_news.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_abc_news.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_abc_news.jpg\"},\"website\":\"http://abcnews.go.com/\",\"twitter\":\"@abc\",\"facebook\":\"https://www.facebook.com/abcnews\",\"linkedin\":\"http://www.linkedin.com/company/3907?trk=tyah\"},{\"name\":\"CNN\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cnn.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cnn.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cnn.jpg\"},\"website\":\"http://www.cnn.com/\",\"twitter\":\"@cnn\",\"facebook\":\"https://www.facebook.com/cnn?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/2046?trk=tyah\"},{\"name\":\"CBS News\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cbs_news.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cbs_news.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cbs_news.jpg\"},\"website\":\"http://www.cbsnews.com/\",\"twitter\":\"@cbsnews\",\"facebook\":\"https://www.facebook.com/CBSNews\",\"linkedin\":\"http://www.linkedin.com/company/7246?trk=tyah\"}]",
848
- "description": "Analyze, interpret, and broadcast news received from various sources.",
849
- "growth_rate": "10-19%"
376
+ "blend": "TPA",
377
+ "green": "true",
378
+ "active": "true",
379
+ "bright": "false",
380
+ "min_edu": "High School Diploma",
381
+ "colleges": "[{\"name\":\"Northcentral University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/northcentral_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_northcentral_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_northcentral_university.jpg\"},\"website\":\"http://www.ncu.edu/\",\"twitter\":\"@northcentralu\",\"facebook\":\"https://www.facebook.com/NorthcentralU\",\"linkedin\":\"http://www.linkedin.com/company/35183?trk=tyah\"},{\"name\":\"Edumine\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/edumine.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_edumine.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_edumine.jpg\"},\"website\":\"http://www.edumine.com/\",\"twitter\":\"@edumine\",\"facebook\":\"https://www.facebook.com/edumine\",\"linkedin\":\"http://www.linkedin.com/company/468859?trk=tyah\"},{\"name\":\"Vincennes University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/vincennes_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_vincennes_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_vincennes_university.jpg\"},\"website\":\"http://www.vinu.edu/\",\"twitter\":\"@vincennesu\",\"facebook\":\"https://www.facebook.com/vincennesuniversity\",\"linkedin\":\"http://www.linkedin.com/company/30770?trk=tyah\"},{\"name\":\"Arizona State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/arizona_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_arizona_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_arizona_state_university.jpg\"},\"website\":\"http://www.asu.edu/\",\"twitter\":\"@asu\",\"facebook\":\"https://www.facebook.com/arizonastateuniversity\",\"linkedin\":\"http://www.linkedin.com/company/arizona-state-university\"},{\"name\":\"Iom3\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/iom3.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_iom3.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_iom3.jpg\"},\"website\":\"http://www.iom3.org/\",\"twitter\":\"@iom3\",\"facebook\":\"https://www.facebook.com/iom3globalnetwork\",\"linkedin\":\"http://www.linkedin.com/groups?gid=40508\"}]",
382
+ "onet_link": "http://www.onetonline.org/link/summary/47-5041.00",
383
+ "avg_salary": "$50,000-60,000",
384
+ "businesses": "[{\"name\":\"CONSOL Energy\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/consol_energy.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_consol_energy.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_consol_energy.jpg\"},\"website\":\"http://www.consolenergy.com/\",\"twitter\":\"@consol_energy\",\"facebook\":\"https://www.facebook.com/consolenergy\",\"linkedin\":\"http://www.linkedin.com/company/38666?trk=tyah\"},{\"name\":\"Newmont Mining Corporation\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/newmont_mining_corporation.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_newmont_mining_corporation.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_newmont_mining_corporation.jpg\"},\"website\":\"http://www.newmont.com/\",\"twitter\":\"@newmont\",\"facebook\":\"https://www.facebook.com/NewmontMiningCorporation\",\"linkedin\":\"http://www.linkedin.com/company/newmont-mining-corporation\"},{\"name\":\"Goldcorp, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/goldcorp,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_goldcorp,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_goldcorp,_inc.jpg\"},\"website\":\"http://www.goldcorp.com/\",\"twitter\":\"@goldcorp_inc\",\"facebook\":\"https://www.facebook.com/Goldcorp?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/374889?trk=tyah\"},{\"name\":\"Arch Coal, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/arch_coal,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_arch_coal,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_arch_coal,_inc.jpg\"},\"website\":\"http://www.archcoal.com/\",\"twitter\":\"@archcoal\",\"facebook\":\"https://www.facebook.com/pages/Arch-Coal-Inc/266877643381090\",\"linkedin\":\"http://www.linkedin.com/company/arch-coal-inc.\"},{\"name\":\"Barrick Gold\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/barrick_gold.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_barrick_gold.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_barrick_gold.jpg\"},\"website\":\"http://www.barrick.com/\",\"twitter\":\"@barrickgold\",\"facebook\":\"https://www.facebook.com/barrick.gold.corporation?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/11876?trk=tyah\"}]",
385
+ "description": "Operate self-propelled mining machines that rip coal, metal and nonmetal ores, rock, stone, or sand from the mine face and load it onto conveyors or into shuttle cars in a continuous operation.",
386
+ "growth_rate": null
387
+ },
388
+ {
389
+ "name": "Animal Trainer",
390
+ "image": {
391
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/c16f3a19d81727e06e85.jpg",
392
+ "_640x640": {
393
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_640x640_c16f3a19d81727e06e85.jpg"
394
+ },
395
+ "_506x540": {
396
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_506x540_c16f3a19d81727e06e85.jpg"
397
+ },
398
+ "_480x208": {
399
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_480x208_c16f3a19d81727e06e85.jpg"
400
+ },
401
+ "_320x320": {
402
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_320x320_c16f3a19d81727e06e85.jpg"
403
+ },
404
+ "_306x540": {
405
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_306x540_c16f3a19d81727e06e85.jpg"
406
+ },
407
+ "_300x300": {
408
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_300x300_c16f3a19d81727e06e85.jpg"
409
+ },
410
+ "_260x260": {
411
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_260x260_c16f3a19d81727e06e85.jpg"
412
+ },
413
+ "_253x270": {
414
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_253x270_c16f3a19d81727e06e85.jpg"
415
+ },
416
+ "_240x104": {
417
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_240x104_c16f3a19d81727e06e85.jpg"
418
+ },
419
+ "_166x166": {
420
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_166x166_c16f3a19d81727e06e85.jpg"
421
+ },
422
+ "_150x150": {
423
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_150x150_c16f3a19d81727e06e85.jpg"
424
+ },
425
+ "_120x120": {
426
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_120x120_c16f3a19d81727e06e85.jpg"
427
+ },
428
+ "_90x90": {
429
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_90x90_c16f3a19d81727e06e85.jpg"
430
+ },
431
+ "_83x83": {
432
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_83x83_c16f3a19d81727e06e85.jpg"
433
+ },
434
+ "_60x60": {
435
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_60x60_c16f3a19d81727e06e85.jpg"
436
+ },
437
+ "_45x45": {
438
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_45x45_c16f3a19d81727e06e85.jpg"
439
+ },
440
+ "_30x30": {
441
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12913/_30x30_c16f3a19d81727e06e85.jpg"
442
+ }
850
443
  },
851
- {
852
- "name": "Sports Official",
853
- "image": {
854
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/7071596ffb99df465056.jpg",
855
- "_640x640": {
856
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_640x640_7071596ffb99df465056.jpg"
857
- },
858
- "_506x540": {
859
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_506x540_7071596ffb99df465056.jpg"
860
- },
861
- "_480x208": {
862
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_480x208_7071596ffb99df465056.jpg"
863
- },
864
- "_320x320": {
865
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_320x320_7071596ffb99df465056.jpg"
866
- },
867
- "_306x540": {
868
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_306x540_7071596ffb99df465056.jpg"
869
- },
870
- "_300x300": {
871
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_300x300_7071596ffb99df465056.jpg"
872
- },
873
- "_260x260": {
874
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_260x260_7071596ffb99df465056.jpg"
875
- },
876
- "_253x270": {
877
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_253x270_7071596ffb99df465056.jpg"
878
- },
879
- "_240x104": {
880
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_240x104_7071596ffb99df465056.jpg"
881
- },
882
- "_166x166": {
883
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_166x166_7071596ffb99df465056.jpg"
884
- },
885
- "_150x150": {
886
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_150x150_7071596ffb99df465056.jpg"
887
- },
888
- "_120x120": {
889
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_120x120_7071596ffb99df465056.jpg"
890
- },
891
- "_90x90": {
892
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_90x90_7071596ffb99df465056.jpg"
893
- },
894
- "_83x83": {
895
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_83x83_7071596ffb99df465056.jpg"
896
- },
897
- "_60x60": {
898
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_60x60_7071596ffb99df465056.jpg"
899
- },
900
- "_45x45": {
901
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_45x45_7071596ffb99df465056.jpg"
902
- },
903
- "_30x30": {
904
- "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_30x30_7071596ffb99df465056.jpg"
905
- }
906
- },
907
- "uuid": "8618b880-3e73-0130-73dd-12313d00cdfe",
908
- "latitude": null,
909
- "longitude": null,
910
- "updated_at": "2013-01-31T23:15:53Z",
911
- "_links": {
912
- "self": {
913
- "href": "https://core.woofound.com/sliders/2/entities/12919"
914
- }
915
- },
916
- "blend": "TVP",
917
- "green": "false",
918
- "active": "true",
919
- "bright": "false",
920
- "min_edu": "High School Diploma",
921
- "colleges": "[{\"name\":\"University of Florida\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_florida.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_florida.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_florida.jpg\"},\"website\":\"http://www.ufl.edu/\",\"twitter\":\"@uflorida\",\"facebook\":\"https://www.facebook.com/uflorida\",\"linkedin\":\"http://www.linkedin.com/company/4282?trk=tyah\"},{\"name\":\"University of Georgia\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_georgia.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_georgia.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_georgia.jpg\"},\"website\":\"http://www.uga.edu/\",\"twitter\":\"@universityofga\",\"facebook\":\"https://www.facebook.com/uga.edu\",\"linkedin\":\"http://www.linkedin.com/company/166638?trk=tyah\"},{\"name\":\"Indiana University--Bloomington\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/indiana_university--bloomington.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_indiana_university--bloomington.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_indiana_university--bloomington.jpg\"},\"website\":\"http://www.iub.edu/\",\"twitter\":\"@iubloomington\",\"facebook\":\"https://www.facebook.com/IndianaUniversity\",\"linkedin\":\"http://www.linkedin.com/company/3325?trk=tyah\"},{\"name\":\"University of Kansas\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_kansas.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_kansas.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_kansas.jpg\"},\"website\":\"http://www.ku.edu/\",\"twitter\":\"@kunews\",\"facebook\":\"https://www.facebook.com/KU\",\"linkedin\":\"http://www.linkedin.com/company/166643?trk=tyah\"},{\"name\":\"University of Maryland--College Park\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_maryland--college_park.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_maryland--college_park.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_maryland--college_park.jpg\"},\"website\":\"http://www.umd.edu/\",\"twitter\":\"@uofmaryland\",\"facebook\":\"https://www.facebook.com/UnivofMaryland\",\"linkedin\":\"http://www.linkedin.com/company/3638?trk=tyah\"}]",
922
- "onet_link": "http://www.onetonline.org/link/summary/27-2023.00",
923
- "avg_salary": "$20,000-30,000",
924
- "businesses": "[{\"name\":\"National Basketball Association\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/national_basketball_association.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_national_basketball_association.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_national_basketball_association.jpg\"},\"website\":\"http://www.nba.com\",\"twitter\":\"@nba\",\"facebook\":\"https://www.facebook.com/nba?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/165125?trk=tyah\"},{\"name\":\"National Football League\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/national_football_league.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_national_football_league.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_national_football_league.jpg\"},\"website\":\"http://www.nfl.com/\",\"twitter\":\"@nfl\",\"facebook\":\"https://www.facebook.com/NFL?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/4541?trk=tyah\"},{\"name\":\"National Hockey League\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/national_hockey_league.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_national_hockey_league.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_national_hockey_league.jpg\"},\"website\":\"http://www.nhl.com/\",\"twitter\":\"@nhl\",\"facebook\":\"https://www.facebook.com/NHL?v=app_158110558259\",\"linkedin\":\"http://www.linkedin.com/company/8882?trk=tyah\"},{\"name\":\"Major League Baseball\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/major_league_baseball.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_major_league_baseball.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_major_league_baseball.jpg\"},\"website\":\"http://www.mlb.com\",\"twitter\":\"@mlb\",\"facebook\":\"https://www.facebook.com/mlb\",\"linkedin\":\"http://www.linkedin.com/company/164826?trk=tyah\"},{\"name\":\"U.S. Soccer\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/us_soccer.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_us_soccer.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_us_soccer.jpg\"},\"website\":\"http://www.ussoccer.com/\",\"twitter\":\"@ussoccer\",\"facebook\":\"https://www.facebook.com/officialussoccer\",\"linkedin\":null}]",
925
- "description": "Officiate at competitive athletic or sporting events. Detect infractions of rules and decide penalties according to established regulations. Includes all sporting officials, referees, and competition judges.",
926
- "growth_rate": "20-28%"
444
+ "uuid": "738e3530-3e73-0130-73dd-12313d00cdfe",
445
+ "latitude": null,
446
+ "longitude": null,
447
+ "updated_at": "2013-01-31T17:06:12Z",
448
+ "rels": {
449
+ "self": {
450
+ "href": "https://core.woofound.com/sliders/2/entities/12913"
451
+ }
927
452
  },
928
- {
929
- "name": "Ticket Agent and Travel Clerk",
930
- "image": {
931
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/66a3e42e800aa6ac3803.jpg",
932
- "_640x640": {
933
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_640x640_66a3e42e800aa6ac3803.jpg"
934
- },
935
- "_506x540": {
936
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_506x540_66a3e42e800aa6ac3803.jpg"
937
- },
938
- "_480x208": {
939
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_480x208_66a3e42e800aa6ac3803.jpg"
940
- },
941
- "_320x320": {
942
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_320x320_66a3e42e800aa6ac3803.jpg"
943
- },
944
- "_306x540": {
945
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_306x540_66a3e42e800aa6ac3803.jpg"
946
- },
947
- "_300x300": {
948
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_300x300_66a3e42e800aa6ac3803.jpg"
949
- },
950
- "_260x260": {
951
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_260x260_66a3e42e800aa6ac3803.jpg"
952
- },
953
- "_253x270": {
954
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_253x270_66a3e42e800aa6ac3803.jpg"
955
- },
956
- "_240x104": {
957
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_240x104_66a3e42e800aa6ac3803.jpg"
958
- },
959
- "_166x166": {
960
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_166x166_66a3e42e800aa6ac3803.jpg"
961
- },
962
- "_150x150": {
963
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_150x150_66a3e42e800aa6ac3803.jpg"
964
- },
965
- "_120x120": {
966
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_120x120_66a3e42e800aa6ac3803.jpg"
967
- },
968
- "_90x90": {
969
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_90x90_66a3e42e800aa6ac3803.jpg"
970
- },
971
- "_83x83": {
972
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_83x83_66a3e42e800aa6ac3803.jpg"
973
- },
974
- "_60x60": {
975
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_60x60_66a3e42e800aa6ac3803.jpg"
976
- },
977
- "_45x45": {
978
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_45x45_66a3e42e800aa6ac3803.jpg"
979
- },
980
- "_30x30": {
981
- "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_30x30_66a3e42e800aa6ac3803.jpg"
982
- }
983
- },
984
- "uuid": "88e5c250-3e73-0130-73dd-12313d00cdfe",
985
- "latitude": null,
986
- "longitude": null,
987
- "updated_at": "2013-01-31T20:21:36Z",
988
- "_links": {
989
- "self": {
990
- "href": "https://core.woofound.com/sliders/2/entities/12920"
991
- }
992
- },
993
- "blend": "PM",
994
- "green": "false",
995
- "active": "true",
996
- "bright": "false",
997
- "min_edu": "High School Diploma",
998
- "colleges": "[{\"name\":\"University of Phoenix\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_phoenix.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_phoenix.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_phoenix.jpg\"},\"website\":\"http://www.phoenix.edu/\",\"twitter\":\"@uopx\",\"facebook\":\"https://www.facebook.com/universityofphoenix\",\"linkedin\":\"http://www.linkedin.com/company/university-of-phoenix\"},{\"name\":\"Capella University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/capella_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_capella_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_capella_university.jpg\"},\"website\":\"http://www.capella.edu/\",\"twitter\":\"@capellau\",\"facebook\":\"https://www.facebook.com/CapellaUniversity\",\"linkedin\":\"http://www.linkedin.com/groups/Capella-University-Open-Forum-official-95497?mostPopular=&gid=95497\"},{\"name\":\"Colorado Technical University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/colorado_technical_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_colorado_technical_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_colorado_technical_university.jpg\"},\"website\":\"http://www.coloradotech.edu/\",\"twitter\":\"@ctuniversity\",\"facebook\":\"https://www.facebook.com/coloradotech\",\"linkedin\":\"http://www.linkedin.com/company/16851?trk=tyah\"},{\"name\":\"South University Online\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/south_university_online.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_south_university_online.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_south_university_online.jpg\"},\"website\":\"http://online.southuniversity.edu/\",\"twitter\":\"@sucampuscommon\",\"facebook\":\"https://www.facebook.com/SuCampusCommon\",\"linkedin\":\"http://www.linkedin.com/company/166065?trk=tyah\"},{\"name\":\"Liberty University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/liberty_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_liberty_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_liberty_university.jpg\"},\"website\":\"http://www.liberty.edu/\",\"twitter\":\"@libertyu\",\"facebook\":\"https://www.facebook.com/LibertyUniversity\",\"linkedin\":\"http://www.linkedin.com/company/9654?trk=tyah\"}]",
999
- "onet_link": "http://www.onetonline.org/link/summary/43-4181.00",
1000
- "avg_salary": "$30,000-40,000",
1001
- "businesses": "[{\"name\":\"Hartsfield-Jackson Atlanta International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/hartsfield-jackson_atlanta_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_hartsfield-jackson_atlanta_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_hartsfield-jackson_atlanta_international_airport.jpg\"},\"website\":\"http://www.atlanta-airport.com/\",\"twitter\":\"@atlanta_airport\",\"facebook\":\"https://www.facebook.com/hartsfieldjackson\",\"linkedin\":\"http://www.linkedin.com/groups/HartsfieldJackson-Atlanta-International-Airport-Networking-4614191?gid=4614191&mostPopular=&trk=tyah\"},{\"name\":\"Chicago O'Hare International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/chicago_o'hare_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_chicago_o'hare_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_chicago_o'hare_international_airport.jpg\"},\"website\":\"http://www.flychicago.com/\",\"twitter\":\"@fly2ohare\",\"facebook\":\"https://www.facebook.com/ohareairport\",\"linkedin\":null},{\"name\":\"Los Angeles International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/los_angeles_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_los_angeles_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_los_angeles_international_airport.jpg\"},\"website\":\"http://www.lawa.org/\",\"twitter\":\"@lax_official\",\"facebook\":\"https://www.facebook.com/LAInternationalAirport\",\"linkedin\":null},{\"name\":\"Dallas/Fort Worth International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/dallas_fort_worth_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_dallas_fort_worth_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_dallas_fort_worth_international_airport.jpg\"},\"website\":\"http://www.dfwairport.com/\",\"twitter\":\"@dfwairport\",\"facebook\":\"https://www.facebook.com/DFWAirport\",\"linkedin\":null},{\"name\":\"Denver International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/denver_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_denver_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_denver_international_airport.jpg\"},\"website\":\"http://www.flydenver.com/\",\"twitter\":\"@denairport\",\"facebook\":\"https://www.facebook.com/denverinternationalairport\",\"linkedin\":\"http://www.linkedin.com/company/40333?trk=tyah\"}]",
1002
- "description": "Make and confirm reservations for transportation or lodging, or sell transportation tickets. May check baggage and direct passengers to designated concourse, pier, or track; deliver tickets, contact individuals and groups to inform them of package tours; or provide tourists with travel or transportation information.",
1003
- "growth_rate": "0-9%"
453
+ "blend": "NMT",
454
+ "green": "false",
455
+ "active": "true",
456
+ "bright": "false",
457
+ "min_edu": "High School Diploma",
458
+ "colleges": "[{\"name\":\"Animal Behavior College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/animal_behavior_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_animal_behavior_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_animal_behavior_college.jpg\"},\"website\":\"http://www.animalbehaviorcollege.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/AnimalBehaviorCollege\",\"linkedin\":\"http://www.linkedin.com/company/2145001?trk=tyah\"},{\"name\":\"Canisius College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/canisius_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_canisius_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_canisius_college.jpg\"},\"website\":\"http://www.canisius.edu/\",\"twitter\":\"@canisiuscollege\",\"facebook\":\"https://www.facebook.com/canisiuscollege\",\"linkedin\":\"http://www.linkedin.com/company/19479?trk=tyah\"},{\"name\":\"Lamar Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/lamar_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_lamar_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_lamar_community_college.jpg\"},\"website\":\"http://www.lamarcc.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/lamarcommunitycollege\",\"linkedin\":\"http://www.linkedin.com/company/784534?trk=tyah\"},{\"name\":\"Moorpark College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/moorpark_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_moorpark_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_moorpark_college.jpg\"},\"website\":\"http://www.moorparkcollege.edu/\",\"twitter\":\"@mpcollege_as\",\"facebook\":\"https://www.facebook.com/pages/Moorpark-College-Alumni/112579495458888\",\"linkedin\":\"http://www.linkedin.com/company/42747?trk=tyah\"},{\"name\":\"Bergin University of Canine Studies\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bergin_university_of_canine_studies.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bergin_university_of_canine_studies.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bergin_university_of_canine_studies.jpg\"},\"website\":\"http://berginu.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/BerginU\",\"linkedin\":\"http://www.linkedin.com/groups?gid=4269413&mostPopular=&trk=tyah\"}]",
459
+ "onet_link": "http://www.onetonline.org/link/summary/39-2011.00",
460
+ "avg_salary": "$20,000-30,000",
461
+ "businesses": "[{\"name\":\"Petco\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/petco.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_petco.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_petco.jpg\"},\"website\":\"http://www.petco.com\",\"twitter\":\"@petco\",\"facebook\":\"https://www.facebook.com/PETCO\",\"linkedin\":\"http://www.linkedin.com/groups/Petco-Animal-Supplies-Inc-1794118?gid=1794118&mostPopular=&trk=tyah\"},{\"name\":\"Top Dog Obedience Training\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/top_dog_obedience_training.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_top_dog_obedience_training.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_top_dog_obedience_training.jpg\"},\"website\":\"http://www.topdogdallas.com/\",\"twitter\":\"@topdogobedience\",\"facebook\":\"https://www.facebook.com/TopDogDallas\",\"linkedin\":null},{\"name\":\"P.U.P.S. Dog Obedience Training\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pups_dog_obedience_training.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pups_dog_obedience_training.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pups_dog_obedience_training.jpg\"},\"website\":\"http://pupsdogobediencetraining.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/PUPS-Dog-Obedience-Training/122687871086570\",\"linkedin\":null},{\"name\":\"Canine University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/canine_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_canine_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_canine_university.jpg\"},\"website\":\"http://www.canineuniversity.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Canine-University/298095346118\",\"linkedin\":null},{\"name\":\"Gemini Dogs\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/gemini_dogs.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_gemini_dogs.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_gemini_dogs.jpg\"},\"website\":\"http://www.geminidogs.com/\",\"twitter\":\"@geminidogs\",\"facebook\":\"https://www.facebook.com/geminidogs\",\"linkedin\":\"http://www.linkedin.com/pub/michelle-allen/19/417/319\"}]",
462
+ "description": "Train animals for riding, harness, security, performance, or obedience, or assisting persons with disabilities. Accustom animals to human voice and contact; and condition animals to respond to commands. Train animals according to prescribed standards for show or competition. May train animals to carry pack loads or work as part of pack team.",
463
+ "growth_rate": "0-9%"
464
+ },
465
+ {
466
+ "name": "Bartender",
467
+ "image": {
468
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/252a54492423eabe16c1.jpg",
469
+ "_640x640": {
470
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_640x640_252a54492423eabe16c1.jpg"
471
+ },
472
+ "_506x540": {
473
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_506x540_252a54492423eabe16c1.jpg"
474
+ },
475
+ "_480x208": {
476
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_480x208_252a54492423eabe16c1.jpg"
477
+ },
478
+ "_320x320": {
479
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_320x320_252a54492423eabe16c1.jpg"
480
+ },
481
+ "_306x540": {
482
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_306x540_252a54492423eabe16c1.jpg"
483
+ },
484
+ "_300x300": {
485
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_300x300_252a54492423eabe16c1.jpg"
486
+ },
487
+ "_260x260": {
488
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_260x260_252a54492423eabe16c1.jpg"
489
+ },
490
+ "_253x270": {
491
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_253x270_252a54492423eabe16c1.jpg"
492
+ },
493
+ "_240x104": {
494
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_240x104_252a54492423eabe16c1.jpg"
495
+ },
496
+ "_166x166": {
497
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_166x166_252a54492423eabe16c1.jpg"
498
+ },
499
+ "_150x150": {
500
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_150x150_252a54492423eabe16c1.jpg"
501
+ },
502
+ "_120x120": {
503
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_120x120_252a54492423eabe16c1.jpg"
504
+ },
505
+ "_90x90": {
506
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_90x90_252a54492423eabe16c1.jpg"
507
+ },
508
+ "_83x83": {
509
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_83x83_252a54492423eabe16c1.jpg"
510
+ },
511
+ "_60x60": {
512
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_60x60_252a54492423eabe16c1.jpg"
513
+ },
514
+ "_45x45": {
515
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_45x45_252a54492423eabe16c1.jpg"
516
+ },
517
+ "_30x30": {
518
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12914/_30x30_252a54492423eabe16c1.jpg"
519
+ }
520
+ },
521
+ "uuid": "769aa210-3e73-0130-73dd-12313d00cdfe",
522
+ "latitude": null,
523
+ "longitude": null,
524
+ "updated_at": "2013-01-31T17:10:31Z",
525
+ "rels": {
526
+ "self": {
527
+ "href": "https://core.woofound.com/sliders/2/entities/12914"
528
+ }
1004
529
  },
1005
- {
1006
- "name": "Bill and Account Collector",
1007
- "image": {
1008
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/ea3138fb9a2e0bedf514.jpg",
1009
- "_640x640": {
1010
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_640x640_ea3138fb9a2e0bedf514.jpg"
1011
- },
1012
- "_506x540": {
1013
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_506x540_ea3138fb9a2e0bedf514.jpg"
1014
- },
1015
- "_480x208": {
1016
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_480x208_ea3138fb9a2e0bedf514.jpg"
1017
- },
1018
- "_320x320": {
1019
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_320x320_ea3138fb9a2e0bedf514.jpg"
1020
- },
1021
- "_306x540": {
1022
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_306x540_ea3138fb9a2e0bedf514.jpg"
1023
- },
1024
- "_300x300": {
1025
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_300x300_ea3138fb9a2e0bedf514.jpg"
1026
- },
1027
- "_260x260": {
1028
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_260x260_ea3138fb9a2e0bedf514.jpg"
1029
- },
1030
- "_253x270": {
1031
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_253x270_ea3138fb9a2e0bedf514.jpg"
1032
- },
1033
- "_240x104": {
1034
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_240x104_ea3138fb9a2e0bedf514.jpg"
1035
- },
1036
- "_166x166": {
1037
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_166x166_ea3138fb9a2e0bedf514.jpg"
1038
- },
1039
- "_150x150": {
1040
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_150x150_ea3138fb9a2e0bedf514.jpg"
1041
- },
1042
- "_120x120": {
1043
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_120x120_ea3138fb9a2e0bedf514.jpg"
1044
- },
1045
- "_90x90": {
1046
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_90x90_ea3138fb9a2e0bedf514.jpg"
1047
- },
1048
- "_83x83": {
1049
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_83x83_ea3138fb9a2e0bedf514.jpg"
1050
- },
1051
- "_60x60": {
1052
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_60x60_ea3138fb9a2e0bedf514.jpg"
1053
- },
1054
- "_45x45": {
1055
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_45x45_ea3138fb9a2e0bedf514.jpg"
1056
- },
1057
- "_30x30": {
1058
- "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_30x30_ea3138fb9a2e0bedf514.jpg"
1059
- }
1060
- },
1061
- "uuid": "8b850bc0-3e73-0130-73dd-12313d00cdfe",
1062
- "latitude": null,
1063
- "longitude": null,
1064
- "updated_at": "2013-01-31T17:12:35Z",
1065
- "_links": {
1066
- "self": {
1067
- "href": "https://core.woofound.com/sliders/2/entities/12921"
1068
- }
1069
- },
1070
- "blend": "PV",
1071
- "green": "false",
1072
- "active": "true",
1073
- "bright": "true",
1074
- "min_edu": "High School Diploma",
1075
- "colleges": "[{\"name\":\"University of Pennsylvania\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_pennsylvania.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_pennsylvania.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_pennsylvania.jpg\"},\"website\":\"http://www.upenn.edu/\",\"twitter\":\"@uofpenn\",\"facebook\":\"https://www.facebook.com/UnivPennsylvania\",\"linkedin\":\"http://www.linkedin.com/company/university-of-pennsylvania\"},{\"name\":\"New York University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/new_york_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_new_york_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_new_york_university.jpg\"},\"website\":\"http://www.nyu.edu/\",\"twitter\":\"@nyulocal\",\"facebook\":\"https://www.facebook.com/pages/New-York-University/103256838688\",\"linkedin\":\"http://www.linkedin.com/company/3159?trk=tyah\"},{\"name\":\"University of California Berkeley\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_california_berkeley.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_california_berkeley.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_california_berkeley.jpg\"},\"website\":\"http://www.berkeley.edu/\",\"twitter\":\"@ucberkeley\",\"facebook\":\"https://www.facebook.com/UCBerkeley\",\"linkedin\":\"http://www.linkedin.com/company/2517?trk=tyah\"},{\"name\":\"Massachusetts Institute of Technology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/massachusetts_institute_of_technology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_massachusetts_institute_of_technology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_massachusetts_institute_of_technology.jpg\"},\"website\":\"http://www.mit.edu/\",\"twitter\":\"@mitnews\",\"facebook\":\"https://www.facebook.com/MITnews\",\"linkedin\":\"http://www.linkedin.com/company/1503?trk=tyah\"},{\"name\":\"University of Michigan\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_michigan.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_michigan.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_michigan.jpg\"},\"website\":\"http://www.umich.edu/\",\"twitter\":\"@umich\",\"facebook\":\"https://www.facebook.com/universityofmichigan\",\"linkedin\":\"http://www.linkedin.com/company/2516?trk=tyah\"}]",
1076
- "onet_link": "http://www.onetonline.org/link/summary/43-3011.00",
1077
- "avg_salary": "$30,000-40,000",
1078
- "businesses": "[{\"name\":\"Rapid Recovery Solution\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/rapid_recovery_solution.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_rapid_recovery_solution.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_rapid_recovery_solution.jpg\"},\"website\":\"http://www.rapidrecoverysolution.com/\",\"twitter\":\"@rrscollects\",\"facebook\":\"https://www.facebook.com/pages/Rapid-Recovery-Solution-Inc/22439864072?ref=ts&fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/550912?trk=tyah\"},{\"name\":\"Direct Recovery Assocaites\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/direct_recovery_assocaites.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_direct_recovery_assocaites.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_direct_recovery_assocaites.jpg\"},\"website\":\"http://www.directrecovery.com/\",\"twitter\":\"@directrecovery\",\"facebook\":\"https://www.facebook.com/DirectRecoveryAssociatesInc?fref=ts\",\"linkedin\":null},{\"name\":\"Caine & Weiner\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/caine__weiner.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_caine__weiner.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_caine__weiner.jpg\"},\"website\":\"http://www.caine-weiner.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Caine-Weiner/200905089927588\",\"linkedin\":\"http://www.linkedin.com/company/caine-&-weiner\"},{\"name\":\"American Profit Recovery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/american_profit_recovery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_american_profit_recovery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_american_profit_recovery.jpg\"},\"website\":\"http://www.americanprofit.net/\",\"twitter\":\"@americanprofit\",\"facebook\":\"https://www.facebook.com/AmericanProfitRecovery\",\"linkedin\":\"http://www.linkedin.com/company/american-profit-recovery\"},{\"name\":\"ACA International\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/aca_international.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_aca_international.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_aca_international.jpg\"},\"website\":\"http://www.acainternational.org/\",\"twitter\":\"@acaintl\",\"facebook\":\"https://www.facebook.com/pages/ACA-International-the-Association-of-Credit-and-Collection-Professionals/364138550290\",\"linkedin\":\"http://www.linkedin.com/groups/ACA-International-1900905?home=&gid=1900905\"}]",
1079
- "description": "Locate and notify customers of delinquent accounts by mail, telephone, or personal visit to solicit payment. Duties include receiving payment and posting amount to customer's account; preparing statements to credit department if customer fails to respond; initiating repossession proceedings or service disconnection; and keeping records of collection and status of accounts.",
1080
- "growth_rate": "10-19%"
530
+ "blend": "TMV",
531
+ "green": "false",
532
+ "active": "true",
533
+ "bright": "true",
534
+ "min_edu": "High School Diploma",
535
+ "colleges": "[{\"name\":\"New York Bartending School\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/new_york_bartending_school.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_new_york_bartending_school.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_new_york_bartending_school.jpg\"},\"website\":\"http://www.newyorkbartendingschool.com/\",\"twitter\":\"@nybartendschool\",\"facebook\":\"https://www.facebook.com/pages/New-York-Bartending-School/26338938345\",\"linkedin\":null},{\"name\":\"Mixology Wine Institute\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/mixology_wine_institute.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_mixology_wine_institute.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_mixology_wine_institute.jpg\"},\"website\":\"http://mixologywine.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/MixologyWine?fref=ts\",\"linkedin\":null},{\"name\":\"Bartenders Professional Training Institute, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bartenders_professional_training_institute,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bartenders_professional_training_institute,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bartenders_professional_training_institute,_inc.jpg\"},\"website\":\"http://www.bartenderprotraining.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/bartendny\",\"linkedin\":null},{\"name\":\"Atlanta Bartending School\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/atlanta_bartending_school.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_atlanta_bartending_school.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_atlanta_bartending_school.jpg\"},\"website\":\"http://atlantabartendingschool.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Atlanta-Bartending-School/286974817093?fref=ts\",\"linkedin\":null},{\"name\":\"University of Mixology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_mixology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_mixology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_mixology.jpg\"},\"website\":\"http://universityofmixology.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/University-of-Mixology/117994357388\",\"linkedin\":null}]",
536
+ "onet_link": "http://www.onetonline.org/link/summary/35-3011.00",
537
+ "avg_salary": "$10,000-20,000",
538
+ "businesses": "[{\"name\":\"Bar Agricole\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bar_agricole.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bar_agricole.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bar_agricole.jpg\"},\"website\":\"http://www.baragricole.com/\",\"twitter\":\"@baragricole\",\"facebook\":\"https://www.facebook.com/pages/Bar-Agricole/286956729303\",\"linkedin\":\"http://www.linkedin.com/company/1079854?trk=tyah\"},{\"name\":\"Cure\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cure.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cure.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cure.jpg\"},\"website\":\"http://www.curenola.com/\",\"twitter\":\"@curenola\",\"facebook\":\"https://www.facebook.com/curenola\",\"linkedin\":null},{\"name\":\"Drink\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/drink.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_drink.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_drink.jpg\"},\"website\":\"http://www.drinkfortpoint.com/\",\"twitter\":\"@drinkboston\",\"facebook\":\"https://www.facebook.com/DrinkFortPoint\",\"linkedin\":null},{\"name\":\"Holeman & Finch Public House\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/holeman__finch_public_house.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_holeman__finch_public_house.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_holeman__finch_public_house.jpg\"},\"website\":\"http://www.holeman-finch.com/\",\"twitter\":\"@chefhopkins\",\"facebook\":\"https://www.facebook.com/Holeman.Finch\",\"linkedin\":null},{\"name\":\"Rattle N Hum\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/rattle_n_hum.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_rattle_n_hum.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_rattle_n_hum.jpg\"},\"website\":\"http://www.rattlenhumbarnyc.com/\",\"twitter\":\"@rattlenhumbarny\",\"facebook\":\"https://www.facebook.com/pages/Rattle-N-Hum/122918434430242\",\"linkedin\":\"http://www.linkedin.com/company/1132918?trk=tyah\"}]",
539
+ "description": "Mix and serve drinks to patrons, directly or through waitstaff.",
540
+ "growth_rate": "0-9%"
541
+ },
542
+ {
543
+ "name": "Bicycle Repair",
544
+ "image": {
545
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/85b742cfae723acd1825.jpg",
546
+ "_640x640": {
547
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_640x640_85b742cfae723acd1825.jpg"
548
+ },
549
+ "_506x540": {
550
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_506x540_85b742cfae723acd1825.jpg"
551
+ },
552
+ "_480x208": {
553
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_480x208_85b742cfae723acd1825.jpg"
554
+ },
555
+ "_320x320": {
556
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_320x320_85b742cfae723acd1825.jpg"
557
+ },
558
+ "_306x540": {
559
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_306x540_85b742cfae723acd1825.jpg"
560
+ },
561
+ "_300x300": {
562
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_300x300_85b742cfae723acd1825.jpg"
563
+ },
564
+ "_260x260": {
565
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_260x260_85b742cfae723acd1825.jpg"
566
+ },
567
+ "_253x270": {
568
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_253x270_85b742cfae723acd1825.jpg"
569
+ },
570
+ "_240x104": {
571
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_240x104_85b742cfae723acd1825.jpg"
572
+ },
573
+ "_166x166": {
574
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_166x166_85b742cfae723acd1825.jpg"
575
+ },
576
+ "_150x150": {
577
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_150x150_85b742cfae723acd1825.jpg"
578
+ },
579
+ "_120x120": {
580
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_120x120_85b742cfae723acd1825.jpg"
581
+ },
582
+ "_90x90": {
583
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_90x90_85b742cfae723acd1825.jpg"
584
+ },
585
+ "_83x83": {
586
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_83x83_85b742cfae723acd1825.jpg"
587
+ },
588
+ "_60x60": {
589
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_60x60_85b742cfae723acd1825.jpg"
590
+ },
591
+ "_45x45": {
592
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_45x45_85b742cfae723acd1825.jpg"
593
+ },
594
+ "_30x30": {
595
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12915/_30x30_85b742cfae723acd1825.jpg"
596
+ }
1081
597
  },
1082
- {
1083
- "name": "Earth Driller",
1084
- "image": {
1085
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/8e68dcb00ce618bd275a.jpg",
1086
- "_640x640": {
1087
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_640x640_8e68dcb00ce618bd275a.jpg"
1088
- },
1089
- "_506x540": {
1090
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_506x540_8e68dcb00ce618bd275a.jpg"
1091
- },
1092
- "_480x208": {
1093
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_480x208_8e68dcb00ce618bd275a.jpg"
1094
- },
1095
- "_320x320": {
1096
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_320x320_8e68dcb00ce618bd275a.jpg"
1097
- },
1098
- "_306x540": {
1099
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_306x540_8e68dcb00ce618bd275a.jpg"
1100
- },
1101
- "_300x300": {
1102
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_300x300_8e68dcb00ce618bd275a.jpg"
1103
- },
1104
- "_260x260": {
1105
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_260x260_8e68dcb00ce618bd275a.jpg"
1106
- },
1107
- "_253x270": {
1108
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_253x270_8e68dcb00ce618bd275a.jpg"
1109
- },
1110
- "_240x104": {
1111
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_240x104_8e68dcb00ce618bd275a.jpg"
1112
- },
1113
- "_166x166": {
1114
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_166x166_8e68dcb00ce618bd275a.jpg"
1115
- },
1116
- "_150x150": {
1117
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_150x150_8e68dcb00ce618bd275a.jpg"
1118
- },
1119
- "_120x120": {
1120
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_120x120_8e68dcb00ce618bd275a.jpg"
1121
- },
1122
- "_90x90": {
1123
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_90x90_8e68dcb00ce618bd275a.jpg"
1124
- },
1125
- "_83x83": {
1126
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_83x83_8e68dcb00ce618bd275a.jpg"
1127
- },
1128
- "_60x60": {
1129
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_60x60_8e68dcb00ce618bd275a.jpg"
1130
- },
1131
- "_45x45": {
1132
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_45x45_8e68dcb00ce618bd275a.jpg"
1133
- },
1134
- "_30x30": {
1135
- "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_30x30_8e68dcb00ce618bd275a.jpg"
1136
- }
1137
- },
1138
- "uuid": "8e58b070-3e73-0130-73dd-12313d00cdfe",
1139
- "latitude": null,
1140
- "longitude": null,
1141
- "updated_at": "2013-01-31T18:00:42Z",
1142
- "_links": {
1143
- "self": {
1144
- "href": "https://core.woofound.com/sliders/2/entities/12922"
1145
- }
1146
- },
1147
- "blend": "T",
1148
- "green": "false",
1149
- "active": "true",
1150
- "bright": "false",
1151
- "min_edu": "High School Diploma",
1152
- "colleges": "[{\"name\":\"Roger Williams University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/roger_williams_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_roger_williams_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_roger_williams_university.jpg\"},\"website\":\"http://rwu.edu/\",\"twitter\":\"@myrwu\",\"facebook\":\"https://www.facebook.com/rogerwilliamsuniversity\",\"linkedin\":\"http://www.linkedin.com/company/19341?trk=tyah\"},{\"name\":\"Institue of Design and Construction\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/institue_of_design_and_construction.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_institue_of_design_and_construction.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_institue_of_design_and_construction.jpg\"},\"website\":\"http://www.idc.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Institute-of-Design-and-Construction/51385579135\",\"linkedin\":null},{\"name\":\"Brazosport College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/brazosport_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_brazosport_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_brazosport_college.jpg\"},\"website\":\"http://www.brazosport.edu/\",\"twitter\":\"@bcgators\",\"facebook\":\"https://www.facebook.com/BrazosportCollege\",\"linkedin\":\"http://www.linkedin.com/company/72719?trk=tyah\"},{\"name\":\"Pratt Institute\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pratt_institute.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pratt_institute.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pratt_institute.jpg\"},\"website\":\"http://www.pratt.edu/\",\"twitter\":\"@prattinstitute\",\"facebook\":\"https://www.facebook.com/PrattInstitute\",\"linkedin\":\"http://www.linkedin.com/groups?gid=95605\"},{\"name\":\"East Carolina University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/east_carolina_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_east_carolina_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_east_carolina_university.jpg\"},\"website\":\"http://www.ecu.edu/\",\"twitter\":\"@eastcarolina\",\"facebook\":\"https://www.facebook.com/EastCarolina\",\"linkedin\":\"http://www.linkedin.com/company/7522?trk=tyah\"}]",
1153
- "onet_link": "http://www.onetonline.org/link/summary/47-5021.00",
1154
- "avg_salary": "$40,000-50,000",
1155
- "businesses": "[{\"name\":\"Aaron Enterprises Incorporated\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/aaron_enterprises_incorporated.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_aaron_enterprises_incorporated.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_aaron_enterprises_incorporated.jpg\"},\"website\":\"http://aaronenterprises.iarbiz.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Aaron-Enterprises-Incorporated/134821436531977?fref=ts\",\"linkedin\":null},{\"name\":\"Atlantic Concrete Cutting\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/atlantic_concrete_cutting.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_atlantic_concrete_cutting.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_atlantic_concrete_cutting.jpg\"},\"website\":\"http://www.atlanticconcretecutting.com/Services/Diamond-Core-Drilling.aspx?gclid=CKjBvYnRkrQCFcFxOgodXC0Ayg\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Atlantic-Concrete-Cutting/194969806127?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/1763065?trk=tyah\"},{\"name\":\"Bruce H. Gallup, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bruce_h_gallup,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bruce_h_gallup,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bruce_h_gallup,_inc.jpg\"},\"website\":\"http://www.brucegallup.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Bruce-H-Gallup-Inc/393824960680852?fref=ts\",\"linkedin\":null},{\"name\":\"Michael Barlow Well Services\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/michael_barlow_well_services.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_michael_barlow_well_services.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_michael_barlow_well_services.jpg\"},\"website\":\"http://www.michaelbarlowwelldrilling.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Michael-Barlow-Well-Drilling-Service-Inc/269459283078686?fref=ts\",\"linkedin\":null},{\"name\":\"Allied Geothermal Well Drilling\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/allied_geothermal_well_drilling.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_allied_geothermal_well_drilling.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_allied_geothermal_well_drilling.jpg\"},\"website\":\"http://www.alliedwells.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Allied-Well-Drilling/298621314727\",\"linkedin\":null}]",
1156
- "description": "Operate a variety of drills such as rotary, churn, and pneumatic to tap sub-surface water and salt deposits, to remove core samples during mineral exploration or soil testing, and to facilitate the use of explosives in mining or construction. May use explosives. Includes horizontal and earth boring machine operators.",
1157
- "growth_rate": "Declining"
598
+ "uuid": "796ba5b0-3e73-0130-73dd-12313d00cdfe",
599
+ "latitude": null,
600
+ "longitude": null,
601
+ "updated_at": "2013-01-31T17:10:58Z",
602
+ "rels": {
603
+ "self": {
604
+ "href": "https://core.woofound.com/sliders/2/entities/12915"
605
+ }
1158
606
  },
1159
- {
1160
- "name": "Brickmason and Blockmason",
1161
- "image": {
1162
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/88cff7773b2e35b71013.jpg",
1163
- "_640x640": {
1164
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_640x640_88cff7773b2e35b71013.jpg"
1165
- },
1166
- "_506x540": {
1167
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_506x540_88cff7773b2e35b71013.jpg"
1168
- },
1169
- "_480x208": {
1170
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_480x208_88cff7773b2e35b71013.jpg"
1171
- },
1172
- "_320x320": {
1173
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_320x320_88cff7773b2e35b71013.jpg"
1174
- },
1175
- "_306x540": {
1176
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_306x540_88cff7773b2e35b71013.jpg"
1177
- },
1178
- "_300x300": {
1179
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_300x300_88cff7773b2e35b71013.jpg"
1180
- },
1181
- "_260x260": {
1182
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_260x260_88cff7773b2e35b71013.jpg"
1183
- },
1184
- "_253x270": {
1185
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_253x270_88cff7773b2e35b71013.jpg"
1186
- },
1187
- "_240x104": {
1188
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_240x104_88cff7773b2e35b71013.jpg"
1189
- },
1190
- "_166x166": {
1191
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_166x166_88cff7773b2e35b71013.jpg"
1192
- },
1193
- "_150x150": {
1194
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_150x150_88cff7773b2e35b71013.jpg"
1195
- },
1196
- "_120x120": {
1197
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_120x120_88cff7773b2e35b71013.jpg"
1198
- },
1199
- "_90x90": {
1200
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_90x90_88cff7773b2e35b71013.jpg"
1201
- },
1202
- "_83x83": {
1203
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_83x83_88cff7773b2e35b71013.jpg"
1204
- },
1205
- "_60x60": {
1206
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_60x60_88cff7773b2e35b71013.jpg"
1207
- },
1208
- "_45x45": {
1209
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_45x45_88cff7773b2e35b71013.jpg"
1210
- },
1211
- "_30x30": {
1212
- "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_30x30_88cff7773b2e35b71013.jpg"
1213
- }
1214
- },
1215
- "uuid": "90e12010-3e73-0130-73dd-12313d00cdfe",
1216
- "latitude": null,
1217
- "longitude": null,
1218
- "updated_at": "2013-01-31T17:36:35Z",
1219
- "_links": {
1220
- "self": {
1221
- "href": "https://core.woofound.com/sliders/2/entities/12923"
1222
- }
1223
- },
1224
- "blend": "TP",
1225
- "green": "false",
1226
- "active": "true",
1227
- "bright": "true",
1228
- "min_edu": "High School Diploma",
1229
- "colleges": "[{\"name\":\"Salt Lake Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/salt_lake_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_salt_lake_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_salt_lake_community_college.jpg\"},\"website\":\"http://www.slcc.edu/\",\"twitter\":\"@saltlakecc\",\"facebook\":\"https://www.facebook.com/SaltLakeCommunityCollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/groups/Salt-Lake-Community-College-Alumni-1930462?gid=1930462&mostPopular=&trk=tyah\"},{\"name\":\"Palomar College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/palomar_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_palomar_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_palomar_college.jpg\"},\"website\":\"http://www.palomar.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/palomarcollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/19930?trk=tyah\"},{\"name\":\"Orange Coast College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/orange_coast_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_orange_coast_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_orange_coast_college.jpg\"},\"website\":\"http://www.orangecoastcollege.edu/\",\"twitter\":\"@orangecoast\",\"facebook\":\"https://www.facebook.com/orangecoastcollege\",\"linkedin\":\"http://www.linkedin.com/company/23933?trk=tyah\"},{\"name\":\"Masonry Association of Florida, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/masonry_association_of_florida,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_masonry_association_of_florida,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_masonry_association_of_florida,_inc.jpg\"},\"website\":\"www.floridamasonry.com\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Masonry-Association-of-Florida-Treasure-Coast-Chapter/109732349044362\",\"linkedin\":\"http://www.linkedin.com/company/726913?trk=tyah\"},{\"name\":\"Milwaukee Area Technical College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/milwaukee_area_technical_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_milwaukee_area_technical_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_milwaukee_area_technical_college.jpg\"},\"website\":\"http://www.matc.edu/\",\"twitter\":\"@discovermatc\",\"facebook\":\"https://www.facebook.com/MilwAreaTechCollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/22647?trk=tyah\"}]",
1230
- "onet_link": "http://www.onetonline.org/link/summary/47-2021.00",
1231
- "avg_salary": "$40,000-50,000",
1232
- "businesses": "[{\"name\":\"JF Enterprises\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/jf_enterprises.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_jf_enterprises.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_jf_enterprises.jpg\"},\"website\":\"http://jfenterprisesllc.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/JF-enterprises-Construction-Landscaping/183196548393188?fref=ts\",\"linkedin\":null},{\"name\":\"Custom Stoneworks and Design\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/custom_stoneworks_and_design.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_custom_stoneworks_and_design.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_custom_stoneworks_and_design.jpg\"},\"website\":\"http://www.stoneworksdesign.com/\",\"twitter\":\"@paverswallsmd\",\"facebook\":\"https://www.facebook.com/pages/Custom-Stoneworks-Design-Inc/166681093363154\",\"linkedin\":null},{\"name\":\"Color Match Masonry\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/color_match_masonry.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_color_match_masonry.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_color_match_masonry.jpg\"},\"website\":\"http://www.brickstain.com/\",\"twitter\":\"@colormatchmason\",\"facebook\":\"https://www.facebook.com/MASONRYSTAIN?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/2485516?trk=tyah\"},{\"name\":\"AP Eberlein Company\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ap_eberlein_company.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ap_eberlein_company.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ap_eberlein_company.jpg\"},\"website\":\"http://eberleincompany.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/AP-Eberlein-Company-Inc/111131415591899?fref=ts\",\"linkedin\":null},{\"name\":\"Flawless Masonry\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/flawless_masonry.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_flawless_masonry.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_flawless_masonry.jpg\"},\"website\":\"http://flawlessmasonry.com/\",\"twitter\":\"@flawlessmasonry\",\"facebook\":\"https://www.facebook.com/flawless.masonry.1?fref=ts\",\"linkedin\":null}]",
1233
- "description": "Lay and bind building materials, such as brick, structural tile, concrete block, cinder block, glass block, and terra-cotta block, with mortar and other substances to construct or repair walls, partitions, arches, sewers, and other structures.",
1234
- "growth_rate": "Over 29%"
607
+ "blend": "TPA",
608
+ "green": "false",
609
+ "active": "true",
610
+ "bright": "true",
611
+ "min_edu": "High School Diploma",
612
+ "colleges": "[{\"name\":\"Ashworth College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ashworth_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ashworth_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ashworth_college.jpg\"},\"website\":\"http://www.ashworthcollege.edu/\",\"twitter\":\"@ashworthcollege\",\"facebook\":\"https://www.facebook.com/ashworthcollege\",\"linkedin\":\"http://www.linkedin.com/company/1430932?trk=tyah\"},{\"name\":\"Penn Foster Career School\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/penn_foster_career_school.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_penn_foster_career_school.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_penn_foster_career_school.jpg\"},\"website\":\"http://www.pennfoster.edu/\",\"twitter\":\"@pennfoster\",\"facebook\":\"https://www.facebook.com/pfcareerschool\",\"linkedin\":null},{\"name\":\"Southern New Hampshire University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/southern_new_hampshire_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_southern_new_hampshire_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_southern_new_hampshire_university.jpg\"},\"website\":\"http://www.snhu.edu/\",\"twitter\":\"@snhu\",\"facebook\":\"https://www.facebook.com/OfficialSNHU\",\"linkedin\":\"http://www.linkedin.com/groups?mostPopular=&gid=3688403\"},{\"name\":\"Liberty University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/liberty_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_liberty_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_liberty_university.jpg\"},\"website\":\"http://www.liberty.edu/\",\"twitter\":\"@libertyu\",\"facebook\":\"https://www.facebook.com/LibertyUniversity\",\"linkedin\":\"http://www.linkedin.com/company/9654?trk=tyah\"},{\"name\":\"New England Institute of Technology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/new_england_institute_of_technology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_new_england_institute_of_technology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_new_england_institute_of_technology.jpg\"},\"website\":\"http://www.neit.edu/\",\"twitter\":\"@neinstitutetech\",\"facebook\":\"https://www.facebook.com/NewEnglandTech\",\"linkedin\":\"http://www.linkedin.com/company/41129?trk=tyah\"}]",
613
+ "onet_link": "http://www.onetonline.org/link/summary/49-3091.00",
614
+ "avg_salary": "$20,000-30,000",
615
+ "businesses": "[{\"name\":\"The Devil's Gear Bike Shop\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_devil's_gear_bike_shop.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_devil's_gear_bike_shop.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_devil's_gear_bike_shop.jpg\"},\"website\":\"http://www.thedevilsgear.com/\",\"twitter\":\"@thedevilsgear\",\"facebook\":\"https://www.facebook.com/thedevilsgear\",\"linkedin\":null},{\"name\":\"Intown Bicycles\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/intown_bicycles.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_intown_bicycles.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_intown_bicycles.jpg\"},\"website\":\"http://www.intownbicycles.com/\",\"twitter\":\"@intownbicycles\",\"facebook\":\"https://www.facebook.com/pages/Intown-Bicycles/179074262186089\",\"linkedin\":null},{\"name\":\"East Burke Sports\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/east_burke_sports.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_east_burke_sports.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_east_burke_sports.jpg\"},\"website\":\"http://www.eastburkesports.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/East-Burke-Sports/153752911314086\",\"linkedin\":null},{\"name\":\"Belmont Wheelworks\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/belmont_wheelworks.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_belmont_wheelworks.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_belmont_wheelworks.jpg\"},\"website\":\"http://wheelworks.com/articles/belmont-wheelworks-pg137.htm\",\"twitter\":\"@wheelworksbikes\",\"facebook\":\"https://www.facebook.com/belmontwheelworks\",\"linkedin\":null},{\"name\":\"Drummond Custom Cycles\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/drummond_custom_cycles.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_drummond_custom_cycles.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_drummond_custom_cycles.jpg\"},\"website\":\"http://drummondcycles.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/drummondcycles\",\"linkedin\":null}]",
616
+ "description": "Repair and service bicycles.",
617
+ "growth_rate": null
618
+ },
619
+ {
620
+ "name": "Dental Laboratory Technician",
621
+ "image": {
622
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/2c1935502736c9d3b028.jpg",
623
+ "_640x640": {
624
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_640x640_2c1935502736c9d3b028.jpg"
625
+ },
626
+ "_506x540": {
627
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_506x540_2c1935502736c9d3b028.jpg"
628
+ },
629
+ "_480x208": {
630
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_480x208_2c1935502736c9d3b028.jpg"
631
+ },
632
+ "_320x320": {
633
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_320x320_2c1935502736c9d3b028.jpg"
634
+ },
635
+ "_306x540": {
636
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_306x540_2c1935502736c9d3b028.jpg"
637
+ },
638
+ "_300x300": {
639
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_300x300_2c1935502736c9d3b028.jpg"
640
+ },
641
+ "_260x260": {
642
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_260x260_2c1935502736c9d3b028.jpg"
643
+ },
644
+ "_253x270": {
645
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_253x270_2c1935502736c9d3b028.jpg"
646
+ },
647
+ "_240x104": {
648
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_240x104_2c1935502736c9d3b028.jpg"
649
+ },
650
+ "_166x166": {
651
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_166x166_2c1935502736c9d3b028.jpg"
652
+ },
653
+ "_150x150": {
654
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_150x150_2c1935502736c9d3b028.jpg"
655
+ },
656
+ "_120x120": {
657
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_120x120_2c1935502736c9d3b028.jpg"
658
+ },
659
+ "_90x90": {
660
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_90x90_2c1935502736c9d3b028.jpg"
661
+ },
662
+ "_83x83": {
663
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_83x83_2c1935502736c9d3b028.jpg"
664
+ },
665
+ "_60x60": {
666
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_60x60_2c1935502736c9d3b028.jpg"
667
+ },
668
+ "_45x45": {
669
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_45x45_2c1935502736c9d3b028.jpg"
670
+ },
671
+ "_30x30": {
672
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12916/_30x30_2c1935502736c9d3b028.jpg"
673
+ }
1235
674
  },
1236
- {
1237
- "name": "Electrical Equipment Installer",
1238
- "image": {
1239
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/c0a2fee942b7755286f9.jpg",
1240
- "_640x640": {
1241
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_640x640_c0a2fee942b7755286f9.jpg"
1242
- },
1243
- "_506x540": {
1244
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_506x540_c0a2fee942b7755286f9.jpg"
1245
- },
1246
- "_480x208": {
1247
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_480x208_c0a2fee942b7755286f9.jpg"
1248
- },
1249
- "_320x320": {
1250
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_320x320_c0a2fee942b7755286f9.jpg"
1251
- },
1252
- "_306x540": {
1253
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_306x540_c0a2fee942b7755286f9.jpg"
1254
- },
1255
- "_300x300": {
1256
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_300x300_c0a2fee942b7755286f9.jpg"
1257
- },
1258
- "_260x260": {
1259
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_260x260_c0a2fee942b7755286f9.jpg"
1260
- },
1261
- "_253x270": {
1262
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_253x270_c0a2fee942b7755286f9.jpg"
1263
- },
1264
- "_240x104": {
1265
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_240x104_c0a2fee942b7755286f9.jpg"
1266
- },
1267
- "_166x166": {
1268
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_166x166_c0a2fee942b7755286f9.jpg"
1269
- },
1270
- "_150x150": {
1271
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_150x150_c0a2fee942b7755286f9.jpg"
1272
- },
1273
- "_120x120": {
1274
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_120x120_c0a2fee942b7755286f9.jpg"
1275
- },
1276
- "_90x90": {
1277
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_90x90_c0a2fee942b7755286f9.jpg"
1278
- },
1279
- "_83x83": {
1280
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_83x83_c0a2fee942b7755286f9.jpg"
1281
- },
1282
- "_60x60": {
1283
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_60x60_c0a2fee942b7755286f9.jpg"
1284
- },
1285
- "_45x45": {
1286
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_45x45_c0a2fee942b7755286f9.jpg"
1287
- },
1288
- "_30x30": {
1289
- "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_30x30_c0a2fee942b7755286f9.jpg"
1290
- }
1291
- },
1292
- "uuid": "937b7ea0-3e73-0130-73dd-12313d00cdfe",
1293
- "latitude": null,
1294
- "longitude": null,
1295
- "updated_at": "2013-01-31T18:01:08Z",
1296
- "_links": {
1297
- "self": {
1298
- "href": "https://core.woofound.com/sliders/2/entities/12924"
1299
- }
1300
- },
1301
- "blend": "TPA",
1302
- "green": "true",
1303
- "active": "true",
1304
- "bright": "false",
1305
- "min_edu": "High School Diploma",
1306
- "colleges": "[{\"name\":\"Massachusetts Institute of Technology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/massachusetts_institute_of_technology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_massachusetts_institute_of_technology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_massachusetts_institute_of_technology.jpg\"},\"website\":\"http://web.mit.edu/\",\"twitter\":\"@mitnews\",\"facebook\":\"https://www.facebook.com/MITnews\",\"linkedin\":\"http://www.linkedin.com/company/1503?trk=tyah\"},{\"name\":\"Stanford University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/stanford_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_stanford_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_stanford_university.jpg\"},\"website\":\"http://www.stanford.edu/\",\"twitter\":\"@stanford\",\"facebook\":\"https://www.facebook.com/stanford\",\"linkedin\":\"http://www.linkedin.com/company/1792?trk=tyah\"},{\"name\":\"University of California--Berkeley\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_california--berkeley.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_california--berkeley.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_california--berkeley.jpg\"},\"website\":\"http://www.berkeley.edu/\",\"twitter\":\"@ucberkeley\",\"facebook\":\"https://www.facebook.com/UCBerkeley\",\"linkedin\":\"http://www.linkedin.com/company/2517?trk=tyah\"},{\"name\":\"Georgia Institute of Technology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/georgia_institute_of_technology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_georgia_institute_of_technology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_georgia_institute_of_technology.jpg\"},\"website\":\"http://www.gatech.edu/\",\"twitter\":\"@georgiatech\",\"facebook\":\"https://www.facebook.com/georgiatech\",\"linkedin\":\"http://www.linkedin.com/company/3558\"},{\"name\":\"University of Illinois--Urbana-Champaign\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_illinois--urbana-champaign.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_illinois--urbana-champaign.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_illinois--urbana-champaign.jpg\"},\"website\":\"http://illinois.edu/\",\"twitter\":\"@illinois_alma\",\"facebook\":\"https://www.facebook.com/illinois.edu\",\"linkedin\":\"http://www.linkedin.com/company/2650?trk=tyah\"}]",
1307
- "onet_link": "http://www.onetonline.org/link/summary/49-2093.00",
1308
- "avg_salary": "$20,000-30,000",
1309
- "businesses": "[{\"name\":\"BGE\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bge.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bge.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bge.jpg\"},\"website\":\"http://www.bge.com\",\"twitter\":\"@MyBGE\",\"facebook\":\"https://www.facebook.com/myBGE\",\"linkedin\":\"http://www.linkedin.com/company/5115?trk=null\"},{\"name\":\"Con Edison of New York\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/con_edison_of_new_york.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_con_edison_of_new_york.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_con_edison_of_new_york.jpg\"},\"website\":\"http://www.coned.com/\",\"twitter\":\"@conedison\",\"facebook\":\"https://www.facebook.com/ConEdisonNY?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/163188?trk=tyah\"},{\"name\":\"Sky Electric Company, LLC\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/sky_electric_company,_llc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_sky_electric_company,_llc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_sky_electric_company,_llc.jpg\"},\"website\":\"http://www.skyelectriccompanyllc.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Sky-Electric-Company/165647730218414\",\"linkedin\":\"http://www.linkedin.com/company/2761475?trk=tyah\"},{\"name\":\"Manhattan Electricians\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/manhattan_electricians.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_manhattan_electricians.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_manhattan_electricians.jpg\"},\"website\":\"http://www.manhattan-electricians.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/WeinsteinElectric\",\"linkedin\":null},{\"name\":\"Southern California Edison\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/southern_california_edison.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_southern_california_edison.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_southern_california_edison.jpg\"},\"website\":\"http://www.sce.com/\",\"twitter\":\"@sce\",\"facebook\":\"https://www.facebook.com/sce\",\"linkedin\":\"http://www.linkedin.com/company/southern-california-edison\"}]",
1310
- "description": "Assemble or modify electrical or electronic equipment, such as computers, test equipment telemetering systems, electric motors, and batteries.",
1311
- "growth_rate": "0-9%"
675
+ "uuid": "7c36d2a0-3e73-0130-73dd-12313d00cdfe",
676
+ "latitude": null,
677
+ "longitude": null,
678
+ "updated_at": "2013-01-31T17:52:29Z",
679
+ "rels": {
680
+ "self": {
681
+ "href": "https://core.woofound.com/sliders/2/entities/12916"
682
+ }
1312
683
  },
1313
- {
1314
- "name": "Veterinary Technologist",
1315
- "image": {
1316
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/58005d345eb4eb42756a.jpg",
1317
- "_640x640": {
1318
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_640x640_58005d345eb4eb42756a.jpg"
1319
- },
1320
- "_506x540": {
1321
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_506x540_58005d345eb4eb42756a.jpg"
1322
- },
1323
- "_480x208": {
1324
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_480x208_58005d345eb4eb42756a.jpg"
1325
- },
1326
- "_320x320": {
1327
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_320x320_58005d345eb4eb42756a.jpg"
1328
- },
1329
- "_306x540": {
1330
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_306x540_58005d345eb4eb42756a.jpg"
1331
- },
1332
- "_300x300": {
1333
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_300x300_58005d345eb4eb42756a.jpg"
1334
- },
1335
- "_260x260": {
1336
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_260x260_58005d345eb4eb42756a.jpg"
1337
- },
1338
- "_253x270": {
1339
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_253x270_58005d345eb4eb42756a.jpg"
1340
- },
1341
- "_240x104": {
1342
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_240x104_58005d345eb4eb42756a.jpg"
1343
- },
1344
- "_166x166": {
1345
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_166x166_58005d345eb4eb42756a.jpg"
1346
- },
1347
- "_150x150": {
1348
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_150x150_58005d345eb4eb42756a.jpg"
1349
- },
1350
- "_120x120": {
1351
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_120x120_58005d345eb4eb42756a.jpg"
1352
- },
1353
- "_90x90": {
1354
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_90x90_58005d345eb4eb42756a.jpg"
1355
- },
1356
- "_83x83": {
1357
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_83x83_58005d345eb4eb42756a.jpg"
1358
- },
1359
- "_60x60": {
1360
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_60x60_58005d345eb4eb42756a.jpg"
1361
- },
1362
- "_45x45": {
1363
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_45x45_58005d345eb4eb42756a.jpg"
1364
- },
1365
- "_30x30": {
1366
- "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_30x30_58005d345eb4eb42756a.jpg"
1367
- }
1368
- },
1369
- "uuid": "96325810-3e73-0130-73dd-12313d00cdfe",
1370
- "latitude": null,
1371
- "longitude": null,
1372
- "updated_at": "2013-01-31T23:16:18Z",
1373
- "_links": {
1374
- "self": {
1375
- "href": "https://core.woofound.com/sliders/2/entities/12925"
1376
- }
1377
- },
1378
- "blend": "NA",
1379
- "green": "false",
1380
- "active": "true",
1381
- "bright": "true",
1382
- "min_edu": "College Degree",
1383
- "colleges": "[{\"name\":\"Cornell University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cornell_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cornell_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cornell_university.jpg\"},\"website\":\"http://www.cornell.edu/\",\"twitter\":\"@cornell\",\"facebook\":\"https://www.facebook.com/Cornell\",\"linkedin\":\"http://www.linkedin.com/company/3523?trk=tyah\"},{\"name\":\"University of California, Davis\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_california,_davis.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_california,_davis.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_california,_davis.jpg\"},\"website\":\"http://www.ucdavis.edu/\",\"twitter\":\"@ucdavis\",\"facebook\":\"https://www.facebook.com/UCDavis\",\"linkedin\":\"http://www.linkedin.com/company/2842?trk=tyah\"},{\"name\":\"Colorado State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/colorado_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_colorado_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_colorado_state_university.jpg\"},\"website\":\"http://www.colostate.edu/\",\"twitter\":\"@coloradostateu\",\"facebook\":\"https://www.facebook.com/coloradostateuniversity\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=36343&trk=anet_ug_hm\"},{\"name\":\"North Carolina State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/north_carolina_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_north_carolina_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_north_carolina_state_university.jpg\"},\"website\":\"http://www.ncsu.edu/\",\"twitter\":\"@ncstate\",\"facebook\":\"https://www.facebook.com/ncstate\",\"linkedin\":\"http://www.linkedin.com/company/4813?trk=tyah\"},{\"name\":\"Ohio State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ohio_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ohio_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ohio_state_university.jpg\"},\"website\":\"http://www.osu.edu/\",\"twitter\":\"@ohiostate\",\"facebook\":\"https://www.facebook.com/osu\",\"linkedin\":\"http://www.linkedin.com/company/3173?trk=tyah\"}]",
1384
- "onet_link": "http://www.onetonline.org/link/summary/29-2056.00",
1385
- "avg_salary": "$30,000-40,000",
1386
- "businesses": "[{\"name\":\"MSPCA Angell\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/mspca_angell.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_mspca_angell.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_mspca_angell.jpg\"},\"website\":\"http://www.mspca.org/\",\"twitter\":\"@mspcaangell\",\"facebook\":\"https://www.facebook.com/mspcaangell\",\"linkedin\":\"http://www.linkedin.com/company/49642?trk=tyah\"},{\"name\":\"Animal Medial Center\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/animal_medial_center.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_animal_medial_center.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_animal_medial_center.jpg\"},\"website\":\"http://www.amcny.org/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/theanimalmedicalcenter\",\"linkedin\":\"http://www.linkedin.com/company/animal-medical-center\"},{\"name\":\"Bergh Memorial Animal Hospital\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bergh_memorial_animal_hospital.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bergh_memorial_animal_hospital.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bergh_memorial_animal_hospital.jpg\"},\"website\":\"http://www.aspca.org/aspca-nyc/berg-memorial-animal-hospital.aspx\",\"twitter\":\"@aspca\",\"facebook\":\"https://www.facebook.com/aspca\",\"linkedin\":\"http://www.linkedin.com/company/23499?trk=tyah\"},{\"name\":\"Stonehenge Veterinary Hospital\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/stonehenge_veterinary_hospital.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_stonehenge_veterinary_hospital.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_stonehenge_veterinary_hospital.jpg\"},\"website\":\"http://www.stonehengeveterinaryhospital.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Stonehenge-Veterinary-Hospital/110968332301384?fref=ts\",\"linkedin\":null},{\"name\":\"Animal Care Clinic\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/animal_care_clinic.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_animal_care_clinic.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_animal_care_clinic.jpg\"},\"website\":\"http://www.animalcareclinicslo.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/animalcareclinic\",\"linkedin\":null}]",
1387
- "description": "Perform medical tests in a laboratory environment for use in the treatment and diagnosis of diseases in animals. Prepare vaccines and serums for prevention of diseases. Prepare tissue samples, take blood samples, and execute laboratory tests, such as urinalysis and blood counts. Clean and sterilize instruments and materials and maintain equipment and machines. May assist a veterinarian during surgery.",
1388
- "growth_rate": "Over 29%"
684
+ "blend": "TAP",
685
+ "green": "false",
686
+ "active": "true",
687
+ "bright": "false",
688
+ "min_edu": "High School Diploma",
689
+ "colleges": "[{\"name\":\"Argosy University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/argosy_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_argosy_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_argosy_university.jpg\"},\"website\":\"http://www.argosy.edu/\",\"twitter\":\"@argosyu\",\"facebook\":\"https://www.facebook.com/ArgosyStudents\",\"linkedin\":\"http://www.linkedin.com/company/162512?trk=tyah\"},{\"name\":\"ECPI University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ecpi_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ecpi_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ecpi_university.jpg\"},\"website\":\"http://www.ecpi.edu/\",\"twitter\":\"@ecpiuniversity\",\"facebook\":\"https://www.facebook.com/ECPIuniversity/?intcmp=facebook\",\"linkedin\":\"http://www.linkedin.com/company/ecpi-university\"},{\"name\":\"Sanford Brown\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/sanford_brown.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_sanford_brown.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_sanford_brown.jpg\"},\"website\":\"http://www.sanfordbrown.edu/\",\"twitter\":\"@sanfordbrownedu\",\"facebook\":\"https://www.facebook.com/sanfordbrownhealthschools\",\"linkedin\":\"http://www.linkedin.com/company/838989?trk=tyah\"},{\"name\":\"Kaplan University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/kaplan_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_kaplan_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_kaplan_university.jpg\"},\"website\":\"http://www.kaplanuniversity.edu/\",\"twitter\":\"@kaplanuniv\",\"facebook\":\"https://www.facebook.com/KaplanUniversity\",\"linkedin\":\"http://www.linkedin.com/groups?gid=2244040&trk=hb_side_g\"},{\"name\":\"Walden University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/walden_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_walden_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_walden_university.jpg\"},\"website\":\"http://www.waldenu.edu\",\"twitter\":\"@waldenu\",\"facebook\":\"https://www.facebook.com/waldenu?ref=s\",\"linkedin\":\"http://www.linkedin.com/company/17473?trk=tyah\"}]",
690
+ "onet_link": "http://www.onetonline.org/link/summary/51-9081.00",
691
+ "avg_salary": "$30,000-40,000",
692
+ "businesses": "[{\"name\":\"Massachusetts Dental Society\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/massachusetts_dental_society.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_massachusetts_dental_society.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_massachusetts_dental_society.jpg\"},\"website\":\"http://www.massdental.org/\",\"twitter\":\"@massdental\",\"facebook\":\"https://www.facebook.com/massdental\",\"linkedin\":\"http://www.linkedin.com/company/2527650?trk=tyah\"},{\"name\":\"Friendship Dental Labs\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/friendship_dental_labs.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_friendship_dental_labs.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_friendship_dental_labs.jpg\"},\"website\":\"http://www.friendshipdentallab.com/\",\"twitter\":\"@friendshiplabs\",\"facebook\":\"https://www.facebook.com/FriendshipLabs\",\"linkedin\":\"http://www.linkedin.com/company/2428496?trk=tyah\"},{\"name\":\"Top Dentists\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/top_dentists.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_top_dentists.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_top_dentists.jpg\"},\"website\":\"http://www.topdentists.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/topdentists.com\",\"linkedin\":null},{\"name\":\"University of Maryland at Baltimore\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_maryland_at_baltimore.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_maryland_at_baltimore.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_maryland_at_baltimore.jpg\"},\"website\":\"http://www.umaryland.edu/\",\"twitter\":\"@umbnews\",\"facebook\":\"https://www.facebook.com/pages/University-of-Maryland-Baltimore/53789299214\",\"linkedin\":\"http://www.linkedin.com/company/university-of-maryland-baltimore-umb-\"},{\"name\":\"Washington Center for Dentistry\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/washington_center_for_dentistry.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_washington_center_for_dentistry.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_washington_center_for_dentistry.jpg\"},\"website\":\"http://www.washdent.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/washdent\",\"linkedin\":null}]",
693
+ "description": "Construct and repair full or partial dentures or dental appliances.",
694
+ "growth_rate": "0-9%"
695
+ },
696
+ {
697
+ "name": "Correspondence Clerk",
698
+ "image": {
699
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/c6c46d2fbbcfae4e802f.jpg",
700
+ "_640x640": {
701
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_640x640_c6c46d2fbbcfae4e802f.jpg"
702
+ },
703
+ "_506x540": {
704
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_506x540_c6c46d2fbbcfae4e802f.jpg"
705
+ },
706
+ "_480x208": {
707
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_480x208_c6c46d2fbbcfae4e802f.jpg"
708
+ },
709
+ "_320x320": {
710
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_320x320_c6c46d2fbbcfae4e802f.jpg"
711
+ },
712
+ "_306x540": {
713
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_306x540_c6c46d2fbbcfae4e802f.jpg"
714
+ },
715
+ "_300x300": {
716
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_300x300_c6c46d2fbbcfae4e802f.jpg"
717
+ },
718
+ "_260x260": {
719
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_260x260_c6c46d2fbbcfae4e802f.jpg"
720
+ },
721
+ "_253x270": {
722
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_253x270_c6c46d2fbbcfae4e802f.jpg"
723
+ },
724
+ "_240x104": {
725
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_240x104_c6c46d2fbbcfae4e802f.jpg"
726
+ },
727
+ "_166x166": {
728
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_166x166_c6c46d2fbbcfae4e802f.jpg"
729
+ },
730
+ "_150x150": {
731
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_150x150_c6c46d2fbbcfae4e802f.jpg"
732
+ },
733
+ "_120x120": {
734
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_120x120_c6c46d2fbbcfae4e802f.jpg"
735
+ },
736
+ "_90x90": {
737
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_90x90_c6c46d2fbbcfae4e802f.jpg"
738
+ },
739
+ "_83x83": {
740
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_83x83_c6c46d2fbbcfae4e802f.jpg"
741
+ },
742
+ "_60x60": {
743
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_60x60_c6c46d2fbbcfae4e802f.jpg"
744
+ },
745
+ "_45x45": {
746
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_45x45_c6c46d2fbbcfae4e802f.jpg"
747
+ },
748
+ "_30x30": {
749
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12917/_30x30_c6c46d2fbbcfae4e802f.jpg"
750
+ }
1389
751
  },
1390
- {
1391
- "name": "Vocational Educator",
1392
- "image": {
1393
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/d81ebeedef0d5345e91b.jpg",
1394
- "_640x640": {
1395
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_640x640_d81ebeedef0d5345e91b.jpg"
1396
- },
1397
- "_506x540": {
1398
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_506x540_d81ebeedef0d5345e91b.jpg"
1399
- },
1400
- "_480x208": {
1401
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_480x208_d81ebeedef0d5345e91b.jpg"
1402
- },
1403
- "_320x320": {
1404
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_320x320_d81ebeedef0d5345e91b.jpg"
1405
- },
1406
- "_306x540": {
1407
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_306x540_d81ebeedef0d5345e91b.jpg"
1408
- },
1409
- "_300x300": {
1410
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_300x300_d81ebeedef0d5345e91b.jpg"
1411
- },
1412
- "_260x260": {
1413
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_260x260_d81ebeedef0d5345e91b.jpg"
1414
- },
1415
- "_253x270": {
1416
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_253x270_d81ebeedef0d5345e91b.jpg"
1417
- },
1418
- "_240x104": {
1419
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_240x104_d81ebeedef0d5345e91b.jpg"
1420
- },
1421
- "_166x166": {
1422
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_166x166_d81ebeedef0d5345e91b.jpg"
1423
- },
1424
- "_150x150": {
1425
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_150x150_d81ebeedef0d5345e91b.jpg"
1426
- },
1427
- "_120x120": {
1428
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_120x120_d81ebeedef0d5345e91b.jpg"
1429
- },
1430
- "_90x90": {
1431
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_90x90_d81ebeedef0d5345e91b.jpg"
1432
- },
1433
- "_83x83": {
1434
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_83x83_d81ebeedef0d5345e91b.jpg"
1435
- },
1436
- "_60x60": {
1437
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_60x60_d81ebeedef0d5345e91b.jpg"
1438
- },
1439
- "_45x45": {
1440
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_45x45_d81ebeedef0d5345e91b.jpg"
1441
- },
1442
- "_30x30": {
1443
- "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_30x30_d81ebeedef0d5345e91b.jpg"
1444
- }
1445
- },
1446
- "uuid": "99205f40-3e73-0130-73dd-12313d00cdfe",
1447
- "latitude": null,
1448
- "longitude": null,
1449
- "updated_at": "2013-01-31T23:17:09Z",
1450
- "_links": {
1451
- "self": {
1452
- "href": "https://core.woofound.com/sliders/2/entities/12926"
1453
- }
1454
- },
1455
- "blend": "MT",
1456
- "green": "false",
1457
- "active": "true",
1458
- "bright": "false",
1459
- "min_edu": "College Degree",
1460
- "colleges": "[{\"name\":\"Pennsylvania State University--University Park\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pennsylvania_state_university--university_park.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pennsylvania_state_university--university_park.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pennsylvania_state_university--university_park.jpg\"},\"website\":\"http://www.psu.edu/\",\"twitter\":\"@penn_state\",\"facebook\":\"https://www.facebook.com/pennstate\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=40178\"},{\"name\":\"Ohio State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ohio_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ohio_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ohio_state_university.jpg\"},\"website\":\"http://www.osu.edu/\",\"twitter\":\"@ohiostate\",\"facebook\":\"https://www.facebook.com/osu\",\"linkedin\":\"http://www.linkedin.com/company/3173?trk=tyah\"},{\"name\":\"University of Georgia\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_georgia.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_georgia.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_georgia.jpg\"},\"website\":\"http://www.uga.edu/\",\"twitter\":\"@universityofga\",\"facebook\":\"https://www.facebook.com/uga.edu\",\"linkedin\":\"http://www.linkedin.com/company/166638?trk=tyah\"},{\"name\":\"University of Minnesota--Twin Cities\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_minnesota--twin_cities.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_minnesota--twin_cities.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_minnesota--twin_cities.jpg\"},\"website\":\"http://www1.umn.edu/\",\"twitter\":\"@umnews\",\"facebook\":\"https://www.facebook.com/UofMN?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/3181?trk=tyah\"},{\"name\":\"Virginia Tech\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/virginia_tech.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_virginia_tech.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_virginia_tech.jpg\"},\"website\":\"http://www.vt.edu/\",\"twitter\":\"@virginia_tech\",\"facebook\":\"https://www.facebook.com/virginiatech\",\"linkedin\":\"http://www.linkedin.com/company/166811?trk=tyah\"}]",
1461
- "onet_link": "http://www.onetonline.org/link/summary/25-1194.00",
1462
- "avg_salary": "$40,000-50,000",
1463
- "businesses": "[{\"name\":\"Ohio State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ohio_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ohio_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ohio_state_university.jpg\"},\"website\":\"http://www.osu.edu/\",\"twitter\":\"@ohiostate\",\"facebook\":\"https://www.facebook.com/osu\",\"linkedin\":\"http://www.linkedin.com/company/3173?trk=tyah\"},{\"name\":\"Pennsylvania State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pennsylvania_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pennsylvania_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pennsylvania_state_university.jpg\"},\"website\":\"http://www.psu.edu/\",\"twitter\":\"@penn_state\",\"facebook\":\"https://www.facebook.com/pennstate\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=40178\"},{\"name\":\"University of Georgia\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_georgia.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_georgia.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_georgia.jpg\"},\"website\":\"http://www.uga.edu/\",\"twitter\":\"@universityofga\",\"facebook\":\"https://www.facebook.com/uga.edu\",\"linkedin\":\"http://www.linkedin.com/company/166638?trk=tyah\"},{\"name\":\"University of Minnesota\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_minnesota.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_minnesota.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_minnesota.jpg\"},\"website\":\"http://www1.umn.edu/\",\"twitter\":\"@umnews\",\"facebook\":\"https://www.facebook.com/UofMN?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/3181?trk=tyah\"},{\"name\":\"Virginia Tech\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/virginia_tech.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_virginia_tech.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_virginia_tech.jpg\"},\"website\":\"http://www.vt.edu/\",\"twitter\":\"@virginia_tech\",\"facebook\":\"https://www.facebook.com/virginiatech\",\"linkedin\":\"http://www.linkedin.com/company/166811?trk=tyah\"}]",
1464
- "description": "Teach or instruct vocational or occupational subjects at the postsecondary level (but at less than the baccalaureate) to students who have graduated or left high school. Includes correspondence school, industrial, and commercial instructors; and adult education teachers and instructors who prepare persons to operate industrial machinery and equipment and transportation and communications equipment. Teaching may take place in public or private schools whose primary business is education or in a school associated with an organization whose primary business is other than education.",
1465
- "growth_rate": null
752
+ "uuid": "7ed78b40-3e73-0130-73dd-12313d00cdfe",
753
+ "latitude": null,
754
+ "longitude": null,
755
+ "updated_at": "2013-01-31T17:45:57Z",
756
+ "rels": {
757
+ "self": {
758
+ "href": "https://core.woofound.com/sliders/2/entities/12917"
759
+ }
1466
760
  },
1467
- {
1468
- "name": "Courier and Messenger",
1469
- "image": {
1470
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/b24c5e3f2b7b8eb36295.jpg",
1471
- "_640x640": {
1472
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_640x640_b24c5e3f2b7b8eb36295.jpg"
1473
- },
1474
- "_506x540": {
1475
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_506x540_b24c5e3f2b7b8eb36295.jpg"
1476
- },
1477
- "_480x208": {
1478
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_480x208_b24c5e3f2b7b8eb36295.jpg"
1479
- },
1480
- "_320x320": {
1481
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_320x320_b24c5e3f2b7b8eb36295.jpg"
1482
- },
1483
- "_306x540": {
1484
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_306x540_b24c5e3f2b7b8eb36295.jpg"
1485
- },
1486
- "_300x300": {
1487
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_300x300_b24c5e3f2b7b8eb36295.jpg"
1488
- },
1489
- "_260x260": {
1490
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_260x260_b24c5e3f2b7b8eb36295.jpg"
1491
- },
1492
- "_253x270": {
1493
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_253x270_b24c5e3f2b7b8eb36295.jpg"
1494
- },
1495
- "_240x104": {
1496
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_240x104_b24c5e3f2b7b8eb36295.jpg"
1497
- },
1498
- "_166x166": {
1499
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_166x166_b24c5e3f2b7b8eb36295.jpg"
1500
- },
1501
- "_150x150": {
1502
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_150x150_b24c5e3f2b7b8eb36295.jpg"
1503
- },
1504
- "_120x120": {
1505
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_120x120_b24c5e3f2b7b8eb36295.jpg"
1506
- },
1507
- "_90x90": {
1508
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_90x90_b24c5e3f2b7b8eb36295.jpg"
1509
- },
1510
- "_83x83": {
1511
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_83x83_b24c5e3f2b7b8eb36295.jpg"
1512
- },
1513
- "_60x60": {
1514
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_60x60_b24c5e3f2b7b8eb36295.jpg"
1515
- },
1516
- "_45x45": {
1517
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_45x45_b24c5e3f2b7b8eb36295.jpg"
1518
- },
1519
- "_30x30": {
1520
- "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_30x30_b24c5e3f2b7b8eb36295.jpg"
1521
- }
1522
- },
1523
- "uuid": "9bd9fdb0-3e73-0130-73dd-12313d00cdfe",
1524
- "latitude": null,
1525
- "longitude": null,
1526
- "updated_at": "2013-01-31T17:49:13Z",
1527
- "_links": {
1528
- "self": {
1529
- "href": "https://core.woofound.com/sliders/2/entities/12927"
1530
- }
1531
- },
1532
- "blend": "TM",
1533
- "green": "false",
1534
- "active": "true",
1535
- "bright": "false",
1536
- "min_edu": "High School Diploma",
1537
- "colleges": "[{\"name\":\"Medical Courier Training Center\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/medical_courier_training_center.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_medical_courier_training_center.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_medical_courier_training_center.jpg\"},\"website\":\"http://medicalcouriertraining.ning.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Medical-Courier-Training-Center/169065166443829\",\"linkedin\":\"http://www.linkedin.com/groups/Medical-Courier-Training-Center-3389920?gid=3389920&mostPopular=&trk=tyah\"},{\"name\":\"University of Phoenix\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_phoenix.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_phoenix.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_phoenix.jpg\"},\"website\":\"http://www.phoenix.edu/\",\"twitter\":\"@uopx\",\"facebook\":\"https://www.facebook.com/universityofphoenix\",\"linkedin\":\"http://www.linkedin.com/company/university-of-phoenix\"},{\"name\":\"Capella University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/capella_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_capella_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_capella_university.jpg\"},\"website\":\"http://www.capella.edu/\",\"twitter\":\"@capellau\",\"facebook\":\"https://www.facebook.com/CapellaUniversity\",\"linkedin\":\"http://www.linkedin.com/company/5609?trk=tyah\"},{\"name\":\"World Courier\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/world_courier.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_world_courier.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_world_courier.jpg\"},\"website\":\"http://www.worldcourier.com/\",\"twitter\":\"@worldcourierinc\",\"facebook\":\"https://www.facebook.com/pages/World-Courier-Inc/117336934954003\",\"linkedin\":\"http://www.linkedin.com/company/31541?trk=tyah\"},{\"name\":\"Ashford University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ashford_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ashford_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ashford_university.jpg\"},\"website\":\"http://www.ashford.edu/\",\"twitter\":\"@ashfordu\",\"facebook\":\"https://www.facebook.com/ashforduniversity\",\"linkedin\":\"http://www.linkedin.com/groups/Ashford-University-Alumni-Students-3743681?gid=3743681&mostPopular=&trk=tyah\"}]",
1538
- "onet_link": "http://www.onetonline.org/link/summary/43-5021.00",
1539
- "avg_salary": "$20,000-30,000",
1540
- "businesses": "[{\"name\":\"Expedited Courier Group\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/expedited_courier_group.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_expedited_courier_group.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_expedited_courier_group.jpg\"},\"website\":\"http://www.expeditedcouriergroup.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Expedited-Courier-Group/195651083780820?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/1835851?trk=tyah\"},{\"name\":\"Courierboard\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/courierboard.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_courierboard.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_courierboard.jpg\"},\"website\":\"http://www.courierboard.com/\",\"twitter\":\"@courierboard\",\"facebook\":\"https://www.facebook.com/courierboard\",\"linkedin\":\"http://www.linkedin.com/company/347100?trk=tyah\"},{\"name\":\"Metro Express of Baltimore\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/metro_express_of_baltimore.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_metro_express_of_baltimore.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_metro_express_of_baltimore.jpg\"},\"website\":\"http://www.metroexpressbaltimore.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Metro-Express-of-Baltimore-Inc-a-Courier-Service/133185893400518?fref=ts\",\"linkedin\":null},{\"name\":\"Parcel2Go\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/parcel2go.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_parcel2go.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_parcel2go.jpg\"},\"website\":\"http://www.parcel2go.com/\",\"twitter\":\"@parcel2go\",\"facebook\":\"https://www.facebook.com/parcel2go\",\"linkedin\":\"http://www.linkedin.com/company/451241?trk=tyah\"},{\"name\":\"Naparex\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/naparex.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_naparex.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_naparex.jpg\"},\"website\":\"http://www.naparex.com/\",\"twitter\":\"@naparex\",\"facebook\":\"https://www.facebook.com/NAPAREX?fref=ts\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=2471813\"}]",
1541
- "description": "Pick up and deliver messages, documents, packages, and other items between offices or departments within an establishment or directly to other business concerns, traveling by foot, bicycle, motorcycle, automobile, or public conveyance.",
1542
- "growth_rate": "10-19%"
1543
- }
1544
- ]
1545
- },
1546
- "_links": {
761
+ "blend": "P",
762
+ "green": "false",
763
+ "active": "true",
764
+ "bright": "false",
765
+ "min_edu": "High School Diploma",
766
+ "colleges": "[{\"name\":\"Bryant & Stratton College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bryant__stratton_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bryant__stratton_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bryant__stratton_college.jpg\"},\"website\":\"http://www.bryantstratton.edu/\",\"twitter\":\"@bryantstratton\",\"facebook\":\"https://www.facebook.com/bryantandstratton\",\"linkedin\":\"http://www.linkedin.com/company/14469\"},{\"name\":\"Everest College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/everest_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_everest_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_everest_college.jpg\"},\"website\":\"http://www.new.everest.edu/\",\"twitter\":\"@everest_college\",\"facebook\":\"https://www.facebook.com/Everest\",\"linkedin\":null},{\"name\":\"Baker College Online\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/baker_college_online.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_baker_college_online.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_baker_college_online.jpg\"},\"website\":\"http://www.bakercollegeonline.com/\",\"twitter\":\"@bakeronline\",\"facebook\":\"https://www.facebook.com/bakeronline\",\"linkedin\":\"http://www.linkedin.com/company/16519?trk=tyah\"},{\"name\":\"DeVry University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/devry_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_devry_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_devry_university.jpg\"},\"website\":\"http://www.devry.edu/\",\"twitter\":\"@devryuniv\",\"facebook\":\"https://www.facebook.com/DEVRYUNIVERSITY?v=wall\",\"linkedin\":\"http://www.linkedin.com/groups?gid=36138&trk=anetsrch_name&goback=.gdr_1258641799789_1\"},{\"name\":\"University of Phoenix\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_phoenix.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_phoenix.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_phoenix.jpg\"},\"website\":\"http://www.phoenix.edu/\",\"twitter\":\"@uopx\",\"facebook\":\"https://www.facebook.com/universityofphoenix\",\"linkedin\":\"http://www.linkedin.com/company/university-of-phoenix\"}]",
767
+ "onet_link": "http://www.onetonline.org/link/summary/43-4021.00",
768
+ "avg_salary": "$30,000-40,000",
769
+ "businesses": "[{\"name\":\"University of Kentucky\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_kentucky.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_kentucky.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_kentucky.jpg\"},\"website\":\"http://www.uky.edu/\",\"twitter\":\"@universityofky\",\"facebook\":\"https://www.facebook.com/universityofky\",\"linkedin\":\"http://www.linkedin.com/company/5998?trk=tyah\"},{\"name\":\"U.S. Department of the Treasury\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/us_department_of_the_treasury.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_us_department_of_the_treasury.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_us_department_of_the_treasury.jpg\"},\"website\":\"http://www.treasury.gov/\",\"twitter\":\"@ustreasury\",\"facebook\":\"https://www.facebook.com/ustreasury\",\"linkedin\":\"http://www.linkedin.com/company/1757358?trk=tyah\"},{\"name\":\"The University of Utah\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_university_of_utah.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_university_of_utah.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_university_of_utah.jpg\"},\"website\":\"http://www.utah.edu/\",\"twitter\":\"@uutah\",\"facebook\":\"https://www.facebook.com/universityofutah\",\"linkedin\":\"http://www.linkedin.com/company/4888?trk=tyah\"},{\"name\":\"Cox Enterprises, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cox_enterprises,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cox_enterprises,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cox_enterprises,_inc.jpg\"},\"website\":\"http://www.coxenterprises.com/\",\"twitter\":\"@coxenterprises\",\"facebook\":\"https://www.facebook.com/CoxEnterprises\",\"linkedin\":\"http://www.linkedin.com/company/163234?trk=tyah\"},{\"name\":\"The GEO Group\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/the_geo_group.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_the_geo_group.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_the_geo_group.jpg\"},\"website\":\"http://www.geogroup.com/\",\"twitter\":\"@thegeogroupcorp\",\"facebook\":\"https://www.facebook.com/GEOGroup\",\"linkedin\":\"http://www.linkedin.com/company/47738?trk=tyah\"}]",
770
+ "description": "Compose letters or electronic correspondence in reply to requests for merchandise, damage claims, credit and other information, delinquent accounts, incorrect billings, or unsatisfactory services. Duties may include gathering data to formulate reply and preparing correspondence.",
771
+ "growth_rate": "Declining"
772
+ },
773
+ {
774
+ "name": "Broadcast News Analyst",
775
+ "image": {
776
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/0fe57b11e8437323d9f5.jpg",
777
+ "_640x640": {
778
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_640x640_0fe57b11e8437323d9f5.jpg"
779
+ },
780
+ "_506x540": {
781
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_506x540_0fe57b11e8437323d9f5.jpg"
782
+ },
783
+ "_480x208": {
784
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_480x208_0fe57b11e8437323d9f5.jpg"
785
+ },
786
+ "_320x320": {
787
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_320x320_0fe57b11e8437323d9f5.jpg"
788
+ },
789
+ "_306x540": {
790
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_306x540_0fe57b11e8437323d9f5.jpg"
791
+ },
792
+ "_300x300": {
793
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_300x300_0fe57b11e8437323d9f5.jpg"
794
+ },
795
+ "_260x260": {
796
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_260x260_0fe57b11e8437323d9f5.jpg"
797
+ },
798
+ "_253x270": {
799
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_253x270_0fe57b11e8437323d9f5.jpg"
800
+ },
801
+ "_240x104": {
802
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_240x104_0fe57b11e8437323d9f5.jpg"
803
+ },
804
+ "_166x166": {
805
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_166x166_0fe57b11e8437323d9f5.jpg"
806
+ },
807
+ "_150x150": {
808
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_150x150_0fe57b11e8437323d9f5.jpg"
809
+ },
810
+ "_120x120": {
811
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_120x120_0fe57b11e8437323d9f5.jpg"
812
+ },
813
+ "_90x90": {
814
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_90x90_0fe57b11e8437323d9f5.jpg"
815
+ },
816
+ "_83x83": {
817
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_83x83_0fe57b11e8437323d9f5.jpg"
818
+ },
819
+ "_60x60": {
820
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_60x60_0fe57b11e8437323d9f5.jpg"
821
+ },
822
+ "_45x45": {
823
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_45x45_0fe57b11e8437323d9f5.jpg"
824
+ },
825
+ "_30x30": {
826
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12918/_30x30_0fe57b11e8437323d9f5.jpg"
827
+ }
828
+ },
829
+ "uuid": "83001060-3e73-0130-73dd-12313d00cdfe",
830
+ "latitude": null,
831
+ "longitude": null,
832
+ "updated_at": "2013-01-31T23:26:58Z",
833
+ "rels": {
834
+ "self": {
835
+ "href": "https://core.woofound.com/sliders/2/entities/12918"
836
+ }
837
+ },
838
+ "blend": "IVA",
839
+ "green": "false",
840
+ "active": "true",
841
+ "bright": "false",
842
+ "min_edu": "College Degree",
843
+ "colleges": "[{\"name\":\"International College of Broadcasting\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/default.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/_70x70_default.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/_50x50_default.jpg\"},\"website\":\"http://www.icbcollege.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/groups/117867661606832/?fref=ts\",\"linkedin\":null},{\"name\":\"State University of New York at Oswego\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/state_university_of_new_york_at_oswego.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_state_university_of_new_york_at_oswego.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_state_university_of_new_york_at_oswego.jpg\"},\"website\":\"http://www.oswego.edu/\",\"twitter\":\"@sunyoswego\",\"facebook\":\"https://www.facebook.com/SUNYOswego\",\"linkedin\":\"http://www.linkedin.com/company/24300?trk=tyah\"},{\"name\":\"Brown Mackie College--Louisville\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/brown_mackie_college--louisville.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_brown_mackie_college--louisville.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_brown_mackie_college--louisville.jpg\"},\"website\":\"http://www.brownmackie.edu/louisville.aspx\",\"twitter\":\"@mybrownmackie\",\"facebook\":\"https://www.facebook.com/pages/Brown-Mackie-College-Louisville/120472914630582?fref=ts\",\"linkedin\":null},{\"name\":\"Emerson College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/emerson_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_emerson_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_emerson_college.jpg\"},\"website\":\"http://www.emerson.edu/\",\"twitter\":\"@emersoncollege\",\"facebook\":\"https://www.facebook.com/EmersonCollege\",\"linkedin\":\"http://www.linkedin.com/company/emerson-college\"},{\"name\":\"Columbia College Chicago\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/columbia_college_chicago.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_columbia_college_chicago.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_columbia_college_chicago.jpg\"},\"website\":\"http://www.colum.edu/\",\"twitter\":\"@columbiacollchi\",\"facebook\":\"https://www.facebook.com/columbiacollegechicago\",\"linkedin\":\"http://www.linkedin.com/company/7583?trk=tyah\"}]",
844
+ "onet_link": "http://www.onetonline.org/link/summary/27-3021.00",
845
+ "avg_salary": "$50,000-60,000",
846
+ "businesses": "[{\"name\":\"NBC News\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/nbc_news.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_nbc_news.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_nbc_news.jpg\"},\"website\":\"http://www.nbcnews.com/\",\"twitter\":\"@nbcnews\",\"facebook\":\"https://www.facebook.com/NBCNews\",\"linkedin\":\"http://www.linkedin.com/company/1827?trk=tyah\"},{\"name\":\"Fox News\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/fox_news.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_fox_news.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_fox_news.jpg\"},\"website\":\"http://www.foxnews.com/\",\"twitter\":\"@foxnews\",\"facebook\":\"https://www.facebook.com/FoxNews\",\"linkedin\":\"http://www.linkedin.com/company/163884?trk=tyah\"},{\"name\":\"ABC News\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/abc_news.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_abc_news.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_abc_news.jpg\"},\"website\":\"http://abcnews.go.com/\",\"twitter\":\"@abc\",\"facebook\":\"https://www.facebook.com/abcnews\",\"linkedin\":\"http://www.linkedin.com/company/3907?trk=tyah\"},{\"name\":\"CNN\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cnn.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cnn.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cnn.jpg\"},\"website\":\"http://www.cnn.com/\",\"twitter\":\"@cnn\",\"facebook\":\"https://www.facebook.com/cnn?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/2046?trk=tyah\"},{\"name\":\"CBS News\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cbs_news.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cbs_news.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cbs_news.jpg\"},\"website\":\"http://www.cbsnews.com/\",\"twitter\":\"@cbsnews\",\"facebook\":\"https://www.facebook.com/CBSNews\",\"linkedin\":\"http://www.linkedin.com/company/7246?trk=tyah\"}]",
847
+ "description": "Analyze, interpret, and broadcast news received from various sources.",
848
+ "growth_rate": "10-19%"
849
+ },
850
+ {
851
+ "name": "Sports Official",
852
+ "image": {
853
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/7071596ffb99df465056.jpg",
854
+ "_640x640": {
855
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_640x640_7071596ffb99df465056.jpg"
856
+ },
857
+ "_506x540": {
858
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_506x540_7071596ffb99df465056.jpg"
859
+ },
860
+ "_480x208": {
861
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_480x208_7071596ffb99df465056.jpg"
862
+ },
863
+ "_320x320": {
864
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_320x320_7071596ffb99df465056.jpg"
865
+ },
866
+ "_306x540": {
867
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_306x540_7071596ffb99df465056.jpg"
868
+ },
869
+ "_300x300": {
870
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_300x300_7071596ffb99df465056.jpg"
871
+ },
872
+ "_260x260": {
873
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_260x260_7071596ffb99df465056.jpg"
874
+ },
875
+ "_253x270": {
876
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_253x270_7071596ffb99df465056.jpg"
877
+ },
878
+ "_240x104": {
879
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_240x104_7071596ffb99df465056.jpg"
880
+ },
881
+ "_166x166": {
882
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_166x166_7071596ffb99df465056.jpg"
883
+ },
884
+ "_150x150": {
885
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_150x150_7071596ffb99df465056.jpg"
886
+ },
887
+ "_120x120": {
888
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_120x120_7071596ffb99df465056.jpg"
889
+ },
890
+ "_90x90": {
891
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_90x90_7071596ffb99df465056.jpg"
892
+ },
893
+ "_83x83": {
894
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_83x83_7071596ffb99df465056.jpg"
895
+ },
896
+ "_60x60": {
897
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_60x60_7071596ffb99df465056.jpg"
898
+ },
899
+ "_45x45": {
900
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_45x45_7071596ffb99df465056.jpg"
901
+ },
902
+ "_30x30": {
903
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12919/_30x30_7071596ffb99df465056.jpg"
904
+ }
905
+ },
906
+ "uuid": "8618b880-3e73-0130-73dd-12313d00cdfe",
907
+ "latitude": null,
908
+ "longitude": null,
909
+ "updated_at": "2013-01-31T23:15:53Z",
910
+ "rels": {
911
+ "self": {
912
+ "href": "https://core.woofound.com/sliders/2/entities/12919"
913
+ }
914
+ },
915
+ "blend": "TVP",
916
+ "green": "false",
917
+ "active": "true",
918
+ "bright": "false",
919
+ "min_edu": "High School Diploma",
920
+ "colleges": "[{\"name\":\"University of Florida\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_florida.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_florida.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_florida.jpg\"},\"website\":\"http://www.ufl.edu/\",\"twitter\":\"@uflorida\",\"facebook\":\"https://www.facebook.com/uflorida\",\"linkedin\":\"http://www.linkedin.com/company/4282?trk=tyah\"},{\"name\":\"University of Georgia\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_georgia.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_georgia.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_georgia.jpg\"},\"website\":\"http://www.uga.edu/\",\"twitter\":\"@universityofga\",\"facebook\":\"https://www.facebook.com/uga.edu\",\"linkedin\":\"http://www.linkedin.com/company/166638?trk=tyah\"},{\"name\":\"Indiana University--Bloomington\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/indiana_university--bloomington.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_indiana_university--bloomington.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_indiana_university--bloomington.jpg\"},\"website\":\"http://www.iub.edu/\",\"twitter\":\"@iubloomington\",\"facebook\":\"https://www.facebook.com/IndianaUniversity\",\"linkedin\":\"http://www.linkedin.com/company/3325?trk=tyah\"},{\"name\":\"University of Kansas\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_kansas.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_kansas.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_kansas.jpg\"},\"website\":\"http://www.ku.edu/\",\"twitter\":\"@kunews\",\"facebook\":\"https://www.facebook.com/KU\",\"linkedin\":\"http://www.linkedin.com/company/166643?trk=tyah\"},{\"name\":\"University of Maryland--College Park\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_maryland--college_park.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_maryland--college_park.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_maryland--college_park.jpg\"},\"website\":\"http://www.umd.edu/\",\"twitter\":\"@uofmaryland\",\"facebook\":\"https://www.facebook.com/UnivofMaryland\",\"linkedin\":\"http://www.linkedin.com/company/3638?trk=tyah\"}]",
921
+ "onet_link": "http://www.onetonline.org/link/summary/27-2023.00",
922
+ "avg_salary": "$20,000-30,000",
923
+ "businesses": "[{\"name\":\"National Basketball Association\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/national_basketball_association.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_national_basketball_association.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_national_basketball_association.jpg\"},\"website\":\"http://www.nba.com\",\"twitter\":\"@nba\",\"facebook\":\"https://www.facebook.com/nba?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/165125?trk=tyah\"},{\"name\":\"National Football League\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/national_football_league.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_national_football_league.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_national_football_league.jpg\"},\"website\":\"http://www.nfl.com/\",\"twitter\":\"@nfl\",\"facebook\":\"https://www.facebook.com/NFL?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/4541?trk=tyah\"},{\"name\":\"National Hockey League\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/national_hockey_league.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_national_hockey_league.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_national_hockey_league.jpg\"},\"website\":\"http://www.nhl.com/\",\"twitter\":\"@nhl\",\"facebook\":\"https://www.facebook.com/NHL?v=app_158110558259\",\"linkedin\":\"http://www.linkedin.com/company/8882?trk=tyah\"},{\"name\":\"Major League Baseball\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/major_league_baseball.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_major_league_baseball.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_major_league_baseball.jpg\"},\"website\":\"http://www.mlb.com\",\"twitter\":\"@mlb\",\"facebook\":\"https://www.facebook.com/mlb\",\"linkedin\":\"http://www.linkedin.com/company/164826?trk=tyah\"},{\"name\":\"U.S. Soccer\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/us_soccer.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_us_soccer.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_us_soccer.jpg\"},\"website\":\"http://www.ussoccer.com/\",\"twitter\":\"@ussoccer\",\"facebook\":\"https://www.facebook.com/officialussoccer\",\"linkedin\":null}]",
924
+ "description": "Officiate at competitive athletic or sporting events. Detect infractions of rules and decide penalties according to established regulations. Includes all sporting officials, referees, and competition judges.",
925
+ "growth_rate": "20-28%"
926
+ },
927
+ {
928
+ "name": "Ticket Agent and Travel Clerk",
929
+ "image": {
930
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/66a3e42e800aa6ac3803.jpg",
931
+ "_640x640": {
932
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_640x640_66a3e42e800aa6ac3803.jpg"
933
+ },
934
+ "_506x540": {
935
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_506x540_66a3e42e800aa6ac3803.jpg"
936
+ },
937
+ "_480x208": {
938
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_480x208_66a3e42e800aa6ac3803.jpg"
939
+ },
940
+ "_320x320": {
941
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_320x320_66a3e42e800aa6ac3803.jpg"
942
+ },
943
+ "_306x540": {
944
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_306x540_66a3e42e800aa6ac3803.jpg"
945
+ },
946
+ "_300x300": {
947
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_300x300_66a3e42e800aa6ac3803.jpg"
948
+ },
949
+ "_260x260": {
950
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_260x260_66a3e42e800aa6ac3803.jpg"
951
+ },
952
+ "_253x270": {
953
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_253x270_66a3e42e800aa6ac3803.jpg"
954
+ },
955
+ "_240x104": {
956
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_240x104_66a3e42e800aa6ac3803.jpg"
957
+ },
958
+ "_166x166": {
959
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_166x166_66a3e42e800aa6ac3803.jpg"
960
+ },
961
+ "_150x150": {
962
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_150x150_66a3e42e800aa6ac3803.jpg"
963
+ },
964
+ "_120x120": {
965
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_120x120_66a3e42e800aa6ac3803.jpg"
966
+ },
967
+ "_90x90": {
968
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_90x90_66a3e42e800aa6ac3803.jpg"
969
+ },
970
+ "_83x83": {
971
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_83x83_66a3e42e800aa6ac3803.jpg"
972
+ },
973
+ "_60x60": {
974
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_60x60_66a3e42e800aa6ac3803.jpg"
975
+ },
976
+ "_45x45": {
977
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_45x45_66a3e42e800aa6ac3803.jpg"
978
+ },
979
+ "_30x30": {
980
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12920/_30x30_66a3e42e800aa6ac3803.jpg"
981
+ }
982
+ },
983
+ "uuid": "88e5c250-3e73-0130-73dd-12313d00cdfe",
984
+ "latitude": null,
985
+ "longitude": null,
986
+ "updated_at": "2013-01-31T20:21:36Z",
987
+ "rels": {
988
+ "self": {
989
+ "href": "https://core.woofound.com/sliders/2/entities/12920"
990
+ }
991
+ },
992
+ "blend": "PM",
993
+ "green": "false",
994
+ "active": "true",
995
+ "bright": "false",
996
+ "min_edu": "High School Diploma",
997
+ "colleges": "[{\"name\":\"University of Phoenix\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_phoenix.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_phoenix.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_phoenix.jpg\"},\"website\":\"http://www.phoenix.edu/\",\"twitter\":\"@uopx\",\"facebook\":\"https://www.facebook.com/universityofphoenix\",\"linkedin\":\"http://www.linkedin.com/company/university-of-phoenix\"},{\"name\":\"Capella University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/capella_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_capella_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_capella_university.jpg\"},\"website\":\"http://www.capella.edu/\",\"twitter\":\"@capellau\",\"facebook\":\"https://www.facebook.com/CapellaUniversity\",\"linkedin\":\"http://www.linkedin.com/groups/Capella-University-Open-Forum-official-95497?mostPopular=&gid=95497\"},{\"name\":\"Colorado Technical University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/colorado_technical_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_colorado_technical_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_colorado_technical_university.jpg\"},\"website\":\"http://www.coloradotech.edu/\",\"twitter\":\"@ctuniversity\",\"facebook\":\"https://www.facebook.com/coloradotech\",\"linkedin\":\"http://www.linkedin.com/company/16851?trk=tyah\"},{\"name\":\"South University Online\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/south_university_online.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_south_university_online.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_south_university_online.jpg\"},\"website\":\"http://online.southuniversity.edu/\",\"twitter\":\"@sucampuscommon\",\"facebook\":\"https://www.facebook.com/SuCampusCommon\",\"linkedin\":\"http://www.linkedin.com/company/166065?trk=tyah\"},{\"name\":\"Liberty University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/liberty_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_liberty_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_liberty_university.jpg\"},\"website\":\"http://www.liberty.edu/\",\"twitter\":\"@libertyu\",\"facebook\":\"https://www.facebook.com/LibertyUniversity\",\"linkedin\":\"http://www.linkedin.com/company/9654?trk=tyah\"}]",
998
+ "onet_link": "http://www.onetonline.org/link/summary/43-4181.00",
999
+ "avg_salary": "$30,000-40,000",
1000
+ "businesses": "[{\"name\":\"Hartsfield-Jackson Atlanta International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/hartsfield-jackson_atlanta_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_hartsfield-jackson_atlanta_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_hartsfield-jackson_atlanta_international_airport.jpg\"},\"website\":\"http://www.atlanta-airport.com/\",\"twitter\":\"@atlanta_airport\",\"facebook\":\"https://www.facebook.com/hartsfieldjackson\",\"linkedin\":\"http://www.linkedin.com/groups/HartsfieldJackson-Atlanta-International-Airport-Networking-4614191?gid=4614191&mostPopular=&trk=tyah\"},{\"name\":\"Chicago O'Hare International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/chicago_o'hare_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_chicago_o'hare_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_chicago_o'hare_international_airport.jpg\"},\"website\":\"http://www.flychicago.com/\",\"twitter\":\"@fly2ohare\",\"facebook\":\"https://www.facebook.com/ohareairport\",\"linkedin\":null},{\"name\":\"Los Angeles International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/los_angeles_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_los_angeles_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_los_angeles_international_airport.jpg\"},\"website\":\"http://www.lawa.org/\",\"twitter\":\"@lax_official\",\"facebook\":\"https://www.facebook.com/LAInternationalAirport\",\"linkedin\":null},{\"name\":\"Dallas/Fort Worth International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/dallas_fort_worth_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_dallas_fort_worth_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_dallas_fort_worth_international_airport.jpg\"},\"website\":\"http://www.dfwairport.com/\",\"twitter\":\"@dfwairport\",\"facebook\":\"https://www.facebook.com/DFWAirport\",\"linkedin\":null},{\"name\":\"Denver International Airport\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/denver_international_airport.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_denver_international_airport.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_denver_international_airport.jpg\"},\"website\":\"http://www.flydenver.com/\",\"twitter\":\"@denairport\",\"facebook\":\"https://www.facebook.com/denverinternationalairport\",\"linkedin\":\"http://www.linkedin.com/company/40333?trk=tyah\"}]",
1001
+ "description": "Make and confirm reservations for transportation or lodging, or sell transportation tickets. May check baggage and direct passengers to designated concourse, pier, or track; deliver tickets, contact individuals and groups to inform them of package tours; or provide tourists with travel or transportation information.",
1002
+ "growth_rate": "0-9%"
1003
+ },
1004
+ {
1005
+ "name": "Bill and Account Collector",
1006
+ "image": {
1007
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/ea3138fb9a2e0bedf514.jpg",
1008
+ "_640x640": {
1009
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_640x640_ea3138fb9a2e0bedf514.jpg"
1010
+ },
1011
+ "_506x540": {
1012
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_506x540_ea3138fb9a2e0bedf514.jpg"
1013
+ },
1014
+ "_480x208": {
1015
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_480x208_ea3138fb9a2e0bedf514.jpg"
1016
+ },
1017
+ "_320x320": {
1018
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_320x320_ea3138fb9a2e0bedf514.jpg"
1019
+ },
1020
+ "_306x540": {
1021
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_306x540_ea3138fb9a2e0bedf514.jpg"
1022
+ },
1023
+ "_300x300": {
1024
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_300x300_ea3138fb9a2e0bedf514.jpg"
1025
+ },
1026
+ "_260x260": {
1027
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_260x260_ea3138fb9a2e0bedf514.jpg"
1028
+ },
1029
+ "_253x270": {
1030
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_253x270_ea3138fb9a2e0bedf514.jpg"
1031
+ },
1032
+ "_240x104": {
1033
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_240x104_ea3138fb9a2e0bedf514.jpg"
1034
+ },
1035
+ "_166x166": {
1036
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_166x166_ea3138fb9a2e0bedf514.jpg"
1037
+ },
1038
+ "_150x150": {
1039
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_150x150_ea3138fb9a2e0bedf514.jpg"
1040
+ },
1041
+ "_120x120": {
1042
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_120x120_ea3138fb9a2e0bedf514.jpg"
1043
+ },
1044
+ "_90x90": {
1045
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_90x90_ea3138fb9a2e0bedf514.jpg"
1046
+ },
1047
+ "_83x83": {
1048
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_83x83_ea3138fb9a2e0bedf514.jpg"
1049
+ },
1050
+ "_60x60": {
1051
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_60x60_ea3138fb9a2e0bedf514.jpg"
1052
+ },
1053
+ "_45x45": {
1054
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_45x45_ea3138fb9a2e0bedf514.jpg"
1055
+ },
1056
+ "_30x30": {
1057
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12921/_30x30_ea3138fb9a2e0bedf514.jpg"
1058
+ }
1059
+ },
1060
+ "uuid": "8b850bc0-3e73-0130-73dd-12313d00cdfe",
1061
+ "latitude": null,
1062
+ "longitude": null,
1063
+ "updated_at": "2013-01-31T17:12:35Z",
1064
+ "rels": {
1065
+ "self": {
1066
+ "href": "https://core.woofound.com/sliders/2/entities/12921"
1067
+ }
1068
+ },
1069
+ "blend": "PV",
1070
+ "green": "false",
1071
+ "active": "true",
1072
+ "bright": "true",
1073
+ "min_edu": "High School Diploma",
1074
+ "colleges": "[{\"name\":\"University of Pennsylvania\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_pennsylvania.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_pennsylvania.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_pennsylvania.jpg\"},\"website\":\"http://www.upenn.edu/\",\"twitter\":\"@uofpenn\",\"facebook\":\"https://www.facebook.com/UnivPennsylvania\",\"linkedin\":\"http://www.linkedin.com/company/university-of-pennsylvania\"},{\"name\":\"New York University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/new_york_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_new_york_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_new_york_university.jpg\"},\"website\":\"http://www.nyu.edu/\",\"twitter\":\"@nyulocal\",\"facebook\":\"https://www.facebook.com/pages/New-York-University/103256838688\",\"linkedin\":\"http://www.linkedin.com/company/3159?trk=tyah\"},{\"name\":\"University of California Berkeley\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_california_berkeley.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_california_berkeley.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_california_berkeley.jpg\"},\"website\":\"http://www.berkeley.edu/\",\"twitter\":\"@ucberkeley\",\"facebook\":\"https://www.facebook.com/UCBerkeley\",\"linkedin\":\"http://www.linkedin.com/company/2517?trk=tyah\"},{\"name\":\"Massachusetts Institute of Technology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/massachusetts_institute_of_technology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_massachusetts_institute_of_technology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_massachusetts_institute_of_technology.jpg\"},\"website\":\"http://www.mit.edu/\",\"twitter\":\"@mitnews\",\"facebook\":\"https://www.facebook.com/MITnews\",\"linkedin\":\"http://www.linkedin.com/company/1503?trk=tyah\"},{\"name\":\"University of Michigan\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_michigan.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_michigan.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_michigan.jpg\"},\"website\":\"http://www.umich.edu/\",\"twitter\":\"@umich\",\"facebook\":\"https://www.facebook.com/universityofmichigan\",\"linkedin\":\"http://www.linkedin.com/company/2516?trk=tyah\"}]",
1075
+ "onet_link": "http://www.onetonline.org/link/summary/43-3011.00",
1076
+ "avg_salary": "$30,000-40,000",
1077
+ "businesses": "[{\"name\":\"Rapid Recovery Solution\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/rapid_recovery_solution.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_rapid_recovery_solution.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_rapid_recovery_solution.jpg\"},\"website\":\"http://www.rapidrecoverysolution.com/\",\"twitter\":\"@rrscollects\",\"facebook\":\"https://www.facebook.com/pages/Rapid-Recovery-Solution-Inc/22439864072?ref=ts&fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/550912?trk=tyah\"},{\"name\":\"Direct Recovery Assocaites\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/direct_recovery_assocaites.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_direct_recovery_assocaites.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_direct_recovery_assocaites.jpg\"},\"website\":\"http://www.directrecovery.com/\",\"twitter\":\"@directrecovery\",\"facebook\":\"https://www.facebook.com/DirectRecoveryAssociatesInc?fref=ts\",\"linkedin\":null},{\"name\":\"Caine & Weiner\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/caine__weiner.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_caine__weiner.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_caine__weiner.jpg\"},\"website\":\"http://www.caine-weiner.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Caine-Weiner/200905089927588\",\"linkedin\":\"http://www.linkedin.com/company/caine-&-weiner\"},{\"name\":\"American Profit Recovery\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/american_profit_recovery.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_american_profit_recovery.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_american_profit_recovery.jpg\"},\"website\":\"http://www.americanprofit.net/\",\"twitter\":\"@americanprofit\",\"facebook\":\"https://www.facebook.com/AmericanProfitRecovery\",\"linkedin\":\"http://www.linkedin.com/company/american-profit-recovery\"},{\"name\":\"ACA International\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/aca_international.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_aca_international.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_aca_international.jpg\"},\"website\":\"http://www.acainternational.org/\",\"twitter\":\"@acaintl\",\"facebook\":\"https://www.facebook.com/pages/ACA-International-the-Association-of-Credit-and-Collection-Professionals/364138550290\",\"linkedin\":\"http://www.linkedin.com/groups/ACA-International-1900905?home=&gid=1900905\"}]",
1078
+ "description": "Locate and notify customers of delinquent accounts by mail, telephone, or personal visit to solicit payment. Duties include receiving payment and posting amount to customer's account; preparing statements to credit department if customer fails to respond; initiating repossession proceedings or service disconnection; and keeping records of collection and status of accounts.",
1079
+ "growth_rate": "10-19%"
1080
+ },
1081
+ {
1082
+ "name": "Earth Driller",
1083
+ "image": {
1084
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/8e68dcb00ce618bd275a.jpg",
1085
+ "_640x640": {
1086
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_640x640_8e68dcb00ce618bd275a.jpg"
1087
+ },
1088
+ "_506x540": {
1089
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_506x540_8e68dcb00ce618bd275a.jpg"
1090
+ },
1091
+ "_480x208": {
1092
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_480x208_8e68dcb00ce618bd275a.jpg"
1093
+ },
1094
+ "_320x320": {
1095
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_320x320_8e68dcb00ce618bd275a.jpg"
1096
+ },
1097
+ "_306x540": {
1098
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_306x540_8e68dcb00ce618bd275a.jpg"
1099
+ },
1100
+ "_300x300": {
1101
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_300x300_8e68dcb00ce618bd275a.jpg"
1102
+ },
1103
+ "_260x260": {
1104
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_260x260_8e68dcb00ce618bd275a.jpg"
1105
+ },
1106
+ "_253x270": {
1107
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_253x270_8e68dcb00ce618bd275a.jpg"
1108
+ },
1109
+ "_240x104": {
1110
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_240x104_8e68dcb00ce618bd275a.jpg"
1111
+ },
1112
+ "_166x166": {
1113
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_166x166_8e68dcb00ce618bd275a.jpg"
1114
+ },
1115
+ "_150x150": {
1116
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_150x150_8e68dcb00ce618bd275a.jpg"
1117
+ },
1118
+ "_120x120": {
1119
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_120x120_8e68dcb00ce618bd275a.jpg"
1120
+ },
1121
+ "_90x90": {
1122
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_90x90_8e68dcb00ce618bd275a.jpg"
1123
+ },
1124
+ "_83x83": {
1125
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_83x83_8e68dcb00ce618bd275a.jpg"
1126
+ },
1127
+ "_60x60": {
1128
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_60x60_8e68dcb00ce618bd275a.jpg"
1129
+ },
1130
+ "_45x45": {
1131
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_45x45_8e68dcb00ce618bd275a.jpg"
1132
+ },
1133
+ "_30x30": {
1134
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12922/_30x30_8e68dcb00ce618bd275a.jpg"
1135
+ }
1136
+ },
1137
+ "uuid": "8e58b070-3e73-0130-73dd-12313d00cdfe",
1138
+ "latitude": null,
1139
+ "longitude": null,
1140
+ "updated_at": "2013-01-31T18:00:42Z",
1141
+ "rels": {
1142
+ "self": {
1143
+ "href": "https://core.woofound.com/sliders/2/entities/12922"
1144
+ }
1145
+ },
1146
+ "blend": "T",
1147
+ "green": "false",
1148
+ "active": "true",
1149
+ "bright": "false",
1150
+ "min_edu": "High School Diploma",
1151
+ "colleges": "[{\"name\":\"Roger Williams University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/roger_williams_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_roger_williams_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_roger_williams_university.jpg\"},\"website\":\"http://rwu.edu/\",\"twitter\":\"@myrwu\",\"facebook\":\"https://www.facebook.com/rogerwilliamsuniversity\",\"linkedin\":\"http://www.linkedin.com/company/19341?trk=tyah\"},{\"name\":\"Institue of Design and Construction\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/institue_of_design_and_construction.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_institue_of_design_and_construction.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_institue_of_design_and_construction.jpg\"},\"website\":\"http://www.idc.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Institute-of-Design-and-Construction/51385579135\",\"linkedin\":null},{\"name\":\"Brazosport College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/brazosport_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_brazosport_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_brazosport_college.jpg\"},\"website\":\"http://www.brazosport.edu/\",\"twitter\":\"@bcgators\",\"facebook\":\"https://www.facebook.com/BrazosportCollege\",\"linkedin\":\"http://www.linkedin.com/company/72719?trk=tyah\"},{\"name\":\"Pratt Institute\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pratt_institute.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pratt_institute.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pratt_institute.jpg\"},\"website\":\"http://www.pratt.edu/\",\"twitter\":\"@prattinstitute\",\"facebook\":\"https://www.facebook.com/PrattInstitute\",\"linkedin\":\"http://www.linkedin.com/groups?gid=95605\"},{\"name\":\"East Carolina University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/east_carolina_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_east_carolina_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_east_carolina_university.jpg\"},\"website\":\"http://www.ecu.edu/\",\"twitter\":\"@eastcarolina\",\"facebook\":\"https://www.facebook.com/EastCarolina\",\"linkedin\":\"http://www.linkedin.com/company/7522?trk=tyah\"}]",
1152
+ "onet_link": "http://www.onetonline.org/link/summary/47-5021.00",
1153
+ "avg_salary": "$40,000-50,000",
1154
+ "businesses": "[{\"name\":\"Aaron Enterprises Incorporated\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/aaron_enterprises_incorporated.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_aaron_enterprises_incorporated.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_aaron_enterprises_incorporated.jpg\"},\"website\":\"http://aaronenterprises.iarbiz.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Aaron-Enterprises-Incorporated/134821436531977?fref=ts\",\"linkedin\":null},{\"name\":\"Atlantic Concrete Cutting\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/atlantic_concrete_cutting.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_atlantic_concrete_cutting.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_atlantic_concrete_cutting.jpg\"},\"website\":\"http://www.atlanticconcretecutting.com/Services/Diamond-Core-Drilling.aspx?gclid=CKjBvYnRkrQCFcFxOgodXC0Ayg\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Atlantic-Concrete-Cutting/194969806127?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/1763065?trk=tyah\"},{\"name\":\"Bruce H. Gallup, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bruce_h_gallup,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bruce_h_gallup,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bruce_h_gallup,_inc.jpg\"},\"website\":\"http://www.brucegallup.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Bruce-H-Gallup-Inc/393824960680852?fref=ts\",\"linkedin\":null},{\"name\":\"Michael Barlow Well Services\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/michael_barlow_well_services.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_michael_barlow_well_services.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_michael_barlow_well_services.jpg\"},\"website\":\"http://www.michaelbarlowwelldrilling.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Michael-Barlow-Well-Drilling-Service-Inc/269459283078686?fref=ts\",\"linkedin\":null},{\"name\":\"Allied Geothermal Well Drilling\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/allied_geothermal_well_drilling.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_allied_geothermal_well_drilling.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_allied_geothermal_well_drilling.jpg\"},\"website\":\"http://www.alliedwells.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Allied-Well-Drilling/298621314727\",\"linkedin\":null}]",
1155
+ "description": "Operate a variety of drills such as rotary, churn, and pneumatic to tap sub-surface water and salt deposits, to remove core samples during mineral exploration or soil testing, and to facilitate the use of explosives in mining or construction. May use explosives. Includes horizontal and earth boring machine operators.",
1156
+ "growth_rate": "Declining"
1157
+ },
1158
+ {
1159
+ "name": "Brickmason and Blockmason",
1160
+ "image": {
1161
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/88cff7773b2e35b71013.jpg",
1162
+ "_640x640": {
1163
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_640x640_88cff7773b2e35b71013.jpg"
1164
+ },
1165
+ "_506x540": {
1166
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_506x540_88cff7773b2e35b71013.jpg"
1167
+ },
1168
+ "_480x208": {
1169
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_480x208_88cff7773b2e35b71013.jpg"
1170
+ },
1171
+ "_320x320": {
1172
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_320x320_88cff7773b2e35b71013.jpg"
1173
+ },
1174
+ "_306x540": {
1175
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_306x540_88cff7773b2e35b71013.jpg"
1176
+ },
1177
+ "_300x300": {
1178
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_300x300_88cff7773b2e35b71013.jpg"
1179
+ },
1180
+ "_260x260": {
1181
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_260x260_88cff7773b2e35b71013.jpg"
1182
+ },
1183
+ "_253x270": {
1184
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_253x270_88cff7773b2e35b71013.jpg"
1185
+ },
1186
+ "_240x104": {
1187
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_240x104_88cff7773b2e35b71013.jpg"
1188
+ },
1189
+ "_166x166": {
1190
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_166x166_88cff7773b2e35b71013.jpg"
1191
+ },
1192
+ "_150x150": {
1193
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_150x150_88cff7773b2e35b71013.jpg"
1194
+ },
1195
+ "_120x120": {
1196
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_120x120_88cff7773b2e35b71013.jpg"
1197
+ },
1198
+ "_90x90": {
1199
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_90x90_88cff7773b2e35b71013.jpg"
1200
+ },
1201
+ "_83x83": {
1202
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_83x83_88cff7773b2e35b71013.jpg"
1203
+ },
1204
+ "_60x60": {
1205
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_60x60_88cff7773b2e35b71013.jpg"
1206
+ },
1207
+ "_45x45": {
1208
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_45x45_88cff7773b2e35b71013.jpg"
1209
+ },
1210
+ "_30x30": {
1211
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12923/_30x30_88cff7773b2e35b71013.jpg"
1212
+ }
1213
+ },
1214
+ "uuid": "90e12010-3e73-0130-73dd-12313d00cdfe",
1215
+ "latitude": null,
1216
+ "longitude": null,
1217
+ "updated_at": "2013-01-31T17:36:35Z",
1218
+ "rels": {
1219
+ "self": {
1220
+ "href": "https://core.woofound.com/sliders/2/entities/12923"
1221
+ }
1222
+ },
1223
+ "blend": "TP",
1224
+ "green": "false",
1225
+ "active": "true",
1226
+ "bright": "true",
1227
+ "min_edu": "High School Diploma",
1228
+ "colleges": "[{\"name\":\"Salt Lake Community College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/salt_lake_community_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_salt_lake_community_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_salt_lake_community_college.jpg\"},\"website\":\"http://www.slcc.edu/\",\"twitter\":\"@saltlakecc\",\"facebook\":\"https://www.facebook.com/SaltLakeCommunityCollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/groups/Salt-Lake-Community-College-Alumni-1930462?gid=1930462&mostPopular=&trk=tyah\"},{\"name\":\"Palomar College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/palomar_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_palomar_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_palomar_college.jpg\"},\"website\":\"http://www.palomar.edu/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/palomarcollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/19930?trk=tyah\"},{\"name\":\"Orange Coast College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/orange_coast_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_orange_coast_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_orange_coast_college.jpg\"},\"website\":\"http://www.orangecoastcollege.edu/\",\"twitter\":\"@orangecoast\",\"facebook\":\"https://www.facebook.com/orangecoastcollege\",\"linkedin\":\"http://www.linkedin.com/company/23933?trk=tyah\"},{\"name\":\"Masonry Association of Florida, Inc.\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/masonry_association_of_florida,_inc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_masonry_association_of_florida,_inc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_masonry_association_of_florida,_inc.jpg\"},\"website\":\"www.floridamasonry.com\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Masonry-Association-of-Florida-Treasure-Coast-Chapter/109732349044362\",\"linkedin\":\"http://www.linkedin.com/company/726913?trk=tyah\"},{\"name\":\"Milwaukee Area Technical College\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/milwaukee_area_technical_college.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_milwaukee_area_technical_college.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_milwaukee_area_technical_college.jpg\"},\"website\":\"http://www.matc.edu/\",\"twitter\":\"@discovermatc\",\"facebook\":\"https://www.facebook.com/MilwAreaTechCollege?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/22647?trk=tyah\"}]",
1229
+ "onet_link": "http://www.onetonline.org/link/summary/47-2021.00",
1230
+ "avg_salary": "$40,000-50,000",
1231
+ "businesses": "[{\"name\":\"JF Enterprises\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/jf_enterprises.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_jf_enterprises.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_jf_enterprises.jpg\"},\"website\":\"http://jfenterprisesllc.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/JF-enterprises-Construction-Landscaping/183196548393188?fref=ts\",\"linkedin\":null},{\"name\":\"Custom Stoneworks and Design\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/custom_stoneworks_and_design.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_custom_stoneworks_and_design.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_custom_stoneworks_and_design.jpg\"},\"website\":\"http://www.stoneworksdesign.com/\",\"twitter\":\"@paverswallsmd\",\"facebook\":\"https://www.facebook.com/pages/Custom-Stoneworks-Design-Inc/166681093363154\",\"linkedin\":null},{\"name\":\"Color Match Masonry\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/color_match_masonry.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_color_match_masonry.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_color_match_masonry.jpg\"},\"website\":\"http://www.brickstain.com/\",\"twitter\":\"@colormatchmason\",\"facebook\":\"https://www.facebook.com/MASONRYSTAIN?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/2485516?trk=tyah\"},{\"name\":\"AP Eberlein Company\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ap_eberlein_company.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ap_eberlein_company.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ap_eberlein_company.jpg\"},\"website\":\"http://eberleincompany.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/AP-Eberlein-Company-Inc/111131415591899?fref=ts\",\"linkedin\":null},{\"name\":\"Flawless Masonry\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/flawless_masonry.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_flawless_masonry.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_flawless_masonry.jpg\"},\"website\":\"http://flawlessmasonry.com/\",\"twitter\":\"@flawlessmasonry\",\"facebook\":\"https://www.facebook.com/flawless.masonry.1?fref=ts\",\"linkedin\":null}]",
1232
+ "description": "Lay and bind building materials, such as brick, structural tile, concrete block, cinder block, glass block, and terra-cotta block, with mortar and other substances to construct or repair walls, partitions, arches, sewers, and other structures.",
1233
+ "growth_rate": "Over 29%"
1234
+ },
1235
+ {
1236
+ "name": "Electrical Equipment Installer",
1237
+ "image": {
1238
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/c0a2fee942b7755286f9.jpg",
1239
+ "_640x640": {
1240
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_640x640_c0a2fee942b7755286f9.jpg"
1241
+ },
1242
+ "_506x540": {
1243
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_506x540_c0a2fee942b7755286f9.jpg"
1244
+ },
1245
+ "_480x208": {
1246
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_480x208_c0a2fee942b7755286f9.jpg"
1247
+ },
1248
+ "_320x320": {
1249
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_320x320_c0a2fee942b7755286f9.jpg"
1250
+ },
1251
+ "_306x540": {
1252
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_306x540_c0a2fee942b7755286f9.jpg"
1253
+ },
1254
+ "_300x300": {
1255
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_300x300_c0a2fee942b7755286f9.jpg"
1256
+ },
1257
+ "_260x260": {
1258
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_260x260_c0a2fee942b7755286f9.jpg"
1259
+ },
1260
+ "_253x270": {
1261
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_253x270_c0a2fee942b7755286f9.jpg"
1262
+ },
1263
+ "_240x104": {
1264
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_240x104_c0a2fee942b7755286f9.jpg"
1265
+ },
1266
+ "_166x166": {
1267
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_166x166_c0a2fee942b7755286f9.jpg"
1268
+ },
1269
+ "_150x150": {
1270
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_150x150_c0a2fee942b7755286f9.jpg"
1271
+ },
1272
+ "_120x120": {
1273
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_120x120_c0a2fee942b7755286f9.jpg"
1274
+ },
1275
+ "_90x90": {
1276
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_90x90_c0a2fee942b7755286f9.jpg"
1277
+ },
1278
+ "_83x83": {
1279
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_83x83_c0a2fee942b7755286f9.jpg"
1280
+ },
1281
+ "_60x60": {
1282
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_60x60_c0a2fee942b7755286f9.jpg"
1283
+ },
1284
+ "_45x45": {
1285
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_45x45_c0a2fee942b7755286f9.jpg"
1286
+ },
1287
+ "_30x30": {
1288
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12924/_30x30_c0a2fee942b7755286f9.jpg"
1289
+ }
1290
+ },
1291
+ "uuid": "937b7ea0-3e73-0130-73dd-12313d00cdfe",
1292
+ "latitude": null,
1293
+ "longitude": null,
1294
+ "updated_at": "2013-01-31T18:01:08Z",
1295
+ "rels": {
1296
+ "self": {
1297
+ "href": "https://core.woofound.com/sliders/2/entities/12924"
1298
+ }
1299
+ },
1300
+ "blend": "TPA",
1301
+ "green": "true",
1302
+ "active": "true",
1303
+ "bright": "false",
1304
+ "min_edu": "High School Diploma",
1305
+ "colleges": "[{\"name\":\"Massachusetts Institute of Technology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/massachusetts_institute_of_technology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_massachusetts_institute_of_technology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_massachusetts_institute_of_technology.jpg\"},\"website\":\"http://web.mit.edu/\",\"twitter\":\"@mitnews\",\"facebook\":\"https://www.facebook.com/MITnews\",\"linkedin\":\"http://www.linkedin.com/company/1503?trk=tyah\"},{\"name\":\"Stanford University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/stanford_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_stanford_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_stanford_university.jpg\"},\"website\":\"http://www.stanford.edu/\",\"twitter\":\"@stanford\",\"facebook\":\"https://www.facebook.com/stanford\",\"linkedin\":\"http://www.linkedin.com/company/1792?trk=tyah\"},{\"name\":\"University of California--Berkeley\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_california--berkeley.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_california--berkeley.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_california--berkeley.jpg\"},\"website\":\"http://www.berkeley.edu/\",\"twitter\":\"@ucberkeley\",\"facebook\":\"https://www.facebook.com/UCBerkeley\",\"linkedin\":\"http://www.linkedin.com/company/2517?trk=tyah\"},{\"name\":\"Georgia Institute of Technology\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/georgia_institute_of_technology.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_georgia_institute_of_technology.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_georgia_institute_of_technology.jpg\"},\"website\":\"http://www.gatech.edu/\",\"twitter\":\"@georgiatech\",\"facebook\":\"https://www.facebook.com/georgiatech\",\"linkedin\":\"http://www.linkedin.com/company/3558\"},{\"name\":\"University of Illinois--Urbana-Champaign\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_illinois--urbana-champaign.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_illinois--urbana-champaign.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_illinois--urbana-champaign.jpg\"},\"website\":\"http://illinois.edu/\",\"twitter\":\"@illinois_alma\",\"facebook\":\"https://www.facebook.com/illinois.edu\",\"linkedin\":\"http://www.linkedin.com/company/2650?trk=tyah\"}]",
1306
+ "onet_link": "http://www.onetonline.org/link/summary/49-2093.00",
1307
+ "avg_salary": "$20,000-30,000",
1308
+ "businesses": "[{\"name\":\"BGE\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bge.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bge.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bge.jpg\"},\"website\":\"http://www.bge.com\",\"twitter\":\"@MyBGE\",\"facebook\":\"https://www.facebook.com/myBGE\",\"linkedin\":\"http://www.linkedin.com/company/5115?trk=null\"},{\"name\":\"Con Edison of New York\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/con_edison_of_new_york.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_con_edison_of_new_york.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_con_edison_of_new_york.jpg\"},\"website\":\"http://www.coned.com/\",\"twitter\":\"@conedison\",\"facebook\":\"https://www.facebook.com/ConEdisonNY?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/163188?trk=tyah\"},{\"name\":\"Sky Electric Company, LLC\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/sky_electric_company,_llc.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_sky_electric_company,_llc.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_sky_electric_company,_llc.jpg\"},\"website\":\"http://www.skyelectriccompanyllc.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Sky-Electric-Company/165647730218414\",\"linkedin\":\"http://www.linkedin.com/company/2761475?trk=tyah\"},{\"name\":\"Manhattan Electricians\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/manhattan_electricians.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_manhattan_electricians.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_manhattan_electricians.jpg\"},\"website\":\"http://www.manhattan-electricians.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/WeinsteinElectric\",\"linkedin\":null},{\"name\":\"Southern California Edison\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/southern_california_edison.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_southern_california_edison.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_southern_california_edison.jpg\"},\"website\":\"http://www.sce.com/\",\"twitter\":\"@sce\",\"facebook\":\"https://www.facebook.com/sce\",\"linkedin\":\"http://www.linkedin.com/company/southern-california-edison\"}]",
1309
+ "description": "Assemble or modify electrical or electronic equipment, such as computers, test equipment telemetering systems, electric motors, and batteries.",
1310
+ "growth_rate": "0-9%"
1311
+ },
1312
+ {
1313
+ "name": "Veterinary Technologist",
1314
+ "image": {
1315
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/58005d345eb4eb42756a.jpg",
1316
+ "_640x640": {
1317
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_640x640_58005d345eb4eb42756a.jpg"
1318
+ },
1319
+ "_506x540": {
1320
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_506x540_58005d345eb4eb42756a.jpg"
1321
+ },
1322
+ "_480x208": {
1323
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_480x208_58005d345eb4eb42756a.jpg"
1324
+ },
1325
+ "_320x320": {
1326
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_320x320_58005d345eb4eb42756a.jpg"
1327
+ },
1328
+ "_306x540": {
1329
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_306x540_58005d345eb4eb42756a.jpg"
1330
+ },
1331
+ "_300x300": {
1332
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_300x300_58005d345eb4eb42756a.jpg"
1333
+ },
1334
+ "_260x260": {
1335
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_260x260_58005d345eb4eb42756a.jpg"
1336
+ },
1337
+ "_253x270": {
1338
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_253x270_58005d345eb4eb42756a.jpg"
1339
+ },
1340
+ "_240x104": {
1341
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_240x104_58005d345eb4eb42756a.jpg"
1342
+ },
1343
+ "_166x166": {
1344
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_166x166_58005d345eb4eb42756a.jpg"
1345
+ },
1346
+ "_150x150": {
1347
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_150x150_58005d345eb4eb42756a.jpg"
1348
+ },
1349
+ "_120x120": {
1350
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_120x120_58005d345eb4eb42756a.jpg"
1351
+ },
1352
+ "_90x90": {
1353
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_90x90_58005d345eb4eb42756a.jpg"
1354
+ },
1355
+ "_83x83": {
1356
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_83x83_58005d345eb4eb42756a.jpg"
1357
+ },
1358
+ "_60x60": {
1359
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_60x60_58005d345eb4eb42756a.jpg"
1360
+ },
1361
+ "_45x45": {
1362
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_45x45_58005d345eb4eb42756a.jpg"
1363
+ },
1364
+ "_30x30": {
1365
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12925/_30x30_58005d345eb4eb42756a.jpg"
1366
+ }
1367
+ },
1368
+ "uuid": "96325810-3e73-0130-73dd-12313d00cdfe",
1369
+ "latitude": null,
1370
+ "longitude": null,
1371
+ "updated_at": "2013-01-31T23:16:18Z",
1372
+ "rels": {
1373
+ "self": {
1374
+ "href": "https://core.woofound.com/sliders/2/entities/12925"
1375
+ }
1376
+ },
1377
+ "blend": "NA",
1378
+ "green": "false",
1379
+ "active": "true",
1380
+ "bright": "true",
1381
+ "min_edu": "College Degree",
1382
+ "colleges": "[{\"name\":\"Cornell University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/cornell_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_cornell_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_cornell_university.jpg\"},\"website\":\"http://www.cornell.edu/\",\"twitter\":\"@cornell\",\"facebook\":\"https://www.facebook.com/Cornell\",\"linkedin\":\"http://www.linkedin.com/company/3523?trk=tyah\"},{\"name\":\"University of California, Davis\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_california,_davis.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_california,_davis.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_california,_davis.jpg\"},\"website\":\"http://www.ucdavis.edu/\",\"twitter\":\"@ucdavis\",\"facebook\":\"https://www.facebook.com/UCDavis\",\"linkedin\":\"http://www.linkedin.com/company/2842?trk=tyah\"},{\"name\":\"Colorado State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/colorado_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_colorado_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_colorado_state_university.jpg\"},\"website\":\"http://www.colostate.edu/\",\"twitter\":\"@coloradostateu\",\"facebook\":\"https://www.facebook.com/coloradostateuniversity\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=36343&trk=anet_ug_hm\"},{\"name\":\"North Carolina State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/north_carolina_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_north_carolina_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_north_carolina_state_university.jpg\"},\"website\":\"http://www.ncsu.edu/\",\"twitter\":\"@ncstate\",\"facebook\":\"https://www.facebook.com/ncstate\",\"linkedin\":\"http://www.linkedin.com/company/4813?trk=tyah\"},{\"name\":\"Ohio State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ohio_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ohio_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ohio_state_university.jpg\"},\"website\":\"http://www.osu.edu/\",\"twitter\":\"@ohiostate\",\"facebook\":\"https://www.facebook.com/osu\",\"linkedin\":\"http://www.linkedin.com/company/3173?trk=tyah\"}]",
1383
+ "onet_link": "http://www.onetonline.org/link/summary/29-2056.00",
1384
+ "avg_salary": "$30,000-40,000",
1385
+ "businesses": "[{\"name\":\"MSPCA Angell\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/mspca_angell.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_mspca_angell.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_mspca_angell.jpg\"},\"website\":\"http://www.mspca.org/\",\"twitter\":\"@mspcaangell\",\"facebook\":\"https://www.facebook.com/mspcaangell\",\"linkedin\":\"http://www.linkedin.com/company/49642?trk=tyah\"},{\"name\":\"Animal Medial Center\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/animal_medial_center.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_animal_medial_center.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_animal_medial_center.jpg\"},\"website\":\"http://www.amcny.org/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/theanimalmedicalcenter\",\"linkedin\":\"http://www.linkedin.com/company/animal-medical-center\"},{\"name\":\"Bergh Memorial Animal Hospital\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/bergh_memorial_animal_hospital.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_bergh_memorial_animal_hospital.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_bergh_memorial_animal_hospital.jpg\"},\"website\":\"http://www.aspca.org/aspca-nyc/berg-memorial-animal-hospital.aspx\",\"twitter\":\"@aspca\",\"facebook\":\"https://www.facebook.com/aspca\",\"linkedin\":\"http://www.linkedin.com/company/23499?trk=tyah\"},{\"name\":\"Stonehenge Veterinary Hospital\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/stonehenge_veterinary_hospital.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_stonehenge_veterinary_hospital.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_stonehenge_veterinary_hospital.jpg\"},\"website\":\"http://www.stonehengeveterinaryhospital.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Stonehenge-Veterinary-Hospital/110968332301384?fref=ts\",\"linkedin\":null},{\"name\":\"Animal Care Clinic\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/animal_care_clinic.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_animal_care_clinic.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_animal_care_clinic.jpg\"},\"website\":\"http://www.animalcareclinicslo.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/animalcareclinic\",\"linkedin\":null}]",
1386
+ "description": "Perform medical tests in a laboratory environment for use in the treatment and diagnosis of diseases in animals. Prepare vaccines and serums for prevention of diseases. Prepare tissue samples, take blood samples, and execute laboratory tests, such as urinalysis and blood counts. Clean and sterilize instruments and materials and maintain equipment and machines. May assist a veterinarian during surgery.",
1387
+ "growth_rate": "Over 29%"
1388
+ },
1389
+ {
1390
+ "name": "Vocational Educator",
1391
+ "image": {
1392
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/d81ebeedef0d5345e91b.jpg",
1393
+ "_640x640": {
1394
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_640x640_d81ebeedef0d5345e91b.jpg"
1395
+ },
1396
+ "_506x540": {
1397
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_506x540_d81ebeedef0d5345e91b.jpg"
1398
+ },
1399
+ "_480x208": {
1400
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_480x208_d81ebeedef0d5345e91b.jpg"
1401
+ },
1402
+ "_320x320": {
1403
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_320x320_d81ebeedef0d5345e91b.jpg"
1404
+ },
1405
+ "_306x540": {
1406
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_306x540_d81ebeedef0d5345e91b.jpg"
1407
+ },
1408
+ "_300x300": {
1409
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_300x300_d81ebeedef0d5345e91b.jpg"
1410
+ },
1411
+ "_260x260": {
1412
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_260x260_d81ebeedef0d5345e91b.jpg"
1413
+ },
1414
+ "_253x270": {
1415
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_253x270_d81ebeedef0d5345e91b.jpg"
1416
+ },
1417
+ "_240x104": {
1418
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_240x104_d81ebeedef0d5345e91b.jpg"
1419
+ },
1420
+ "_166x166": {
1421
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_166x166_d81ebeedef0d5345e91b.jpg"
1422
+ },
1423
+ "_150x150": {
1424
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_150x150_d81ebeedef0d5345e91b.jpg"
1425
+ },
1426
+ "_120x120": {
1427
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_120x120_d81ebeedef0d5345e91b.jpg"
1428
+ },
1429
+ "_90x90": {
1430
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_90x90_d81ebeedef0d5345e91b.jpg"
1431
+ },
1432
+ "_83x83": {
1433
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_83x83_d81ebeedef0d5345e91b.jpg"
1434
+ },
1435
+ "_60x60": {
1436
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_60x60_d81ebeedef0d5345e91b.jpg"
1437
+ },
1438
+ "_45x45": {
1439
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_45x45_d81ebeedef0d5345e91b.jpg"
1440
+ },
1441
+ "_30x30": {
1442
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12926/_30x30_d81ebeedef0d5345e91b.jpg"
1443
+ }
1444
+ },
1445
+ "uuid": "99205f40-3e73-0130-73dd-12313d00cdfe",
1446
+ "latitude": null,
1447
+ "longitude": null,
1448
+ "updated_at": "2013-01-31T23:17:09Z",
1449
+ "rels": {
1450
+ "self": {
1451
+ "href": "https://core.woofound.com/sliders/2/entities/12926"
1452
+ }
1453
+ },
1454
+ "blend": "MT",
1455
+ "green": "false",
1456
+ "active": "true",
1457
+ "bright": "false",
1458
+ "min_edu": "College Degree",
1459
+ "colleges": "[{\"name\":\"Pennsylvania State University--University Park\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pennsylvania_state_university--university_park.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pennsylvania_state_university--university_park.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pennsylvania_state_university--university_park.jpg\"},\"website\":\"http://www.psu.edu/\",\"twitter\":\"@penn_state\",\"facebook\":\"https://www.facebook.com/pennstate\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=40178\"},{\"name\":\"Ohio State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ohio_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ohio_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ohio_state_university.jpg\"},\"website\":\"http://www.osu.edu/\",\"twitter\":\"@ohiostate\",\"facebook\":\"https://www.facebook.com/osu\",\"linkedin\":\"http://www.linkedin.com/company/3173?trk=tyah\"},{\"name\":\"University of Georgia\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_georgia.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_georgia.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_georgia.jpg\"},\"website\":\"http://www.uga.edu/\",\"twitter\":\"@universityofga\",\"facebook\":\"https://www.facebook.com/uga.edu\",\"linkedin\":\"http://www.linkedin.com/company/166638?trk=tyah\"},{\"name\":\"University of Minnesota--Twin Cities\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_minnesota--twin_cities.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_minnesota--twin_cities.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_minnesota--twin_cities.jpg\"},\"website\":\"http://www1.umn.edu/\",\"twitter\":\"@umnews\",\"facebook\":\"https://www.facebook.com/UofMN?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/3181?trk=tyah\"},{\"name\":\"Virginia Tech\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/virginia_tech.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_virginia_tech.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_virginia_tech.jpg\"},\"website\":\"http://www.vt.edu/\",\"twitter\":\"@virginia_tech\",\"facebook\":\"https://www.facebook.com/virginiatech\",\"linkedin\":\"http://www.linkedin.com/company/166811?trk=tyah\"}]",
1460
+ "onet_link": "http://www.onetonline.org/link/summary/25-1194.00",
1461
+ "avg_salary": "$40,000-50,000",
1462
+ "businesses": "[{\"name\":\"Ohio State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ohio_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ohio_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ohio_state_university.jpg\"},\"website\":\"http://www.osu.edu/\",\"twitter\":\"@ohiostate\",\"facebook\":\"https://www.facebook.com/osu\",\"linkedin\":\"http://www.linkedin.com/company/3173?trk=tyah\"},{\"name\":\"Pennsylvania State University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/pennsylvania_state_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_pennsylvania_state_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_pennsylvania_state_university.jpg\"},\"website\":\"http://www.psu.edu/\",\"twitter\":\"@penn_state\",\"facebook\":\"https://www.facebook.com/pennstate\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=40178\"},{\"name\":\"University of Georgia\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_georgia.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_georgia.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_georgia.jpg\"},\"website\":\"http://www.uga.edu/\",\"twitter\":\"@universityofga\",\"facebook\":\"https://www.facebook.com/uga.edu\",\"linkedin\":\"http://www.linkedin.com/company/166638?trk=tyah\"},{\"name\":\"University of Minnesota\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_minnesota.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_minnesota.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_minnesota.jpg\"},\"website\":\"http://www1.umn.edu/\",\"twitter\":\"@umnews\",\"facebook\":\"https://www.facebook.com/UofMN?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/3181?trk=tyah\"},{\"name\":\"Virginia Tech\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/virginia_tech.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_virginia_tech.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_virginia_tech.jpg\"},\"website\":\"http://www.vt.edu/\",\"twitter\":\"@virginia_tech\",\"facebook\":\"https://www.facebook.com/virginiatech\",\"linkedin\":\"http://www.linkedin.com/company/166811?trk=tyah\"}]",
1463
+ "description": "Teach or instruct vocational or occupational subjects at the postsecondary level (but at less than the baccalaureate) to students who have graduated or left high school. Includes correspondence school, industrial, and commercial instructors; and adult education teachers and instructors who prepare persons to operate industrial machinery and equipment and transportation and communications equipment. Teaching may take place in public or private schools whose primary business is education or in a school associated with an organization whose primary business is other than education.",
1464
+ "growth_rate": null
1465
+ },
1466
+ {
1467
+ "name": "Courier and Messenger",
1468
+ "image": {
1469
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/b24c5e3f2b7b8eb36295.jpg",
1470
+ "_640x640": {
1471
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_640x640_b24c5e3f2b7b8eb36295.jpg"
1472
+ },
1473
+ "_506x540": {
1474
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_506x540_b24c5e3f2b7b8eb36295.jpg"
1475
+ },
1476
+ "_480x208": {
1477
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_480x208_b24c5e3f2b7b8eb36295.jpg"
1478
+ },
1479
+ "_320x320": {
1480
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_320x320_b24c5e3f2b7b8eb36295.jpg"
1481
+ },
1482
+ "_306x540": {
1483
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_306x540_b24c5e3f2b7b8eb36295.jpg"
1484
+ },
1485
+ "_300x300": {
1486
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_300x300_b24c5e3f2b7b8eb36295.jpg"
1487
+ },
1488
+ "_260x260": {
1489
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_260x260_b24c5e3f2b7b8eb36295.jpg"
1490
+ },
1491
+ "_253x270": {
1492
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_253x270_b24c5e3f2b7b8eb36295.jpg"
1493
+ },
1494
+ "_240x104": {
1495
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_240x104_b24c5e3f2b7b8eb36295.jpg"
1496
+ },
1497
+ "_166x166": {
1498
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_166x166_b24c5e3f2b7b8eb36295.jpg"
1499
+ },
1500
+ "_150x150": {
1501
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_150x150_b24c5e3f2b7b8eb36295.jpg"
1502
+ },
1503
+ "_120x120": {
1504
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_120x120_b24c5e3f2b7b8eb36295.jpg"
1505
+ },
1506
+ "_90x90": {
1507
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_90x90_b24c5e3f2b7b8eb36295.jpg"
1508
+ },
1509
+ "_83x83": {
1510
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_83x83_b24c5e3f2b7b8eb36295.jpg"
1511
+ },
1512
+ "_60x60": {
1513
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_60x60_b24c5e3f2b7b8eb36295.jpg"
1514
+ },
1515
+ "_45x45": {
1516
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_45x45_b24c5e3f2b7b8eb36295.jpg"
1517
+ },
1518
+ "_30x30": {
1519
+ "url": "https://core-production.s3.amazonaws.com/images/entity/12927/_30x30_b24c5e3f2b7b8eb36295.jpg"
1520
+ }
1521
+ },
1522
+ "uuid": "9bd9fdb0-3e73-0130-73dd-12313d00cdfe",
1523
+ "latitude": null,
1524
+ "longitude": null,
1525
+ "updated_at": "2013-01-31T17:49:13Z",
1526
+ "rels": {
1527
+ "self": {
1528
+ "href": "https://core.woofound.com/sliders/2/entities/12927"
1529
+ }
1530
+ },
1531
+ "blend": "TM",
1532
+ "green": "false",
1533
+ "active": "true",
1534
+ "bright": "false",
1535
+ "min_edu": "High School Diploma",
1536
+ "colleges": "[{\"name\":\"Medical Courier Training Center\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/medical_courier_training_center.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_medical_courier_training_center.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_medical_courier_training_center.jpg\"},\"website\":\"http://medicalcouriertraining.ning.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Medical-Courier-Training-Center/169065166443829\",\"linkedin\":\"http://www.linkedin.com/groups/Medical-Courier-Training-Center-3389920?gid=3389920&mostPopular=&trk=tyah\"},{\"name\":\"University of Phoenix\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/university_of_phoenix.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_university_of_phoenix.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_university_of_phoenix.jpg\"},\"website\":\"http://www.phoenix.edu/\",\"twitter\":\"@uopx\",\"facebook\":\"https://www.facebook.com/universityofphoenix\",\"linkedin\":\"http://www.linkedin.com/company/university-of-phoenix\"},{\"name\":\"Capella University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/capella_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_capella_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_capella_university.jpg\"},\"website\":\"http://www.capella.edu/\",\"twitter\":\"@capellau\",\"facebook\":\"https://www.facebook.com/CapellaUniversity\",\"linkedin\":\"http://www.linkedin.com/company/5609?trk=tyah\"},{\"name\":\"World Courier\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/world_courier.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_world_courier.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_world_courier.jpg\"},\"website\":\"http://www.worldcourier.com/\",\"twitter\":\"@worldcourierinc\",\"facebook\":\"https://www.facebook.com/pages/World-Courier-Inc/117336934954003\",\"linkedin\":\"http://www.linkedin.com/company/31541?trk=tyah\"},{\"name\":\"Ashford University\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/ashford_university.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_ashford_university.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_ashford_university.jpg\"},\"website\":\"http://www.ashford.edu/\",\"twitter\":\"@ashfordu\",\"facebook\":\"https://www.facebook.com/ashforduniversity\",\"linkedin\":\"http://www.linkedin.com/groups/Ashford-University-Alumni-Students-3743681?gid=3743681&mostPopular=&trk=tyah\"}]",
1537
+ "onet_link": "http://www.onetonline.org/link/summary/43-5021.00",
1538
+ "avg_salary": "$20,000-30,000",
1539
+ "businesses": "[{\"name\":\"Expedited Courier Group\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/expedited_courier_group.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_expedited_courier_group.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_expedited_courier_group.jpg\"},\"website\":\"http://www.expeditedcouriergroup.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Expedited-Courier-Group/195651083780820?fref=ts\",\"linkedin\":\"http://www.linkedin.com/company/1835851?trk=tyah\"},{\"name\":\"Courierboard\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/courierboard.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_courierboard.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_courierboard.jpg\"},\"website\":\"http://www.courierboard.com/\",\"twitter\":\"@courierboard\",\"facebook\":\"https://www.facebook.com/courierboard\",\"linkedin\":\"http://www.linkedin.com/company/347100?trk=tyah\"},{\"name\":\"Metro Express of Baltimore\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/metro_express_of_baltimore.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_metro_express_of_baltimore.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_metro_express_of_baltimore.jpg\"},\"website\":\"http://www.metroexpressbaltimore.com/\",\"twitter\":null,\"facebook\":\"https://www.facebook.com/pages/Metro-Express-of-Baltimore-Inc-a-Courier-Service/133185893400518?fref=ts\",\"linkedin\":null},{\"name\":\"Parcel2Go\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/parcel2go.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_parcel2go.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_parcel2go.jpg\"},\"website\":\"http://www.parcel2go.com/\",\"twitter\":\"@parcel2go\",\"facebook\":\"https://www.facebook.com/parcel2go\",\"linkedin\":\"http://www.linkedin.com/company/451241?trk=tyah\"},{\"name\":\"Naparex\",\"image\":{\"original\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/naparex.jpg\",\"_70x70\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_70x70_naparex.jpg\",\"_50x50\":\"https://s3.amazonaws.com/core-staging/images/static/top_cb/_50x50_naparex.jpg\"},\"website\":\"http://www.naparex.com/\",\"twitter\":\"@naparex\",\"facebook\":\"https://www.facebook.com/NAPAREX?fref=ts\",\"linkedin\":\"http://www.linkedin.com/groups?home=&gid=2471813\"}]",
1540
+ "description": "Pick up and deliver messages, documents, packages, and other items between offices or departments within an establishment or directly to other business concerns, traveling by foot, bicycle, motorcycle, automobile, or public conveyance.",
1541
+ "growth_rate": "10-19%"
1542
+ }
1543
+ ],
1544
+ "rels": {
1547
1545
  "self": {
1548
1546
  "href": "http://core.woofound.com/sliders/2/entities/page/1"
1549
1547
  },