futures_pipeline 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gemtest ADDED
File without changes
data/.gitignore ADDED
@@ -0,0 +1,41 @@
1
+ !.gitignore
2
+ *.gem
3
+ *.rbc
4
+ *.sw[a-p]
5
+ *.tmproj
6
+ *.tmproject
7
+ *.un~
8
+ *~
9
+ .DS_Store
10
+ .Spotlight-V100
11
+ .Trashes
12
+ ._*
13
+ .bundle
14
+ .config
15
+ .directory
16
+ .elc
17
+ .redcar
18
+ .yardoc
19
+ /.emacs.desktop
20
+ /.emacs.desktop.lock
21
+ Desktop.ini
22
+ Gemfile.lock
23
+ Icon?
24
+ InstalledFiles
25
+ Session.vim
26
+ Thumbs.db
27
+ \#*\#
28
+ _yardoc
29
+ auto-save-list
30
+ coverage
31
+ doc/
32
+ lib/bundler/man
33
+ pkg
34
+ pkg/*
35
+ rdoc
36
+ spec/reports
37
+ test/tmp
38
+ test/version_tmp
39
+ tmp
40
+ tmtags
41
+ tramp
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --color
2
+ --format=nested
3
+ --backtrace
data/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ rvm:
2
+ - 1.8.6
3
+ - 1.8.7
4
+ - 1.9.1
5
+ - 1.9.2
6
+ - jruby
7
+ - rbx
8
+ - ree
9
+ - ruby-head
data/.yardopts ADDED
@@ -0,0 +1,3 @@
1
+ --markup markdown
2
+ -
3
+ LICENSE.md
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in gem_template.gemspec
4
+ gemspec
data/LICENSE.md ADDED
@@ -0,0 +1,10 @@
1
+ Copyright (c) 2011, Code for America
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
5
+
6
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
7
+ * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
8
+ * Neither the name of Code for America nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
9
+
10
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
data/README.md ADDED
@@ -0,0 +1,71 @@
1
+ # Futures Pipeline
2
+
3
+ Ruby wrapper for the Futures, Inc. US Military Pipeline API
4
+
5
+ Installation
6
+ ------------
7
+ gem install futures_pipeline
8
+
9
+ Documentation
10
+ -------------
11
+ [http://rdoc.info/gems/futures_pipeline](http://rdoc.info/gems/futures_pipeline)
12
+
13
+ Continuous Integration
14
+ ----------------------
15
+ [![Build Status](http://travis-ci.org/codeforamerica/futures_pipeline.png)](http://travis-ci.org/codeforamerica/futures_pipeline)
16
+
17
+ Usage Examples
18
+ --------------
19
+ require 'futures_pipeline'
20
+
21
+ @client = FuturesPipeline.new
22
+ @client.careers # Return an array of 50 careers
23
+ @client.careers.first # Return an array of 50 careers
24
+ @client.careers.first.title # => "Chief Executives"
25
+ @client.careers.first.onet_soc_code # => "11-1011.00"
26
+ @client.career("11-1011.00") # Return detailed information about Chief Executives
27
+
28
+ Contributing
29
+ ------------
30
+ In the spirit of [free software](http://www.fsf.org/licensing/essays/free-sw.html), **everyone** is encouraged to help improve this project.
31
+
32
+ Here are some ways *you* can contribute:
33
+
34
+ * by using alpha, beta, and prerelease versions
35
+ * by reporting bugs
36
+ * by suggesting new features
37
+ * by writing or editing documentation
38
+ * by writing specifications
39
+ * by writing code (**no patch is too small**: fix typos, add comments, clean up inconsistent whitespace)
40
+ * by refactoring code
41
+ * by resolving [issues](https://github.com/codeforamerica/futures_pipeline/issues)
42
+ * by reviewing patches
43
+ * [financially](https://secure.codeforamerica.org/page/contribute)
44
+
45
+ Submitting an Issue
46
+ -------------------
47
+ We use the [GitHub issue tracker](https://github.com/codeforamerica/futures_pipeline/issues)
48
+ to track bugs and features. Before submitting a bug report or feature request,
49
+ check to make sure it hasn't already been submitted. You can indicate support
50
+ for an existing issuse by voting it up. When submitting a bug report, please
51
+ include a [Gist](https://gist.github.com/) that includes a stack trace and any
52
+ details that may be necessary to reproduce the bug, including your gem version,
53
+ Ruby version, and operating system. Ideally, a bug report should include a pull
54
+ request with failing specs.
55
+
56
+ Submitting a Pull Request
57
+ -------------------------
58
+ 1. Fork the project.
59
+ 2. Create a topic branch.
60
+ 3. Implement your feature or bug fix.
61
+ 4. Add documentation for your feature or bug fix.
62
+ 5. Run <tt>bundle exec rake doc:yard</tt>. If your changes are not 100% documented, go back to step 4.
63
+ 6. Add specs for your feature or bug fix.
64
+ 7. Run <tt>bundle exec rake spec</tt>. If your changes are not 100% covered, go back to step 6.
65
+ 8. Commit and push your changes.
66
+ 9. Submit a pull request. Please do not include changes to the gemspec, version, or history file. (If you want to create your own version for some reason, please do so in a separate commit.)
67
+
68
+ Copyright
69
+ ---------
70
+ Copyright (c) 2011 Code for America.
71
+ See [LICENSE](https://github.com/codeforamerica/futures_pipeline/blob/master/LICENSE.md) for details.
data/Rakefile ADDED
@@ -0,0 +1,16 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rspec/core/rake_task'
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ task :default => :spec
8
+ task :test => :spec
9
+
10
+ require 'yard'
11
+ namespace :doc do
12
+ YARD::Rake::YardocTask.new do |task|
13
+ task.files = ['LICENSE.md', 'lib/**/*.rb']
14
+ task.options = ['--markup', 'markdown']
15
+ end
16
+ end
@@ -0,0 +1,33 @@
1
+ # -*- encoding: utf-8 -*-
2
+ $:.push File.expand_path("../lib", __FILE__)
3
+ require "futures_pipeline/version"
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "futures_pipeline"
7
+ s.version = FuturesPipeline::VERSION
8
+ s.platform = Gem::Platform::RUBY
9
+ s.authors = ["Erik Michaels-Ober", "Ryan Resella"]
10
+ s.email = ["erik@codeforamerica.org", "ryan@codeforamerica.org"]
11
+ s.homepage = ""
12
+ s.summary = "Ruby wrapper for the Futures, Inc. US Military Pipeline API"
13
+ s.description = s.summary
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
18
+ s.require_paths = ["lib"]
19
+
20
+ s.add_development_dependency('faraday', '~> 0.6.1')
21
+ s.add_development_dependency('faraday_middleware', '~> 0.6.3')
22
+ s.add_development_dependency('hashie', '~> 1.0.0')
23
+ s.add_development_dependency('json', '~> 1.5.1')
24
+ s.add_development_dependency('multi_json', '~> 1.0.1')
25
+ s.add_development_dependency('rash', '~> 0.3.0')
26
+
27
+ s.add_development_dependency('ZenTest', '~> 4.5')
28
+ s.add_development_dependency('maruku', '~> 0.6')
29
+ s.add_development_dependency('rake', '~> 0.8')
30
+ s.add_development_dependency('rspec', '~> 2.5')
31
+ s.add_development_dependency('simplecov', '~> 0.4')
32
+ s.add_development_dependency('yard', '~> 0.6')
33
+ end
@@ -0,0 +1,13 @@
1
+ require 'futures_pipeline/client'
2
+
3
+ module FuturesPipeline
4
+
5
+ def self.client
6
+ FuturesPipeline::Client.new
7
+ end
8
+
9
+ def self.new
10
+ client
11
+ end
12
+
13
+ end
@@ -0,0 +1,35 @@
1
+ require 'futures_pipeline/connection'
2
+ require 'futures_pipeline/request'
3
+
4
+ module FuturesPipeline
5
+ class Client
6
+ include FuturesPipeline::Connection
7
+ include FuturesPipeline::Request
8
+
9
+ # Get a list of all the available careers. Returns an array of 50 careers per request. Use offset option to get more.
10
+ #
11
+ # @param options [Hash] A customizable set of options.
12
+ # @option options offset [Integer] The offset from the first career in the list.
13
+ # @return [Array<Hashie::Mash>]
14
+ # @example
15
+ # @client = FuturesPipeline.new
16
+ # @client.careers
17
+ def careers(options={})
18
+ get("/api/v1/careers.json", options)
19
+ end
20
+
21
+ # Get a single career using O\*NET code.
22
+ #
23
+ # @param onet_soc_code [String] The O\*NET code
24
+ # @param options [Hash] A customizable set of options.
25
+ # @return [Hashie::Mash]
26
+ # @raise [Faraday::Error::ResourceNotFound] If O\*NET code is not found.
27
+ # @example
28
+ # @client = FuturesPipeline.new
29
+ # @client.career("11-1011.00")
30
+ def career(onet_soc_code, options={})
31
+ api_safe_onet_soc_code = onet_soc_code.tr(".", "-")
32
+ get("/api/v1/careers/#{api_safe_onet_soc_code}.json", options)
33
+ end
34
+ end
35
+ end
@@ -0,0 +1,17 @@
1
+ require 'faraday_middleware'
2
+
3
+ module FuturesPipeline
4
+ module Connection
5
+ private
6
+
7
+ def connection
8
+ Faraday::Connection.new(:ssl => {:verify => false}, :url => 'http://militarydemo.pipelinenc.com') do |connection|
9
+ connection.use Faraday::Request::UrlEncoded
10
+ connection.use Faraday::Response::RaiseError
11
+ connection.use Faraday::Response::Rashify
12
+ connection.use Faraday::Response::ParseJson
13
+ connection.adapter(Faraday.default_adapter)
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,16 @@
1
+ module FuturesPipeline
2
+ module Request
3
+ def get(path, options={})
4
+ request(:get, path, options)
5
+ end
6
+
7
+ private
8
+
9
+ def request(method, path, options)
10
+ response = connection.send(method) do |request|
11
+ request.url(path, options)
12
+ end
13
+ response.body
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,3 @@
1
+ module FuturesPipeline
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,28 @@
1
+ require 'helper'
2
+
3
+ describe Faraday::Response do
4
+ before do
5
+ @client = FuturesPipeline::Client.new
6
+ end
7
+
8
+ {
9
+ 400 => Faraday::Error::ClientError,
10
+ 401 => Faraday::Error::ClientError,
11
+ 403 => Faraday::Error::ClientError,
12
+ 404 => Faraday::Error::ResourceNotFound,
13
+ 406 => Faraday::Error::ClientError,
14
+ 500 => Faraday::Error::ClientError,
15
+ 501 => Faraday::Error::ClientError,
16
+ 502 => Faraday::Error::ClientError,
17
+ 503 => Faraday::Error::ClientError,
18
+ }.each do |status, exception|
19
+ context "when HTTP status is #{status}" do
20
+
21
+ it "should raise #{exception.name} error" do
22
+ lambda do
23
+ @client.career("11-1011.01")
24
+ end.should raise_error(exception)
25
+ end
26
+ end
27
+ end
28
+ end
@@ -0,0 +1 @@
1
+ {"onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00","title":"Chief Executives","link":"http://militarydemo.pipelinenc.com/careers/1-chief-executives","description":"Determine and formulate policies and provide the overall direction of companies or private and public sector organizations within the guidelines set up by a board of directors or similar governing body. Plan, direct, or coordinate operational activities at the highest level of management with the help of subordinate executives and staff managers.","average_national_salary":158560,"related_careers":[{"title":"Industrial Production Managers","onet_soc_code":"11-3051.00","api_safe_onet_soc_code":"11-3051-00"},{"title":"Education Administrators, Postsecondary","onet_soc_code":"11-9033.00","api_safe_onet_soc_code":"11-9033-00"},{"title":"Financial Examiners","onet_soc_code":"13-2061.00","api_safe_onet_soc_code":"13-2061-00"},{"title":"Anthropology and Archeology Teachers, Postsecondary","onet_soc_code":"25-1061.00","api_safe_onet_soc_code":"25-1061-00"},{"title":"Area, Ethnic, and Cultural Studies Teachers, Postsecondary","onet_soc_code":"25-1062.00","api_safe_onet_soc_code":"25-1062-00"},{"title":"Economics Teachers, Postsecondary","onet_soc_code":"25-1063.00","api_safe_onet_soc_code":"25-1063-00"},{"title":"Political Science Teachers, Postsecondary","onet_soc_code":"25-1065.00","api_safe_onet_soc_code":"25-1065-00"},{"title":"Psychology Teachers, Postsecondary","onet_soc_code":"25-1066.00","api_safe_onet_soc_code":"25-1066-00"},{"title":"Sociology Teachers, Postsecondary","onet_soc_code":"25-1067.00","api_safe_onet_soc_code":"25-1067-00"},{"title":"History Teachers, Postsecondary","onet_soc_code":"25-1125.00","api_safe_onet_soc_code":"25-1125-00"},{"title":"First-Line Supervisors/Managers of Transportation and Material-Moving Machine and Vehicle Operators","onet_soc_code":"53-1031.00","api_safe_onet_soc_code":"53-1031-00"}],"knowledge":[{"title":"Administration and Management","stars":4},{"title":"Economics and Accounting","stars":3},{"title":"Law and Government","stars":3},{"title":"English Language","stars":3},{"title":"Customer and Personal Service","stars":3}],"skills":[{"title":"Making Decisions and Solving Problems","stars":5},{"title":"Getting Information","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":5},{"title":"Developing Objectives and Strategies","stars":5}],"abilities":[{"title":"Oral Comprehension","stars":4},{"title":"Oral Expression","stars":4},{"title":"Written Comprehension","stars":4},{"title":"Written Expression","stars":4},{"title":"Problem Sensitivity","stars":4}]}
@@ -0,0 +1 @@
1
+ [{"onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00","title":"Chief Executives","link":"http://militarydemo.pipelinenc.com/careers/1-chief-executives","description":"Determine and formulate policies and provide the overall direction of companies or private and public sector organizations within the guidelines set up by a board of directors or similar governing body. Plan, direct, or coordinate operational activities at the highest level of management with the help of subordinate executives and staff managers.","average_national_salary":158560,"related_careers":[{"title":"Industrial Production Managers","onet_soc_code":"11-3051.00","api_safe_onet_soc_code":"11-3051-00"},{"title":"Education Administrators, Postsecondary","onet_soc_code":"11-9033.00","api_safe_onet_soc_code":"11-9033-00"},{"title":"Financial Examiners","onet_soc_code":"13-2061.00","api_safe_onet_soc_code":"13-2061-00"},{"title":"Anthropology and Archeology Teachers, Postsecondary","onet_soc_code":"25-1061.00","api_safe_onet_soc_code":"25-1061-00"},{"title":"Area, Ethnic, and Cultural Studies Teachers, Postsecondary","onet_soc_code":"25-1062.00","api_safe_onet_soc_code":"25-1062-00"},{"title":"Economics Teachers, Postsecondary","onet_soc_code":"25-1063.00","api_safe_onet_soc_code":"25-1063-00"},{"title":"Political Science Teachers, Postsecondary","onet_soc_code":"25-1065.00","api_safe_onet_soc_code":"25-1065-00"},{"title":"Psychology Teachers, Postsecondary","onet_soc_code":"25-1066.00","api_safe_onet_soc_code":"25-1066-00"},{"title":"Sociology Teachers, Postsecondary","onet_soc_code":"25-1067.00","api_safe_onet_soc_code":"25-1067-00"},{"title":"History Teachers, Postsecondary","onet_soc_code":"25-1125.00","api_safe_onet_soc_code":"25-1125-00"},{"title":"First-Line Supervisors/Managers of Transportation and Material-Moving Machine and Vehicle Operators","onet_soc_code":"53-1031.00","api_safe_onet_soc_code":"53-1031-00"}],"knowledge":[{"title":"Administration and Management","stars":4},{"title":"Economics and Accounting","stars":3},{"title":"Law and Government","stars":3},{"title":"English Language","stars":3},{"title":"Customer and Personal Service","stars":3}],"skills":[{"title":"Making Decisions and Solving Problems","stars":5},{"title":"Getting Information","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":5},{"title":"Developing Objectives and Strategies","stars":5}],"abilities":[{"title":"Oral Comprehension","stars":4},{"title":"Oral Expression","stars":4},{"title":"Written Comprehension","stars":4},{"title":"Written Expression","stars":4},{"title":"Problem Sensitivity","stars":4}]},{"onet_soc_code":"11-1021.00","api_safe_onet_soc_code":"11-1021-00","title":"General and Operations Managers","link":"http://militarydemo.pipelinenc.com/careers/3-general-and-operations-managers","description":"Plan, direct, or coordinate the operations of companies or public and private sector organizations. Duties and responsibilities include formulating policies, managing daily operations, and planning the use of materials and human resources, but are too diverse and general in nature to be classified in any one functional area of management or administration, such as personnel, purchasing, or administrative services. Includes owners and managers who head small business establishments whose duties are primarily managerial.","average_national_salary":85230,"related_careers":[],"knowledge":[{"title":"Administration and Management","stars":4},{"title":"Personnel and Human Resources","stars":3},{"title":"Customer and Personal Service","stars":3},{"title":"Economics and Accounting","stars":2},{"title":"Mathematics","stars":2}],"skills":[{"title":"Getting Information","stars":4},{"title":"Making Decisions and Solving Problems","stars":3},{"title":"Scheduling Work and Activities","stars":3},{"title":"Coordinating the Work and Activities of Others","stars":3},{"title":"Monitor Processes, Materials, or Surroundings","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"11-2011.00","api_safe_onet_soc_code":"11-2011-00","title":"Advertising and Promotions Managers","link":"http://militarydemo.pipelinenc.com/careers/5-advertising-and-promotions-managers","description":"Plan and direct advertising policies and programs or produce collateral materials, such as posters, contests, coupons, or give-aways, to create extra interest in the purchase of a product or service for a department, an entire organization, or on an account basis.","average_national_salary":73060,"related_careers":[{"title":"Marketing Managers","onet_soc_code":"11-2021.00","api_safe_onet_soc_code":"11-2021-00"}],"knowledge":[{"title":"English Language","stars":4},{"title":"Sales and Marketing","stars":3},{"title":"Communications and Media","stars":3},{"title":"Customer and Personal Service","stars":3},{"title":"Administration and Management","stars":2}],"skills":[{"title":"Organizing, Planning, and Prioritizing Work","stars":5},{"title":"Getting Information","stars":4},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Performing for or Working Directly with the Public","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":5},{"title":"Speech Clarity","stars":4},{"title":"Oral Expression","stars":4},{"title":"Speech Recognition","stars":4},{"title":"Written Expression","stars":4}]},{"onet_soc_code":"11-2021.00","api_safe_onet_soc_code":"11-2021-00","title":"Marketing Managers","link":"http://militarydemo.pipelinenc.com/careers/7-marketing-managers","description":"Determine the demand for products and services offered by a firm and its competitors and identify potential customers. Develop pricing strategies with the goal of maximizing the firm's profits or share of the market while ensuring the firm's customers are satisfied. Oversee product development or monitor trends that indicate the need for new products and services.","average_national_salary":98720,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Advertising and Promotions Managers","onet_soc_code":"11-2011.00","api_safe_onet_soc_code":"11-2011-00"},{"title":"Sales Managers","onet_soc_code":"11-2022.00","api_safe_onet_soc_code":"11-2022-00"}],"knowledge":[{"title":"Sales and Marketing","stars":5},{"title":"Customer and Personal Service","stars":4},{"title":"English Language","stars":4},{"title":"Administration and Management","stars":3},{"title":"Communications and Media","stars":2}],"skills":[{"title":"Communicating with Persons Outside Organization","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Thinking Creatively","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Deductive Reasoning","stars":3},{"title":"Written Expression","stars":2}]},{"onet_soc_code":"11-2022.00","api_safe_onet_soc_code":"11-2022-00","title":"Sales Managers","link":"http://militarydemo.pipelinenc.com/careers/8-sales-managers","description":"Direct the actual distribution or movement of a product or service to the customer. Coordinate sales distribution by establishing sales territories, quotas, and goals and establish training programs for sales representatives. Analyze sales statistics gathered by staff to determine sales potential and inventory requirements and monitor the preferences of customers.","average_national_salary":91560,"related_careers":[{"title":"Advertising and Promotions Managers","onet_soc_code":"11-2011.00","api_safe_onet_soc_code":"11-2011-00"},{"title":"Marketing Managers","onet_soc_code":"11-2021.00","api_safe_onet_soc_code":"11-2021-00"},{"title":"First-Line Supervisors/Managers of Retail Sales Workers","onet_soc_code":"41-1011.00","api_safe_onet_soc_code":"41-1011-00"},{"title":"First-Line Supervisors/Managers of Non-Retail Sales Workers","onet_soc_code":"41-1012.00","api_safe_onet_soc_code":"41-1012-00"}],"knowledge":[{"title":"Sales and Marketing","stars":5},{"title":"Customer and Personal Service","stars":4},{"title":"Administration and Management","stars":3},{"title":"English Language","stars":3},{"title":"Personnel and Human Resources","stars":1}],"skills":[{"title":"Selling or Influencing Others","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Communicating with Persons Outside Organization","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":4},{"title":"Speech Clarity","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Expression","stars":3},{"title":"Speech Recognition","stars":3}]},{"onet_soc_code":"11-2031.00","api_safe_onet_soc_code":"11-2031-00","title":"Public Relations Managers","link":"http://militarydemo.pipelinenc.com/careers/9-public-relations-managers","description":"Plan and direct public relations programs designed to create and maintain a favorable public image for employer or client; or if engaged in fundraising, plan and direct activities to solicit and maintain funds for special projects and nonprofit organizations.","average_national_salary":82180,"related_careers":[],"knowledge":[{"title":"English Language","stars":4},{"title":"Customer and Personal Service","stars":4},{"title":"Communications and Media","stars":4},{"title":"Sales and Marketing","stars":4},{"title":"Administration and Management","stars":3}],"skills":[{"title":"Communicating with Persons Outside Organization","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Thinking Creatively","stars":4},{"title":"Getting Information","stars":4}],"abilities":[{"title":"Oral Expression","stars":4},{"title":"Written Expression","stars":4},{"title":"Speech Clarity","stars":4},{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3}]},{"onet_soc_code":"11-3011.00","api_safe_onet_soc_code":"11-3011-00","title":"Administrative Services Managers","link":"http://militarydemo.pipelinenc.com/careers/10-administrative-services-managers","description":"Plan, direct, or coordinate supportive services of an organization, such as recordkeeping, mail distribution, telephone operator/receptionist, and other office support services. May oversee facilities planning and maintenance and custodial operations.","average_national_salary":67690,"related_careers":[{"title":"Treasurers and Controllers","onet_soc_code":"11-3031.01","api_safe_onet_soc_code":"11-3031-01"},{"title":"Financial Managers, Branch or Department","onet_soc_code":"11-3031.02","api_safe_onet_soc_code":"11-3031-02"},{"title":"Human Resources Managers","onet_soc_code":"11-3040.00","api_safe_onet_soc_code":"11-3040-00"},{"title":"Compensation and Benefits Managers","onet_soc_code":"11-3041.00","api_safe_onet_soc_code":"11-3041-00"},{"title":"Medical and Health Services Managers","onet_soc_code":"11-9111.00","api_safe_onet_soc_code":"11-9111-00"},{"title":"Postmasters and Mail Superintendents","onet_soc_code":"11-9131.00","api_safe_onet_soc_code":"11-9131-00"},{"title":"Management Analysts","onet_soc_code":"13-1111.00","api_safe_onet_soc_code":"13-1111-00"},{"title":"Budget Analysts","onet_soc_code":"13-2031.00","api_safe_onet_soc_code":"13-2031-00"},{"title":"First-Line Supervisors/Managers of Office and Administrative Support Workers","onet_soc_code":"43-1011.00","api_safe_onet_soc_code":"43-1011-00"}],"knowledge":[{"title":"Clerical","stars":4},{"title":"Customer and Personal Service","stars":3},{"title":"English Language","stars":3},{"title":"Administration and Management","stars":3},{"title":"Personnel and Human Resources","stars":2}],"skills":[{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Interacting With Computers","stars":4},{"title":"Getting Information","stars":4},{"title":"Performing Administrative Activities","stars":4},{"title":"Making Decisions and Solving Problems","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":2}]},{"onet_soc_code":"11-3021.00","api_safe_onet_soc_code":"11-3021-00","title":"Computer and Information Systems Managers","link":"http://militarydemo.pipelinenc.com/careers/11-computer-and-information-systems-managers","description":"Plan, direct, or coordinate activities in such fields as electronic data processing, information systems, systems analysis, and computer programming.","average_national_salary":101580,"related_careers":[{"title":"Computer Programmers","onet_soc_code":"15-1021.00","api_safe_onet_soc_code":"15-1021-00"},{"title":"Database Administrators","onet_soc_code":"15-1061.00","api_safe_onet_soc_code":"15-1061-00"},{"title":"Computer Science Teachers, Postsecondary","onet_soc_code":"25-1021.00","api_safe_onet_soc_code":"25-1021-00"},{"title":"Mathematical Science Teachers, Postsecondary","onet_soc_code":"25-1022.00","api_safe_onet_soc_code":"25-1022-00"},{"title":"Librarians","onet_soc_code":"25-4021.00","api_safe_onet_soc_code":"25-4021-00"}],"knowledge":[{"title":"Computers and Electronics","stars":4},{"title":"Administration and Management","stars":3},{"title":"Customer and Personal Service","stars":3},{"title":"Production and Processing","stars":2},{"title":"English Language","stars":1}],"skills":[{"title":"Interacting With Computers","stars":5},{"title":"Getting Information","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Thinking Creatively","stars":4},{"title":"Updating and Using Relevant Knowledge","stars":4}],"abilities":[{"title":"Written Comprehension","stars":4},{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Written Expression","stars":3}]},{"onet_soc_code":"11-3031.01","api_safe_onet_soc_code":"11-3031-01","title":"Treasurers and Controllers","link":"http://militarydemo.pipelinenc.com/careers/13-treasurers-and-controllers","description":"Direct financial activities, such as planning, procurement, and investments for all or part of an organization.","average_national_salary":90970,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Financial Managers, Branch or Department","onet_soc_code":"11-3031.02","api_safe_onet_soc_code":"11-3031-02"},{"title":"Accountants","onet_soc_code":"13-2011.01","api_safe_onet_soc_code":"13-2011-01"},{"title":"Auditors","onet_soc_code":"13-2011.02","api_safe_onet_soc_code":"13-2011-02"},{"title":"Financial Examiners","onet_soc_code":"13-2061.00","api_safe_onet_soc_code":"13-2061-00"}],"knowledge":[{"title":"English Language","stars":4},{"title":"Economics and Accounting","stars":4},{"title":"Administration and Management","stars":3},{"title":"Mathematics","stars":3},{"title":"Personnel and Human Resources","stars":2}],"skills":[{"title":"Interacting With Computers","stars":5},{"title":"Getting Information","stars":4},{"title":"Processing Information","stars":4},{"title":"Analyzing Data or Information","stars":4},{"title":"Monitoring and Controlling Resources","stars":3}],"abilities":[{"title":"Oral Expression","stars":3},{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Deductive Reasoning","stars":3}]},{"onet_soc_code":"11-3031.02","api_safe_onet_soc_code":"11-3031-02","title":"Financial Managers, Branch or Department","link":"http://militarydemo.pipelinenc.com/careers/14-financial-managers-branch-or-department","description":"Direct and coordinate financial activities of workers in a branch, office, or department of an establishment, such as branch bank, brokerage firm, risk and insurance department, or credit department.","average_national_salary":90970,"related_careers":[{"title":"Administrative Services Managers","onet_soc_code":"11-3011.00","api_safe_onet_soc_code":"11-3011-00"},{"title":"Treasurers and Controllers","onet_soc_code":"11-3031.01","api_safe_onet_soc_code":"11-3031-01"},{"title":"Auditors","onet_soc_code":"13-2011.02","api_safe_onet_soc_code":"13-2011-02"},{"title":"Financial Examiners","onet_soc_code":"13-2061.00","api_safe_onet_soc_code":"13-2061-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":4},{"title":"Administration and Management","stars":4},{"title":"English Language","stars":3},{"title":"Mathematics","stars":3},{"title":"Computers and Electronics","stars":3}],"skills":[{"title":"Getting Information","stars":5},{"title":"Selling or Influencing Others","stars":5},{"title":"Interacting With Computers","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Performing for or Working Directly with the Public","stars":4}],"abilities":[{"title":"Oral Expression","stars":4},{"title":"Oral Comprehension","stars":4},{"title":"Written Comprehension","stars":4},{"title":"Written Expression","stars":4},{"title":"Speech Recognition","stars":3}]},{"onet_soc_code":"11-3040.00","api_safe_onet_soc_code":"11-3040-00","title":"Human Resources Managers","link":"http://militarydemo.pipelinenc.com/careers/15-human-resources-managers","description":"Plan, direct, and coordinate human resource management activities of an organization to maximize the strategic use of human resources and maintain functions such as employee compensation, recruitment, personnel policies, and regulatory compliance.","average_national_salary":null,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Administrative Services Managers","onet_soc_code":"11-3011.00","api_safe_onet_soc_code":"11-3011-00"},{"title":"Education Administrators, Postsecondary","onet_soc_code":"11-9033.00","api_safe_onet_soc_code":"11-9033-00"},{"title":"Postmasters and Mail Superintendents","onet_soc_code":"11-9131.00","api_safe_onet_soc_code":"11-9131-00"},{"title":"Industrial-Organizational Psychologists","onet_soc_code":"19-3032.00","api_safe_onet_soc_code":"19-3032-00"}],"knowledge":[{"title":"Personnel and Human Resources","stars":5},{"title":"Administration and Management","stars":3},{"title":"English Language","stars":3},{"title":"Customer and Personal Service","stars":2},{"title":"Law and Government","stars":2}],"skills":[{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":5},{"title":"Resolving Conflicts and Negotiating with Others","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":5},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Evaluating Information to Determine Compliance with Standards","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Expression","stars":3},{"title":"Speech Recognition","stars":3}]},{"onet_soc_code":"11-3041.00","api_safe_onet_soc_code":"11-3041-00","title":"Compensation and Benefits Managers","link":"http://militarydemo.pipelinenc.com/careers/16-compensation-and-benefits-managers","description":"Plan, direct, or coordinate compensation and benefits activities and staff of an organization.","average_national_salary":74750,"related_careers":[],"knowledge":[{"title":"Personnel and Human Resources","stars":5},{"title":"Administration and Management","stars":3},{"title":"English Language","stars":3},{"title":"Mathematics","stars":2},{"title":"Law and Government","stars":1}],"skills":[{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Analyzing Data or Information","stars":4},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Interacting With Computers","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":2}]},{"onet_soc_code":"11-3042.00","api_safe_onet_soc_code":"11-3042-00","title":"Training and Development Managers","link":"http://militarydemo.pipelinenc.com/careers/17-training-and-development-managers","description":"Plan, direct, or coordinate the training and development activities and staff of an organization.","average_national_salary":80250,"related_careers":[{"title":"Education Administrators, Preschool and Child Care Center/Program","onet_soc_code":"11-9031.00","api_safe_onet_soc_code":"11-9031-00"},{"title":"Education Administrators, Elementary and Secondary School","onet_soc_code":"11-9032.00","api_safe_onet_soc_code":"11-9032-00"},{"title":"Training and Development Specialists","onet_soc_code":"13-1073.00","api_safe_onet_soc_code":"13-1073-00"},{"title":"Management Analysts","onet_soc_code":"13-1111.00","api_safe_onet_soc_code":"13-1111-00"},{"title":"Vocational Education Teachers, Postsecondary","onet_soc_code":"25-1194.00","api_safe_onet_soc_code":"25-1194-00"},{"title":"Audio-Visual Collections Specialists","onet_soc_code":"25-9011.00","api_safe_onet_soc_code":"25-9011-00"},{"title":"Instructional Coordinators","onet_soc_code":"25-9031.00","api_safe_onet_soc_code":"25-9031-00"},{"title":"Technical Directors/Managers","onet_soc_code":"27-2012.05","api_safe_onet_soc_code":"27-2012-05"},{"title":"Audio and Video Equipment Technicians","onet_soc_code":"27-4011.00","api_safe_onet_soc_code":"27-4011-00"}],"knowledge":[{"title":"Education and Training","stars":5},{"title":"English Language","stars":4},{"title":"Administration and Management","stars":4},{"title":"Personnel and Human Resources","stars":3},{"title":"Customer and Personal Service","stars":3}],"skills":[{"title":"Training and Teaching Others","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":5},{"title":"Organizing, Planning, and Prioritizing Work","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Getting Information","stars":4}],"abilities":[{"title":"Oral Expression","stars":4},{"title":"Speech Clarity","stars":4},{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Written Expression","stars":3}]},{"onet_soc_code":"11-3051.00","api_safe_onet_soc_code":"11-3051-00","title":"Industrial Production Managers","link":"http://militarydemo.pipelinenc.com/careers/19-industrial-production-managers","description":"Plan, direct, or coordinate the work activities and resources necessary for manufacturing products in accordance with cost, quality, and quantity specifications.","average_national_salary":77670,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Storage and Distribution Managers","onet_soc_code":"11-3071.02","api_safe_onet_soc_code":"11-3071-02"},{"title":"Crop and Livestock Managers","onet_soc_code":"11-9011.02","api_safe_onet_soc_code":"11-9011-02"},{"title":"Sales Engineers","onet_soc_code":"41-9031.00","api_safe_onet_soc_code":"41-9031-00"},{"title":"First-Line Supervisors/Managers of Production and Operating Workers","onet_soc_code":"51-1011.00","api_safe_onet_soc_code":"51-1011-00"},{"title":"First-Line Supervisors/Managers of Transportation and Material-Moving Machine and Vehicle Operators","onet_soc_code":"53-1031.00","api_safe_onet_soc_code":"53-1031-00"}],"knowledge":[{"title":"Production and Processing","stars":5},{"title":"Mechanical","stars":3},{"title":"Mathematics","stars":2},{"title":"Administration and Management","stars":2},{"title":"Education and Training","stars":1}],"skills":[{"title":"Getting Information","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Coordinating the Work and Activities of Others","stars":4},{"title":"Guiding, Directing, and Motivating Subordinates","stars":4},{"title":"Making Decisions and Solving Problems","stars":4}],"abilities":[{"title":"Problem Sensitivity","stars":3},{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Deductive Reasoning","stars":3},{"title":"Speech Clarity","stars":2}]},{"onet_soc_code":"11-3051.02","api_safe_onet_soc_code":"11-3051-02","title":"Geothermal Production Managers","link":"http://militarydemo.pipelinenc.com/careers/21-geothermal-production-managers","description":"Manage operations at geothermal power generation facilities. Maintain and monitor geothermal plant equipment for efficient and safe plant operations.","average_national_salary":77670,"related_careers":[],"knowledge":[{"title":"Mechanical","stars":2},{"title":"Mathematics","stars":2},{"title":"Public Safety and Security","stars":2},{"title":"Chemistry","stars":2},{"title":"Physics","stars":2}],"skills":[{"title":"Monitor Processes, Materials, or Surroundings","stars":4},{"title":"Evaluating Information to Determine Compliance with Standards","stars":4},{"title":"Identifying Objects, Actions, and Events","stars":3},{"title":"Inspecting Equipment, Structures, or Material","stars":3},{"title":"Getting Information","stars":3}],"abilities":[{"title":"Oral Expression","stars":2},{"title":"Near Vision","stars":2},{"title":"Oral Comprehension","stars":2},{"title":"Written Comprehension","stars":2},{"title":"Perceptual Speed","stars":1}]},{"onet_soc_code":"11-3061.00","api_safe_onet_soc_code":"11-3061-00","title":"Purchasing Managers","link":"http://militarydemo.pipelinenc.com/careers/26-purchasing-managers","description":"Plan, direct, or coordinate the activities of buyers, purchasing officers, and related workers involved in purchasing materials, products, and services.","average_national_salary":81570,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Financial Managers, Branch or Department","onet_soc_code":"11-3031.02","api_safe_onet_soc_code":"11-3031-02"},{"title":"Storage and Distribution Managers","onet_soc_code":"11-3071.02","api_safe_onet_soc_code":"11-3071-02"},{"title":"Gaming Managers","onet_soc_code":"11-9071.00","api_safe_onet_soc_code":"11-9071-00"},{"title":"Property, Real Estate, and Community Association Managers","onet_soc_code":"11-9141.00","api_safe_onet_soc_code":"11-9141-00"},{"title":"Agents and Business Managers of Artists, Performers, and Athletes","onet_soc_code":"13-1011.00","api_safe_onet_soc_code":"13-1011-00"},{"title":"Management Analysts","onet_soc_code":"13-1111.00","api_safe_onet_soc_code":"13-1111-00"},{"title":"Auditors","onet_soc_code":"13-2011.02","api_safe_onet_soc_code":"13-2011-02"},{"title":"Economists","onet_soc_code":"19-3011.00","api_safe_onet_soc_code":"19-3011-00"},{"title":"Gaming Supervisors","onet_soc_code":"39-1011.00","api_safe_onet_soc_code":"39-1011-00"},{"title":"First-Line Supervisors/Managers of Retail Sales Workers","onet_soc_code":"41-1011.00","api_safe_onet_soc_code":"41-1011-00"},{"title":"First-Line Supervisors/Managers of Non-Retail Sales Workers","onet_soc_code":"41-1012.00","api_safe_onet_soc_code":"41-1012-00"},{"title":"Sales Agents, Securities and Commodities","onet_soc_code":"41-3031.01","api_safe_onet_soc_code":"41-3031-01"},{"title":"First-Line Supervisors/Managers of Production and Operating Workers","onet_soc_code":"51-1011.00","api_safe_onet_soc_code":"51-1011-00"},{"title":"First-Line Supervisors/Managers of Helpers, Laborers, and Material Movers, Hand","onet_soc_code":"53-1021.00","api_safe_onet_soc_code":"53-1021-00"}],"knowledge":[{"title":"Administration and Management","stars":3},{"title":"English Language","stars":3},{"title":"Production and Processing","stars":3},{"title":"Law and Government","stars":2},{"title":"Mathematics","stars":2}],"skills":[{"title":"Resolving Conflicts and Negotiating with Others","stars":4},{"title":"Communicating with Persons Outside Organization","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4}],"abilities":[{"title":"Speech Recognition","stars":3},{"title":"Speech Clarity","stars":3},{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Expression","stars":3}]},{"onet_soc_code":"11-3071.00","api_safe_onet_soc_code":"11-3071-00","title":"Transportation, Storage, and Distribution Managers","link":"http://militarydemo.pipelinenc.com/careers/27-transportation-storage-and-distribution-manager","description":"Plan, direct, or coordinate transportation, storage, or distribution activities in accordance with governmental policies and regulations.","average_national_salary":73080,"related_careers":[],"knowledge":[{"title":"Transportation","stars":5},{"title":"English Language","stars":3},{"title":"Administration and Management","stars":3},{"title":"Customer and Personal Service","stars":3},{"title":"Law and Government","stars":2}],"skills":[{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Getting Information","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Interacting With Computers","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4}],"abilities":[{"title":"Written Comprehension","stars":4},{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"11-3071.01","api_safe_onet_soc_code":"11-3071-01","title":"Transportation Managers","link":"http://militarydemo.pipelinenc.com/careers/28-transportation-managers","description":"Plan, direct, and coordinate the transportation operations within an organization or the activities of organizations that provide transportation services.","average_national_salary":73080,"related_careers":[{"title":"Storage and Distribution Managers","onet_soc_code":"11-3071.02","api_safe_onet_soc_code":"11-3071-02"},{"title":"First-Line Supervisors/Managers of Office and Administrative Support Workers","onet_soc_code":"43-1011.00","api_safe_onet_soc_code":"43-1011-00"},{"title":"First-Line Supervisors/Managers of Transportation and Material-Moving Machine and Vehicle Operators","onet_soc_code":"53-1031.00","api_safe_onet_soc_code":"53-1031-00"}],"knowledge":[{"title":"Transportation","stars":5},{"title":"English Language","stars":3},{"title":"Administration and Management","stars":3},{"title":"Customer and Personal Service","stars":3},{"title":"Law and Government","stars":2}],"skills":[{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Getting Information","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Interacting With Computers","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4}],"abilities":[{"title":"Written Comprehension","stars":4},{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"11-3071.02","api_safe_onet_soc_code":"11-3071-02","title":"Storage and Distribution Managers","link":"http://militarydemo.pipelinenc.com/careers/29-storage-and-distribution-managers","description":"Plan, direct, and coordinate the storage and distribution operations within an organization or the activities of organizations that are engaged in storing and distributing materials and products.","average_national_salary":73080,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Industrial Production Managers","onet_soc_code":"11-3051.00","api_safe_onet_soc_code":"11-3051-00"},{"title":"Transportation Managers","onet_soc_code":"11-3071.01","api_safe_onet_soc_code":"11-3071-01"},{"title":"First-Line Supervisors/Managers of Police and Detectives","onet_soc_code":"33-1012.00","api_safe_onet_soc_code":"33-1012-00"},{"title":"First-Line Supervisors/Managers of Office and Administrative Support Workers","onet_soc_code":"43-1011.00","api_safe_onet_soc_code":"43-1011-00"},{"title":"First-Line Supervisors/Managers of Helpers, Laborers, and Material Movers, Hand","onet_soc_code":"53-1021.00","api_safe_onet_soc_code":"53-1021-00"},{"title":"First-Line Supervisors/Managers of Transportation and Material-Moving Machine and Vehicle Operators","onet_soc_code":"53-1031.00","api_safe_onet_soc_code":"53-1031-00"}],"knowledge":[{"title":"Administration and Management","stars":2},{"title":"Transportation","stars":2},{"title":"Personnel and Human Resources","stars":2},{"title":"Mathematics","stars":2},{"title":"Customer and Personal Service","stars":1}],"skills":[{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":3},{"title":"Coordinating the Work and Activities of Others","stars":3},{"title":"Making Decisions and Solving Problems","stars":3},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Comprehension","stars":2},{"title":"Speech Clarity","stars":2},{"title":"Written Expression","stars":2}]},{"onet_soc_code":"11-9011.01","api_safe_onet_soc_code":"11-9011-01","title":"Nursery and Greenhouse Managers","link":"http://militarydemo.pipelinenc.com/careers/31-nursery-and-greenhouse-managers","description":"Plan, organize, direct, control, and coordinate activities of workers engaged in propagating, cultivating, and harvesting horticultural specialties, such as trees, shrubs, flowers, mushrooms, and other plants.","average_national_salary":52070,"related_careers":[{"title":"Aquacultural Managers","onet_soc_code":"11-9011.03","api_safe_onet_soc_code":"11-9011-03"},{"title":"Natural Sciences Managers","onet_soc_code":"11-9121.00","api_safe_onet_soc_code":"11-9121-00"},{"title":"Purchasing Agents and Buyers, Farm Products","onet_soc_code":"13-1021.00","api_safe_onet_soc_code":"13-1021-00"},{"title":"Food Scientists and Technologists","onet_soc_code":"19-1012.00","api_safe_onet_soc_code":"19-1012-00"},{"title":"Range Managers","onet_soc_code":"19-1031.02","api_safe_onet_soc_code":"19-1031-02"},{"title":"Park Naturalists","onet_soc_code":"19-1031.03","api_safe_onet_soc_code":"19-1031-03"},{"title":"Foresters","onet_soc_code":"19-1032.00","api_safe_onet_soc_code":"19-1032-00"},{"title":"First-Line Supervisors/Managers of Aquacultural Workers","onet_soc_code":"45-1011.06","api_safe_onet_soc_code":"45-1011-06"},{"title":"First-Line Supervisors/Managers of Agricultural Crop and Horticultural Workers","onet_soc_code":"45-1011.07","api_safe_onet_soc_code":"45-1011-07"},{"title":"First-Line Supervisors/Managers of Animal Husbandry and Animal Care Workers","onet_soc_code":"45-1011.08","api_safe_onet_soc_code":"45-1011-08"}],"knowledge":[{"title":"Administration and Management","stars":4},{"title":"Production and Processing","stars":3},{"title":"Personnel and Human Resources","stars":3},{"title":"Biology","stars":3},{"title":"Sales and Marketing","stars":3}],"skills":[{"title":"Making Decisions and Solving Problems","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Thinking Creatively","stars":4},{"title":"Guiding, Directing, and Motivating Subordinates","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":4},{"title":"Oral Expression","stars":4},{"title":"Problem Sensitivity","stars":3},{"title":"Written Expression","stars":2},{"title":"Category Flexibility","stars":2}]},{"onet_soc_code":"11-9011.02","api_safe_onet_soc_code":"11-9011-02","title":"Crop and Livestock Managers","link":"http://militarydemo.pipelinenc.com/careers/32-crop-and-livestock-managers","description":"Direct and coordinate, through subordinate supervisory personnel, activities of workers engaged in agricultural crop production for corporations, cooperatives, or other owners.","average_national_salary":52070,"related_careers":[{"title":"Industrial Production Managers","onet_soc_code":"11-3051.00","api_safe_onet_soc_code":"11-3051-00"},{"title":"Aquacultural Managers","onet_soc_code":"11-9011.03","api_safe_onet_soc_code":"11-9011-03"},{"title":"Farmers and Ranchers","onet_soc_code":"11-9012.00","api_safe_onet_soc_code":"11-9012-00"}],"knowledge":[{"title":"Food Production","stars":4},{"title":"Economics and Accounting","stars":4},{"title":"English Language","stars":2},{"title":"Administration and Management","stars":2},{"title":"Customer and Personal Service","stars":2}],"skills":[{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Getting Information","stars":4},{"title":"Making Decisions and Solving Problems","stars":3},{"title":"Communicating with Persons Outside Organization","stars":3},{"title":"Monitoring and Controlling Resources","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"11-9011.03","api_safe_onet_soc_code":"11-9011-03","title":"Aquacultural Managers","link":"http://militarydemo.pipelinenc.com/careers/33-aquacultural-managers","description":"Direct and coordinate, through subordinate supervisory personnel, activities of workers engaged in fish hatchery production for corporations, cooperatives, or other owners.","average_national_salary":52070,"related_careers":[{"title":"Crop and Livestock Managers","onet_soc_code":"11-9011.02","api_safe_onet_soc_code":"11-9011-02"},{"title":"Farmers and Ranchers","onet_soc_code":"11-9012.00","api_safe_onet_soc_code":"11-9012-00"},{"title":"Range Managers","onet_soc_code":"19-1031.02","api_safe_onet_soc_code":"19-1031-02"},{"title":"First-Line Supervisors/Managers of Aquacultural Workers","onet_soc_code":"45-1011.06","api_safe_onet_soc_code":"45-1011-06"},{"title":"First-Line Supervisors/Managers of Animal Husbandry and Animal Care Workers","onet_soc_code":"45-1011.08","api_safe_onet_soc_code":"45-1011-08"}],"knowledge":[{"title":"Biology","stars":4},{"title":"Food Production","stars":4},{"title":"Administration and Management","stars":3},{"title":"Engineering and Technology","stars":2},{"title":"Production and Processing","stars":2}],"skills":[{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Monitoring and Controlling Resources","stars":3},{"title":"Getting Information","stars":3},{"title":"Coordinating the Work and Activities of Others","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Near Vision","stars":2}]},{"onet_soc_code":"11-9012.00","api_safe_onet_soc_code":"11-9012-00","title":"Farmers and Ranchers","link":"http://militarydemo.pipelinenc.com/careers/34-farmers-and-ranchers","description":"On an ownership or rental basis, operate farms, ranches, greenhouses, nurseries, timber tracts, or other agricultural production establishments which produce crops, horticultural specialties, livestock, poultry, finfish, shellfish, or animal specialties. May plant, cultivate, harvest, perform post-harvest activities, and market crops and livestock; may hire, train, and supervise farm workers or supervise a farm labor contractor; may prepare cost, production, and other records. May maintain and operate machinery and perform physical work.","average_national_salary":37130,"related_careers":[{"title":"Crop and Livestock Managers","onet_soc_code":"11-9011.02","api_safe_onet_soc_code":"11-9011-02"},{"title":"Aquacultural Managers","onet_soc_code":"11-9011.03","api_safe_onet_soc_code":"11-9011-03"},{"title":"Food Scientists and Technologists","onet_soc_code":"19-1012.00","api_safe_onet_soc_code":"19-1012-00"},{"title":"First-Line Supervisors/Managers of Aquacultural Workers","onet_soc_code":"45-1011.06","api_safe_onet_soc_code":"45-1011-06"},{"title":"First-Line Supervisors/Managers of Agricultural Crop and Horticultural Workers","onet_soc_code":"45-1011.07","api_safe_onet_soc_code":"45-1011-07"},{"title":"First-Line Supervisors/Managers of Animal Husbandry and Animal Care Workers","onet_soc_code":"45-1011.08","api_safe_onet_soc_code":"45-1011-08"},{"title":"Agricultural Inspectors","onet_soc_code":"45-2011.00","api_safe_onet_soc_code":"45-2011-00"},{"title":"Farmworkers and Laborers, Crop","onet_soc_code":"45-2092.02","api_safe_onet_soc_code":"45-2092-02"},{"title":"Fishers and Related Fishing Workers","onet_soc_code":"45-3011.00","api_safe_onet_soc_code":"45-3011-00"}],"knowledge":[{"title":"Food Production","stars":3},{"title":"Mechanical","stars":2},{"title":"Administration and Management","stars":2},{"title":"Economics and Accounting","stars":1},{"title":"Production and Processing","stars":1}],"skills":[{"title":"Controlling Machines and Processes","stars":3},{"title":"Operating Vehicles, Mechanized Devices, or Equipment","stars":3},{"title":"Monitor Processes, Materials, or Surroundings","stars":3},{"title":"Inspecting Equipment, Structures, or Material","stars":3},{"title":"Making Decisions and Solving Problems","stars":3}],"abilities":[{"title":"Control Precision","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Manual Dexterity","stars":2},{"title":"Multilimb Coordination","stars":2},{"title":"Visual Color Discrimination","stars":2}]},{"onet_soc_code":"11-9021.00","api_safe_onet_soc_code":"11-9021-00","title":"Construction Managers","link":"http://militarydemo.pipelinenc.com/careers/35-construction-managers","description":"Plan, direct, coordinate, or budget, usually through subordinate supervisory personnel, activities concerned with the construction and maintenance of structures, facilities, and systems. Participate in the conceptual development of a construction project and oversee its organization, scheduling, and implementation.","average_national_salary":73700,"related_careers":[{"title":"First-Line Supervisors/Managers of Construction Trades and Extraction Workers","onet_soc_code":"47-1011.00","api_safe_onet_soc_code":"47-1011-00"}],"knowledge":[{"title":"Building and Construction","stars":5},{"title":"Administration and Management","stars":3},{"title":"Customer and Personal Service","stars":3},{"title":"Engineering and Technology","stars":3},{"title":"English Language","stars":2}],"skills":[{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Scheduling Work and Activities","stars":4},{"title":"Organizing, Planning, and Prioritizing Work","stars":4},{"title":"Getting Information","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Deductive Reasoning","stars":2}]},{"onet_soc_code":"11-9031.00","api_safe_onet_soc_code":"11-9031-00","title":"Education Administrators, Preschool and Child Care Center/Program","link":"http://militarydemo.pipelinenc.com/careers/36-education-administrators-preschool-and-child-ca","description":"Plan, direct, or coordinate the academic and nonacademic activities of preschool and child care centers or programs.","average_national_salary":37740,"related_careers":[],"knowledge":[{"title":"Personnel and Human Resources","stars":4},{"title":"Customer and Personal Service","stars":4},{"title":"Administration and Management","stars":4},{"title":"Education and Training","stars":4},{"title":"English Language","stars":3}],"skills":[{"title":"Developing and Building Teams","stars":4},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Coordinating the Work and Activities of Others","stars":4},{"title":"Performing Administrative Activities","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Speech Recognition","stars":3},{"title":"Speech Clarity","stars":3}]},{"onet_soc_code":"11-9032.00","api_safe_onet_soc_code":"11-9032-00","title":"Education Administrators, Elementary and Secondary School","link":"http://militarydemo.pipelinenc.com/careers/37-education-administrators-elementary-and-seconda","description":"Plan, direct, or coordinate the academic, clerical, or auxiliary activities of public or private elementary or secondary level schools.","average_national_salary":77740,"related_careers":[{"title":"Advertising and Promotions Managers","onet_soc_code":"11-2011.00","api_safe_onet_soc_code":"11-2011-00"},{"title":"Sales Managers","onet_soc_code":"11-2022.00","api_safe_onet_soc_code":"11-2022-00"},{"title":"Education Administrators, Postsecondary","onet_soc_code":"11-9033.00","api_safe_onet_soc_code":"11-9033-00"},{"title":"Medical and Health Services Managers","onet_soc_code":"11-9111.00","api_safe_onet_soc_code":"11-9111-00"},{"title":"Social and Community Service Managers","onet_soc_code":"11-9151.00","api_safe_onet_soc_code":"11-9151-00"},{"title":"Financial Examiners","onet_soc_code":"13-2061.00","api_safe_onet_soc_code":"13-2061-00"},{"title":"Industrial-Organizational Psychologists","onet_soc_code":"19-3032.00","api_safe_onet_soc_code":"19-3032-00"},{"title":"Sociologists","onet_soc_code":"19-3041.00","api_safe_onet_soc_code":"19-3041-00"},{"title":"Clergy","onet_soc_code":"21-2011.00","api_safe_onet_soc_code":"21-2011-00"},{"title":"Mathematical Science Teachers, Postsecondary","onet_soc_code":"25-1022.00","api_safe_onet_soc_code":"25-1022-00"},{"title":"Anthropology and Archeology Teachers, Postsecondary","onet_soc_code":"25-1061.00","api_safe_onet_soc_code":"25-1061-00"},{"title":"Area, Ethnic, and Cultural Studies Teachers, Postsecondary","onet_soc_code":"25-1062.00","api_safe_onet_soc_code":"25-1062-00"},{"title":"Economics Teachers, Postsecondary","onet_soc_code":"25-1063.00","api_safe_onet_soc_code":"25-1063-00"},{"title":"Political Science Teachers, Postsecondary","onet_soc_code":"25-1065.00","api_safe_onet_soc_code":"25-1065-00"},{"title":"Psychology Teachers, Postsecondary","onet_soc_code":"25-1066.00","api_safe_onet_soc_code":"25-1066-00"},{"title":"Sociology Teachers, Postsecondary","onet_soc_code":"25-1067.00","api_safe_onet_soc_code":"25-1067-00"},{"title":"History Teachers, Postsecondary","onet_soc_code":"25-1125.00","api_safe_onet_soc_code":"25-1125-00"},{"title":"Librarians","onet_soc_code":"25-4021.00","api_safe_onet_soc_code":"25-4021-00"},{"title":"Instructional Coordinators","onet_soc_code":"25-9031.00","api_safe_onet_soc_code":"25-9031-00"}],"knowledge":[{"title":"Education and Training","stars":5},{"title":"Administration and Management","stars":4},{"title":"English Language","stars":4},{"title":"Personnel and Human Resources","stars":4},{"title":"Customer and Personal Service","stars":3}],"skills":[{"title":"Making Decisions and Solving Problems","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Performing Administrative Activities","stars":4}],"abilities":[{"title":"Oral Expression","stars":5},{"title":"Oral Comprehension","stars":5},{"title":"Written Comprehension","stars":4},{"title":"Written Expression","stars":4},{"title":"Problem Sensitivity","stars":4}]},{"onet_soc_code":"11-9033.00","api_safe_onet_soc_code":"11-9033-00","title":"Education Administrators, Postsecondary","link":"http://militarydemo.pipelinenc.com/careers/38-education-administrators-postsecondary","description":"Plan, direct, or coordinate research, instructional, student administration and services, and other educational activities at postsecondary institutions, including universities, colleges, and junior and community colleges.","average_national_salary":73990,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Advertising and Promotions Managers","onet_soc_code":"11-2011.00","api_safe_onet_soc_code":"11-2011-00"},{"title":"Education Administrators, Preschool and Child Care Center/Program","onet_soc_code":"11-9031.00","api_safe_onet_soc_code":"11-9031-00"},{"title":"Education Administrators, Elementary and Secondary School","onet_soc_code":"11-9032.00","api_safe_onet_soc_code":"11-9032-00"}],"knowledge":[{"title":"Administration and Management","stars":4},{"title":"English Language","stars":4},{"title":"Education and Training","stars":4},{"title":"Customer and Personal Service","stars":3},{"title":"Personnel and Human Resources","stars":2}],"skills":[{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Organizing, Planning, and Prioritizing Work","stars":3}],"abilities":[{"title":"Speech Recognition","stars":3},{"title":"Speech Clarity","stars":3},{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Oral Expression","stars":3}]},{"onet_soc_code":"11-9041.00","api_safe_onet_soc_code":"11-9041-00","title":"Engineering Managers","link":"http://militarydemo.pipelinenc.com/careers/42-engineering-managers","description":"Plan, direct, or coordinate activities in such fields as architecture and engineering or research and development in these fields.","average_national_salary":105430,"related_careers":[{"title":"Aerospace Engineers","onet_soc_code":"17-2011.00","api_safe_onet_soc_code":"17-2011-00"},{"title":"Chemical Engineers","onet_soc_code":"17-2041.00","api_safe_onet_soc_code":"17-2041-00"},{"title":"Electrical Engineers","onet_soc_code":"17-2071.00","api_safe_onet_soc_code":"17-2071-00"},{"title":"Industrial Safety and Health Engineers","onet_soc_code":"17-2111.01","api_safe_onet_soc_code":"17-2111-01"},{"title":"Mining and Geological Engineers, Including Mining Safety Engineers","onet_soc_code":"17-2151.00","api_safe_onet_soc_code":"17-2151-00"},{"title":"Nuclear Engineers","onet_soc_code":"17-2161.00","api_safe_onet_soc_code":"17-2161-00"},{"title":"Sales Engineers","onet_soc_code":"41-9031.00","api_safe_onet_soc_code":"41-9031-00"}],"knowledge":[{"title":"Engineering and Technology","stars":5},{"title":"Design","stars":3},{"title":"English Language","stars":3},{"title":"Mathematics","stars":3},{"title":"Computers and Electronics","stars":3}],"skills":[{"title":"Getting Information","stars":4},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Interacting With Computers","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Identifying Objects, Actions, and Events","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Deductive Reasoning","stars":3}]},{"onet_soc_code":"11-9051.00","api_safe_onet_soc_code":"11-9051-00","title":"Food Service Managers","link":"http://militarydemo.pipelinenc.com/careers/44-food-service-managers","description":"Plan, direct, or coordinate activities of an organization or department that serves food and beverages.","average_national_salary":43020,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Education Administrators, Postsecondary","onet_soc_code":"11-9033.00","api_safe_onet_soc_code":"11-9033-00"},{"title":"Lodging Managers","onet_soc_code":"11-9081.00","api_safe_onet_soc_code":"11-9081-00"},{"title":"Social and Community Service Managers","onet_soc_code":"11-9151.00","api_safe_onet_soc_code":"11-9151-00"},{"title":"Agents and Business Managers of Artists, Performers, and Athletes","onet_soc_code":"13-1011.00","api_safe_onet_soc_code":"13-1011-00"},{"title":"Librarians","onet_soc_code":"25-4021.00","api_safe_onet_soc_code":"25-4021-00"},{"title":"First-Line Supervisors/Managers of Police and Detectives","onet_soc_code":"33-1012.00","api_safe_onet_soc_code":"33-1012-00"},{"title":"First-Line Supervisors/Managers of Food Preparation and Serving Workers","onet_soc_code":"35-1012.00","api_safe_onet_soc_code":"35-1012-00"},{"title":"First-Line Supervisors/Managers of Retail Sales Workers","onet_soc_code":"41-1011.00","api_safe_onet_soc_code":"41-1011-00"},{"title":"First-Line Supervisors/Managers of Non-Retail Sales Workers","onet_soc_code":"41-1012.00","api_safe_onet_soc_code":"41-1012-00"},{"title":"First-Line Supervisors/Managers of Office and Administrative Support Workers","onet_soc_code":"43-1011.00","api_safe_onet_soc_code":"43-1011-00"},{"title":"First-Line Supervisors/Managers of Helpers, Laborers, and Material Movers, Hand","onet_soc_code":"53-1021.00","api_safe_onet_soc_code":"53-1021-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":3},{"title":"Administration and Management","stars":3},{"title":"Production and Processing","stars":2},{"title":"Education and Training","stars":2},{"title":"Personnel and Human Resources","stars":2}],"skills":[{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Training and Teaching Others","stars":4},{"title":"Getting Information","stars":3},{"title":"Performing for or Working Directly with the Public","stars":3},{"title":"Guiding, Directing, and Motivating Subordinates","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Written Comprehension","stars":2},{"title":"Deductive Reasoning","stars":2}]},{"onet_soc_code":"11-9061.00","api_safe_onet_soc_code":"11-9061-00","title":"Funeral Directors","link":"http://militarydemo.pipelinenc.com/careers/45-funeral-directors","description":"Perform various tasks to arrange and direct funeral services, such as coordinating transportation of body to mortuary for embalming, interviewing family or other authorized person to arrange details, selecting pallbearers, procuring official for religious rites, and providing transportation for mourners.","average_national_salary":49620,"related_careers":[],"knowledge":[{"title":"Customer and Personal Service","stars":5},{"title":"English Language","stars":3},{"title":"Administration and Management","stars":3},{"title":"Clerical","stars":3},{"title":"Chemistry","stars":2}],"skills":[{"title":"Getting Information","stars":4},{"title":"Assisting and Caring for Others","stars":4},{"title":"Performing for or Working Directly with the Public","stars":4},{"title":"Communicating with Persons Outside Organization","stars":3},{"title":"Coordinating the Work and Activities of Others","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Speech Clarity","stars":2},{"title":"Speech Recognition","stars":2},{"title":"Problem Sensitivity","stars":2}]},{"onet_soc_code":"11-9071.00","api_safe_onet_soc_code":"11-9071-00","title":"Gaming Managers","link":"http://militarydemo.pipelinenc.com/careers/46-gaming-managers","description":"Plan, organize, direct, control, or coordinate gaming operations in a casino. Formulate gaming policies for their area of responsibility.","average_national_salary":62820,"related_careers":[],"knowledge":[{"title":"Customer and Personal Service","stars":4},{"title":"Administration and Management","stars":4},{"title":"Mathematics","stars":2},{"title":"English Language","stars":2},{"title":"Personnel and Human Resources","stars":2}],"skills":[{"title":"Performing for or Working Directly with the Public","stars":5},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Evaluating Information to Determine Compliance with Standards","stars":4},{"title":"Resolving Conflicts and Negotiating with Others","stars":4}],"abilities":[{"title":"Speech Clarity","stars":4},{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Inductive Reasoning","stars":3}]},{"onet_soc_code":"11-9081.00","api_safe_onet_soc_code":"11-9081-00","title":"Lodging Managers","link":"http://militarydemo.pipelinenc.com/careers/47-lodging-managers","description":"Plan, direct, or coordinate activities of an organization or department that provides lodging and other accommodations.","average_national_salary":42320,"related_careers":[{"title":"Sales Managers","onet_soc_code":"11-2022.00","api_safe_onet_soc_code":"11-2022-00"},{"title":"Food Service Managers","onet_soc_code":"11-9051.00","api_safe_onet_soc_code":"11-9051-00"},{"title":"First-Line Supervisors/Managers of Police and Detectives","onet_soc_code":"33-1012.00","api_safe_onet_soc_code":"33-1012-00"},{"title":"First-Line Supervisors/Managers of Landscaping, Lawn Service, and Groundskeeping Workers","onet_soc_code":"37-1012.00","api_safe_onet_soc_code":"37-1012-00"},{"title":"First-Line Supervisors/Managers of Retail Sales Workers","onet_soc_code":"41-1011.00","api_safe_onet_soc_code":"41-1011-00"},{"title":"First-Line Supervisors/Managers of Non-Retail Sales Workers","onet_soc_code":"41-1012.00","api_safe_onet_soc_code":"41-1012-00"},{"title":"First-Line Supervisors/Managers of Office and Administrative Support Workers","onet_soc_code":"43-1011.00","api_safe_onet_soc_code":"43-1011-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":5},{"title":"Administration and Management","stars":3},{"title":"English Language","stars":3},{"title":"Sales and Marketing","stars":3},{"title":"Personnel and Human Resources","stars":3}],"skills":[{"title":"Getting Information","stars":4},{"title":"Performing for or Working Directly with the Public","stars":4},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Documenting/Recording Information","stars":3}],"abilities":[{"title":"Oral Expression","stars":5},{"title":"Oral Comprehension","stars":4},{"title":"Speech Clarity","stars":3},{"title":"Speech Recognition","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"11-9111.00","api_safe_onet_soc_code":"11-9111-00","title":"Medical and Health Services Managers","link":"http://militarydemo.pipelinenc.com/careers/48-medical-and-health-services-managers","description":"Plan, direct, or coordinate medicine and health services in hospitals, clinics, managed care organizations, public health agencies, or similar organizations.","average_national_salary":73340,"related_careers":[{"title":"Administrative Services Managers","onet_soc_code":"11-3011.00","api_safe_onet_soc_code":"11-3011-00"},{"title":"Computer and Information Systems Managers","onet_soc_code":"11-3021.00","api_safe_onet_soc_code":"11-3021-00"},{"title":"Human Resources Managers","onet_soc_code":"11-3040.00","api_safe_onet_soc_code":"11-3040-00"},{"title":"Compensation and Benefits Managers","onet_soc_code":"11-3041.00","api_safe_onet_soc_code":"11-3041-00"},{"title":"Education Administrators, Preschool and Child Care Center/Program","onet_soc_code":"11-9031.00","api_safe_onet_soc_code":"11-9031-00"},{"title":"Education Administrators, Elementary and Secondary School","onet_soc_code":"11-9032.00","api_safe_onet_soc_code":"11-9032-00"},{"title":"Education Administrators, Postsecondary","onet_soc_code":"11-9033.00","api_safe_onet_soc_code":"11-9033-00"},{"title":"Food Service Managers","onet_soc_code":"11-9051.00","api_safe_onet_soc_code":"11-9051-00"},{"title":"First-Line Supervisors/Managers of Office and Administrative Support Workers","onet_soc_code":"43-1011.00","api_safe_onet_soc_code":"43-1011-00"}],"knowledge":[{"title":"Administration and Management","stars":5},{"title":"Customer and Personal Service","stars":4},{"title":"English Language","stars":3},{"title":"Personnel and Human Resources","stars":3},{"title":"Economics and Accounting","stars":3}],"skills":[{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Evaluating Information to Determine Compliance with Standards","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Getting Information","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":4},{"title":"Oral Expression","stars":4},{"title":"Written Comprehension","stars":3},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"11-9121.00","api_safe_onet_soc_code":"11-9121-00","title":"Natural Sciences Managers","link":"http://militarydemo.pipelinenc.com/careers/50-natural-sciences-managers","description":"Plan, direct, or coordinate activities in such fields as life sciences, physical sciences, mathematics, statistics, and research and development in these fields.","average_national_salary":100080,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Atmospheric and Space Scientists","onet_soc_code":"19-2021.00","api_safe_onet_soc_code":"19-2021-00"},{"title":"Materials Scientists","onet_soc_code":"19-2032.00","api_safe_onet_soc_code":"19-2032-00"},{"title":"Chemistry Teachers, Postsecondary","onet_soc_code":"25-1052.00","api_safe_onet_soc_code":"25-1052-00"},{"title":"Physics Teachers, Postsecondary","onet_soc_code":"25-1054.00","api_safe_onet_soc_code":"25-1054-00"},{"title":"First-Line Supervisors/Managers of Production and Operating Workers","onet_soc_code":"51-1011.00","api_safe_onet_soc_code":"51-1011-00"}],"knowledge":[{"title":"Chemistry","stars":2},{"title":"Law and Government","stars":2},{"title":"English Language","stars":2},{"title":"Mathematics","stars":1},{"title":"Administration and Management","stars":1}],"skills":[{"title":"Analyzing Data or Information","stars":4},{"title":"Getting Information","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Making Decisions and Solving Problems","stars":3},{"title":"Interacting With Computers","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Inductive Reasoning","stars":3},{"title":"Speech Clarity","stars":3}]},{"onet_soc_code":"11-9131.00","api_safe_onet_soc_code":"11-9131-00","title":"Postmasters and Mail Superintendents","link":"http://militarydemo.pipelinenc.com/careers/53-postmasters-and-mail-superintendents","description":"Direct and coordinate operational, administrative, management, and supportive services of a U.S. post office; or coordinate activities of workers engaged in postal and related work in assigned post office.","average_national_salary":55790,"related_careers":[{"title":"Chief Executives","onet_soc_code":"11-1011.00","api_safe_onet_soc_code":"11-1011-00"},{"title":"Human Resources Managers","onet_soc_code":"11-3040.00","api_safe_onet_soc_code":"11-3040-00"},{"title":"Compensation and Benefits Managers","onet_soc_code":"11-3041.00","api_safe_onet_soc_code":"11-3041-00"},{"title":"First-Line Supervisors/Managers of Housekeeping and Janitorial Workers","onet_soc_code":"37-1011.00","api_safe_onet_soc_code":"37-1011-00"},{"title":"First-Line Supervisors/Managers of Transportation and Material-Moving Machine and Vehicle Operators","onet_soc_code":"53-1031.00","api_safe_onet_soc_code":"53-1031-00"}],"knowledge":[{"title":"Administration and Management","stars":3},{"title":"Customer and Personal Service","stars":3},{"title":"English Language","stars":3},{"title":"Production and Processing","stars":3},{"title":"Public Safety and Security","stars":3}],"skills":[{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Making Decisions and Solving Problems","stars":4},{"title":"Documenting/Recording Information","stars":4},{"title":"Processing Information","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Written Comprehension","stars":2},{"title":"Inductive Reasoning","stars":2}]},{"onet_soc_code":"11-9141.00","api_safe_onet_soc_code":"11-9141-00","title":"Property, Real Estate, and Community Association Managers","link":"http://militarydemo.pipelinenc.com/careers/54-property-real-estate-and-community-association-","description":"Plan, direct, or coordinate selling, buying, leasing, or governance activities of commercial, industrial, or residential real estate properties.","average_national_salary":43070,"related_careers":[{"title":"Purchasing Managers","onet_soc_code":"11-3061.00","api_safe_onet_soc_code":"11-3061-00"},{"title":"Construction Managers","onet_soc_code":"11-9021.00","api_safe_onet_soc_code":"11-9021-00"},{"title":"Gaming Managers","onet_soc_code":"11-9071.00","api_safe_onet_soc_code":"11-9071-00"},{"title":"Agents and Business Managers of Artists, Performers, and Athletes","onet_soc_code":"13-1011.00","api_safe_onet_soc_code":"13-1011-00"},{"title":"Personnel Recruiters","onet_soc_code":"13-1071.02","api_safe_onet_soc_code":"13-1071-02"},{"title":"Management Analysts","onet_soc_code":"13-1111.00","api_safe_onet_soc_code":"13-1111-00"},{"title":"Gaming Supervisors","onet_soc_code":"39-1011.00","api_safe_onet_soc_code":"39-1011-00"},{"title":"First-Line Supervisors/Managers of Retail Sales Workers","onet_soc_code":"41-1011.00","api_safe_onet_soc_code":"41-1011-00"},{"title":"First-Line Supervisors/Managers of Non-Retail Sales Workers","onet_soc_code":"41-1012.00","api_safe_onet_soc_code":"41-1012-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":3},{"title":"Administration and Management","stars":3},{"title":"Sales and Marketing","stars":3},{"title":"Clerical","stars":2},{"title":"English Language","stars":2}],"skills":[{"title":"Getting Information","stars":5},{"title":"Performing Administrative Activities","stars":4},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":4},{"title":"Evaluating Information to Determine Compliance with Standards","stars":3},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Written Expression","stars":3},{"title":"Speech Clarity","stars":2}]},{"onet_soc_code":"11-9151.00","api_safe_onet_soc_code":"11-9151-00","title":"Social and Community Service Managers","link":"http://militarydemo.pipelinenc.com/careers/55-social-and-community-service-managers","description":"Plan, organize, or coordinate the activities of a social service program or community outreach organization. Oversee the program or organization's budget and policies regarding participant involvement, program requirements, and benefits. Work may involve directing social workers, counselors, or probation officers.","average_national_salary":52070,"related_careers":[{"title":"Education Administrators, Preschool and Child Care Center/Program","onet_soc_code":"11-9031.00","api_safe_onet_soc_code":"11-9031-00"},{"title":"Education Administrators, Elementary and Secondary School","onet_soc_code":"11-9032.00","api_safe_onet_soc_code":"11-9032-00"},{"title":"Food Service Managers","onet_soc_code":"11-9051.00","api_safe_onet_soc_code":"11-9051-00"},{"title":"Postmasters and Mail Superintendents","onet_soc_code":"11-9131.00","api_safe_onet_soc_code":"11-9131-00"},{"title":"First-Line Supervisors/Managers of Housekeeping and Janitorial Workers","onet_soc_code":"37-1011.00","api_safe_onet_soc_code":"37-1011-00"},{"title":"Recreation Workers","onet_soc_code":"39-9032.00","api_safe_onet_soc_code":"39-9032-00"},{"title":"First-Line Supervisors/Managers of Office and Administrative Support Workers","onet_soc_code":"43-1011.00","api_safe_onet_soc_code":"43-1011-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":5},{"title":"Administration and Management","stars":4},{"title":"English Language","stars":4},{"title":"Psychology","stars":3},{"title":"Therapy and Counseling","stars":3}],"skills":[{"title":"Making Decisions and Solving Problems","stars":5},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":5},{"title":"Assisting and Caring for Others","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":5},{"title":"Getting Information","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":4},{"title":"Oral Expression","stars":4},{"title":"Speech Clarity","stars":4},{"title":"Written Comprehension","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"13-1011.00","api_safe_onet_soc_code":"13-1011-00","title":"Agents and Business Managers of Artists, Performers, and Athletes","link":"http://militarydemo.pipelinenc.com/careers/68-agents-and-business-managers-of-artists-perform","description":"Represent and promote artists, performers, and athletes to prospective employers. May handle contract negotiation and other business matters for clients.","average_national_salary":64500,"related_careers":[{"title":"Sales Managers","onet_soc_code":"11-2022.00","api_safe_onet_soc_code":"11-2022-00"},{"title":"Treasurers and Controllers","onet_soc_code":"11-3031.01","api_safe_onet_soc_code":"11-3031-01"},{"title":"Property, Real Estate, and Community Association Managers","onet_soc_code":"11-9141.00","api_safe_onet_soc_code":"11-9141-00"},{"title":"First-Line Supervisors/Managers of Retail Sales Workers","onet_soc_code":"41-1011.00","api_safe_onet_soc_code":"41-1011-00"},{"title":"First-Line Supervisors/Managers of Non-Retail Sales Workers","onet_soc_code":"41-1012.00","api_safe_onet_soc_code":"41-1012-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":4},{"title":"Sales and Marketing","stars":4},{"title":"English Language","stars":3},{"title":"Communications and Media","stars":3},{"title":"Administration and Management","stars":2}],"skills":[{"title":"Establishing and Maintaining Interpersonal Relationships","stars":5},{"title":"Communicating with Persons Outside Organization","stars":4},{"title":"Getting Information","stars":4},{"title":"Thinking Creatively","stars":4},{"title":"Selling or Influencing Others","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":4},{"title":"Oral Expression","stars":4},{"title":"Written Comprehension","stars":3},{"title":"Problem Sensitivity","stars":3},{"title":"Speech Recognition","stars":3}]},{"onet_soc_code":"13-1021.00","api_safe_onet_soc_code":"13-1021-00","title":"Purchasing Agents and Buyers, Farm Products","link":"http://militarydemo.pipelinenc.com/careers/69-purchasing-agents-and-buyers-farm-products","description":"Purchase farm products either for further processing or resale.","average_national_salary":46770,"related_careers":[{"title":"Advertising and Promotions Managers","onet_soc_code":"11-2011.00","api_safe_onet_soc_code":"11-2011-00"},{"title":"Industrial Production Managers","onet_soc_code":"11-3051.00","api_safe_onet_soc_code":"11-3051-00"},{"title":"Transportation Managers","onet_soc_code":"11-3071.01","api_safe_onet_soc_code":"11-3071-01"},{"title":"Crop and Livestock Managers","onet_soc_code":"11-9011.02","api_safe_onet_soc_code":"11-9011-02"},{"title":"Financial Examiners","onet_soc_code":"13-2061.00","api_safe_onet_soc_code":"13-2061-00"},{"title":"Food Scientists and Technologists","onet_soc_code":"19-1012.00","api_safe_onet_soc_code":"19-1012-00"},{"title":"Market Research Analysts","onet_soc_code":"19-3021.00","api_safe_onet_soc_code":"19-3021-00"},{"title":"Farm and Home Management Advisors","onet_soc_code":"25-9021.00","api_safe_onet_soc_code":"25-9021-00"},{"title":"Sales Agents, Securities and Commodities","onet_soc_code":"41-3031.01","api_safe_onet_soc_code":"41-3031-01"},{"title":"Agricultural Inspectors","onet_soc_code":"45-2011.00","api_safe_onet_soc_code":"45-2011-00"},{"title":"First-Line Supervisors/Managers of Production and Operating Workers","onet_soc_code":"51-1011.00","api_safe_onet_soc_code":"51-1011-00"}],"knowledge":[{"title":"Food Production","stars":2},{"title":"Administration and Management","stars":2},{"title":"Customer and Personal Service","stars":2},{"title":"Sales and Marketing","stars":2},{"title":"Transportation","stars":2}],"skills":[{"title":"Getting Information","stars":2},{"title":"Selling or Influencing Others","stars":2},{"title":"Making Decisions and Solving Problems","stars":2},{"title":"Performing for or Working Directly with the Public","stars":2},{"title":"Judging the Qualities of Things, Services, or People","stars":2}],"abilities":[{"title":"Oral Expression","stars":2},{"title":"Oral Comprehension","stars":2},{"title":"Speech Clarity","stars":2},{"title":"Problem Sensitivity","stars":1},{"title":"Speech Recognition","stars":1}]},{"onet_soc_code":"13-1022.00","api_safe_onet_soc_code":"13-1022-00","title":"Wholesale and Retail Buyers, Except Farm Products","link":"http://militarydemo.pipelinenc.com/careers/70-wholesale-and-retail-buyers-except-farm-product","description":"Buy merchandise or commodities, other than farm products, for resale to consumers at the wholesale or retail level, including both durable and nondurable goods. Analyze past buying trends, sales records, price, and quality of merchandise to determine value and yield. Select, order, and authorize payment for merchandise according to contractual agreements. May conduct meetings with sales personnel and introduce new products.","average_national_salary":44640,"related_careers":[{"title":"Advertising and Promotions Managers","onet_soc_code":"11-2011.00","api_safe_onet_soc_code":"11-2011-00"},{"title":"Marketing Managers","onet_soc_code":"11-2021.00","api_safe_onet_soc_code":"11-2021-00"},{"title":"Sales Managers","onet_soc_code":"11-2022.00","api_safe_onet_soc_code":"11-2022-00"},{"title":"Agents and Business Managers of Artists, Performers, and Athletes","onet_soc_code":"13-1011.00","api_safe_onet_soc_code":"13-1011-00"},{"title":"Purchasing Agents and Buyers, Farm Products","onet_soc_code":"13-1021.00","api_safe_onet_soc_code":"13-1021-00"},{"title":"Market Research Analysts","onet_soc_code":"19-3021.00","api_safe_onet_soc_code":"19-3021-00"},{"title":"Public Relations Specialists","onet_soc_code":"27-3031.00","api_safe_onet_soc_code":"27-3031-00"},{"title":"Sales Agents, Securities and Commodities","onet_soc_code":"41-3031.01","api_safe_onet_soc_code":"41-3031-01"},{"title":"Sales Agents, Financial Services","onet_soc_code":"41-3031.02","api_safe_onet_soc_code":"41-3031-02"},{"title":"Travel Agents","onet_soc_code":"41-3041.00","api_safe_onet_soc_code":"41-3041-00"},{"title":"Sales Representatives, Wholesale and Manufacturing, Except Technical and Scientific Products","onet_soc_code":"41-4012.00","api_safe_onet_soc_code":"41-4012-00"},{"title":"First-Line Supervisors/Managers of Transportation and Material-Moving Machine and Vehicle Operators","onet_soc_code":"53-1031.00","api_safe_onet_soc_code":"53-1031-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":4},{"title":"Administration and Management","stars":3},{"title":"Sales and Marketing","stars":3},{"title":"English Language","stars":2},{"title":"Economics and Accounting","stars":2}],"skills":[{"title":"Getting Information","stars":3},{"title":"Establishing and Maintaining Interpersonal Relationships","stars":3},{"title":"Identifying Objects, Actions, and Events","stars":3},{"title":"Making Decisions and Solving Problems","stars":3},{"title":"Updating and Using Relevant Knowledge","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":2},{"title":"Oral Expression","stars":2},{"title":"Speech Clarity","stars":2},{"title":"Speech Recognition","stars":2},{"title":"Problem Sensitivity","stars":2}]},{"onet_soc_code":"13-1023.00","api_safe_onet_soc_code":"13-1023-00","title":"Purchasing Agents, Except Wholesale, Retail, and Farm Products","link":"http://militarydemo.pipelinenc.com/careers/71-purchasing-agents-except-wholesale-retail-and-f","description":"Purchase machinery, equipment, tools, parts, supplies, or services necessary for the operation of an establishment. Purchase raw or semi-finished materials for manufacturing.","average_national_salary":50730,"related_careers":[{"title":"Purchasing Managers","onet_soc_code":"11-3061.00","api_safe_onet_soc_code":"11-3061-00"},{"title":"Insurance Adjusters, Examiners, and Investigators","onet_soc_code":"13-1031.02","api_safe_onet_soc_code":"13-1031-02"},{"title":"Cost Estimators","onet_soc_code":"13-1051.00","api_safe_onet_soc_code":"13-1051-00"},{"title":"Compensation, Benefits, and Job Analysis Specialists","onet_soc_code":"13-1072.00","api_safe_onet_soc_code":"13-1072-00"},{"title":"Budget Analysts","onet_soc_code":"13-2031.00","api_safe_onet_soc_code":"13-2031-00"},{"title":"Credit Analysts","onet_soc_code":"13-2041.00","api_safe_onet_soc_code":"13-2041-00"},{"title":"Personal Financial Advisors","onet_soc_code":"13-2052.00","api_safe_onet_soc_code":"13-2052-00"},{"title":"Tax Examiners, Collectors, and Revenue Agents","onet_soc_code":"13-2081.00","api_safe_onet_soc_code":"13-2081-00"},{"title":"Law Clerks","onet_soc_code":"23-2092.00","api_safe_onet_soc_code":"23-2092-00"},{"title":"Title Examiners, Abstractors, and Searchers","onet_soc_code":"23-2093.00","api_safe_onet_soc_code":"23-2093-00"},{"title":"Bill and Account Collectors","onet_soc_code":"43-3011.00","api_safe_onet_soc_code":"43-3011-00"}],"knowledge":[{"title":"Mathematics","stars":2},{"title":"Clerical","stars":2},{"title":"Administration and Management","stars":2},{"title":"Economics and Accounting","stars":2},{"title":"English Language","stars":1}],"skills":[{"title":"Interacting With Computers","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Getting Information","stars":4},{"title":"Communicating with Persons Outside Organization","stars":3},{"title":"Organizing, Planning, and Prioritizing Work","stars":3}],"abilities":[{"title":"Oral Expression","stars":4},{"title":"Oral Comprehension","stars":4},{"title":"Inductive Reasoning","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"13-1031.01","api_safe_onet_soc_code":"13-1031-01","title":"Claims Examiners, Property and Casualty Insurance","link":"http://militarydemo.pipelinenc.com/careers/73-claims-examiners-property-and-casualty-insuranc","description":"Review settled insurance claims to determine that payments and settlements have been made in accordance with company practices and procedures. Report overpayments, underpayments, and other irregularities. Confer with legal counsel on claims requiring litigation.","average_national_salary":50660,"related_careers":[{"title":"Insurance Appraisers, Auto Damage","onet_soc_code":"13-1032.00","api_safe_onet_soc_code":"13-1032-00"},{"title":"Cost Estimators","onet_soc_code":"13-1051.00","api_safe_onet_soc_code":"13-1051-00"},{"title":"Assessors","onet_soc_code":"13-2021.01","api_safe_onet_soc_code":"13-2021-01"},{"title":"Appraisers, Real Estate","onet_soc_code":"13-2021.02","api_safe_onet_soc_code":"13-2021-02"},{"title":"Insurance Underwriters","onet_soc_code":"13-2053.00","api_safe_onet_soc_code":"13-2053-00"},{"title":"Political Scientists","onet_soc_code":"19-3094.00","api_safe_onet_soc_code":"19-3094-00"},{"title":"Title Examiners, Abstractors, and Searchers","onet_soc_code":"23-2093.00","api_safe_onet_soc_code":"23-2093-00"},{"title":"Credit Checkers","onet_soc_code":"43-4041.02","api_safe_onet_soc_code":"43-4041-02"},{"title":"Insurance Policy Processing Clerks","onet_soc_code":"43-9041.02","api_safe_onet_soc_code":"43-9041-02"},{"title":"Statistical Assistants","onet_soc_code":"43-9111.00","api_safe_onet_soc_code":"43-9111-00"}],"knowledge":[{"title":"English Language","stars":4},{"title":"Customer and Personal Service","stars":4},{"title":"Law and Government","stars":1},{"title":"Clerical","stars":1},{"title":"Mathematics","stars":1}],"skills":[{"title":"Getting Information","stars":5},{"title":"Communicating with Persons Outside Organization","stars":4},{"title":"Interacting With Computers","stars":4},{"title":"Documenting/Recording Information","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Deductive Reasoning","stars":3},{"title":"Written Comprehension","stars":2},{"title":"Problem Sensitivity","stars":2}]},{"onet_soc_code":"13-1031.02","api_safe_onet_soc_code":"13-1031-02","title":"Insurance Adjusters, Examiners, and Investigators","link":"http://militarydemo.pipelinenc.com/careers/74-insurance-adjusters-examiners-and-investigators","description":"Investigate, analyze, and determine the extent of insurance company's liability concerning personal, casualty, or property loss or damages, and attempt to effect settlement with claimants. Correspond with or interview medical specialists, agents, witnesses, or claimants to compile information. Calculate benefit payments and approve payment of claims within a certain monetary limit.","average_national_salary":50660,"related_careers":[{"title":"Purchasing Agents, Except Wholesale, Retail, and Farm Products","onet_soc_code":"13-1023.00","api_safe_onet_soc_code":"13-1023-00"},{"title":"Licensing Examiners and Inspectors","onet_soc_code":"13-1041.02","api_safe_onet_soc_code":"13-1041-02"},{"title":"Equal Opportunity Representatives and Officers","onet_soc_code":"13-1041.03","api_safe_onet_soc_code":"13-1041-03"},{"title":"Government Property Inspectors and Investigators","onet_soc_code":"13-1041.04","api_safe_onet_soc_code":"13-1041-04"},{"title":"Employment Interviewers","onet_soc_code":"13-1071.01","api_safe_onet_soc_code":"13-1071-01"},{"title":"Compensation, Benefits, and Job Analysis Specialists","onet_soc_code":"13-1072.00","api_safe_onet_soc_code":"13-1072-00"},{"title":"Appraisers, Real Estate","onet_soc_code":"13-2021.02","api_safe_onet_soc_code":"13-2021-02"},{"title":"Personal Financial Advisors","onet_soc_code":"13-2052.00","api_safe_onet_soc_code":"13-2052-00"},{"title":"Tax Examiners, Collectors, and Revenue Agents","onet_soc_code":"13-2081.00","api_safe_onet_soc_code":"13-2081-00"},{"title":"Political Scientists","onet_soc_code":"19-3094.00","api_safe_onet_soc_code":"19-3094-00"},{"title":"Lawyers","onet_soc_code":"23-1011.00","api_safe_onet_soc_code":"23-1011-00"},{"title":"Administrative Law Judges, Adjudicators, and Hearing Officers","onet_soc_code":"23-1021.00","api_safe_onet_soc_code":"23-1021-00"},{"title":"Arbitrators, Mediators, and Conciliators","onet_soc_code":"23-1022.00","api_safe_onet_soc_code":"23-1022-00"},{"title":"Talent Directors","onet_soc_code":"27-2012.04","api_safe_onet_soc_code":"27-2012-04"},{"title":"Umpires, Referees, and Other Sports Officials","onet_soc_code":"27-2023.00","api_safe_onet_soc_code":"27-2023-00"},{"title":"Criminal Investigators and Special Agents","onet_soc_code":"33-3021.03","api_safe_onet_soc_code":"33-3021-03"},{"title":"Immigration and Customs Inspectors","onet_soc_code":"33-3021.05","api_safe_onet_soc_code":"33-3021-05"},{"title":"Bill and Account Collectors","onet_soc_code":"43-3011.00","api_safe_onet_soc_code":"43-3011-00"},{"title":"Eligibility Interviewers, Government Programs","onet_soc_code":"43-4061.00","api_safe_onet_soc_code":"43-4061-00"}],"knowledge":[{"title":"English Language","stars":4},{"title":"Customer and Personal Service","stars":4},{"title":"Clerical","stars":1},{"title":"Law and Government","stars":1},{"title":"Mathematics","stars":1}],"skills":[{"title":"Identifying Objects, Actions, and Events","stars":5},{"title":"Interacting With Computers","stars":4},{"title":"Getting Information","stars":4},{"title":"Documenting/Recording Information","stars":4},{"title":"Processing Information","stars":3}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Deductive Reasoning","stars":3},{"title":"Inductive Reasoning","stars":3}]},{"onet_soc_code":"13-1032.00","api_safe_onet_soc_code":"13-1032-00","title":"Insurance Appraisers, Auto Damage","link":"http://militarydemo.pipelinenc.com/careers/75-insurance-appraisers-auto-damage","description":"Appraise automobile or other vehicle damage to determine cost of repair for insurance claim settlement and seek agreement with automotive repair shop on cost of repair. Prepare insurance forms to indicate repair cost or cost estimates and recommendations.","average_national_salary":49180,"related_careers":[{"title":"Purchasing Agents, Except Wholesale, Retail, and Farm Products","onet_soc_code":"13-1023.00","api_safe_onet_soc_code":"13-1023-00"},{"title":"Claims Examiners, Property and Casualty Insurance","onet_soc_code":"13-1031.01","api_safe_onet_soc_code":"13-1031-01"},{"title":"Insurance Adjusters, Examiners, and Investigators","onet_soc_code":"13-1031.02","api_safe_onet_soc_code":"13-1031-02"},{"title":"Licensing Examiners and Inspectors","onet_soc_code":"13-1041.02","api_safe_onet_soc_code":"13-1041-02"},{"title":"Cost Estimators","onet_soc_code":"13-1051.00","api_safe_onet_soc_code":"13-1051-00"},{"title":"Assessors","onet_soc_code":"13-2021.01","api_safe_onet_soc_code":"13-2021-01"},{"title":"Appraisers, Real Estate","onet_soc_code":"13-2021.02","api_safe_onet_soc_code":"13-2021-02"},{"title":"Personal Financial Advisors","onet_soc_code":"13-2052.00","api_safe_onet_soc_code":"13-2052-00"},{"title":"Insurance Underwriters","onet_soc_code":"13-2053.00","api_safe_onet_soc_code":"13-2053-00"},{"title":"Tax Preparers","onet_soc_code":"13-2082.00","api_safe_onet_soc_code":"13-2082-00"},{"title":"Credit Checkers","onet_soc_code":"43-4041.02","api_safe_onet_soc_code":"43-4041-02"},{"title":"Insurance Policy Processing Clerks","onet_soc_code":"43-9041.02","api_safe_onet_soc_code":"43-9041-02"},{"title":"Proofreaders and Copy Markers","onet_soc_code":"43-9081.00","api_safe_onet_soc_code":"43-9081-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":3},{"title":"English Language","stars":3},{"title":"Computers and Electronics","stars":2},{"title":"Mathematics","stars":1},{"title":"Telecommunications","stars":1}],"skills":[{"title":"Identifying Objects, Actions, and Events","stars":3},{"title":"Getting Information","stars":2},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":2},{"title":"Interacting With Computers","stars":1},{"title":"Communicating with Persons Outside Organization","stars":1}],"abilities":[{"title":"Oral Expression","stars":3},{"title":"Oral Comprehension","stars":3},{"title":"Written Comprehension","stars":3},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":2}]},{"onet_soc_code":"13-1041.01","api_safe_onet_soc_code":"13-1041-01","title":"Environmental Compliance Inspectors","link":"http://militarydemo.pipelinenc.com/careers/77-environmental-compliance-inspectors","description":"Inspect and investigate sources of pollution to protect the public and environment and ensure conformance with Federal, State, and local regulations and ordinances.","average_national_salary":47050,"related_careers":[{"title":"Fire-Prevention and Protection Engineers","onet_soc_code":"17-2111.02","api_safe_onet_soc_code":"17-2111-02"},{"title":"Nuclear Monitoring Technicians","onet_soc_code":"19-4051.02","api_safe_onet_soc_code":"19-4051-02"},{"title":"Environmental Science and Protection Technicians, Including Health","onet_soc_code":"19-4091.00","api_safe_onet_soc_code":"19-4091-00"},{"title":"Forensic Science Technicians","onet_soc_code":"19-4092.00","api_safe_onet_soc_code":"19-4092-00"},{"title":"Occupational Health and Safety Specialists","onet_soc_code":"29-9011.00","api_safe_onet_soc_code":"29-9011-00"}],"knowledge":[{"title":"Law and Government","stars":4},{"title":"English Language","stars":3},{"title":"Chemistry","stars":2},{"title":"Biology","stars":1},{"title":"Public Safety and Security","stars":1}],"skills":[{"title":"Evaluating Information to Determine Compliance with Standards","stars":5},{"title":"Getting Information","stars":4},{"title":"Documenting/Recording Information","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4},{"title":"Communicating with Persons Outside Organization","stars":3}],"abilities":[{"title":"Problem Sensitivity","stars":4},{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Near Vision","stars":3},{"title":"Written Comprehension","stars":3}]},{"onet_soc_code":"13-1041.02","api_safe_onet_soc_code":"13-1041-02","title":"Licensing Examiners and Inspectors","link":"http://militarydemo.pipelinenc.com/careers/78-licensing-examiners-and-inspectors","description":"Examine, evaluate, and investigate eligibility for, conformity with, or liability under licenses or permits.","average_national_salary":47050,"related_careers":[{"title":"Insurance Adjusters, Examiners, and Investigators","onet_soc_code":"13-1031.02","api_safe_onet_soc_code":"13-1031-02"},{"title":"Insurance Appraisers, Auto Damage","onet_soc_code":"13-1032.00","api_safe_onet_soc_code":"13-1032-00"},{"title":"Government Property Inspectors and Investigators","onet_soc_code":"13-1041.04","api_safe_onet_soc_code":"13-1041-04"},{"title":"Appraisers, Real Estate","onet_soc_code":"13-2021.02","api_safe_onet_soc_code":"13-2021-02"},{"title":"Political Scientists","onet_soc_code":"19-3094.00","api_safe_onet_soc_code":"19-3094-00"},{"title":"Administrative Law Judges, Adjudicators, and Hearing Officers","onet_soc_code":"23-1021.00","api_safe_onet_soc_code":"23-1021-00"},{"title":"Arbitrators, Mediators, and Conciliators","onet_soc_code":"23-1022.00","api_safe_onet_soc_code":"23-1022-00"},{"title":"Law Clerks","onet_soc_code":"23-2092.00","api_safe_onet_soc_code":"23-2092-00"},{"title":"Title Examiners, Abstractors, and Searchers","onet_soc_code":"23-2093.00","api_safe_onet_soc_code":"23-2093-00"},{"title":"Public Address System and Other Announcers","onet_soc_code":"27-3012.00","api_safe_onet_soc_code":"27-3012-00"},{"title":"Criminal Investigators and Special Agents","onet_soc_code":"33-3021.03","api_safe_onet_soc_code":"33-3021-03"},{"title":"Immigration and Customs Inspectors","onet_soc_code":"33-3021.05","api_safe_onet_soc_code":"33-3021-05"},{"title":"Bill and Account Collectors","onet_soc_code":"43-3011.00","api_safe_onet_soc_code":"43-3011-00"},{"title":"License Clerks","onet_soc_code":"43-4031.03","api_safe_onet_soc_code":"43-4031-03"},{"title":"Eligibility Interviewers, Government Programs","onet_soc_code":"43-4061.00","api_safe_onet_soc_code":"43-4061-00"},{"title":"Dispatchers, Except Police, Fire, and Ambulance","onet_soc_code":"43-5032.00","api_safe_onet_soc_code":"43-5032-00"}],"knowledge":[{"title":"Customer and Personal Service","stars":4},{"title":"Law and Government","stars":2},{"title":"Clerical","stars":2},{"title":"English Language","stars":2},{"title":"Public Safety and Security","stars":2}],"skills":[{"title":"Getting Information","stars":4},{"title":"Performing for or Working Directly with the Public","stars":4},{"title":"Interacting With Computers","stars":4},{"title":"Evaluating Information to Determine Compliance with Standards","stars":4},{"title":"Documenting/Recording Information","stars":3}],"abilities":[{"title":"Oral Expression","stars":3},{"title":"Oral Comprehension","stars":2},{"title":"Written Comprehension","stars":2},{"title":"Speech Recognition","stars":2},{"title":"Speech Clarity","stars":2}]},{"onet_soc_code":"13-1041.03","api_safe_onet_soc_code":"13-1041-03","title":"Equal Opportunity Representatives and Officers","link":"http://militarydemo.pipelinenc.com/careers/79-equal-opportunity-representatives-and-officers","description":"Monitor and evaluate compliance with equal opportunity laws, guidelines, and policies to ensure that employment practices and contracting arrangements give equal opportunity without regard to race, religion, color, national origin, sex, age, or disability.","average_national_salary":47050,"related_careers":[],"knowledge":[{"title":"Law and Government","stars":4},{"title":"English Language","stars":3},{"title":"Customer and Personal Service","stars":2},{"title":"Personnel and Human Resources","stars":2},{"title":"Clerical","stars":2}],"skills":[{"title":"Getting Information","stars":5},{"title":"Evaluating Information to Determine Compliance with Standards","stars":5},{"title":"Identifying Objects, Actions, and Events","stars":5},{"title":"Communicating with Persons Outside Organization","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4}],"abilities":[{"title":"Written Comprehension","stars":4},{"title":"Oral Comprehension","stars":4},{"title":"Oral Expression","stars":4},{"title":"Written Expression","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"13-1041.04","api_safe_onet_soc_code":"13-1041-04","title":"Government Property Inspectors and Investigators","link":"http://militarydemo.pipelinenc.com/careers/80-government-property-inspectors-and-investigator","description":"Investigate or inspect government property to ensure compliance with contract agreements and government regulations.","average_national_salary":47050,"related_careers":[{"title":"Equal Opportunity Representatives and Officers","onet_soc_code":"13-1041.03","api_safe_onet_soc_code":"13-1041-03"},{"title":"Lawyers","onet_soc_code":"23-1011.00","api_safe_onet_soc_code":"23-1011-00"},{"title":"Fire Inspectors","onet_soc_code":"33-2021.01","api_safe_onet_soc_code":"33-2021-01"},{"title":"Fire Investigators","onet_soc_code":"33-2021.02","api_safe_onet_soc_code":"33-2021-02"},{"title":"Criminal Investigators and Special Agents","onet_soc_code":"33-3021.03","api_safe_onet_soc_code":"33-3021-03"},{"title":"Immigration and Customs Inspectors","onet_soc_code":"33-3021.05","api_safe_onet_soc_code":"33-3021-05"}],"knowledge":[{"title":"Engineering and Technology","stars":2},{"title":"Customer and Personal Service","stars":2},{"title":"Building and Construction","stars":2},{"title":"Computers and Electronics","stars":2},{"title":"Administration and Management","stars":2}],"skills":[{"title":"Communicating with Persons Outside Organization","stars":5},{"title":"Interacting With Computers","stars":5},{"title":"Making Decisions and Solving Problems","stars":5},{"title":"Evaluating Information to Determine Compliance with Standards","stars":5},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":5}],"abilities":[{"title":"Written Comprehension","stars":4},{"title":"Oral Expression","stars":4},{"title":"Written Expression","stars":4},{"title":"Oral Comprehension","stars":3},{"title":"Problem Sensitivity","stars":3}]},{"onet_soc_code":"13-1041.06","api_safe_onet_soc_code":"13-1041-06","title":"Coroners","link":"http://militarydemo.pipelinenc.com/careers/81-coroners","description":"Direct activities such as autopsies, pathological and toxicological analyses, and inquests relating to the investigation of deaths occurring within a legal jurisdiction to determine cause of death or to fix responsibility for accidental, violent, or unexplained deaths.","average_national_salary":47050,"related_careers":[{"title":"Environmental Compliance Inspectors","onet_soc_code":"13-1041.01","api_safe_onet_soc_code":"13-1041-01"},{"title":"Forensic Science Technicians","onet_soc_code":"19-4092.00","api_safe_onet_soc_code":"19-4092-00"},{"title":"Medical and Clinical Laboratory Technologists","onet_soc_code":"29-2011.00","api_safe_onet_soc_code":"29-2011-00"},{"title":"Medical and Clinical Laboratory Technicians","onet_soc_code":"29-2012.00","api_safe_onet_soc_code":"29-2012-00"}],"knowledge":[{"title":"Medicine and Dentistry","stars":5},{"title":"Biology","stars":3},{"title":"Law and Government","stars":3},{"title":"English Language","stars":3},{"title":"Public Safety and Security","stars":2}],"skills":[{"title":"Getting Information","stars":5},{"title":"Communicating with Persons Outside Organization","stars":4},{"title":"Documenting/Recording Information","stars":4},{"title":"Identifying Objects, Actions, and Events","stars":4},{"title":"Updating and Using Relevant Knowledge","stars":4}],"abilities":[{"title":"Oral Comprehension","stars":3},{"title":"Oral Expression","stars":3},{"title":"Inductive Reasoning","stars":3},{"title":"Speech Recognition","stars":3},{"title":"Speech Clarity","stars":3}]},{"onet_soc_code":"13-1051.00","api_safe_onet_soc_code":"13-1051-00","title":"Cost Estimators","link":"http://militarydemo.pipelinenc.com/careers/83-cost-estimators","description":"Prepare cost estimates for product manufacturing, construction projects, or services to aid management in bidding on or determining price of product or service. May specialize according to particular service performed or type of product manufactured.","average_national_salary":52940,"related_careers":[{"title":"Construction Managers","onet_soc_code":"11-9021.00","api_safe_onet_soc_code":"11-9021-00"},{"title":"Purchasing Agents, Except Wholesale, Retail, and Farm Products","onet_soc_code":"13-1023.00","api_safe_onet_soc_code":"13-1023-00"},{"title":"Claims Examiners, Property and Casualty Insurance","onet_soc_code":"13-1031.01","api_safe_onet_soc_code":"13-1031-01"},{"title":"Accountants","onet_soc_code":"13-2011.01","api_safe_onet_soc_code":"13-2011-01"},{"title":"Budget Analysts","onet_soc_code":"13-2031.00","api_safe_onet_soc_code":"13-2031-00"},{"title":"Credit Analysts","onet_soc_code":"13-2041.00","api_safe_onet_soc_code":"13-2041-00"},{"title":"Personal Financial Advisors","onet_soc_code":"13-2052.00","api_safe_onet_soc_code":"13-2052-00"},{"title":"Insurance Underwriters","onet_soc_code":"13-2053.00","api_safe_onet_soc_code":"13-2053-00"},{"title":"Actuaries","onet_soc_code":"15-2011.00","api_safe_onet_soc_code":"15-2011-00"},{"title":"Mathematicians","onet_soc_code":"15-2021.00","api_safe_onet_soc_code":"15-2021-00"},{"title":"Operations Research Analysts","onet_soc_code":"15-2031.00","api_safe_onet_soc_code":"15-2031-00"},{"title":"Statisticians","onet_soc_code":"15-2041.00","api_safe_onet_soc_code":"15-2041-00"},{"title":"Statistical Assistants","onet_soc_code":"43-9111.00","api_safe_onet_soc_code":"43-9111-00"},{"title":"Traffic Technicians","onet_soc_code":"53-6041.00","api_safe_onet_soc_code":"53-6041-00"}],"knowledge":[{"title":"Mathematics","stars":4},{"title":"Engineering and Technology","stars":2},{"title":"English Language","stars":2},{"title":"Economics and Accounting","stars":2},{"title":"Computers and Electronics","stars":1}],"skills":[{"title":"Getting Information","stars":5},{"title":"Interacting With Computers","stars":5},{"title":"Estimating the Quantifiable Characteristics of Products, Events, or Information","stars":4},{"title":"Analyzing Data or Information","stars":4},{"title":"Communicating with Supervisors, Peers, or Subordinates","stars":4}],"abilities":[{"title":"Number Facility","stars":3},{"title":"Mathematical Reasoning","stars":3},{"title":"Oral Comprehension","stars":2},{"title":"Oral Expression","stars":2},{"title":"Written Comprehension","stars":2}]}]
@@ -0,0 +1 @@
1
+ {"request":"/api/v1/careers/11-1011-01.json","error":"Resource not found."}
@@ -0,0 +1,30 @@
1
+ require 'helper'
2
+
3
+ describe FuturesPipeline::Client do
4
+ before do
5
+ @client = FuturesPipeline::Client.new
6
+ end
7
+
8
+ describe "#careers" do
9
+ it "should fetch all careers" do
10
+ careers = @client.careers
11
+ careers.first.title.should == "Chief Executives"
12
+ end
13
+ end
14
+
15
+ describe "#career" do
16
+ context "with API-safe O*NET code" do
17
+ it "should fetch one career" do
18
+ career = @client.career("11-1011-00")
19
+ career.title.should == "Chief Executives"
20
+ end
21
+ end
22
+ context "with O*NET status code" do
23
+ it "should fetch one career" do
24
+ career = @client.career("11-1011.00")
25
+ career.title.should == "Chief Executives"
26
+ end
27
+ end
28
+ end
29
+
30
+ end
@@ -0,0 +1,9 @@
1
+ require 'helper'
2
+
3
+ describe FuturesPipeline do
4
+ describe ".client" do
5
+ it "should be a FuturesPipeline::Client" do
6
+ FuturesPipeline.client.should be_a FuturesPipeline::Client
7
+ end
8
+ end
9
+ end
data/spec/helper.rb ADDED
@@ -0,0 +1,4 @@
1
+ require 'simplecov'
2
+ SimpleCov.start
3
+ require 'rspec'
4
+ require 'futures_pipeline'
metadata ADDED
@@ -0,0 +1,280 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: futures_pipeline
3
+ version: !ruby/object:Gem::Version
4
+ hash: 29
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 0
9
+ - 1
10
+ version: 0.0.1
11
+ platform: ruby
12
+ authors:
13
+ - Erik Michaels-Ober
14
+ - Ryan Resella
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2011-05-11 00:00:00 Z
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: faraday
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ hash: 5
30
+ segments:
31
+ - 0
32
+ - 6
33
+ - 1
34
+ version: 0.6.1
35
+ type: :development
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: faraday_middleware
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ hash: 1
46
+ segments:
47
+ - 0
48
+ - 6
49
+ - 3
50
+ version: 0.6.3
51
+ type: :development
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: hashie
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ hash: 23
62
+ segments:
63
+ - 1
64
+ - 0
65
+ - 0
66
+ version: 1.0.0
67
+ type: :development
68
+ version_requirements: *id003
69
+ - !ruby/object:Gem::Dependency
70
+ name: json
71
+ prerelease: false
72
+ requirement: &id004 !ruby/object:Gem::Requirement
73
+ none: false
74
+ requirements:
75
+ - - ~>
76
+ - !ruby/object:Gem::Version
77
+ hash: 1
78
+ segments:
79
+ - 1
80
+ - 5
81
+ - 1
82
+ version: 1.5.1
83
+ type: :development
84
+ version_requirements: *id004
85
+ - !ruby/object:Gem::Dependency
86
+ name: multi_json
87
+ prerelease: false
88
+ requirement: &id005 !ruby/object:Gem::Requirement
89
+ none: false
90
+ requirements:
91
+ - - ~>
92
+ - !ruby/object:Gem::Version
93
+ hash: 21
94
+ segments:
95
+ - 1
96
+ - 0
97
+ - 1
98
+ version: 1.0.1
99
+ type: :development
100
+ version_requirements: *id005
101
+ - !ruby/object:Gem::Dependency
102
+ name: rash
103
+ prerelease: false
104
+ requirement: &id006 !ruby/object:Gem::Requirement
105
+ none: false
106
+ requirements:
107
+ - - ~>
108
+ - !ruby/object:Gem::Version
109
+ hash: 19
110
+ segments:
111
+ - 0
112
+ - 3
113
+ - 0
114
+ version: 0.3.0
115
+ type: :development
116
+ version_requirements: *id006
117
+ - !ruby/object:Gem::Dependency
118
+ name: ZenTest
119
+ prerelease: false
120
+ requirement: &id007 !ruby/object:Gem::Requirement
121
+ none: false
122
+ requirements:
123
+ - - ~>
124
+ - !ruby/object:Gem::Version
125
+ hash: 17
126
+ segments:
127
+ - 4
128
+ - 5
129
+ version: "4.5"
130
+ type: :development
131
+ version_requirements: *id007
132
+ - !ruby/object:Gem::Dependency
133
+ name: maruku
134
+ prerelease: false
135
+ requirement: &id008 !ruby/object:Gem::Requirement
136
+ none: false
137
+ requirements:
138
+ - - ~>
139
+ - !ruby/object:Gem::Version
140
+ hash: 7
141
+ segments:
142
+ - 0
143
+ - 6
144
+ version: "0.6"
145
+ type: :development
146
+ version_requirements: *id008
147
+ - !ruby/object:Gem::Dependency
148
+ name: rake
149
+ prerelease: false
150
+ requirement: &id009 !ruby/object:Gem::Requirement
151
+ none: false
152
+ requirements:
153
+ - - ~>
154
+ - !ruby/object:Gem::Version
155
+ hash: 27
156
+ segments:
157
+ - 0
158
+ - 8
159
+ version: "0.8"
160
+ type: :development
161
+ version_requirements: *id009
162
+ - !ruby/object:Gem::Dependency
163
+ name: rspec
164
+ prerelease: false
165
+ requirement: &id010 !ruby/object:Gem::Requirement
166
+ none: false
167
+ requirements:
168
+ - - ~>
169
+ - !ruby/object:Gem::Version
170
+ hash: 9
171
+ segments:
172
+ - 2
173
+ - 5
174
+ version: "2.5"
175
+ type: :development
176
+ version_requirements: *id010
177
+ - !ruby/object:Gem::Dependency
178
+ name: simplecov
179
+ prerelease: false
180
+ requirement: &id011 !ruby/object:Gem::Requirement
181
+ none: false
182
+ requirements:
183
+ - - ~>
184
+ - !ruby/object:Gem::Version
185
+ hash: 3
186
+ segments:
187
+ - 0
188
+ - 4
189
+ version: "0.4"
190
+ type: :development
191
+ version_requirements: *id011
192
+ - !ruby/object:Gem::Dependency
193
+ name: yard
194
+ prerelease: false
195
+ requirement: &id012 !ruby/object:Gem::Requirement
196
+ none: false
197
+ requirements:
198
+ - - ~>
199
+ - !ruby/object:Gem::Version
200
+ hash: 7
201
+ segments:
202
+ - 0
203
+ - 6
204
+ version: "0.6"
205
+ type: :development
206
+ version_requirements: *id012
207
+ description: Ruby wrapper for the Futures, Inc. US Military Pipeline API
208
+ email:
209
+ - erik@codeforamerica.org
210
+ - ryan@codeforamerica.org
211
+ executables: []
212
+
213
+ extensions: []
214
+
215
+ extra_rdoc_files: []
216
+
217
+ files:
218
+ - .gemtest
219
+ - .gitignore
220
+ - .rspec
221
+ - .travis.yml
222
+ - .yardopts
223
+ - Gemfile
224
+ - LICENSE.md
225
+ - README.md
226
+ - Rakefile
227
+ - futures_pipeline.gemspec
228
+ - lib/futures_pipeline.rb
229
+ - lib/futures_pipeline/client.rb
230
+ - lib/futures_pipeline/connection.rb
231
+ - lib/futures_pipeline/request.rb
232
+ - lib/futures_pipeline/version.rb
233
+ - spec/faraday/response_spec.rb
234
+ - spec/fixtures/career.json
235
+ - spec/fixtures/careers.json
236
+ - spec/fixtures/not_found.json
237
+ - spec/futures_pipeline/client_spec.rb
238
+ - spec/futures_pipeline_spec.rb
239
+ - spec/helper.rb
240
+ homepage: ""
241
+ licenses: []
242
+
243
+ post_install_message:
244
+ rdoc_options: []
245
+
246
+ require_paths:
247
+ - lib
248
+ required_ruby_version: !ruby/object:Gem::Requirement
249
+ none: false
250
+ requirements:
251
+ - - ">="
252
+ - !ruby/object:Gem::Version
253
+ hash: 3
254
+ segments:
255
+ - 0
256
+ version: "0"
257
+ required_rubygems_version: !ruby/object:Gem::Requirement
258
+ none: false
259
+ requirements:
260
+ - - ">="
261
+ - !ruby/object:Gem::Version
262
+ hash: 3
263
+ segments:
264
+ - 0
265
+ version: "0"
266
+ requirements: []
267
+
268
+ rubyforge_project:
269
+ rubygems_version: 1.8.1
270
+ signing_key:
271
+ specification_version: 3
272
+ summary: Ruby wrapper for the Futures, Inc. US Military Pipeline API
273
+ test_files:
274
+ - spec/faraday/response_spec.rb
275
+ - spec/fixtures/career.json
276
+ - spec/fixtures/careers.json
277
+ - spec/fixtures/not_found.json
278
+ - spec/futures_pipeline/client_spec.rb
279
+ - spec/futures_pipeline_spec.rb
280
+ - spec/helper.rb