diff --git a/backend/server.js b/backend/server.js
index a917724..8e0ef4f 100755
--- a/backend/server.js
+++ b/backend/server.js
@@ -144,38 +144,7 @@ app.post('/api/register', async (req, res) => {
});
-// Route for login
-app.post('/api/login', (req, res) => {
- const { username, password } = req.body;
-
- if (!username || !password) {
- return res.status(400).json({ error: 'Username and password are required' });
- }
-
- const query = 'SELECT * FROM user_auth WHERE username = ?';
- db.get(query, [username], async (err, row) => {
- if (err) {
- console.error('Error fetching user:', err.message);
- return res.status(500).json({ error: 'Internal server error' });
- }
-
- if (!row) {
- return res.status(401).json({ error: 'Invalid username or password' });
- }
-
- // Verify password
- const isPasswordValid = await bcrypt.compare(password, row.hashed_password);
- if (!isPasswordValid) {
- return res.status(401).json({ error: 'Invalid username or password' });
- }
-
- const { user_id } = row; // This gets the correct user_id from the row object
- const token = jwt.sign({ userId: row.user_id }, SECRET_KEY, { expiresIn: '2h' });
- res.status(200).json({ token });
- });
-});
-
-// Route to handle user sign-in (customized)
+// Route to handle user sign-in (updated with career_priorities and career_list)
app.post('/api/signin', async (req, res) => {
const { username, password } = req.body;
@@ -183,7 +152,7 @@ app.post('/api/signin', async (req, res) => {
return res.status(400).json({ error: 'Both username and password are required' });
}
- // JOIN user_profile to fetch is_premium, email, or whatever columns you need
+ // Updated query includes career_priorities and career_list
const query = `
SELECT
user_auth.user_id,
@@ -194,7 +163,9 @@ app.post('/api/signin', async (req, res) => {
user_profile.career_situation,
user_profile.email,
user_profile.firstname,
- user_profile.lastname
+ user_profile.lastname,
+ user_profile.career_priorities, -- new field
+ user_profile.career_list -- new field
FROM user_auth
LEFT JOIN user_profile ON user_auth.user_id = user_profile.user_id
WHERE user_auth.username = ?
@@ -217,20 +188,16 @@ app.post('/api/signin', async (req, res) => {
return res.status(401).json({ error: 'Invalid username or password' });
}
- // user_id from the row
- const { user_id } = row;
-
// Generate JWT
- const token = jwt.sign({ userId: user_id }, SECRET_KEY, { expiresIn: '2h' });
+ const token = jwt.sign({ userId: row.user_id }, SECRET_KEY, { expiresIn: '2h' });
- // Return user object including is_premium and other columns
- // The front end can store this in state (e.g. setUser).
+ // Return fully updated user object
res.status(200).json({
message: 'Login successful',
token,
- userId: user_id,
+ userId: row.user_id,
user: {
- user_id,
+ user_id: row.user_id,
firstname: row.firstname,
lastname: row.lastname,
email: row.email,
@@ -238,11 +205,14 @@ app.post('/api/signin', async (req, res) => {
is_premium: row.is_premium,
is_pro_premium: row.is_pro_premium,
career_situation: row.career_situation,
+ career_priorities: row.career_priorities, // newly added
+ career_list: row.career_list, // newly added
}
});
});
});
+
/// Check if username already exists
app.get('/api/check-username/:username', (req, res) => {
const { username } = req.params;
@@ -263,6 +233,129 @@ app.get('/api/check-username/:username', (req, res) => {
});
});
+// Upsert user profile with career_priorities and career_list
+app.post('/api/user-profile', (req, res) => {
+ const token = req.headers.authorization?.split(' ')[1];
+ if (!token) {
+ return res.status(401).json({ error: 'Authorization token is required' });
+ }
+
+ let userId;
+ try {
+ const decoded = jwt.verify(token, SECRET_KEY);
+ userId = decoded.userId;
+ } catch (error) {
+ console.error('JWT verification failed:', error);
+ return res.status(401).json({ error: 'Invalid or expired token' });
+ }
+
+ const {
+ firstName,
+ lastName,
+ email,
+ zipCode,
+ state,
+ area,
+ careerSituation,
+ interest_inventory_answers,
+ career_priorities,
+ career_list,
+ } = req.body;
+
+ if (!firstName || !lastName || !email || !zipCode || !state || !area) {
+ return res.status(400).json({ error: 'All fields are required (except interest_inventory_answers, career_priorities, career_list)' });
+ }
+
+ // Check for existing user profile
+ const checkQuery = `SELECT * FROM user_profile WHERE user_id = ?;`;
+ db.get(checkQuery, [userId], (err, existingRow) => {
+ if (err) {
+ console.error('Error checking profile:', err.message);
+ return res.status(500).json({ error: 'Database error' });
+ }
+
+ // Preserve existing data if not provided
+ const finalAnswers = interest_inventory_answers === undefined
+ ? existingRow?.interest_inventory_answers || null
+ : interest_inventory_answers;
+
+ const finalCareerPriorities = career_priorities === undefined
+ ? existingRow?.career_priorities || null
+ : career_priorities;
+
+ const finalCareerList = career_list === undefined
+ ? existingRow?.career_list || null
+ : career_list;
+
+ if (existingRow) {
+ // Update existing profile
+ const updateQuery = `
+ UPDATE user_profile
+ SET firstname = ?,
+ lastname = ?,
+ email = ?,
+ zipcode = ?,
+ state = ?,
+ area = ?,
+ career_situation = ?,
+ interest_inventory_answers = ?,
+ career_priorities = ?,
+ career_list = ?
+ WHERE user_id = ?
+ `;
+ const params = [
+ firstName,
+ lastName,
+ email,
+ zipCode,
+ state,
+ area,
+ careerSituation || existingRow.career_situation,
+ finalAnswers,
+ finalCareerPriorities,
+ finalCareerList,
+ userId,
+ ];
+ db.run(updateQuery, params, function (err) {
+ if (err) {
+ console.error('Error updating profile:', err.message);
+ return res.status(500).json({ error: 'Failed to update user profile' });
+ }
+ return res.status(200).json({ message: 'User profile updated successfully' });
+ });
+ } else {
+ // Insert new profile
+ const insertQuery = `
+ INSERT INTO user_profile
+ (firstname, lastname, email, zipcode, state, area, career_situation, interest_inventory_answers, career_priorities, career_list, user_id)
+ VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
+ `;
+ const params = [
+ firstName,
+ lastName,
+ email,
+ zipCode,
+ state,
+ area,
+ careerSituation || null,
+ finalAnswers,
+ finalCareerPriorities,
+ finalCareerList,
+ userId,
+ ];
+ db.run(insertQuery, params, function (err) {
+ if (err) {
+ console.error('Error inserting profile:', err.message);
+ return res.status(500).json({ error: 'Failed to create user profile' });
+ }
+ return res
+ .status(201)
+ .json({ message: 'User profile created successfully', id: this.lastID });
+ });
+ }
+ });
+});
+
// Route to fetch user profile
diff --git a/final_master_career_list.json b/final_master_career_list.json
new file mode 100644
index 0000000..203fbc4
--- /dev/null
+++ b/final_master_career_list.json
@@ -0,0 +1,17379 @@
+[
+ {
+ "soc_code": "11-1011",
+ "title": "Chief Executives",
+ "cip_codes": [
+ 44.0401,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.0701,
+ 52.0704,
+ 52.0801,
+ 52.1101,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-1021",
+ "title": "General and Operations Managers",
+ "cip_codes": [
+ 1.8202,
+ 31.0301,
+ 31.0399,
+ 44.0401,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.0212,
+ 52.0215,
+ 52.0701,
+ 52.0704,
+ 52.0801,
+ 52.081,
+ 52.1101,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-1031",
+ "title": "Legislators",
+ "cip_codes": [
+ 44.0401,
+ 44.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-2011",
+ "title": "Advertising and Promotions Managers",
+ "cip_codes": [
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 52.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-2021",
+ "title": "Marketing Managers",
+ "cip_codes": [
+ 19.0203,
+ 19.0905,
+ 51.2011,
+ 52.1401,
+ 52.1402,
+ 52.1403,
+ 52.1404,
+ 52.1499,
+ 52.191
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-2022",
+ "title": "Sales Managers",
+ "cip_codes": [
+ 19.0203,
+ 51.2011,
+ 52.0101,
+ 52.0201,
+ 52.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-2032",
+ "title": "Public Relations Managers",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.09,
+ 9.0902,
+ 9.0904,
+ 9.0907,
+ 9.0909,
+ 52.0501,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-2033",
+ "title": "Fundraising Managers",
+ "cip_codes": [
+ 9.01,
+ 9.09,
+ 9.0902,
+ 9.0909,
+ 52.0206,
+ 52.0213,
+ 52.0502,
+ 52.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3012",
+ "title": "Administrative Services Managers",
+ "cip_codes": [
+ 1.8202,
+ 51.0711,
+ 52.0101,
+ 52.0201,
+ 52.0202,
+ 52.0204,
+ 52.0207
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3013",
+ "title": "Facilities Managers",
+ "cip_codes": [
+ 15.1501,
+ 19.0604,
+ 30.1201,
+ 30.1299,
+ 31.0301,
+ 46.0401,
+ 46.0412,
+ 51.0702,
+ 52.0101,
+ 52.0201,
+ 52.0202,
+ 52.0205,
+ 52.0904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3021",
+ "title": "Computer and Information Systems Managers",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0401,
+ 11.0701,
+ 11.0802,
+ 11.0901,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1005,
+ 30.0801,
+ 30.1601,
+ 30.3101,
+ 30.3901,
+ 30.7001,
+ 52.0205,
+ 52.1201,
+ 52.1206,
+ 52.1207,
+ 52.1299,
+ 52.2101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3031",
+ "title": "Financial Managers",
+ "cip_codes": [
+ 30.1601,
+ 30.7104,
+ 52.0215,
+ 52.0304,
+ 52.0305,
+ 52.0801,
+ 52.0806,
+ 52.0808,
+ 52.0809,
+ 52.081,
+ 52.0899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3051",
+ "title": "Industrial Production Managers",
+ "cip_codes": [
+ 14.3501,
+ 15.1501,
+ 51.2006,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3061",
+ "title": "Purchasing Managers",
+ "cip_codes": [
+ 52.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3071",
+ "title": "Transportation, Storage, and Distribution Managers",
+ "cip_codes": [
+ 44.0401,
+ 44.0403,
+ 49.0101,
+ 49.0104,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0209
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3111",
+ "title": "Compensation and Benefits Managers",
+ "cip_codes": [
+ 52.0201,
+ 52.1001,
+ 52.1002,
+ 52.1003,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3121",
+ "title": "Human Resources Managers",
+ "cip_codes": [
+ 9.0901,
+ 42.2804,
+ 52.0201,
+ 52.0213,
+ 52.1001,
+ 52.1002,
+ 52.1003,
+ 52.1004,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-3131",
+ "title": "Training and Development Managers",
+ "cip_codes": [
+ 9.0901,
+ 13.0403,
+ 13.0607,
+ 42.2804,
+ 52.0201,
+ 52.0213,
+ 52.1001,
+ 52.1003,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9013",
+ "title": "Farmers, Ranchers, and Other Agricultural Managers",
+ "cip_codes": [
+ 1.0101,
+ 1.0102,
+ 1.0104,
+ 1.0199,
+ 1.0301,
+ 1.0302,
+ 1.0303,
+ 1.0304,
+ 1.0306,
+ 1.0307,
+ 1.0308,
+ 1.031,
+ 1.0399,
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0606,
+ 1.0609,
+ 1.061,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1004,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1105,
+ 1.1106,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9021",
+ "title": "Construction Managers",
+ "cip_codes": [
+ 15.1001,
+ 44.0402,
+ 52.0101,
+ 52.0201,
+ 52.0205,
+ 52.2001,
+ 52.2002,
+ 52.2099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9031",
+ "title": "Education and Childcare Administrators, Preschool and Daycare",
+ "cip_codes": [
+ 13.0401,
+ 13.0404,
+ 13.0411,
+ 13.0412,
+ 13.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9032",
+ "title": "Education Administrators, Kindergarten through Secondary",
+ "cip_codes": [
+ 13.0401,
+ 13.0404,
+ 13.0408,
+ 13.0409,
+ 13.0411,
+ 13.0412,
+ 13.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9033",
+ "title": "Education Administrators, Postsecondary",
+ "cip_codes": [
+ 13.0401,
+ 13.0404,
+ 13.0406,
+ 13.0407,
+ 13.0412,
+ 51.0719,
+ 51.3202,
+ 51.3203,
+ 52.0214,
+ 61.0207,
+ 61.0211
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9039",
+ "title": "Education Administrators, All Other",
+ "cip_codes": [
+ 13.0401,
+ 13.0402,
+ 13.0403,
+ 13.0404,
+ 13.0406,
+ 13.041,
+ 13.0411,
+ 13.0412,
+ 13.0413,
+ 13.0499,
+ 52.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9041",
+ "title": "Architectural and Engineering Managers",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0301,
+ 4.0401,
+ 4.0402,
+ 4.0501,
+ 4.0601,
+ 4.0902,
+ 14.0101,
+ 14.0201,
+ 14.0202,
+ 14.0299,
+ 14.0301,
+ 14.0401,
+ 14.0501,
+ 14.0601,
+ 14.0701,
+ 14.0702,
+ 14.0799,
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.0901,
+ 14.0902,
+ 14.0903,
+ 14.0999,
+ 14.1001,
+ 14.1003,
+ 14.1004,
+ 14.1099,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.1401,
+ 14.1801,
+ 14.1901,
+ 14.2001,
+ 14.2101,
+ 14.2201,
+ 14.2301,
+ 14.2401,
+ 14.2501,
+ 14.2701,
+ 14.2801,
+ 14.3201,
+ 14.3301,
+ 14.3401,
+ 14.3501,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1501,
+ 15.1502,
+ 15.1503,
+ 40.1001,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9051",
+ "title": "Food Service Managers",
+ "cip_codes": [
+ 12.0504,
+ 12.0509,
+ 12.051,
+ 19.0505,
+ 52.0901,
+ 52.0904,
+ 52.0905,
+ 52.0909,
+ 52.091,
+ 52.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9071",
+ "title": "Gambling Managers",
+ "cip_codes": [
+ 52.0908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9072",
+ "title": "Entertainment and Recreation Managers, Except Gambling",
+ "cip_codes": [
+ 3.0207,
+ 31.0301,
+ 31.0302,
+ 31.0399,
+ 31.0504,
+ 52.0101,
+ 52.0201,
+ 52.0901,
+ 52.0906
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9081",
+ "title": "Lodging Managers",
+ "cip_codes": [
+ 52.0901,
+ 52.0904,
+ 52.0905,
+ 52.0906,
+ 52.0909,
+ 52.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9111",
+ "title": "Medical and Health Services Managers",
+ "cip_codes": [
+ 1.8201,
+ 1.8202,
+ 26.0509,
+ 44.0503,
+ 51.0701,
+ 51.0702,
+ 51.0704,
+ 51.0706,
+ 51.0718,
+ 51.0719,
+ 51.072,
+ 51.0721,
+ 51.0722,
+ 51.2001,
+ 51.2002,
+ 51.2007,
+ 51.2008,
+ 51.2011,
+ 51.2201,
+ 51.2208,
+ 51.221,
+ 51.2211,
+ 51.2213,
+ 51.2214,
+ 51.2299,
+ 51.3206,
+ 51.3299,
+ 51.3802,
+ 51.3818,
+ 51.382,
+ 52.0206,
+ 52.021,
+ 52.0214,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9121",
+ "title": "Natural Sciences Managers",
+ "cip_codes": [
+ 14.1201,
+ 14.3701,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0406,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0507,
+ 26.0508,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0799,
+ 26.0802,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0912,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1401,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 27.9999,
+ 30.0101,
+ 30.0801,
+ 30.1001,
+ 30.1501,
+ 30.1801,
+ 30.1901,
+ 30.2501,
+ 30.2599,
+ 30.2701,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 30.4901,
+ 30.5001,
+ 30.7001,
+ 30.7099,
+ 38.0102,
+ 40.0101,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1002,
+ 40.1099,
+ 40.1101,
+ 40.9999,
+ 51.1401,
+ 51.2006,
+ 52.021,
+ 52.0214,
+ 52.0216,
+ 54.0104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9131",
+ "title": "Postmasters and Mail Superintendents",
+ "cip_codes": [
+ 44.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9141",
+ "title": "Property, Real Estate, and Community Association Managers",
+ "cip_codes": [
+ 4.1001,
+ 52.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9151",
+ "title": "Social and Community Service Managers",
+ "cip_codes": [
+ 30.1701,
+ 30.5301,
+ 44.0,
+ 44.0201,
+ 44.0401,
+ 44.0701,
+ 44.0702,
+ 44.0703,
+ 44.0799,
+ 52.0101,
+ 52.0201,
+ 52.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9161",
+ "title": "Emergency Management Directors",
+ "cip_codes": [
+ 43.0119,
+ 43.012,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 61.0603
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9171",
+ "title": "Funeral Home Managers",
+ "cip_codes": [
+ 12.0301,
+ 12.0302,
+ 12.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9179",
+ "title": "Personal Service Managers, All Other",
+ "cip_codes": [
+ 12.0412,
+ 52.0101,
+ 52.0201,
+ 52.0212,
+ 52.0703,
+ 52.0901,
+ 52.0903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "11-9199",
+ "title": "Managers, All Other",
+ "cip_codes": [
+ 9.0702,
+ 11.1005,
+ 25.0101,
+ 25.0103,
+ 30.0601,
+ 30.1202,
+ 30.3901,
+ 30.4001,
+ 30.4201,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 39.0801,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2899,
+ 42.9999,
+ 43.01,
+ 43.0103,
+ 43.0115,
+ 43.0202,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0404,
+ 44.0401,
+ 44.0402,
+ 44.0499,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1501,
+ 45.9999,
+ 50.1001,
+ 50.1002,
+ 50.1004,
+ 50.1099,
+ 51.0719,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0213,
+ 52.0214,
+ 52.0216,
+ 52.0701,
+ 52.0702,
+ 52.0703,
+ 52.0704,
+ 52.0903,
+ 52.0999,
+ 52.2101,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1011",
+ "title": "Agents and Business Managers of Artists, Performers, and Athletes",
+ "cip_codes": [
+ 9.0906,
+ 50.1001,
+ 50.1002,
+ 50.1099,
+ 52.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1021",
+ "title": "Buyers and Purchasing Agents, Farm Products",
+ "cip_codes": [
+ 1.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1022",
+ "title": "Wholesale and Retail Buyers, Except Farm Products",
+ "cip_codes": [
+ 12.051,
+ 19.0905,
+ 52.1801,
+ 52.1802,
+ 52.1899,
+ 52.1902,
+ 52.1904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1023",
+ "title": "Purchasing Agents, Except Wholesale, Retail, and Farm Products",
+ "cip_codes": [
+ 52.0202,
+ 52.1801,
+ 52.1899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1031",
+ "title": "Claims Adjusters, Examiners, and Investigators",
+ "cip_codes": [
+ 51.0715,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1032",
+ "title": "Insurance Appraisers, Auto Damage",
+ "cip_codes": [
+ 47.0603,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1041",
+ "title": "Compliance Officers",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 3.0208,
+ 3.0209,
+ 30.4101,
+ 43.0121,
+ 51.0717,
+ 51.072,
+ 51.2213,
+ 52.1001,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1051",
+ "title": "Cost Estimators",
+ "cip_codes": [
+ 14.1801,
+ 14.1901,
+ 14.3301,
+ 14.3601,
+ 15.1001,
+ 52.0101,
+ 52.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1071",
+ "title": "Human Resources Specialists",
+ "cip_codes": [
+ 42.2804,
+ 52.0201,
+ 52.1001,
+ 52.1003,
+ 52.1006,
+ 52.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1074",
+ "title": "Farm Labor Contractors",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1075",
+ "title": "Labor Relations Specialists",
+ "cip_codes": [
+ 30.2801,
+ 52.1001,
+ 52.1002,
+ 52.1004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1081",
+ "title": "Logisticians",
+ "cip_codes": [
+ 52.0201,
+ 52.0203,
+ 52.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1082",
+ "title": "Project Management Specialists",
+ "cip_codes": [
+ 11.1005,
+ 52.0101,
+ 52.0201,
+ 52.0211,
+ 52.0216,
+ 52.2002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1111",
+ "title": "Management Analysts",
+ "cip_codes": [
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0608,
+ 13.0699,
+ 27.0601,
+ 30.7101,
+ 30.7102,
+ 30.7103,
+ 30.7104,
+ 30.7199,
+ 42.2804,
+ 52.0101,
+ 52.0201,
+ 52.0213,
+ 52.0601,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1121",
+ "title": "Meeting, Convention, and Event Planners",
+ "cip_codes": [
+ 19.0604,
+ 52.0907
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1131",
+ "title": "Fundraisers",
+ "cip_codes": [
+ 9.01,
+ 9.09,
+ 9.0902,
+ 9.0904,
+ 52.0214,
+ 52.0502,
+ 52.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1141",
+ "title": "Compensation, Benefits, and Job Analysis Specialists",
+ "cip_codes": [
+ 52.0201,
+ 52.0801,
+ 52.1001,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1151",
+ "title": "Training and Development Specialists",
+ "cip_codes": [
+ 9.0901,
+ 13.0501,
+ 13.1201,
+ 42.2804,
+ 52.1001,
+ 52.1005,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1161",
+ "title": "Market Research Analysts and Marketing Specialists",
+ "cip_codes": [
+ 19.0203,
+ 19.0905,
+ 30.7102,
+ 45.0602,
+ 52.1401,
+ 52.1402,
+ 52.1403,
+ 52.1404,
+ 52.1499,
+ 52.1904,
+ 52.1905,
+ 52.1906,
+ 52.1907,
+ 52.1908,
+ 52.1909,
+ 52.191
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-1199",
+ "title": "Business Operations Specialists, All Other",
+ "cip_codes": [
+ 52.0201,
+ 52.0208,
+ 52.0499,
+ 52.0904,
+ 52.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2011",
+ "title": "Accountants and Auditors",
+ "cip_codes": [
+ 30.1601,
+ 43.0405,
+ 52.0301,
+ 52.0303,
+ 52.0304,
+ 52.0305,
+ 52.1601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2022",
+ "title": "Appraisers of Personal and Business Property",
+ "cip_codes": [
+ 50.0703,
+ 52.0101,
+ 52.0301,
+ 52.0304,
+ 52.0305,
+ 52.0801,
+ 52.1501,
+ 52.1601,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2023",
+ "title": "Appraisers and Assessors of Real Estate",
+ "cip_codes": [
+ 4.1001,
+ 52.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2031",
+ "title": "Budget Analysts",
+ "cip_codes": [
+ 52.0301,
+ 52.0304,
+ 52.0801,
+ 52.0808
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2041",
+ "title": "Credit Analysts",
+ "cip_codes": [
+ 52.0301,
+ 52.0801,
+ 52.0809,
+ 52.081
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2051",
+ "title": "Financial and Investment Analysts",
+ "cip_codes": [
+ 27.0305,
+ 30.7104,
+ 52.0304,
+ 52.0305,
+ 52.0801,
+ 52.0806,
+ 52.0807,
+ 52.0808,
+ 52.081
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2052",
+ "title": "Personal Financial Advisors",
+ "cip_codes": [
+ 19.0401,
+ 52.0801,
+ 52.0804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2053",
+ "title": "Insurance Underwriters",
+ "cip_codes": [
+ 52.0215,
+ 52.081,
+ 52.1304,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2054",
+ "title": "Financial Risk Specialists",
+ "cip_codes": [
+ 27.0305,
+ 52.0215,
+ 52.0301,
+ 52.0304,
+ 52.0305,
+ 52.0601,
+ 52.0801,
+ 52.0806,
+ 52.0807,
+ 52.0808,
+ 52.081,
+ 52.1304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2061",
+ "title": "Financial Examiners",
+ "cip_codes": [
+ 43.0121,
+ 43.0405,
+ 52.0301,
+ 52.0303,
+ 52.1601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2071",
+ "title": "Credit Counselors",
+ "cip_codes": [
+ 52.0803,
+ 52.0804,
+ 52.0809
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2072",
+ "title": "Loan Officers",
+ "cip_codes": [
+ 52.0801,
+ 52.0809
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2081",
+ "title": "Tax Examiners and Collectors, and Revenue Agents",
+ "cip_codes": [
+ 52.0301,
+ 52.1601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2082",
+ "title": "Tax Preparers",
+ "cip_codes": [
+ 52.0301,
+ 52.0302,
+ 52.1601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "13-2099",
+ "title": "Financial Specialists, All Other",
+ "cip_codes": [
+ 27.0305,
+ 39.0801,
+ 52.0206,
+ 52.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1211",
+ "title": "Computer Systems Analysts",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0501,
+ 11.0901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1212",
+ "title": "Information Security Analysts",
+ "cip_codes": [
+ 11.0103,
+ 11.0701,
+ 11.0901,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1005,
+ 43.0403,
+ 51.0723
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1221",
+ "title": "Computer and Information Research Scientists",
+ "cip_codes": [
+ 11.0101,
+ 11.0102,
+ 11.0103,
+ 11.0104,
+ 11.0199,
+ 11.0401,
+ 11.0701,
+ 11.0804,
+ 11.0902,
+ 26.1103,
+ 30.3101,
+ 30.7001,
+ 30.7099,
+ 40.0512,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1231",
+ "title": "Computer Network Support Specialists",
+ "cip_codes": [
+ 11.0201,
+ 11.0501,
+ 11.0701,
+ 11.0901,
+ 11.0902,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1232",
+ "title": "Computer User Support Specialists",
+ "cip_codes": [
+ 1.0106,
+ 11.1006,
+ 51.0709
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1241",
+ "title": "Computer Network Architects",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0501,
+ 11.0901,
+ 11.0902,
+ 11.1001,
+ 11.1003,
+ 14.0901,
+ 14.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1242",
+ "title": "Database Administrators",
+ "cip_codes": [
+ 11.0101,
+ 11.0802,
+ 11.1003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1243",
+ "title": "Database Architects",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0802,
+ 11.0902,
+ 11.1003,
+ 14.0901,
+ 14.0903,
+ 14.2701,
+ 30.7001,
+ 30.7099,
+ 52.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1244",
+ "title": "Network and Computer Systems Administrators",
+ "cip_codes": [
+ 11.0101,
+ 11.1001,
+ 11.1003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1251",
+ "title": "Computer Programmers",
+ "cip_codes": [
+ 11.0201,
+ 11.0202,
+ 11.0203,
+ 11.0204,
+ 11.0205,
+ 11.0299,
+ 11.0701,
+ 11.0803,
+ 11.0804,
+ 11.0902,
+ 15.1204,
+ 30.3001,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 51.0709,
+ 52.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1252",
+ "title": "Software Developers",
+ "cip_codes": [
+ 11.0102,
+ 11.0103,
+ 11.0104,
+ 11.0201,
+ 11.0202,
+ 11.0203,
+ 11.0204,
+ 11.0205,
+ 11.0401,
+ 11.0701,
+ 11.0804,
+ 11.0902,
+ 14.0901,
+ 14.0903,
+ 15.1204,
+ 30.0801,
+ 30.1601,
+ 30.3901,
+ 30.4801,
+ 30.7001
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1253",
+ "title": "Software Quality Assurance Analysts and Testers",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0104,
+ 11.0201,
+ 11.0202,
+ 11.0203,
+ 11.0204,
+ 11.0205,
+ 11.0501,
+ 11.0701,
+ 14.0901,
+ 14.0903,
+ 15.1201,
+ 15.1202,
+ 15.1204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1254",
+ "title": "Web Developers",
+ "cip_codes": [
+ 11.0201,
+ 11.0701,
+ 11.0801,
+ 11.1004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1255",
+ "title": "Web and Digital Interface Designers",
+ "cip_codes": [
+ 9.0702,
+ 11.0101,
+ 11.0104,
+ 11.0105,
+ 11.0201,
+ 11.0401,
+ 11.0701,
+ 11.0801,
+ 11.1004,
+ 30.3101,
+ 50.0401,
+ 50.0409,
+ 52.1404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-1299",
+ "title": "Computer Occupations, All Other",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-2011",
+ "title": "Actuaries",
+ "cip_codes": [
+ 27.0301,
+ 27.0304,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 52.0215,
+ 52.1304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-2021",
+ "title": "Mathematicians",
+ "cip_codes": [
+ 26.1199,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0502,
+ 27.0503,
+ 27.9999,
+ 30.0801,
+ 30.4901,
+ 30.5001,
+ 38.0102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-2031",
+ "title": "Operations Research Analysts",
+ "cip_codes": [
+ 14.3701,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-2041",
+ "title": "Statisticians",
+ "cip_codes": [
+ 13.0603,
+ 13.0604,
+ 13.0608,
+ 13.0699,
+ 26.1101,
+ 26.1102,
+ 26.1311,
+ 27.0101,
+ 27.0301,
+ 27.0304,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 30.4901,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7102,
+ 30.7199,
+ 42.2708,
+ 45.0102,
+ 45.0103,
+ 45.0603,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-2051",
+ "title": "Data Scientists",
+ "cip_codes": [
+ 11.0102,
+ 11.0103,
+ 11.0701,
+ 11.0802,
+ 11.0804,
+ 26.1103,
+ 26.1104,
+ 26.1199,
+ 27.0101,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0601,
+ 27.9999,
+ 30.0801,
+ 30.3001,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7102,
+ 30.7103,
+ 30.7104,
+ 30.7199,
+ 40.0512,
+ 45.0603,
+ 52.1301,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "15-2099",
+ "title": "Mathematical Science Occupations, All Other",
+ "cip_codes": [
+ 26.1104,
+ 26.1199,
+ 27.0101,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.9999,
+ 30.0801,
+ 30.3001,
+ 30.4901,
+ 30.5001
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-1011",
+ "title": "Architects, Except Landscape and Naval",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0401,
+ 4.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-1012",
+ "title": "Landscape Architects",
+ "cip_codes": [
+ 4.0401,
+ 4.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-1021",
+ "title": "Cartographers and Photogrammetrists",
+ "cip_codes": [
+ 14.3801,
+ 15.1102,
+ 29.0203,
+ 43.0407,
+ 45.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-1022",
+ "title": "Surveyors",
+ "cip_codes": [
+ 14.3801,
+ 15.1102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2011",
+ "title": "Aerospace Engineers",
+ "cip_codes": [
+ 14.0201,
+ 14.0202,
+ 14.0299,
+ 14.1001,
+ 14.1901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2021",
+ "title": "Agricultural Engineers",
+ "cip_codes": [
+ 14.0301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2031",
+ "title": "Bioengineers and Biomedical Engineers",
+ "cip_codes": [
+ 14.0501,
+ 14.0702,
+ 14.4501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2041",
+ "title": "Chemical Engineers",
+ "cip_codes": [
+ 14.0601,
+ 14.0701,
+ 14.0702,
+ 14.0799,
+ 14.3201,
+ 14.4001,
+ 14.4301,
+ 14.4401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2051",
+ "title": "Civil Engineers",
+ "cip_codes": [
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.3301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2061",
+ "title": "Computer Hardware Engineers",
+ "cip_codes": [
+ 14.0901,
+ 14.0902,
+ 14.1001,
+ 14.4701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2071",
+ "title": "Electrical Engineers",
+ "cip_codes": [
+ 14.1001,
+ 14.1099,
+ 14.4101,
+ 14.4701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2072",
+ "title": "Electronics Engineers, Except Computer",
+ "cip_codes": [
+ 14.1001,
+ 14.1004,
+ 14.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2081",
+ "title": "Environmental Engineers",
+ "cip_codes": [
+ 14.0802,
+ 14.0805,
+ 14.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2111",
+ "title": "Health and Safety Engineers, Except Mining Safety Engineers and Inspectors",
+ "cip_codes": [
+ 14.1401,
+ 14.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2112",
+ "title": "Industrial Engineers",
+ "cip_codes": [
+ 14.2701,
+ 14.3501,
+ 14.3601,
+ 15.1501,
+ 15.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2121",
+ "title": "Marine Engineers and Naval Architects",
+ "cip_codes": [
+ 14.2201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2131",
+ "title": "Materials Engineers",
+ "cip_codes": [
+ 14.0601,
+ 14.1801,
+ 14.2001,
+ 14.2801,
+ 14.3201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2141",
+ "title": "Mechanical Engineers",
+ "cip_codes": [
+ 14.1101,
+ 14.1901,
+ 14.4101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2151",
+ "title": "Mining and Geological Engineers, Including Mining Safety Engineers",
+ "cip_codes": [
+ 14.0802,
+ 14.2101,
+ 14.3901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2161",
+ "title": "Nuclear Engineers",
+ "cip_codes": [
+ 14.2301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2171",
+ "title": "Petroleum Engineers",
+ "cip_codes": [
+ 14.0802,
+ 14.2501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-2199",
+ "title": "Engineers, All Other",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3011",
+ "title": "Architectural and Civil Drafters",
+ "cip_codes": [
+ 4.0901,
+ 4.0902,
+ 4.0999,
+ 15.0101,
+ 15.1301,
+ 15.1302,
+ 15.1303,
+ 15.1304,
+ 15.1307
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3012",
+ "title": "Electrical and Electronics Drafters",
+ "cip_codes": [
+ 15.0303,
+ 15.0306,
+ 15.0403,
+ 15.1301,
+ 15.1302,
+ 15.1305,
+ 15.1307
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3013",
+ "title": "Mechanical Drafters",
+ "cip_codes": [
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.1301,
+ 15.1302,
+ 15.1306,
+ 15.1307
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3019",
+ "title": "Drafters, All Other",
+ "cip_codes": [
+ 15.1102,
+ 15.1301,
+ 15.1302,
+ 15.1307,
+ 15.1399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3021",
+ "title": "Aerospace Engineering and Operations Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15.0,
+ 15.0303,
+ 15.0801,
+ 29.0401,
+ 29.0402,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3022",
+ "title": "Civil Engineering Technologists and Technicians",
+ "cip_codes": [
+ 15.0,
+ 15.0101,
+ 15.0201,
+ 15.1001,
+ 46.0415
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3023",
+ "title": "Electrical and Electronic Engineering Technologists and Technicians",
+ "cip_codes": [
+ 15.0,
+ 15.0303,
+ 15.0305,
+ 15.0306,
+ 15.0399,
+ 15.0406,
+ 15.0616,
+ 15.1201,
+ 15.1202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3024",
+ "title": "Electro-Mechanical and Mechatronics Technologists and Technicians",
+ "cip_codes": [
+ 15.0,
+ 15.0001,
+ 15.0303,
+ 15.0403,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0805
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3025",
+ "title": "Environmental Engineering Technologists and Technicians",
+ "cip_codes": [
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0704,
+ 26.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3026",
+ "title": "Industrial Engineering Technologists and Technicians",
+ "cip_codes": [
+ 15.0001,
+ 15.0612,
+ 15.0613,
+ 15.0699,
+ 15.0703,
+ 15.0705,
+ 15.1501,
+ 15.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3027",
+ "title": "Mechanical Engineering Technologists and Technicians",
+ "cip_codes": [
+ 15.0803,
+ 15.0805,
+ 15.0899,
+ 15.1103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3028",
+ "title": "Calibration Technologists and Technicians",
+ "cip_codes": [
+ 15.0303,
+ 15.0401,
+ 15.0404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3029",
+ "title": "Engineering Technologists and Technicians, Except Drafters, All Other",
+ "cip_codes": [
+ 15.0001,
+ 15.0101,
+ 15.0304,
+ 15.0307,
+ 15.0401,
+ 15.0501,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0614,
+ 15.0615,
+ 15.0617,
+ 15.0806,
+ 15.0807,
+ 15.0901,
+ 15.1103,
+ 15.1201,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0409
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "17-3031",
+ "title": "Surveying and Mapping Technicians",
+ "cip_codes": [
+ 15.1102,
+ 45.0701,
+ 45.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1011",
+ "title": "Animal Scientists",
+ "cip_codes": [
+ 1.0,
+ 1.031,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0907,
+ 1.0999,
+ 1.1106,
+ 1.8103,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1012",
+ "title": "Food Scientists and Technologists",
+ "cip_codes": [
+ 1.0,
+ 1.0701,
+ 1.1001,
+ 1.1002,
+ 1.1003,
+ 1.1004,
+ 1.1005,
+ 1.1099,
+ 12.0509
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1013",
+ "title": "Soil and Plant Scientists",
+ "cip_codes": [
+ 1.0,
+ 1.0308,
+ 1.1004,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1104,
+ 1.1105,
+ 1.1106,
+ 1.1199,
+ 1.1201,
+ 1.1202,
+ 1.1203,
+ 1.1299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1021",
+ "title": "Biochemists and Biophysicists",
+ "cip_codes": [
+ 26.0202,
+ 26.0203,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.021,
+ 26.0499,
+ 26.0913,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1022",
+ "title": "Microbiologists",
+ "cip_codes": [
+ 1.1203,
+ 26.0207,
+ 26.0499,
+ 26.0502,
+ 26.0504,
+ 26.0505,
+ 26.0507,
+ 26.0508,
+ 26.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1023",
+ "title": "Zoologists and Wildlife Biologists",
+ "cip_codes": [
+ 3.0601,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.1305,
+ 30.3201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1029",
+ "title": "Biological Scientists, All Other",
+ "cip_codes": [
+ 26.0101,
+ 26.0204,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0508,
+ 26.0509,
+ 26.0702,
+ 26.0707,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 42.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1031",
+ "title": "Conservation Scientists",
+ "cip_codes": [
+ 1.0308,
+ 1.1106,
+ 3.0101,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0501,
+ 3.0502,
+ 3.0506,
+ 3.0601,
+ 26.1301,
+ 26.1305,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.4401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1032",
+ "title": "Foresters",
+ "cip_codes": [
+ 3.0101,
+ 3.0201,
+ 3.0501,
+ 3.0502,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1041",
+ "title": "Epidemiologists",
+ "cip_codes": [
+ 26.0401,
+ 26.0509,
+ 26.1309,
+ 26.1311,
+ 51.1401,
+ 51.2202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1042",
+ "title": "Medical Scientists, Except Epidemiologists",
+ "cip_codes": [
+ 26.0102,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0507,
+ 26.0508,
+ 26.0509,
+ 26.0806,
+ 26.0901,
+ 26.0902,
+ 26.0903,
+ 26.0904,
+ 26.0905,
+ 26.0907,
+ 26.0908,
+ 26.0909,
+ 26.091,
+ 26.0911,
+ 26.0912,
+ 26.0913,
+ 26.0999,
+ 26.1001,
+ 26.1002,
+ 26.1003,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 26.1007,
+ 26.1099,
+ 26.1102,
+ 26.1309,
+ 26.1401,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 30.1001,
+ 30.1101,
+ 42.2709,
+ 45.0205,
+ 51.1401,
+ 51.1402,
+ 51.1405,
+ 51.1499,
+ 51.2003,
+ 51.2004,
+ 51.2005,
+ 51.201,
+ 51.2202,
+ 61.0101,
+ 61.0102,
+ 61.0103,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0109,
+ 61.011,
+ 61.0111,
+ 61.0112,
+ 61.0113,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0122,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0202,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0214,
+ 61.0215,
+ 61.0216,
+ 61.0217,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0499,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0799,
+ 61.0804,
+ 61.0805,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0811,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1099,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1299,
+ 61.1302,
+ 61.1303,
+ 61.1304,
+ 61.1399,
+ 61.1499,
+ 61.1502,
+ 61.1503,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1699,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2103,
+ 61.2199,
+ 61.2299,
+ 61.2399,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2599,
+ 61.2603,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2612,
+ 61.2699,
+ 61.2703,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-1099",
+ "title": "Life Scientists, All Other",
+ "cip_codes": [
+ 26.0101,
+ 26.1301,
+ 26.1399,
+ 26.9999,
+ 30.1701,
+ 30.1801,
+ 30.1901,
+ 30.4301,
+ 42.2706,
+ 51.2314
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2011",
+ "title": "Astronomers",
+ "cip_codes": [
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2012",
+ "title": "Physicists",
+ "cip_codes": [
+ 14.1201,
+ 40.0202,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1101,
+ 51.2205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2021",
+ "title": "Atmospheric and Space Scientists",
+ "cip_codes": [
+ 30.3501,
+ 30.5001,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2031",
+ "title": "Chemists",
+ "cip_codes": [
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.1002,
+ 51.2004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2032",
+ "title": "Materials Scientists",
+ "cip_codes": [
+ 19.0904,
+ 40.1001,
+ 40.1002,
+ 40.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2041",
+ "title": "Environmental Scientists and Specialists, Including Health",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 30.3201,
+ 30.3301,
+ 30.4101,
+ 30.4401,
+ 40.0509,
+ 51.2202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2042",
+ "title": "Geoscientists, Except Hydrologists and Geographers",
+ "cip_codes": [
+ 30.3201,
+ 30.3801,
+ 30.4101,
+ 30.4201,
+ 30.4301,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0606,
+ 40.0607,
+ 40.0699
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2043",
+ "title": "Hydrologists",
+ "cip_codes": [
+ 30.3801,
+ 30.4101,
+ 40.0601,
+ 40.0605,
+ 40.0607
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-2099",
+ "title": "Physical Scientists, All Other",
+ "cip_codes": [
+ 30.1801,
+ 30.3201,
+ 40.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3011",
+ "title": "Economists",
+ "cip_codes": [
+ 1.0103,
+ 27.0305,
+ 30.3901,
+ 30.4001,
+ 30.4901,
+ 30.5101,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.1004,
+ 51.2007,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3022",
+ "title": "Survey Researchers",
+ "cip_codes": [
+ 13.0608,
+ 27.0501,
+ 27.0601,
+ 45.0102,
+ 45.0601,
+ 45.0602,
+ 52.0601,
+ 52.1302,
+ 52.1402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3032",
+ "title": "Industrial-Organizational Psychologists",
+ "cip_codes": [
+ 42.0101,
+ 42.2804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3033",
+ "title": "Clinical and Counseling Psychologists",
+ "cip_codes": [
+ 42.0101,
+ 42.2703,
+ 42.2801,
+ 42.2803,
+ 42.2807,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2814,
+ 51.1507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3034",
+ "title": "School Psychologists",
+ "cip_codes": [
+ 42.2805,
+ 42.2806
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3039",
+ "title": "Psychologists, All Other",
+ "cip_codes": [
+ 19.0702,
+ 19.0706,
+ 19.0711,
+ 30.1701,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.2799,
+ 42.2802,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 45.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3041",
+ "title": "Sociologists",
+ "cip_codes": [
+ 45.0102,
+ 45.0103,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 51.3204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3051",
+ "title": "Urban and Regional Planners",
+ "cip_codes": [
+ 4.0301,
+ 4.0403,
+ 4.1001,
+ 30.3301,
+ 30.3701,
+ 44.0403,
+ 45.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3091",
+ "title": "Anthropologists and Archeologists",
+ "cip_codes": [
+ 30.2201,
+ 30.2299,
+ 30.2701,
+ 30.4201,
+ 30.4701,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.1301,
+ 45.1501,
+ 51.3204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3092",
+ "title": "Geographers",
+ "cip_codes": [
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4401,
+ 43.0407,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.1501,
+ 51.3204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3093",
+ "title": "Historians",
+ "cip_codes": [
+ 4.0801,
+ 4.0802,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1301,
+ 30.2101,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.2901,
+ 30.4501,
+ 30.4601,
+ 51.3204,
+ 51.3205,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3094",
+ "title": "Political Scientists",
+ "cip_codes": [
+ 30.2001,
+ 30.4601,
+ 30.5101,
+ 44.0501,
+ 44.0504,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-3099",
+ "title": "Social Scientists and Related Workers, All Other",
+ "cip_codes": [
+ 3.0209,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 16.0199,
+ 19.0702,
+ 30.0501,
+ 30.1001,
+ 30.1101,
+ 30.1701,
+ 30.2101,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.3301,
+ 30.3401,
+ 30.4001,
+ 30.4201,
+ 30.4401,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 44.0502,
+ 44.0503,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.9999,
+ 51.3204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4012",
+ "title": "Agricultural Technicians",
+ "cip_codes": [
+ 1.0,
+ 1.0901,
+ 1.0905,
+ 1.0907,
+ 1.1101,
+ 1.1102,
+ 1.1201,
+ 1.1399,
+ 26.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4013",
+ "title": "Food Science Technicians",
+ "cip_codes": [
+ 1.0401,
+ 1.1001,
+ 1.1002,
+ 1.1003,
+ 1.1005,
+ 1.1099,
+ 26.0101,
+ 26.0202,
+ 26.0502,
+ 40.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4021",
+ "title": "Biological Technicians",
+ "cip_codes": [
+ 26.0101,
+ 26.0102,
+ 26.0202,
+ 26.0204,
+ 26.0406,
+ 26.0502,
+ 26.0503,
+ 26.0508,
+ 26.0701,
+ 26.0708,
+ 26.0709,
+ 26.0801,
+ 26.1102,
+ 26.1103,
+ 26.1104,
+ 26.1302,
+ 26.1304,
+ 26.1501,
+ 41.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4031",
+ "title": "Chemical Technicians",
+ "cip_codes": [
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0509,
+ 41.0301,
+ 41.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4042",
+ "title": "Environmental Science and Protection Technicians, Including Health",
+ "cip_codes": [
+ 3.0104,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 26.1006,
+ 30.3301,
+ 30.4101,
+ 30.4401,
+ 40.0509,
+ 41.0399,
+ 41.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4043",
+ "title": "Geological Technicians, Except Hydrologic Technicians",
+ "cip_codes": [
+ 15.0901,
+ 15.0903,
+ 15.0999,
+ 40.0601,
+ 41.0,
+ 41.0303,
+ 41.0399,
+ 41.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4044",
+ "title": "Hydrologic Technicians",
+ "cip_codes": [
+ 40.0605,
+ 41.0,
+ 41.0399,
+ 41.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4051",
+ "title": "Nuclear Technicians",
+ "cip_codes": [
+ 15.1401,
+ 41.0204,
+ 41.0205,
+ 41.0299,
+ 51.0916
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4061",
+ "title": "Social Science Research Assistants",
+ "cip_codes": [
+ 30.1701,
+ 30.4601,
+ 42.0101,
+ 42.2708,
+ 44.0501,
+ 44.0502,
+ 44.0503,
+ 44.0504,
+ 45.0101,
+ 45.0103,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.1001,
+ 45.1004,
+ 45.1101,
+ 45.1102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4071",
+ "title": "Forest and Conservation Technicians",
+ "cip_codes": [
+ 3.0101,
+ 3.0104,
+ 3.0501,
+ 3.051,
+ 3.0511,
+ 3.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4092",
+ "title": "Forensic Science Technicians",
+ "cip_codes": [
+ 26.0101,
+ 40.0501,
+ 40.051,
+ 43.01,
+ 43.0402,
+ 43.0406,
+ 45.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-4099",
+ "title": "Life, Physical, and Social Science Technicians, All Other",
+ "cip_codes": [
+ 40.0401,
+ 40.1001,
+ 40.1002,
+ 41.0,
+ 41.0303,
+ 41.0399,
+ 41.9999,
+ 43.01,
+ 43.0104,
+ 43.0402,
+ 43.0406,
+ 45.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-5011",
+ "title": "Occupational Health and Safety Specialists",
+ "cip_codes": [
+ 15.0701,
+ 15.0703,
+ 26.1006,
+ 51.2202,
+ 51.2206,
+ 51.2213
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "19-5012",
+ "title": "Occupational Health and Safety Technicians",
+ "cip_codes": [
+ 15.0705,
+ 26.1006,
+ 51.0916,
+ 51.2202,
+ 51.2206,
+ 51.2213
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1011",
+ "title": "Substance Abuse and Behavioral Disorder Counselors",
+ "cip_codes": [
+ 51.1501,
+ 51.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1012",
+ "title": "Educational, Guidance, and Career Counselors and Advisors",
+ "cip_codes": [
+ 13.1101,
+ 13.1102,
+ 13.1199,
+ 42.2805,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1013",
+ "title": "Marriage and Family Therapists",
+ "cip_codes": [
+ 44.0701,
+ 51.1505,
+ 51.1506,
+ 51.151,
+ 51.1511
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1014",
+ "title": "Mental Health Counselors",
+ "cip_codes": [
+ 42.2803,
+ 51.1501,
+ 51.1503,
+ 51.1506,
+ 51.1508,
+ 51.1513
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1015",
+ "title": "Rehabilitation Counselors",
+ "cip_codes": [
+ 51.231,
+ 51.2312,
+ 51.2314
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1019",
+ "title": "Counselors, All Other",
+ "cip_codes": [
+ 30.5301,
+ 39.0701,
+ 39.0799,
+ 42.2803,
+ 44.0701,
+ 51.1506,
+ 51.151,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1021",
+ "title": "Child, Family, and School Social Workers",
+ "cip_codes": [
+ 42.2703,
+ 42.271,
+ 43.011,
+ 44.0701,
+ 44.0702,
+ 44.0703,
+ 44.0799,
+ 51.151
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1022",
+ "title": "Healthcare Social Workers",
+ "cip_codes": [
+ 30.5301,
+ 44.0701,
+ 44.0703,
+ 44.0799,
+ 51.1503,
+ 51.1511,
+ 51.1512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1023",
+ "title": "Mental Health and Substance Abuse Social Workers",
+ "cip_codes": [
+ 44.0701,
+ 44.0799,
+ 51.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1029",
+ "title": "Social Workers, All Other",
+ "cip_codes": [
+ 44.0701,
+ 44.0703,
+ 44.0799,
+ 51.1512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1091",
+ "title": "Health Education Specialists",
+ "cip_codes": [
+ 9.0905,
+ 51.0001,
+ 51.0504,
+ 51.1504,
+ 51.2201,
+ 51.2207,
+ 51.2209,
+ 51.221,
+ 51.2212
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1092",
+ "title": "Probation Officers and Correctional Treatment Specialists",
+ "cip_codes": [
+ 44.0701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1093",
+ "title": "Social and Human Service Assistants",
+ "cip_codes": [
+ 19.071,
+ 44.0
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1094",
+ "title": "Community Health Workers",
+ "cip_codes": [
+ 9.0905,
+ 51.0001,
+ 51.1504,
+ 51.2201,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2212,
+ 51.3206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-1099",
+ "title": "Community and Social Service Specialists, All Other",
+ "cip_codes": [
+ 19.071,
+ 19.0711,
+ 19.0712,
+ 30.1701,
+ 30.2502,
+ 39.0701,
+ 39.0799,
+ 44.0,
+ 44.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-2011",
+ "title": "Clergy",
+ "cip_codes": [
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0702,
+ 39.0706,
+ 51.1506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-2021",
+ "title": "Directors, Religious Activities and Education",
+ "cip_codes": [
+ 30.2502,
+ 30.5301,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0502,
+ 39.0599,
+ 39.0701,
+ 39.0702,
+ 39.0703,
+ 39.0704,
+ 39.0705,
+ 39.0706,
+ 39.0799,
+ 51.1506,
+ 51.3201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "21-2099",
+ "title": "Religious Workers, All Other",
+ "cip_codes": [
+ 30.2502,
+ 30.5301,
+ 39.0302,
+ 39.0399,
+ 39.0599,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0704,
+ 39.0705,
+ 39.0706,
+ 39.0799,
+ 39.0802
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "23-1011",
+ "title": "Lawyers",
+ "cip_codes": [
+ 22.0101,
+ 22.0201,
+ 22.0202,
+ 22.0203,
+ 22.0204,
+ 22.0205,
+ 22.0206,
+ 22.0207,
+ 22.0208,
+ 22.0209,
+ 22.021,
+ 22.0211,
+ 22.0212,
+ 22.0213,
+ 22.0214,
+ 22.0215,
+ 22.0216,
+ 22.0217,
+ 22.0218,
+ 22.0219,
+ 22.022,
+ 22.0221,
+ 22.0222,
+ 22.0223,
+ 22.0224,
+ 22.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "23-1012",
+ "title": "Judicial Law Clerks",
+ "cip_codes": [
+ 22.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "23-1021",
+ "title": "Administrative Law Judges, Adjudicators, and Hearing Officers",
+ "cip_codes": [
+ 22.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "23-1022",
+ "title": "Arbitrators, Mediators, and Conciliators",
+ "cip_codes": [
+ 22.0101,
+ 30.0501,
+ 30.2801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "23-1023",
+ "title": "Judges, Magistrate Judges, and Magistrates",
+ "cip_codes": [
+ 22.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "23-2011",
+ "title": "Paralegals and Legal Assistants",
+ "cip_codes": [
+ 22.0,
+ 22.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "23-2093",
+ "title": "Title Examiners, Abstractors, and Searchers",
+ "cip_codes": [
+ 22.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "23-2099",
+ "title": "Legal Support Workers, All Other",
+ "cip_codes": [
+ 22.0,
+ 22.0302,
+ 22.0304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1011",
+ "title": "Business Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1303,
+ 13.131,
+ 30.1601,
+ 30.2801,
+ 30.7104,
+ 51.0702,
+ 52.0101,
+ 52.0201,
+ 52.0202,
+ 52.0203,
+ 52.0205,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0212,
+ 52.0213,
+ 52.0301,
+ 52.0303,
+ 52.0304,
+ 52.0305,
+ 52.0501,
+ 52.0599,
+ 52.0701,
+ 52.0702,
+ 52.0801,
+ 52.0804,
+ 52.0806,
+ 52.0807,
+ 52.0808,
+ 52.081,
+ 52.0909,
+ 52.1001,
+ 52.1002,
+ 52.1003,
+ 52.1004,
+ 52.1101,
+ 52.1301,
+ 52.1302,
+ 52.1304,
+ 52.1401,
+ 52.1402,
+ 52.1403,
+ 52.1404,
+ 52.1499,
+ 52.1701,
+ 52.1801,
+ 52.2002,
+ 52.2099,
+ 52.2101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1021",
+ "title": "Computer Science Teachers, Postsecondary",
+ "cip_codes": [
+ 11.0101,
+ 11.0102,
+ 11.0199,
+ 11.0201,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0804,
+ 11.0901,
+ 11.0902,
+ 13.1321,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 52.1201,
+ 52.1206,
+ 52.1207,
+ 52.1299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1022",
+ "title": "Mathematical Science Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1311,
+ 26.1102,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 27.9999,
+ 30.0801,
+ 30.5001,
+ 38.0102,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1031",
+ "title": "Architecture Teachers, Postsecondary",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0299,
+ 4.0301,
+ 4.0401,
+ 4.0402,
+ 4.0403,
+ 4.0499,
+ 4.0501,
+ 4.0601,
+ 4.0802,
+ 4.0803,
+ 4.0899,
+ 4.0902,
+ 4.0999,
+ 14.0401,
+ 30.3701,
+ 50.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1032",
+ "title": "Engineering Teachers, Postsecondary",
+ "cip_codes": [
+ 14.0101,
+ 14.0201,
+ 14.0202,
+ 14.0299,
+ 14.0301,
+ 14.0401,
+ 14.0501,
+ 14.0601,
+ 14.0701,
+ 14.0702,
+ 14.0799,
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.0901,
+ 14.0902,
+ 14.0903,
+ 14.0999,
+ 14.1001,
+ 14.1003,
+ 14.1004,
+ 14.1099,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.1401,
+ 14.1801,
+ 14.1901,
+ 14.2001,
+ 14.2101,
+ 14.2201,
+ 14.2301,
+ 14.2401,
+ 14.2501,
+ 14.2701,
+ 14.2801,
+ 14.3201,
+ 14.3301,
+ 14.3401,
+ 14.3501,
+ 14.3601,
+ 14.3701,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1503,
+ 40.1001
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1041",
+ "title": "Agricultural Sciences Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0,
+ 1.0101,
+ 1.0102,
+ 1.0103,
+ 1.0104,
+ 1.0105,
+ 1.0199,
+ 1.0201,
+ 1.0204,
+ 1.0299,
+ 1.0301,
+ 1.0302,
+ 1.0303,
+ 1.0304,
+ 1.0307,
+ 1.0308,
+ 1.0399,
+ 1.0401,
+ 1.0505,
+ 1.0507,
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0606,
+ 1.0607,
+ 1.0701,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1001,
+ 1.1004,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1104,
+ 1.1105,
+ 1.1106,
+ 1.1199,
+ 1.1201,
+ 1.1202,
+ 1.1203,
+ 1.1299,
+ 13.1301,
+ 13.1316
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1042",
+ "title": "Biological Science Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1316,
+ 13.1322,
+ 26.0101,
+ 26.0102,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0508,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 26.0901,
+ 26.0902,
+ 26.0903,
+ 26.0904,
+ 26.0905,
+ 26.0907,
+ 26.0908,
+ 26.0909,
+ 26.091,
+ 26.0911,
+ 26.0912,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1399,
+ 26.1401,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 30.1001,
+ 30.1901,
+ 30.2701,
+ 30.4301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1043",
+ "title": "Forestry and Conservation Science Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0308,
+ 1.1106,
+ 3.0101,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0299,
+ 3.0501,
+ 3.0502,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599,
+ 3.0601,
+ 3.9999,
+ 13.1316,
+ 26.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1051",
+ "title": "Atmospheric, Earth, Marine, and Space Sciences Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1316,
+ 13.1337,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.5001,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1052",
+ "title": "Chemistry Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1316,
+ 13.1323,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0602,
+ 40.1002,
+ 51.2004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1053",
+ "title": "Environmental Science Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 13.1316,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 40.0509
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1054",
+ "title": "Physics Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1316,
+ 13.1329,
+ 40.0299,
+ 40.0508,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1101,
+ 51.2205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1061",
+ "title": "Anthropology and Archeology Teachers, Postsecondary",
+ "cip_codes": [
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.4201,
+ 30.4701,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.1301,
+ 45.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1062",
+ "title": "Area, Ethnic, and Cultural Studies Teachers, Postsecondary",
+ "cip_codes": [
+ 5.0101,
+ 5.0102,
+ 5.0103,
+ 5.0104,
+ 5.0105,
+ 5.0106,
+ 5.0107,
+ 5.0108,
+ 5.0109,
+ 5.011,
+ 5.0111,
+ 5.0112,
+ 5.0113,
+ 5.0114,
+ 5.0115,
+ 5.0116,
+ 5.0117,
+ 5.0118,
+ 5.0119,
+ 5.012,
+ 5.0121,
+ 5.0122,
+ 5.0123,
+ 5.0124,
+ 5.0125,
+ 5.0126,
+ 5.0127,
+ 5.0128,
+ 5.0129,
+ 5.013,
+ 5.0131,
+ 5.0132,
+ 5.0133,
+ 5.0134,
+ 5.0135,
+ 5.0136,
+ 5.0199,
+ 5.02,
+ 5.0201,
+ 5.0202,
+ 5.0203,
+ 5.0206,
+ 5.0207,
+ 5.0208,
+ 5.0209,
+ 5.021,
+ 5.0211,
+ 5.0212,
+ 5.0299,
+ 5.9999,
+ 30.1202,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.3601,
+ 30.4001,
+ 30.4501,
+ 30.5202,
+ 30.5203,
+ 38.0205,
+ 38.0206,
+ 38.0208,
+ 38.0209,
+ 45.0204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1063",
+ "title": "Economics Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0103,
+ 30.3901,
+ 30.4001,
+ 30.4901,
+ 30.5101,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.1004,
+ 51.2007,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1064",
+ "title": "Geography Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1332,
+ 30.4401,
+ 43.0407,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1065",
+ "title": "Political Science Teachers, Postsecondary",
+ "cip_codes": [
+ 30.4601,
+ 30.5101,
+ 44.0501,
+ 44.0502,
+ 44.0504,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1004,
+ 45.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1066",
+ "title": "Psychology Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1335,
+ 30.1001,
+ 30.1701,
+ 30.5301,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 51.1505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1067",
+ "title": "Sociology Teachers, Postsecondary",
+ "cip_codes": [
+ 45.0103,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1069",
+ "title": "Social Sciences Teachers, Postsecondary, All Other",
+ "cip_codes": [
+ 4.0301,
+ 4.1001,
+ 13.0607,
+ 19.1001,
+ 30.2001,
+ 30.2101,
+ 30.2701,
+ 30.4201,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.9999,
+ 51.3204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1071",
+ "title": "Health Specialties Teachers, Postsecondary",
+ "cip_codes": [
+ 1.8001,
+ 1.8101,
+ 1.8102,
+ 1.8103,
+ 1.8104,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 1.8301,
+ 13.1327,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0503,
+ 26.0913,
+ 26.0999,
+ 26.1001,
+ 26.1002,
+ 26.1003,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 26.1007,
+ 26.1099,
+ 26.1102,
+ 26.1309,
+ 26.1311,
+ 30.1101,
+ 30.1901,
+ 42.2709,
+ 44.0503,
+ 51.0101,
+ 51.0201,
+ 51.0202,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0401,
+ 51.0501,
+ 51.0502,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.0507,
+ 51.0508,
+ 51.0509,
+ 51.051,
+ 51.0511,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.0601,
+ 51.0602,
+ 51.0603,
+ 51.0801,
+ 51.0802,
+ 51.0803,
+ 51.0805,
+ 51.0901,
+ 51.0902,
+ 51.0903,
+ 51.0904,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0908,
+ 51.0909,
+ 51.091,
+ 51.0911,
+ 51.0912,
+ 51.0913,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0919,
+ 51.092,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1006,
+ 51.1007,
+ 51.1008,
+ 51.1009,
+ 51.101,
+ 51.1011,
+ 51.1012,
+ 51.1099,
+ 51.1405,
+ 51.1501,
+ 51.2001,
+ 51.2002,
+ 51.2003,
+ 51.2004,
+ 51.2005,
+ 51.2006,
+ 51.2007,
+ 51.2008,
+ 51.2009,
+ 51.201,
+ 51.2011,
+ 51.2099,
+ 51.2201,
+ 51.2202,
+ 51.2205,
+ 51.2206,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2212,
+ 51.2213,
+ 51.2214,
+ 51.2299,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2307,
+ 51.2308,
+ 51.2309,
+ 51.231,
+ 51.2313,
+ 51.2314,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3202,
+ 51.3501,
+ 51.3502,
+ 51.3503,
+ 51.3599,
+ 51.3603,
+ 61.0101,
+ 61.0102,
+ 61.0103,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0109,
+ 61.011,
+ 61.0111,
+ 61.0112,
+ 61.0113,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0122,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0202,
+ 61.0203,
+ 61.0204,
+ 61.0205,
+ 61.0206,
+ 61.0207,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0211,
+ 61.0212,
+ 61.0213,
+ 61.0214,
+ 61.0215,
+ 61.0216,
+ 61.0217,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0811,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1001,
+ 61.1099,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1201,
+ 61.1299,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1304,
+ 61.1399,
+ 61.1401,
+ 61.1499,
+ 61.1501,
+ 61.1502,
+ 61.1503,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2101,
+ 61.2102,
+ 61.2103,
+ 61.2199,
+ 61.2201,
+ 61.2299,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.2701,
+ 61.2702,
+ 61.2703,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2801,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1072",
+ "title": "Nursing Instructors and Teachers, Postsecondary",
+ "cip_codes": [
+ 51.3203,
+ 51.3801,
+ 51.3803,
+ 51.3804,
+ 51.3805,
+ 51.3806,
+ 51.3807,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1081",
+ "title": "Education Teachers, Postsecondary",
+ "cip_codes": [
+ 13.0101,
+ 13.0201,
+ 13.0202,
+ 13.0203,
+ 13.0299,
+ 13.0301,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 13.0901,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099,
+ 13.1202,
+ 13.1203,
+ 13.1205,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1209,
+ 13.121,
+ 13.1211,
+ 13.1213,
+ 13.1214,
+ 13.1301,
+ 13.1302,
+ 13.1303,
+ 13.1304,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1319,
+ 13.132,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.1329,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1337,
+ 13.1338,
+ 13.1339,
+ 13.1399,
+ 13.9999,
+ 44.0502,
+ 51.3202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1082",
+ "title": "Library Science Teachers, Postsecondary",
+ "cip_codes": [
+ 25.0101,
+ 25.0102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1111",
+ "title": "Criminal Justice and Law Enforcement Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0208,
+ 43.01,
+ 43.0102,
+ 43.0103,
+ 43.0104,
+ 43.0107,
+ 43.0109,
+ 43.011,
+ 43.0112,
+ 43.0113,
+ 43.0114,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0121,
+ 43.0122,
+ 43.0123,
+ 43.0199,
+ 43.0304,
+ 43.0399,
+ 43.0401,
+ 43.0402,
+ 43.0403,
+ 43.0404,
+ 43.0405,
+ 43.0406,
+ 43.0407,
+ 43.0408,
+ 43.0499,
+ 45.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1112",
+ "title": "Law Teachers, Postsecondary",
+ "cip_codes": [
+ 22.0101,
+ 22.0201,
+ 22.0203,
+ 22.0204,
+ 22.0205,
+ 22.0206,
+ 22.0207,
+ 22.0208,
+ 22.0209,
+ 22.021,
+ 22.0211,
+ 22.0212,
+ 22.0213,
+ 22.0214,
+ 22.0215,
+ 22.0216,
+ 22.0217,
+ 22.0218,
+ 22.0219,
+ 22.022,
+ 22.0221,
+ 22.0222,
+ 22.0223,
+ 22.0224,
+ 22.0299,
+ 30.2801,
+ 39.0802,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1113",
+ "title": "Social Work Teachers, Postsecondary",
+ "cip_codes": [
+ 30.1101,
+ 44.0701,
+ 44.0703,
+ 44.0799,
+ 51.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1121",
+ "title": "Art, Drama, and Music Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1302,
+ 13.1312,
+ 13.1324,
+ 50.0101,
+ 50.0102,
+ 50.0201,
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0401,
+ 50.0404,
+ 50.0406,
+ 50.0407,
+ 50.0409,
+ 50.041,
+ 50.0501,
+ 50.0502,
+ 50.0504,
+ 50.0505,
+ 50.0506,
+ 50.0507,
+ 50.0509,
+ 50.051,
+ 50.0511,
+ 50.0512,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0605,
+ 50.0607,
+ 50.0699,
+ 50.0701,
+ 50.0702,
+ 50.0703,
+ 50.0705,
+ 50.0706,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0902,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.1001,
+ 50.1002,
+ 50.1003,
+ 50.1004,
+ 50.1099,
+ 50.1101,
+ 50.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1122",
+ "title": "Communications Teachers, Postsecondary",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0702,
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 9.0908,
+ 9.9999,
+ 50.0607,
+ 52.0501,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1123",
+ "title": "English Language and Literature Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1305,
+ 16.0104,
+ 23.0101,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1402,
+ 23.1403,
+ 23.1404,
+ 23.1405,
+ 23.1499,
+ 23.9999,
+ 30.3601,
+ 30.4701,
+ 30.4801,
+ 30.5201,
+ 30.5202,
+ 30.5203
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1124",
+ "title": "Foreign Language and Literature Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1306,
+ 13.1325,
+ 13.1326,
+ 13.133,
+ 13.1333,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1801,
+ 16.9999,
+ 30.4001,
+ 30.4501,
+ 30.4701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1125",
+ "title": "History Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1328,
+ 30.1301,
+ 30.2101,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.4501,
+ 30.4601,
+ 51.3205,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1126",
+ "title": "Philosophy and Religion Teachers, Postsecondary",
+ "cip_codes": [
+ 30.5101,
+ 38.0001,
+ 38.0101,
+ 38.0103,
+ 38.0104,
+ 38.0199,
+ 38.0201,
+ 38.0202,
+ 38.0203,
+ 38.0204,
+ 38.0207,
+ 38.9999,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0501,
+ 39.0502,
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0706,
+ 39.0802,
+ 51.3201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1192",
+ "title": "Family and Consumer Sciences Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1308,
+ 19.0101,
+ 19.0201,
+ 19.0202,
+ 19.0299,
+ 19.0401,
+ 19.0402,
+ 19.0403,
+ 19.0499,
+ 19.0501,
+ 19.0504,
+ 19.0505,
+ 19.0599,
+ 19.0601,
+ 19.0701,
+ 19.0702,
+ 19.0704,
+ 19.0706,
+ 19.0708,
+ 19.0901,
+ 19.0902,
+ 19.0904,
+ 19.1001,
+ 30.1901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1193",
+ "title": "Recreation and Fitness Studies Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1314,
+ 31.0101,
+ 31.0501,
+ 31.0504,
+ 31.0508
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1194",
+ "title": "Career/Technical Education Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0207,
+ 1.0504,
+ 1.0509,
+ 11.0801,
+ 11.0802,
+ 11.0803,
+ 13.1301,
+ 13.1303,
+ 13.1309,
+ 13.131,
+ 13.1319,
+ 13.132,
+ 13.1327,
+ 43.0202,
+ 49.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-1199",
+ "title": "Postsecondary Teachers, All Other",
+ "cip_codes": [
+ 12.0509,
+ 13.1211,
+ 15.1503,
+ 16.1602,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 24.0101,
+ 24.0102,
+ 24.0103,
+ 30.0101,
+ 30.0501,
+ 30.0601,
+ 30.1201,
+ 30.1299,
+ 30.1401,
+ 30.1501,
+ 30.1801,
+ 30.2501,
+ 30.2502,
+ 30.2599,
+ 30.2601,
+ 30.2901,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 40.1099,
+ 40.9999,
+ 43.0304,
+ 50.0411,
+ 51.2706,
+ 51.3204,
+ 51.3299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2011",
+ "title": "Preschool Teachers, Except Special Education",
+ "cip_codes": [
+ 13.0201,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1209,
+ 13.121,
+ 13.1212,
+ 13.1401,
+ 13.1402,
+ 13.1499,
+ 19.0706,
+ 19.0708
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2012",
+ "title": "Kindergarten Teachers, Except Special Education",
+ "cip_codes": [
+ 13.0201,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1209,
+ 13.121,
+ 13.1212,
+ 13.1401,
+ 13.1402,
+ 13.1499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2021",
+ "title": "Elementary School Teachers, Except Special Education",
+ "cip_codes": [
+ 13.0201,
+ 13.1202,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.121,
+ 13.1211,
+ 13.1212,
+ 13.1213,
+ 13.1338,
+ 13.1339,
+ 13.1401,
+ 13.1402,
+ 13.1499,
+ 45.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2022",
+ "title": "Middle School Teachers, Except Special and Career/Technical Education",
+ "cip_codes": [
+ 13.0201,
+ 13.1203,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1211,
+ 13.1212,
+ 13.1213,
+ 13.1302,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1309,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1318,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1327,
+ 13.1328,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1333,
+ 13.1337,
+ 13.1338,
+ 13.1339,
+ 13.1401,
+ 13.1402,
+ 13.1499,
+ 45.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2023",
+ "title": "Career/Technical Education Teachers, Middle School",
+ "cip_codes": [
+ 13.1301,
+ 13.1303,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1319,
+ 13.132,
+ 13.1327
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2031",
+ "title": "Secondary School Teachers, Except Special and Career/Technical Education",
+ "cip_codes": [
+ 13.0201,
+ 13.1203,
+ 13.1205,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1211,
+ 13.1212,
+ 13.1213,
+ 13.1302,
+ 13.1304,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1309,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1318,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.1329,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1333,
+ 13.1335,
+ 13.1337,
+ 13.1338,
+ 13.1339,
+ 13.1401,
+ 13.1402,
+ 13.1499,
+ 16.0101,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0399,
+ 16.0402,
+ 16.05,
+ 16.0501,
+ 16.0599,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0905,
+ 16.0999,
+ 16.1001,
+ 16.1101,
+ 16.1102,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1409,
+ 16.1499,
+ 16.1601,
+ 16.1602,
+ 16.9999,
+ 19.0101,
+ 23.0101,
+ 26.0101,
+ 27.0101,
+ 30.0101,
+ 30.3601,
+ 30.3801,
+ 30.4101,
+ 30.4501,
+ 40.0101,
+ 40.0501,
+ 40.0801,
+ 45.0101,
+ 45.0199,
+ 45.0601,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1099,
+ 50.0701,
+ 50.0901,
+ 54.0101,
+ 54.0102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2032",
+ "title": "Career/Technical Education Teachers, Secondary School",
+ "cip_codes": [
+ 13.1301,
+ 13.1303,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1319,
+ 13.132,
+ 13.1327
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2051",
+ "title": "Special Education Teachers, Preschool",
+ "cip_codes": [
+ 13.1001,
+ 13.1003,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1015,
+ 13.1016
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2055",
+ "title": "Special Education Teachers, Kindergarten",
+ "cip_codes": [
+ 13.1001,
+ 13.1003,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1016,
+ 13.1017
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2056",
+ "title": "Special Education Teachers, Elementary School",
+ "cip_codes": [
+ 13.1001,
+ 13.1003,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1016,
+ 13.1017
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2057",
+ "title": "Special Education Teachers, Middle School",
+ "cip_codes": [
+ 13.1001,
+ 13.1003,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1016,
+ 13.1018
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2058",
+ "title": "Special Education Teachers, Secondary School",
+ "cip_codes": [
+ 13.1001,
+ 13.1003,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1016,
+ 13.1019
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-2059",
+ "title": "Special Education Teachers, All Other",
+ "cip_codes": [
+ 13.1001,
+ 13.1003,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1016,
+ 13.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-3011",
+ "title": "Adult Basic Education, Adult Secondary Education, and English as a Second Language Instructors",
+ "cip_codes": [
+ 13.0201,
+ 13.0202,
+ 13.0299,
+ 13.1201,
+ 13.1401,
+ 13.1402,
+ 13.1499,
+ 13.1502
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-3021",
+ "title": "Self-Enrichment Teachers",
+ "cip_codes": [
+ 13.1201,
+ 13.1211,
+ 30.2502
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-3031",
+ "title": "Substitute Teachers, Short-Term",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-3041",
+ "title": "Tutors",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-3099",
+ "title": "Teachers and Instructors, All Other",
+ "cip_codes": [
+ 13.0201,
+ 13.0202,
+ 13.0203,
+ 13.1207,
+ 13.1208,
+ 13.1211,
+ 13.1304,
+ 13.1399,
+ 13.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-4011",
+ "title": "Archivists",
+ "cip_codes": [
+ 25.0103,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1401,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 50.0703,
+ 54.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-4012",
+ "title": "Curators",
+ "cip_codes": [
+ 30.1401,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 50.0703,
+ 54.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-4013",
+ "title": "Museum Technicians and Conservators",
+ "cip_codes": [
+ 30.1401,
+ 50.0703,
+ 54.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-4022",
+ "title": "Librarians and Media Collections Specialists",
+ "cip_codes": [
+ 13.0501,
+ 13.1334,
+ 25.0101,
+ 25.0102,
+ 25.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-4031",
+ "title": "Library Technicians",
+ "cip_codes": [
+ 25.0301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-9021",
+ "title": "Farm and Home Management Educators",
+ "cip_codes": [
+ 1.0104,
+ 1.0302,
+ 1.0304,
+ 1.0306,
+ 1.0307,
+ 1.031,
+ 1.0601,
+ 1.0609,
+ 1.061,
+ 1.0801,
+ 1.0901,
+ 1.0902,
+ 1.0904,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1105,
+ 1.1106,
+ 19.0101,
+ 19.0201,
+ 19.0203,
+ 19.0401,
+ 19.0402,
+ 19.0403,
+ 19.0499,
+ 19.0601,
+ 19.0605,
+ 19.0704,
+ 19.0706,
+ 19.0707,
+ 19.0711,
+ 19.0712,
+ 19.0901,
+ 30.1901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-9031",
+ "title": "Instructional Coordinators",
+ "cip_codes": [
+ 13.0301,
+ 13.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-9042",
+ "title": "Teaching Assistants, Preschool, Elementary, Middle, and Secondary School, Except Special Education",
+ "cip_codes": [
+ 13.0101,
+ 13.121,
+ 13.1501,
+ 13.1599,
+ 19.0706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-9043",
+ "title": "Teaching Assistants, Special Education",
+ "cip_codes": [
+ 13.0101,
+ 13.1001,
+ 13.121,
+ 13.1501,
+ 13.1599,
+ 19.0706,
+ 42.2814
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-9044",
+ "title": "Teaching Assistants, Postsecondary",
+ "cip_codes": [
+ 13.1599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-9049",
+ "title": "Teaching Assistants, All Other",
+ "cip_codes": [
+ 13.1501,
+ 13.1502,
+ 13.1599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "25-9099",
+ "title": "Educational Instruction and Library Workers, All Other",
+ "cip_codes": [
+ 13.0607,
+ 13.1599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1011",
+ "title": "Art Directors",
+ "cip_codes": [
+ 50.0102,
+ 50.0409,
+ 50.0706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1012",
+ "title": "Craft Artists",
+ "cip_codes": [
+ 50.0101,
+ 50.0201,
+ 50.0701,
+ 50.0705,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1013",
+ "title": "Fine Artists, Including Painters, Sculptors, and Illustrators",
+ "cip_codes": [
+ 50.0101,
+ 50.0701,
+ 50.0702,
+ 50.0705,
+ 50.0706,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0799,
+ 50.1101,
+ 51.2703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1014",
+ "title": "Special Effects Artists and Animators",
+ "cip_codes": [
+ 10.0304,
+ 11.0801,
+ 11.0804,
+ 50.0102,
+ 50.0409,
+ 50.0411,
+ 50.0705,
+ 50.0706,
+ 50.0708
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1019",
+ "title": "Artists and Related Workers, All Other",
+ "cip_codes": [
+ 50.0101,
+ 50.0102,
+ 50.0201,
+ 50.0402,
+ 50.0409,
+ 50.041,
+ 50.0702,
+ 50.0799,
+ 50.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1021",
+ "title": "Commercial and Industrial Designers",
+ "cip_codes": [
+ 15.1503,
+ 15.1701,
+ 50.0401,
+ 50.0402,
+ 50.0404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1022",
+ "title": "Fashion Designers",
+ "cip_codes": [
+ 19.0902,
+ 19.0904,
+ 19.0906,
+ 50.0407,
+ 50.051
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1023",
+ "title": "Floral Designers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1024",
+ "title": "Graphic Designers",
+ "cip_codes": [
+ 11.0801,
+ 11.0803,
+ 50.0102,
+ 50.0401,
+ 50.0402,
+ 50.0404,
+ 50.0409
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1025",
+ "title": "Interior Designers",
+ "cip_codes": [
+ 4.0402,
+ 4.0501,
+ 19.0604,
+ 19.0699,
+ 19.0904,
+ 30.3701,
+ 50.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1026",
+ "title": "Merchandise Displayers and Window Trimmers",
+ "cip_codes": [
+ 52.1903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1027",
+ "title": "Set and Exhibit Designers",
+ "cip_codes": [
+ 50.0401,
+ 50.041,
+ 50.0502
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-1029",
+ "title": "Designers, All Other",
+ "cip_codes": [
+ 50.0401,
+ 50.0404,
+ 50.041
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2011",
+ "title": "Actors",
+ "cip_codes": [
+ 50.0501,
+ 50.0506,
+ 50.0507,
+ 50.0509,
+ 50.0511,
+ 50.0512,
+ 50.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2012",
+ "title": "Producers and Directors",
+ "cip_codes": [
+ 9.0701,
+ 50.0501,
+ 50.0507,
+ 50.0509,
+ 50.0512,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0607,
+ 50.1004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2021",
+ "title": "Athletes and Sports Competitors",
+ "cip_codes": [
+ 31.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2022",
+ "title": "Coaches and Scouts",
+ "cip_codes": [
+ 13.1314,
+ 31.0501,
+ 31.0504,
+ 42.2815
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2023",
+ "title": "Umpires, Referees, and Other Sports Officials",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2031",
+ "title": "Dancers",
+ "cip_codes": [
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0509,
+ 50.0512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2032",
+ "title": "Choreographers",
+ "cip_codes": [
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0509,
+ 50.0512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2041",
+ "title": "Music Directors and Composers",
+ "cip_codes": [
+ 39.0501,
+ 39.0502,
+ 50.0509,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0908,
+ 50.0913,
+ 50.0917,
+ 50.0999,
+ 50.1003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2042",
+ "title": "Musicians and Singers",
+ "cip_codes": [
+ 50.0509,
+ 50.0901,
+ 50.0903,
+ 50.0907,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2091",
+ "title": "Disc Jockeys, Except Radio",
+ "cip_codes": [
+ 10.0203,
+ 15.0307,
+ 50.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-2099",
+ "title": "Entertainers and Performers, Sports and Related Workers, All Other",
+ "cip_codes": [
+ 9.0906,
+ 50.0501,
+ 50.0507,
+ 50.0512,
+ 50.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3011",
+ "title": "Broadcast Announcers and Radio Disc Jockeys",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0402,
+ 9.0701,
+ 9.0906
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3023",
+ "title": "News Analysts, Reporters, and Journalists",
+ "cip_codes": [
+ 1.0802,
+ 9.01,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0404,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0904,
+ 9.0906,
+ 9.0907
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3031",
+ "title": "Public Relations Specialists",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.09,
+ 9.0902,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 19.0202,
+ 52.0501,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3041",
+ "title": "Editors",
+ "cip_codes": [
+ 9.01,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0908,
+ 9.1001,
+ 9.9999,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1405,
+ 23.1499,
+ 52.0501,
+ 52.0502,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3042",
+ "title": "Technical Writers",
+ "cip_codes": [
+ 9.0908,
+ 19.0202,
+ 23.1301,
+ 23.1303,
+ 52.0501,
+ 52.0502,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3043",
+ "title": "Writers and Authors",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.9999,
+ 19.0202,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1405,
+ 23.1499,
+ 50.0504,
+ 50.0511,
+ 52.0501,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3091",
+ "title": "Interpreters and Translators",
+ "cip_codes": [
+ 5.0211,
+ 13.1003,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1603,
+ 16.1699,
+ 16.1801,
+ 16.9999,
+ 22.0304,
+ 30.4001,
+ 30.4501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3092",
+ "title": "Court Reporters and Simultaneous Captioners",
+ "cip_codes": [
+ 10.0204,
+ 22.0303,
+ 22.0304,
+ 22.0305
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-3099",
+ "title": "Media and Communication Workers, All Other",
+ "cip_codes": [
+ 9.0101,
+ 9.0702,
+ 10.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-4011",
+ "title": "Audio and Video Technicians",
+ "cip_codes": [
+ 1.0802,
+ 10.0201,
+ 10.0203
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-4012",
+ "title": "Broadcast Technicians",
+ "cip_codes": [
+ 10.0105,
+ 10.0202,
+ 10.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-4014",
+ "title": "Sound Engineering Technicians",
+ "cip_codes": [
+ 10.0105,
+ 10.0203,
+ 15.0307,
+ 50.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-4015",
+ "title": "Lighting Technicians",
+ "cip_codes": [
+ 10.0201,
+ 10.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-4021",
+ "title": "Photographers",
+ "cip_codes": [
+ 9.0404,
+ 50.0101,
+ 50.0102,
+ 50.0406,
+ 50.0605,
+ 50.0701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-4031",
+ "title": "Camera Operators, Television, Video, and Film",
+ "cip_codes": [
+ 10.0202,
+ 10.0299,
+ 50.0602,
+ 50.0607
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-4032",
+ "title": "Film and Video Editors",
+ "cip_codes": [
+ 9.0404,
+ 9.0701,
+ 10.0105,
+ 10.0202,
+ 10.0299,
+ 50.0602,
+ 50.0607
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "27-4099",
+ "title": "Media and Communication Equipment Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1011",
+ "title": "Chiropractors",
+ "cip_codes": [
+ 51.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1021",
+ "title": "Dentists, General",
+ "cip_codes": [
+ 51.0401,
+ 51.0502,
+ 51.0509,
+ 60.0102,
+ 60.0106
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1022",
+ "title": "Oral and Maxillofacial Surgeons",
+ "cip_codes": [
+ 51.0507,
+ 60.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1023",
+ "title": "Orthodontists",
+ "cip_codes": [
+ 51.0508,
+ 60.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1024",
+ "title": "Prosthodontists",
+ "cip_codes": [
+ 51.0511,
+ 60.0108,
+ 60.011
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1029",
+ "title": "Dentists, All Other Specialists",
+ "cip_codes": [
+ 51.0501,
+ 51.0503,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.051,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.1404,
+ 60.0102,
+ 60.0103,
+ 60.0104,
+ 60.0106,
+ 60.0107,
+ 60.0109,
+ 60.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1031",
+ "title": "Dietitians and Nutritionists",
+ "cip_codes": [
+ 19.0501,
+ 19.0504,
+ 19.0505,
+ 19.0599,
+ 30.1901,
+ 51.3101,
+ 51.3102,
+ 51.3199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1041",
+ "title": "Optometrists",
+ "cip_codes": [
+ 51.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1051",
+ "title": "Pharmacists",
+ "cip_codes": [
+ 51.2001,
+ 51.2008,
+ 60.0801,
+ 60.0802,
+ 60.0803,
+ 60.0804,
+ 60.0805,
+ 60.0806,
+ 60.0807,
+ 60.0808,
+ 60.0809,
+ 60.081,
+ 60.0811,
+ 60.0812,
+ 60.0813,
+ 60.0814,
+ 60.0815,
+ 60.0816,
+ 60.0817,
+ 60.0818,
+ 60.0819,
+ 60.082,
+ 60.0821,
+ 60.0822,
+ 60.0823,
+ 60.0824,
+ 60.0825,
+ 60.0826,
+ 60.0827,
+ 60.0828,
+ 60.0829,
+ 60.083,
+ 60.0831,
+ 60.0832,
+ 60.0899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1071",
+ "title": "Physician Assistants",
+ "cip_codes": [
+ 51.0912,
+ 60.0901,
+ 60.0902,
+ 60.0903,
+ 60.0904,
+ 60.0905,
+ 60.0906,
+ 60.0907,
+ 60.0908,
+ 60.0909,
+ 60.091,
+ 60.0911,
+ 60.0912,
+ 60.0913,
+ 60.0914,
+ 60.0915,
+ 60.0916,
+ 60.0917,
+ 60.0918,
+ 60.0919,
+ 60.092,
+ 60.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1081",
+ "title": "Podiatrists",
+ "cip_codes": [
+ 51.1203,
+ 61.2201,
+ 61.2299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1122",
+ "title": "Occupational Therapists",
+ "cip_codes": [
+ 51.2306
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1123",
+ "title": "Physical Therapists",
+ "cip_codes": [
+ 51.2308,
+ 51.2311
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1124",
+ "title": "Radiation Therapists",
+ "cip_codes": [
+ 51.0907
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1125",
+ "title": "Recreational Therapists",
+ "cip_codes": [
+ 51.2309
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1126",
+ "title": "Respiratory Therapists",
+ "cip_codes": [
+ 51.0908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1127",
+ "title": "Speech-Language Pathologists",
+ "cip_codes": [
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1128",
+ "title": "Exercise Physiologists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.2311
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1129",
+ "title": "Therapists, All Other",
+ "cip_codes": [
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1131",
+ "title": "Veterinarians",
+ "cip_codes": [
+ 1.8001,
+ 1.8101,
+ 1.8102,
+ 1.8103,
+ 1.8104,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 60.0301,
+ 60.0302,
+ 60.0303,
+ 60.0304,
+ 60.0305,
+ 60.0306,
+ 60.0307,
+ 60.0308,
+ 60.0309,
+ 60.031,
+ 60.0311,
+ 60.0312,
+ 60.0313,
+ 60.0314,
+ 60.0315,
+ 60.0316,
+ 60.0317,
+ 60.0318,
+ 60.0319,
+ 60.032,
+ 60.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1141",
+ "title": "Registered Nurses",
+ "cip_codes": [
+ 51.3801,
+ 51.3802,
+ 51.3803,
+ 51.3805,
+ 51.3806,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1151",
+ "title": "Nurse Anesthetists",
+ "cip_codes": [
+ 51.3804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1161",
+ "title": "Nurse Midwives",
+ "cip_codes": [
+ 51.3807
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1171",
+ "title": "Nurse Practitioners",
+ "cip_codes": [
+ 51.3802,
+ 51.3803,
+ 51.3805,
+ 51.3806,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899,
+ 60.0701,
+ 60.0702,
+ 60.0703,
+ 60.0704,
+ 60.0705,
+ 60.0706,
+ 60.0707,
+ 60.0708,
+ 60.0709,
+ 60.071,
+ 60.0711,
+ 60.0712,
+ 60.0713,
+ 60.0714,
+ 60.0715,
+ 60.0716,
+ 60.0717,
+ 60.0718,
+ 60.0719,
+ 60.072,
+ 60.0721,
+ 60.0722,
+ 60.0723,
+ 60.0724,
+ 60.0725,
+ 60.0726,
+ 60.0727,
+ 60.0728,
+ 60.0729,
+ 60.073,
+ 60.0731,
+ 60.0732,
+ 60.0733,
+ 60.0734,
+ 60.0735,
+ 60.0736,
+ 60.0737,
+ 60.0738,
+ 60.0739,
+ 60.074,
+ 60.0741,
+ 60.0742,
+ 60.0743,
+ 60.0744,
+ 60.0745,
+ 60.0746,
+ 60.0747,
+ 60.0748,
+ 60.0749,
+ 60.075,
+ 60.0751,
+ 60.0799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1181",
+ "title": "Audiologists",
+ "cip_codes": [
+ 51.0201,
+ 51.0202,
+ 51.0204,
+ 51.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1211",
+ "title": "Anesthesiologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0103,
+ 61.0108,
+ 61.0119,
+ 61.0401,
+ 61.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1212",
+ "title": "Cardiologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1906
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1213",
+ "title": "Dermatologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0109,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1214",
+ "title": "Emergency Medicine Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0103,
+ 61.0104,
+ 61.011,
+ 61.0111,
+ 61.012,
+ 61.0202,
+ 61.0217,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1215",
+ "title": "Family Medicine Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0112,
+ 61.0701,
+ 61.0799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1216",
+ "title": "General Internal Medicine Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0108,
+ 61.0109,
+ 61.011,
+ 61.0111,
+ 61.0112,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1217",
+ "title": "Neurologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0114,
+ 61.0124,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1218",
+ "title": "Obstetricians and Gynecologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1221",
+ "title": "Pediatricians, General",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0115,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0122,
+ 61.0123,
+ 61.1703,
+ 61.1901,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2003,
+ 61.2609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1222",
+ "title": "Physicians, Pathologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0208,
+ 61.0502,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1223",
+ "title": "Psychiatrists",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0107,
+ 61.0117,
+ 61.0123,
+ 61.0124,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1224",
+ "title": "Radiologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0102,
+ 61.1201,
+ 61.1299,
+ 61.2501,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1229",
+ "title": "Physicians, All Other",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0105,
+ 61.0106,
+ 61.0113,
+ 61.0116,
+ 61.0118,
+ 61.0121,
+ 61.0122,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1799,
+ 61.1804,
+ 61.1902,
+ 61.2001,
+ 61.2002,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2501,
+ 61.2599,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1241",
+ "title": "Ophthalmologists, Except Pediatric",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.1401,
+ 61.1499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1242",
+ "title": "Orthopedic Surgeons, Except Pediatric",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0214,
+ 61.1501,
+ 61.1504,
+ 61.1599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1243",
+ "title": "Pediatric Surgeons",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.1501,
+ 61.1504,
+ 61.1505,
+ 61.1703,
+ 61.2101,
+ 61.2102,
+ 61.2103,
+ 61.2199,
+ 61.2704,
+ 61.2705,
+ 61.2802
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1249",
+ "title": "Surgeons, All Other",
+ "cip_codes": [
+ 51.1201,
+ 51.1202,
+ 61.0101,
+ 61.0199,
+ 61.0299,
+ 61.1001,
+ 61.1099,
+ 61.1701,
+ 61.1702,
+ 61.1799,
+ 61.2101,
+ 61.2102,
+ 61.2103,
+ 61.2199,
+ 61.2701,
+ 61.2702,
+ 61.2703,
+ 61.2704,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2801,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1291",
+ "title": "Acupuncturists",
+ "cip_codes": [
+ 51.3301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1292",
+ "title": "Dental Hygienists",
+ "cip_codes": [
+ 51.0602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-1299",
+ "title": "Healthcare Diagnosing or Treating Practitioners, All Other",
+ "cip_codes": [
+ 51.33,
+ 51.3301,
+ 51.3303,
+ 51.3304,
+ 51.3305,
+ 51.3306,
+ 51.3399,
+ 51.3401,
+ 51.3499,
+ 51.3701,
+ 51.3702,
+ 51.3703,
+ 51.3704,
+ 51.3799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2011",
+ "title": "Medical and Clinical Laboratory Technologists",
+ "cip_codes": [
+ 26.0401,
+ 51.1002,
+ 51.1005,
+ 51.1007,
+ 51.101,
+ 51.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2012",
+ "title": "Medical and Clinical Laboratory Technicians",
+ "cip_codes": [
+ 51.0802,
+ 51.1001,
+ 51.1003,
+ 51.1004,
+ 51.1008,
+ 51.101,
+ 51.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2031",
+ "title": "Cardiovascular Technologists and Technicians",
+ "cip_codes": [
+ 51.0901,
+ 51.0902,
+ 51.0906,
+ 51.0915
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2032",
+ "title": "Diagnostic Medical Sonographers",
+ "cip_codes": [
+ 51.091
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2033",
+ "title": "Nuclear Medicine Technologists",
+ "cip_codes": [
+ 51.0905
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2034",
+ "title": "Radiologic Technologists and Technicians",
+ "cip_codes": [
+ 51.0907,
+ 51.0911,
+ 51.0919
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2035",
+ "title": "Magnetic Resonance Imaging Technologists",
+ "cip_codes": [
+ 51.092
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2036",
+ "title": "Medical Dosimetrists",
+ "cip_codes": [
+ 51.0907
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2042",
+ "title": "Emergency Medical Technicians",
+ "cip_codes": [
+ 51.0904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2043",
+ "title": "Paramedics",
+ "cip_codes": [
+ 51.0904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2051",
+ "title": "Dietetic Technicians",
+ "cip_codes": [
+ 19.0501,
+ 30.1901,
+ 51.3101,
+ 51.3103,
+ 51.3104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2052",
+ "title": "Pharmacy Technicians",
+ "cip_codes": [
+ 51.0805
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2053",
+ "title": "Psychiatric Technicians",
+ "cip_codes": [
+ 51.1502
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2055",
+ "title": "Surgical Technologists",
+ "cip_codes": [
+ 51.0811,
+ 51.0909,
+ 51.1012
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2056",
+ "title": "Veterinary Technologists and Technicians",
+ "cip_codes": [
+ 1.8301,
+ 1.8399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2057",
+ "title": "Ophthalmic Medical Technicians",
+ "cip_codes": [
+ 51.1802,
+ 51.1803,
+ 51.1804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2061",
+ "title": "Licensed Practical and Licensed Vocational Nurses",
+ "cip_codes": [
+ 51.3901,
+ 51.3999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2072",
+ "title": "Medical Records Specialists",
+ "cip_codes": [
+ 51.0706,
+ 51.0707,
+ 51.0713,
+ 51.0721
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2081",
+ "title": "Opticians, Dispensing",
+ "cip_codes": [
+ 51.1801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2091",
+ "title": "Orthotists and Prosthetists",
+ "cip_codes": [
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2092",
+ "title": "Hearing Aid Specialists",
+ "cip_codes": [
+ 51.0918
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-2099",
+ "title": "Health Technologists and Technicians, All Other",
+ "cip_codes": [
+ 51.0812,
+ 51.0814,
+ 51.0903,
+ 51.0907,
+ 51.0908,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1011
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-9021",
+ "title": "Health Information Technologists and Medical Registrars",
+ "cip_codes": [
+ 51.0706,
+ 51.0707,
+ 51.0713,
+ 51.0721,
+ 51.0723,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-9091",
+ "title": "Athletic Trainers",
+ "cip_codes": [
+ 31.0507,
+ 51.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-9092",
+ "title": "Genetic Counselors",
+ "cip_codes": [
+ 26.0801,
+ 26.0802,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 51.1509,
+ 51.2214
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-9093",
+ "title": "Surgical Assistants",
+ "cip_codes": [
+ 51.0909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "29-9099",
+ "title": "Healthcare Practitioners and Technical Workers, All Other",
+ "cip_codes": [
+ 51.0711,
+ 51.3201,
+ 51.3302,
+ 51.3702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-1121",
+ "title": "Home Health Aides",
+ "cip_codes": [
+ 51.2602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-1122",
+ "title": "Personal Care Aides",
+ "cip_codes": [
+ 51.2602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-1131",
+ "title": "Nursing Assistants",
+ "cip_codes": [
+ 51.2601,
+ 51.3902,
+ 51.3999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-1132",
+ "title": "Orderlies",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-1133",
+ "title": "Psychiatric Aides",
+ "cip_codes": [
+ 51.1502,
+ 51.2601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-2011",
+ "title": "Occupational Therapy Assistants",
+ "cip_codes": [
+ 51.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-2012",
+ "title": "Occupational Therapy Aides",
+ "cip_codes": [
+ 51.2604
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-2021",
+ "title": "Physical Therapist Assistants",
+ "cip_codes": [
+ 51.0806
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-2022",
+ "title": "Physical Therapist Aides",
+ "cip_codes": [
+ 51.2604,
+ 51.2605
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9011",
+ "title": "Massage Therapists",
+ "cip_codes": [
+ 51.3501,
+ 51.3502,
+ 51.3503,
+ 51.3599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9091",
+ "title": "Dental Assistants",
+ "cip_codes": [
+ 51.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9092",
+ "title": "Medical Assistants",
+ "cip_codes": [
+ 51.0711,
+ 51.0801,
+ 51.0809,
+ 51.0813
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9093",
+ "title": "Medical Equipment Preparers",
+ "cip_codes": [
+ 51.1012
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9094",
+ "title": "Medical Transcriptionists",
+ "cip_codes": [
+ 51.0708
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9095",
+ "title": "Pharmacy Aides",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9096",
+ "title": "Veterinary Assistants and Laboratory Animal Caretakers",
+ "cip_codes": [
+ 1.8301,
+ 1.8399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9097",
+ "title": "Phlebotomists",
+ "cip_codes": [
+ 51.1009
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "31-9099",
+ "title": "Healthcare Support Workers, All Other",
+ "cip_codes": [
+ 51.0703,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.2603,
+ 51.2604
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-1011",
+ "title": "First-Line Supervisors of Correctional Officers",
+ "cip_codes": [
+ 43.01,
+ 43.0102,
+ 43.0104,
+ 43.0113
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-1012",
+ "title": "First-Line Supervisors of Police and Detectives",
+ "cip_codes": [
+ 3.0208,
+ 29.0203,
+ 43.01,
+ 43.0102,
+ 43.0103,
+ 43.0104,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0122,
+ 43.0123,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0401,
+ 43.0404,
+ 43.0407,
+ 43.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-1021",
+ "title": "First-Line Supervisors of Firefighting and Prevention Workers",
+ "cip_codes": [
+ 3.0208,
+ 43.0201,
+ 43.0202,
+ 43.0203,
+ 43.0205,
+ 43.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-1091",
+ "title": "First-Line Supervisors of Security Workers",
+ "cip_codes": [
+ 43.0109,
+ 43.0112,
+ 43.0399,
+ 43.0401,
+ 43.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-1099",
+ "title": "First-Line Supervisors of Protective Service Workers, All Other",
+ "cip_codes": [
+ 43.0112,
+ 43.0123,
+ 43.0399,
+ 43.0401,
+ 43.0404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-2011",
+ "title": "Firefighters",
+ "cip_codes": [
+ 3.0208,
+ 43.0201,
+ 43.0203,
+ 43.0206,
+ 43.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-2021",
+ "title": "Fire Inspectors and Investigators",
+ "cip_codes": [
+ 43.0201,
+ 43.0203,
+ 43.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-2022",
+ "title": "Forest Fire Inspectors and Prevention Specialists",
+ "cip_codes": [
+ 3.0208,
+ 43.0203,
+ 43.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-3011",
+ "title": "Bailiffs",
+ "cip_codes": [
+ 43.0107
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-3012",
+ "title": "Correctional Officers and Jailers",
+ "cip_codes": [
+ 43.01,
+ 43.0102,
+ 43.011,
+ 43.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-3021",
+ "title": "Detectives and Criminal Investigators",
+ "cip_codes": [
+ 3.0208,
+ 29.0203,
+ 43.01,
+ 43.0107,
+ 43.0114,
+ 43.0115,
+ 43.0121,
+ 43.0122,
+ 43.0123,
+ 43.0402,
+ 43.0403,
+ 43.0405,
+ 43.0407,
+ 43.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-3031",
+ "title": "Fish and Game Wardens",
+ "cip_codes": [
+ 3.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-3041",
+ "title": "Parking Enforcement Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-3051",
+ "title": "Police and Sheriff\u2019s Patrol Officers",
+ "cip_codes": [
+ 3.0208,
+ 43.01,
+ 43.0107,
+ 43.0114,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0122,
+ 43.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-3052",
+ "title": "Transit and Railroad Police",
+ "cip_codes": [
+ 43.0109
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9011",
+ "title": "Animal Control Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9021",
+ "title": "Private Detectives and Investigators",
+ "cip_codes": [
+ 43.0107,
+ 43.0115,
+ 43.012,
+ 43.0122,
+ 43.0123,
+ 43.0403,
+ 43.0405
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9031",
+ "title": "Gambling Surveillance Officers and Gambling Investigators",
+ "cip_codes": [
+ 12.0601,
+ 43.0109
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9032",
+ "title": "Security Guards",
+ "cip_codes": [
+ 43.0109
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9091",
+ "title": "Crossing Guards and Flaggers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9092",
+ "title": "Lifeguards, Ski Patrol, and Other Recreational Protective Service Workers",
+ "cip_codes": [
+ 3.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9093",
+ "title": "Transportation Security Screeners",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9094",
+ "title": "School Bus Monitors",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "33-9099",
+ "title": "Protective Service Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-1011",
+ "title": "Chefs and Head Cooks",
+ "cip_codes": [
+ 12.05,
+ 12.0501,
+ 12.0503,
+ 12.0504,
+ 12.0509
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-1012",
+ "title": "First-Line Supervisors of Food Preparation and Serving Workers",
+ "cip_codes": [
+ 12.05,
+ 12.0503,
+ 12.0504,
+ 12.0507,
+ 19.0505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-2011",
+ "title": "Cooks, Fast Food",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-2012",
+ "title": "Cooks, Institution and Cafeteria",
+ "cip_codes": [
+ 12.05,
+ 12.0505,
+ 12.0508,
+ 19.0505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-2013",
+ "title": "Cooks, Private Household",
+ "cip_codes": [
+ 12.0503,
+ 12.0504,
+ 12.0505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-2014",
+ "title": "Cooks, Restaurant",
+ "cip_codes": [
+ 12.05,
+ 12.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-2015",
+ "title": "Cooks, Short Order",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-2019",
+ "title": "Cooks, All Other",
+ "cip_codes": [
+ 12.05,
+ 12.0503,
+ 12.0505,
+ 12.0509
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-2021",
+ "title": "Food Preparation Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-3011",
+ "title": "Bartenders",
+ "cip_codes": [
+ 12.0502
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-3023",
+ "title": "Fast Food and Counter Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-3031",
+ "title": "Waiters and Waitresses",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-3041",
+ "title": "Food Servers, Nonrestaurant",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-9011",
+ "title": "Dining Room and Cafeteria Attendants and Bartender Helpers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-9021",
+ "title": "Dishwashers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-9031",
+ "title": "Hosts and Hostesses, Restaurant, Lounge, and Coffee Shop",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "35-9099",
+ "title": "Food Preparation and Serving Related Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-1011",
+ "title": "First-Line Supervisors of Housekeeping and Janitorial Workers",
+ "cip_codes": [
+ 46.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-1012",
+ "title": "First-Line Supervisors of Landscaping, Lawn Service, and Groundskeeping Workers",
+ "cip_codes": [
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0606,
+ 1.0607,
+ 31.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-2011",
+ "title": "Janitors and Cleaners, Except Maids and Housekeeping Cleaners",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-2012",
+ "title": "Maids and Housekeeping Cleaners",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-2019",
+ "title": "Building Cleaning Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-2021",
+ "title": "Pest Control Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-3011",
+ "title": "Landscaping and Groundskeeping Workers",
+ "cip_codes": [
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0606,
+ 1.0607,
+ 31.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-3012",
+ "title": "Pesticide Handlers, Sprayers, and Applicators, Vegetation",
+ "cip_codes": [
+ 1.0605,
+ 1.0606,
+ 1.0607
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-3013",
+ "title": "Tree Trimmers and Pruners",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "37-3019",
+ "title": "Grounds Maintenance Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-1013",
+ "title": "First-Line Supervisors of Gambling Services Workers",
+ "cip_codes": [
+ 12.0601,
+ 12.0602,
+ 52.0908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-1014",
+ "title": "First-Line Supervisors of Entertainment and Recreation Workers, Except Gambling Services",
+ "cip_codes": [
+ 31.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-1022",
+ "title": "First-Line Supervisors of Personal Service Workers",
+ "cip_codes": [
+ 12.0412
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-2011",
+ "title": "Animal Trainers",
+ "cip_codes": [
+ 1.0505,
+ 1.0507,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-2021",
+ "title": "Animal Caretakers",
+ "cip_codes": [
+ 1.0504,
+ 1.0509,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3011",
+ "title": "Gambling Dealers",
+ "cip_codes": [
+ 12.0602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3012",
+ "title": "Gambling and Sports Book Writers and Runners",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3019",
+ "title": "Gambling Service Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3021",
+ "title": "Motion Picture Projectionists",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3031",
+ "title": "Ushers, Lobby Attendants, and Ticket Takers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3091",
+ "title": "Amusement and Recreation Attendants",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3092",
+ "title": "Costume Attendants",
+ "cip_codes": [
+ 50.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3093",
+ "title": "Locker Room, Coatroom, and Dressing Room Attendants",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-3099",
+ "title": "Entertainment Attendants and Related Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-4011",
+ "title": "Embalmers",
+ "cip_codes": [
+ 12.0301,
+ 12.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-4012",
+ "title": "Crematory Operators",
+ "cip_codes": [
+ 12.0303,
+ 12.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-4021",
+ "title": "Funeral Attendants",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-4031",
+ "title": "Morticians, Undertakers, and Funeral Arrangers",
+ "cip_codes": [
+ 12.0301,
+ 12.0302,
+ 12.0399,
+ 30.5301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-5011",
+ "title": "Barbers",
+ "cip_codes": [
+ 12.0402,
+ 12.0407,
+ 12.0412,
+ 12.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-5012",
+ "title": "Hairdressers, Hairstylists, and Cosmetologists",
+ "cip_codes": [
+ 12.0401,
+ 12.0404,
+ 12.0406,
+ 12.0407,
+ 12.0411,
+ 12.0412,
+ 12.0413,
+ 12.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-5091",
+ "title": "Makeup Artists, Theatrical and Performance",
+ "cip_codes": [
+ 12.0401,
+ 12.0406,
+ 12.0411
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-5092",
+ "title": "Manicurists and Pedicurists",
+ "cip_codes": [
+ 12.0401,
+ 12.041
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-5093",
+ "title": "Shampooers",
+ "cip_codes": [
+ 12.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-5094",
+ "title": "Skincare Specialists",
+ "cip_codes": [
+ 12.0401,
+ 12.0408,
+ 12.0409,
+ 12.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-6011",
+ "title": "Baggage Porters and Bellhops",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-6012",
+ "title": "Concierges",
+ "cip_codes": [
+ 12.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-7011",
+ "title": "Tour Guides and Escorts",
+ "cip_codes": [
+ 45.0301,
+ 54.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-7012",
+ "title": "Travel Guides",
+ "cip_codes": [
+ 52.0903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-9011",
+ "title": "Childcare Workers",
+ "cip_codes": [
+ 19.0706,
+ 19.0709,
+ 19.0711
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-9031",
+ "title": "Exercise Trainers and Group Fitness Instructors",
+ "cip_codes": [
+ 13.1314,
+ 31.0501,
+ 31.0504,
+ 31.0507,
+ 51.3602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-9032",
+ "title": "Recreation Workers",
+ "cip_codes": [
+ 31.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-9041",
+ "title": "Residential Advisors",
+ "cip_codes": [
+ 13.1102,
+ 13.1199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "39-9099",
+ "title": "Personal Care and Service Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-1011",
+ "title": "First-Line Supervisors of Retail Sales Workers",
+ "cip_codes": [
+ 1.0608,
+ 19.0203,
+ 52.0208,
+ 52.0212,
+ 52.1803,
+ 52.1804,
+ 52.1899,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-1012",
+ "title": "First-Line Supervisors of Non-Retail Sales Workers",
+ "cip_codes": [
+ 52.1804,
+ 52.1899,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-2011",
+ "title": "Cashiers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-2012",
+ "title": "Gambling Change Persons and Booth Cashiers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-2021",
+ "title": "Counter and Rental Clerks",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-2022",
+ "title": "Parts Salespersons",
+ "cip_codes": [
+ 52.1804,
+ 52.1907
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-2031",
+ "title": "Retail Salespersons",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-3011",
+ "title": "Advertising Sales Agents",
+ "cip_codes": [
+ 52.1804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-3021",
+ "title": "Insurance Sales Agents",
+ "cip_codes": [
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-3031",
+ "title": "Securities, Commodities, and Financial Services Sales Agents",
+ "cip_codes": [
+ 52.0804,
+ 52.0807,
+ 52.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-3041",
+ "title": "Travel Agents",
+ "cip_codes": [
+ 52.1804,
+ 52.1905
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-3091",
+ "title": "Sales Representatives of Services, Except Advertising, Insurance, Financial Services, and Travel",
+ "cip_codes": [
+ 52.1803,
+ 52.1804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-4011",
+ "title": "Sales Representatives, Wholesale and Manufacturing, Technical and Scientific Products",
+ "cip_codes": [
+ 52.1804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-4012",
+ "title": "Sales Representatives, Wholesale and Manufacturing, Except Technical and Scientific Products",
+ "cip_codes": [
+ 1.0105,
+ 52.1801,
+ 52.1899,
+ 52.1902,
+ 52.1904,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-9011",
+ "title": "Demonstrators and Product Promoters",
+ "cip_codes": [
+ 52.1803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-9012",
+ "title": "Models",
+ "cip_codes": [
+ 52.1903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-9021",
+ "title": "Real Estate Brokers",
+ "cip_codes": [
+ 4.1001,
+ 52.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-9022",
+ "title": "Real Estate Sales Agents",
+ "cip_codes": [
+ 4.1001,
+ 52.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-9031",
+ "title": "Sales Engineers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-9041",
+ "title": "Telemarketers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-9091",
+ "title": "Door-to-Door Sales Workers, News and Street Vendors, and Related Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "41-9099",
+ "title": "Sales and Related Workers, All Other",
+ "cip_codes": [
+ 52.1803,
+ 52.1804,
+ 52.1901,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-1011",
+ "title": "First-Line Supervisors of Office and Administrative Support Workers",
+ "cip_codes": [
+ 1.0106,
+ 1.8201,
+ 1.8202,
+ 1.8203,
+ 1.8204,
+ 51.0705,
+ 51.0711,
+ 51.0712,
+ 52.0204,
+ 52.0207,
+ 52.0208,
+ 52.0401,
+ 52.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-2011",
+ "title": "Switchboard Operators, Including Answering Service",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-2021",
+ "title": "Telephone Operators",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-2099",
+ "title": "Communications Equipment Operators, All Other",
+ "cip_codes": [
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-3011",
+ "title": "Bill and Account Collectors",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-3021",
+ "title": "Billing and Posting Clerks",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-3031",
+ "title": "Bookkeeping, Accounting, and Auditing Clerks",
+ "cip_codes": [
+ 52.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-3041",
+ "title": "Gambling Cage Workers",
+ "cip_codes": [
+ 12.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-3051",
+ "title": "Payroll and Timekeeping Clerks",
+ "cip_codes": [
+ 52.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-3061",
+ "title": "Procurement Clerks",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-3071",
+ "title": "Tellers",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-3099",
+ "title": "Financial Clerks, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4011",
+ "title": "Brokerage Clerks",
+ "cip_codes": [
+ 52.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4021",
+ "title": "Correspondence Clerks",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4031",
+ "title": "Court, Municipal, and License Clerks",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4041",
+ "title": "Credit Authorizers, Checkers, and Clerks",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4051",
+ "title": "Customer Service Representatives",
+ "cip_codes": [
+ 52.0406,
+ 52.0411
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4061",
+ "title": "Eligibility Interviewers, Government Programs",
+ "cip_codes": [
+ 44.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4071",
+ "title": "File Clerks",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4081",
+ "title": "Hotel, Motel, and Resort Desk Clerks",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4111",
+ "title": "Interviewers, Except Eligibility and Loan",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4121",
+ "title": "Library Assistants, Clerical",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4131",
+ "title": "Loan Interviewers and Clerks",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4141",
+ "title": "New Accounts Clerks",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4151",
+ "title": "Order Clerks",
+ "cip_codes": [
+ 52.0406,
+ 52.0408,
+ 52.0411
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4161",
+ "title": "Human Resources Assistants, Except Payroll and Timekeeping",
+ "cip_codes": [
+ 52.0401,
+ 52.0407,
+ 52.1001,
+ 52.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4171",
+ "title": "Receptionists and Information Clerks",
+ "cip_codes": [
+ 1.8203,
+ 52.0406
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4181",
+ "title": "Reservation and Transportation Ticket Agents and Travel Clerks",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-4199",
+ "title": "Information and Record Clerks, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5011",
+ "title": "Cargo and Freight Agents",
+ "cip_codes": [
+ 52.0408,
+ 52.041
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5021",
+ "title": "Couriers and Messengers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5031",
+ "title": "Public Safety Telecommunicators",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5032",
+ "title": "Dispatchers, Except Police, Fire, and Ambulance",
+ "cip_codes": [
+ 52.041
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5041",
+ "title": "Meter Readers, Utilities",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5051",
+ "title": "Postal Service Clerks",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5052",
+ "title": "Postal Service Mail Carriers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5053",
+ "title": "Postal Service Mail Sorters, Processors, and Processing Machine Operators",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5061",
+ "title": "Production, Planning, and Expediting Clerks",
+ "cip_codes": [
+ 52.0409
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5071",
+ "title": "Shipping, Receiving, and Inventory Clerks",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-5111",
+ "title": "Weighers, Measurers, Checkers, and Samplers, Recordkeeping",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-6011",
+ "title": "Executive Secretaries and Executive Administrative Assistants",
+ "cip_codes": [
+ 52.0401,
+ 52.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-6012",
+ "title": "Legal Secretaries and Administrative Assistants",
+ "cip_codes": [
+ 22.0301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-6013",
+ "title": "Medical Secretaries and Administrative Assistants",
+ "cip_codes": [
+ 1.8201,
+ 1.8204,
+ 51.071,
+ 51.0711,
+ 51.0712,
+ 51.0714,
+ 51.0716
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-6014",
+ "title": "Secretaries and Administrative Assistants, Except Legal, Medical, and Executive",
+ "cip_codes": [
+ 52.0401,
+ 52.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9021",
+ "title": "Data Entry Keyers",
+ "cip_codes": [
+ 10.0305,
+ 11.0601,
+ 52.0407
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9022",
+ "title": "Word Processors and Typists",
+ "cip_codes": [
+ 11.0602,
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9031",
+ "title": "Desktop Publishers",
+ "cip_codes": [
+ 10.0303,
+ 10.0308
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9041",
+ "title": "Insurance Claims and Policy Processing Clerks",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9051",
+ "title": "Mail Clerks and Mail Machine Operators, Except Postal Service",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9061",
+ "title": "Office Clerks, General",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9071",
+ "title": "Office Machine Operators, Except Computer",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9081",
+ "title": "Proofreaders and Copy Markers",
+ "cip_codes": [
+ 9.0401,
+ 23.0101,
+ 23.1301,
+ 23.1399,
+ 52.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9111",
+ "title": "Statistical Assistants",
+ "cip_codes": [
+ 52.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "43-9199",
+ "title": "Office and Administrative Support Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-1011",
+ "title": "First-Line Supervisors of Farming, Fishing, and Forestry Workers",
+ "cip_codes": [
+ 1.0101,
+ 1.0104,
+ 1.0199,
+ 1.0301,
+ 1.0302,
+ 1.0303,
+ 1.0304,
+ 1.0306,
+ 1.0307,
+ 1.0308,
+ 1.031,
+ 1.0399,
+ 1.0401,
+ 1.0604,
+ 1.0606,
+ 1.0901,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1004,
+ 1.1101,
+ 1.1102,
+ 3.0301,
+ 3.0501,
+ 3.051
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-2011",
+ "title": "Agricultural Inspectors",
+ "cip_codes": [
+ 1.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-2021",
+ "title": "Animal Breeders",
+ "cip_codes": [
+ 1.0302,
+ 1.0307,
+ 1.031
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-2041",
+ "title": "Graders and Sorters, Agricultural Products",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-2091",
+ "title": "Agricultural Equipment Operators",
+ "cip_codes": [
+ 1.0204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-2092",
+ "title": "Farmworkers and Laborers, Crop, Nursery, and Greenhouse",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-2093",
+ "title": "Farmworkers, Farm, Ranch, and Aquacultural Animals",
+ "cip_codes": [
+ 1.031
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-2099",
+ "title": "Agricultural Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-3031",
+ "title": "Fishing and Hunting Workers",
+ "cip_codes": [
+ 3.0301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-4011",
+ "title": "Forest and Conservation Workers",
+ "cip_codes": [
+ 1.0606,
+ 3.0501,
+ 3.0511,
+ 3.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-4021",
+ "title": "Fallers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-4022",
+ "title": "Logging Equipment Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-4023",
+ "title": "Log Graders and Scalers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "45-4029",
+ "title": "Logging Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-1011",
+ "title": "First-Line Supervisors of Construction Trades and Extraction Workers",
+ "cip_codes": [
+ 46.0,
+ 46.0101,
+ 46.0201,
+ 46.0302,
+ 46.0401,
+ 46.0402,
+ 46.0403,
+ 46.0404,
+ 46.0406,
+ 46.0408,
+ 46.041,
+ 46.0412,
+ 46.0413,
+ 46.0414,
+ 46.0415,
+ 46.0502,
+ 46.0503,
+ 46.0504,
+ 46.0505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2011",
+ "title": "Boilermakers",
+ "cip_codes": [
+ 48.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2021",
+ "title": "Brickmasons and Blockmasons",
+ "cip_codes": [
+ 46.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2022",
+ "title": "Stonemasons",
+ "cip_codes": [
+ 46.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2031",
+ "title": "Carpenters",
+ "cip_codes": [
+ 46.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2041",
+ "title": "Carpet Installers",
+ "cip_codes": [
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2042",
+ "title": "Floor Layers, Except Carpet, Wood, and Hard Tiles",
+ "cip_codes": [
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2043",
+ "title": "Floor Sanders and Finishers",
+ "cip_codes": [
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2044",
+ "title": "Tile and Stone Setters",
+ "cip_codes": [
+ 46.0101,
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2051",
+ "title": "Cement Masons and Concrete Finishers",
+ "cip_codes": [
+ 46.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2053",
+ "title": "Terrazzo Workers and Finishers",
+ "cip_codes": [
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2061",
+ "title": "Construction Laborers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2071",
+ "title": "Paving, Surfacing, and Tamping Equipment Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2072",
+ "title": "Pile Driver Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2073",
+ "title": "Operating Engineers and Other Construction Equipment Operators",
+ "cip_codes": [
+ 49.0202,
+ 49.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2081",
+ "title": "Drywall and Ceiling Tile Installers",
+ "cip_codes": [
+ 46.0404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2082",
+ "title": "Tapers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2111",
+ "title": "Electricians",
+ "cip_codes": [
+ 46.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2121",
+ "title": "Glaziers",
+ "cip_codes": [
+ 46.0406
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2131",
+ "title": "Insulation Workers, Floor, Ceiling, and Wall",
+ "cip_codes": [
+ 46.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2132",
+ "title": "Insulation Workers, Mechanical",
+ "cip_codes": [
+ 46.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2141",
+ "title": "Painters, Construction and Maintenance",
+ "cip_codes": [
+ 46.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2142",
+ "title": "Paperhangers",
+ "cip_codes": [
+ 46.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2151",
+ "title": "Pipelayers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2152",
+ "title": "Plumbers, Pipefitters, and Steamfitters",
+ "cip_codes": [
+ 46.0502,
+ 46.0503,
+ 46.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2161",
+ "title": "Plasterers and Stucco Masons",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2171",
+ "title": "Reinforcing Iron and Rebar Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2181",
+ "title": "Roofers",
+ "cip_codes": [
+ 46.041
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2211",
+ "title": "Sheet Metal Workers",
+ "cip_codes": [
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2221",
+ "title": "Structural Iron and Steel Workers",
+ "cip_codes": [
+ 46.0411
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-2231",
+ "title": "Solar Photovoltaic Installers",
+ "cip_codes": [
+ 15.1703,
+ 46.041,
+ 47.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-3011",
+ "title": "Helpers--Brickmasons, Blockmasons, Stonemasons, and Tile and Marble Setters",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-3012",
+ "title": "Helpers--Carpenters",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-3013",
+ "title": "Helpers--Electricians",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-3014",
+ "title": "Helpers--Painters, Paperhangers, Plasterers, and Stucco Masons",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-3015",
+ "title": "Helpers--Pipelayers, Plumbers, Pipefitters, and Steamfitters",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-3016",
+ "title": "Helpers--Roofers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-3019",
+ "title": "Helpers, Construction Trades, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4011",
+ "title": "Construction and Building Inspectors",
+ "cip_codes": [
+ 46.0403
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4021",
+ "title": "Elevator and Escalator Installers and Repairers",
+ "cip_codes": [
+ 47.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4031",
+ "title": "Fence Erectors",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4041",
+ "title": "Hazardous Materials Removal Workers",
+ "cip_codes": [
+ 15.0508
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4051",
+ "title": "Highway Maintenance Workers",
+ "cip_codes": [
+ 49.0202,
+ 49.0207
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4061",
+ "title": "Rail-Track Laying and Maintenance Equipment Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4071",
+ "title": "Septic Tank Servicers and Sewer Pipe Cleaners",
+ "cip_codes": [
+ 46.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4091",
+ "title": "Segmental Pavers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-4099",
+ "title": "Construction and Related Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5011",
+ "title": "Derrick Operators, Oil and Gas",
+ "cip_codes": [
+ 46.0504
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5012",
+ "title": "Rotary Drill Operators, Oil and Gas",
+ "cip_codes": [
+ 46.0504
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5013",
+ "title": "Service Unit Operators, Oil and Gas",
+ "cip_codes": [
+ 15.0901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5022",
+ "title": "Excavating and Loading Machine and Dragline Operators, Surface Mining",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5023",
+ "title": "Earth Drillers, Except Oil and Gas",
+ "cip_codes": [
+ 46.0504,
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5032",
+ "title": "Explosives Workers, Ordnance Handling Experts, and Blasters",
+ "cip_codes": [
+ 46.0504,
+ 46.0505,
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5041",
+ "title": "Continuous Mining Machine Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5043",
+ "title": "Roof Bolters, Mining",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5044",
+ "title": "Loading and Moving Machine Operators, Underground Mining",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5049",
+ "title": "Underground Mining Machine Operators, All Other",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5051",
+ "title": "Rock Splitters, Quarry",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5071",
+ "title": "Roustabouts, Oil and Gas",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5081",
+ "title": "Helpers--Extraction Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "47-5099",
+ "title": "Extraction Workers, All Other",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-1011",
+ "title": "First-Line Supervisors of Mechanics, Installers, and Repairers",
+ "cip_codes": [
+ 46.0301,
+ 46.0303,
+ 47.0,
+ 47.06,
+ 47.0617,
+ 47.0618,
+ 47.0701,
+ 47.0703,
+ 47.0704,
+ 47.0705,
+ 47.0706,
+ 52.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2011",
+ "title": "Computer, Automated Teller, and Office Machine Repairers",
+ "cip_codes": [
+ 47.0102,
+ 47.0104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2021",
+ "title": "Radio, Cellular, and Tower Equipment Installers and Repairers",
+ "cip_codes": [
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2022",
+ "title": "Telecommunications Equipment Installers and Repairers, Except Line Installers",
+ "cip_codes": [
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2091",
+ "title": "Avionics Technicians",
+ "cip_codes": [
+ 14.0299,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2092",
+ "title": "Electric Motor, Power Tool, and Related Repairers",
+ "cip_codes": [
+ 47.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2093",
+ "title": "Electrical and Electronics Installers and Repairers, Transportation Equipment",
+ "cip_codes": [
+ 47.0604
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2094",
+ "title": "Electrical and Electronics Repairers, Commercial and Industrial Equipment",
+ "cip_codes": [
+ 47.0104,
+ 47.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2095",
+ "title": "Electrical and Electronics Repairers, Powerhouse, Substation, and Relay",
+ "cip_codes": [
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 47.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2096",
+ "title": "Electronic Equipment Installers and Repairers, Motor Vehicles",
+ "cip_codes": [
+ 47.0604
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2097",
+ "title": "Audiovisual Equipment Installers and Repairers",
+ "cip_codes": [
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-2098",
+ "title": "Security and Fire Alarm Systems Installers",
+ "cip_codes": [
+ 46.0302,
+ 47.011
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3011",
+ "title": "Aircraft Mechanics and Service Technicians",
+ "cip_codes": [
+ 1.0205,
+ 47.0607,
+ 47.0608
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3021",
+ "title": "Automotive Body and Related Repairers",
+ "cip_codes": [
+ 47.0603
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3022",
+ "title": "Automotive Glass Installers and Repairers",
+ "cip_codes": [
+ 47.0603
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3023",
+ "title": "Automotive Service Technicians and Mechanics",
+ "cip_codes": [
+ 15.0803,
+ 15.0807,
+ 47.06,
+ 47.0604,
+ 47.0612,
+ 47.0613,
+ 47.0614,
+ 47.0617
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3031",
+ "title": "Bus and Truck Mechanics and Diesel Engine Specialists",
+ "cip_codes": [
+ 47.0605,
+ 47.0613
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3041",
+ "title": "Farm Equipment Mechanics and Service Technicians",
+ "cip_codes": [
+ 1.0201,
+ 1.0204,
+ 1.0205,
+ 1.0207,
+ 1.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3042",
+ "title": "Mobile Heavy Equipment Mechanics, Except Engines",
+ "cip_codes": [
+ 1.0205,
+ 47.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3043",
+ "title": "Rail Car Repairers",
+ "cip_codes": [
+ 47.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3051",
+ "title": "Motorboat Mechanics and Service Technicians",
+ "cip_codes": [
+ 15.0806,
+ 47.0606,
+ 47.0616
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3052",
+ "title": "Motorcycle Mechanics",
+ "cip_codes": [
+ 47.0611
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3053",
+ "title": "Outdoor Power Equipment and Other Small Engine Mechanics",
+ "cip_codes": [
+ 47.0606
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3091",
+ "title": "Bicycle Repairers",
+ "cip_codes": [
+ 47.061
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3092",
+ "title": "Recreational Vehicle Service Technicians",
+ "cip_codes": [
+ 47.0618
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-3093",
+ "title": "Tire Repairers and Changers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9011",
+ "title": "Mechanical Door Repairers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9012",
+ "title": "Control and Valve Installers and Repairers, Except Mechanical Door",
+ "cip_codes": [
+ 47.0302,
+ 47.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9021",
+ "title": "Heating, Air Conditioning, and Refrigeration Mechanics and Installers",
+ "cip_codes": [
+ 15.0501,
+ 47.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9031",
+ "title": "Home Appliance Repairers",
+ "cip_codes": [
+ 47.0106
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9041",
+ "title": "Industrial Machinery Mechanics",
+ "cip_codes": [
+ 47.0303,
+ 47.0701,
+ 47.0705,
+ 47.0706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9043",
+ "title": "Maintenance Workers, Machinery",
+ "cip_codes": [
+ 47.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9044",
+ "title": "Millwrights",
+ "cip_codes": [
+ 47.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9045",
+ "title": "Refractory Materials Repairers, Except Brickmasons",
+ "cip_codes": [
+ 47.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9051",
+ "title": "Electrical Power-Line Installers and Repairers",
+ "cip_codes": [
+ 46.0301,
+ 46.0303,
+ 46.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9052",
+ "title": "Telecommunications Line Installers and Repairers",
+ "cip_codes": [
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9061",
+ "title": "Camera and Photographic Equipment Repairers",
+ "cip_codes": [
+ 47.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9062",
+ "title": "Medical Equipment Repairers",
+ "cip_codes": [
+ 15.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9063",
+ "title": "Musical Instrument Repairers and Tuners",
+ "cip_codes": [
+ 47.0404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9064",
+ "title": "Watch and Clock Repairers",
+ "cip_codes": [
+ 47.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9069",
+ "title": "Precision Instrument and Equipment Repairers, All Other",
+ "cip_codes": [
+ 15.0404,
+ 47.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9071",
+ "title": "Maintenance and Repair Workers, General",
+ "cip_codes": [
+ 46.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9081",
+ "title": "Wind Turbine Service Technicians",
+ "cip_codes": [
+ 15.1704,
+ 47.0303,
+ 47.0701,
+ 47.0704
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9091",
+ "title": "Coin, Vending, and Amusement Machine Servicers and Repairers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9092",
+ "title": "Commercial Divers",
+ "cip_codes": [
+ 49.0304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9094",
+ "title": "Locksmiths and Safe Repairers",
+ "cip_codes": [
+ 47.0403
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9095",
+ "title": "Manufactured Building and Mobile Home Installers",
+ "cip_codes": [
+ 46.0412
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9096",
+ "title": "Riggers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9097",
+ "title": "Signal and Track Switch Repairers",
+ "cip_codes": [
+ 46.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9098",
+ "title": "Helpers--Installation, Maintenance, and Repair Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "49-9099",
+ "title": "Installation, Maintenance, and Repair Workers, All Other",
+ "cip_codes": [
+ 47.0,
+ 47.0101,
+ 47.0402,
+ 47.0409,
+ 47.0701,
+ 47.0703,
+ 47.0705,
+ 47.0706,
+ 47.0799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-1011",
+ "title": "First-Line Supervisors of Production and Operating Workers",
+ "cip_codes": [
+ 52.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2011",
+ "title": "Aircraft Structure, Surfaces, Rigging, and Systems Assemblers",
+ "cip_codes": [
+ 47.0607,
+ 47.0608,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2021",
+ "title": "Coil Winders, Tapers, and Finishers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2022",
+ "title": "Electrical and Electronic Equipment Assemblers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2023",
+ "title": "Electromechanical Equipment Assemblers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2031",
+ "title": "Engine and Other Machine Assemblers",
+ "cip_codes": [
+ 47.0615
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2041",
+ "title": "Structural Metal Fabricators and Fitters",
+ "cip_codes": [
+ 48.0503,
+ 48.0511
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2051",
+ "title": "Fiberglass Laminators and Fabricators",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2061",
+ "title": "Timing Device Assemblers and Adjusters",
+ "cip_codes": [
+ 47.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2092",
+ "title": "Team Assemblers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-2099",
+ "title": "Assemblers and Fabricators, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-3011",
+ "title": "Bakers",
+ "cip_codes": [
+ 12.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-3021",
+ "title": "Butchers and Meat Cutters",
+ "cip_codes": [
+ 12.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-3022",
+ "title": "Meat, Poultry, and Fish Cutters and Trimmers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-3023",
+ "title": "Slaughterers and Meat Packers",
+ "cip_codes": [
+ 12.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-3091",
+ "title": "Food and Tobacco Roasting, Baking, and Drying Machine Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-3092",
+ "title": "Food Batchmakers",
+ "cip_codes": [
+ 1.1003,
+ 1.1005
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-3093",
+ "title": "Food Cooking Machine Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-3099",
+ "title": "Food Processing Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4021",
+ "title": "Extruding and Drawing Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4022",
+ "title": "Forging Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4023",
+ "title": "Rolling Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4031",
+ "title": "Cutting, Punching, and Press Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4032",
+ "title": "Drilling and Boring Machine Tool Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4033",
+ "title": "Grinding, Lapping, Polishing, and Buffing Machine Tool Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4034",
+ "title": "Lathe and Turning Machine Tool Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4035",
+ "title": "Milling and Planing Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4041",
+ "title": "Machinists",
+ "cip_codes": [
+ 48.0501,
+ 48.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4051",
+ "title": "Metal-Refining Furnace Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4052",
+ "title": "Pourers and Casters, Metal",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4061",
+ "title": "Model Makers, Metal and Plastic",
+ "cip_codes": [
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4062",
+ "title": "Patternmakers, Metal and Plastic",
+ "cip_codes": [
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4071",
+ "title": "Foundry Mold and Coremakers",
+ "cip_codes": [
+ 48.0509
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4072",
+ "title": "Molding, Coremaking, and Casting Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4081",
+ "title": "Multiple Machine Tool Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4111",
+ "title": "Tool and Die Makers",
+ "cip_codes": [
+ 48.0507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4121",
+ "title": "Welders, Cutters, Solderers, and Brazers",
+ "cip_codes": [
+ 15.0614,
+ 48.0508
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4122",
+ "title": "Welding, Soldering, and Brazing Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 48.0508
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4191",
+ "title": "Heat Treating Equipment Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4192",
+ "title": "Layout Workers, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4193",
+ "title": "Plating Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4194",
+ "title": "Tool Grinders, Filers, and Sharpeners",
+ "cip_codes": [
+ 48.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-4199",
+ "title": "Metal Workers and Plastic Workers, All Other",
+ "cip_codes": [
+ 48.0501,
+ 48.0503,
+ 48.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-5111",
+ "title": "Prepress Technicians and Workers",
+ "cip_codes": [
+ 10.0301,
+ 10.0302,
+ 10.0303,
+ 10.0305,
+ 10.0306,
+ 10.0307,
+ 10.0308,
+ 10.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-5112",
+ "title": "Printing Press Operators",
+ "cip_codes": [
+ 10.0302,
+ 10.0305,
+ 10.0307,
+ 10.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-5113",
+ "title": "Print Binding and Finishing Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6011",
+ "title": "Laundry and Dry-Cleaning Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6021",
+ "title": "Pressers, Textile, Garment, and Related Materials",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6031",
+ "title": "Sewing Machine Operators",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6041",
+ "title": "Shoe and Leather Workers and Repairers",
+ "cip_codes": [
+ 48.0304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6042",
+ "title": "Shoe Machine Operators and Tenders",
+ "cip_codes": [
+ 48.0304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6051",
+ "title": "Sewers, Hand",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6052",
+ "title": "Tailors, Dressmakers, and Custom Sewers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6061",
+ "title": "Textile Bleaching and Dyeing Machine Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6062",
+ "title": "Textile Cutting Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6063",
+ "title": "Textile Knitting and Weaving Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6064",
+ "title": "Textile Winding, Twisting, and Drawing Out Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6091",
+ "title": "Extruding and Forming Machine Setters, Operators, and Tenders, Synthetic and Glass Fibers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6092",
+ "title": "Fabric and Apparel Patternmakers",
+ "cip_codes": [
+ 19.0902
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6093",
+ "title": "Upholsterers",
+ "cip_codes": [
+ 48.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-6099",
+ "title": "Textile, Apparel, and Furnishings Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-7011",
+ "title": "Cabinetmakers and Bench Carpenters",
+ "cip_codes": [
+ 48.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-7021",
+ "title": "Furniture Finishers",
+ "cip_codes": [
+ 48.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-7031",
+ "title": "Model Makers, Wood",
+ "cip_codes": [
+ 48.0703,
+ 48.0704
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-7032",
+ "title": "Patternmakers, Wood",
+ "cip_codes": [
+ 48.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-7041",
+ "title": "Sawing Machine Setters, Operators, and Tenders, Wood",
+ "cip_codes": [
+ 48.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-7042",
+ "title": "Woodworking Machine Setters, Operators, and Tenders, Except Sawing",
+ "cip_codes": [
+ 48.0701,
+ 48.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-7099",
+ "title": "Woodworkers, All Other",
+ "cip_codes": [
+ 48.0701,
+ 48.0702,
+ 48.0703,
+ 48.0704,
+ 48.0799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8011",
+ "title": "Nuclear Power Reactor Operators",
+ "cip_codes": [
+ 41.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8012",
+ "title": "Power Distributors and Dispatchers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8013",
+ "title": "Power Plant Operators",
+ "cip_codes": [
+ 15.1702,
+ 15.1705
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8021",
+ "title": "Stationary Engineers and Boiler Operators",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8031",
+ "title": "Water and Wastewater Treatment Plant and System Operators",
+ "cip_codes": [
+ 15.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8091",
+ "title": "Chemical Plant and System Operators",
+ "cip_codes": [
+ 41.0301,
+ 41.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8092",
+ "title": "Gas Plant Operators",
+ "cip_codes": [
+ 15.0903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8093",
+ "title": "Petroleum Pump System Operators, Refinery Operators, and Gaugers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-8099",
+ "title": "Plant and System Operators, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9011",
+ "title": "Chemical Equipment Operators and Tenders",
+ "cip_codes": [
+ 41.0301,
+ 41.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9012",
+ "title": "Separating, Filtering, Clarifying, Precipitating, and Still Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 1.1003,
+ 1.1004,
+ 1.1005
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9021",
+ "title": "Crushing, Grinding, and Polishing Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9022",
+ "title": "Grinding and Polishing Workers, Hand",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9023",
+ "title": "Mixing and Blending Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9031",
+ "title": "Cutters and Trimmers, Hand",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9032",
+ "title": "Cutting and Slicing Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9041",
+ "title": "Extruding, Forming, Pressing, and Compacting Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9051",
+ "title": "Furnace, Kiln, Oven, Drier, and Kettle Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9061",
+ "title": "Inspectors, Testers, Sorters, Samplers, and Weighers",
+ "cip_codes": [
+ 15.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9071",
+ "title": "Jewelers and Precious Stone and Metal Workers",
+ "cip_codes": [
+ 47.0408,
+ 50.0713,
+ 50.0714
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9081",
+ "title": "Dental Laboratory Technicians",
+ "cip_codes": [
+ 51.0603
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9082",
+ "title": "Medical Appliance Technicians",
+ "cip_codes": [
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9083",
+ "title": "Ophthalmic Laboratory Technicians",
+ "cip_codes": [
+ 51.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9111",
+ "title": "Packaging and Filling Machine Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9123",
+ "title": "Painting, Coating, and Decorating Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9124",
+ "title": "Coating, Painting, and Spraying Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 47.0603
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9141",
+ "title": "Semiconductor Processing Technicians",
+ "cip_codes": [
+ 15.0616,
+ 47.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9151",
+ "title": "Photographic Process Workers and Processing Machine Operators",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9161",
+ "title": "Computer Numerically Controlled Tool Operators",
+ "cip_codes": [
+ 48.0503,
+ 48.051
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9162",
+ "title": "Computer Numerically Controlled Tool Programmers",
+ "cip_codes": [
+ 48.051
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9191",
+ "title": "Adhesive Bonding Machine Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9192",
+ "title": "Cleaning, Washing, and Metal Pickling Equipment Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9193",
+ "title": "Cooling and Freezing Equipment Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9194",
+ "title": "Etchers and Engravers",
+ "cip_codes": [
+ 10.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9195",
+ "title": "Molders, Shapers, and Casters, Except Metal and Plastic",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9196",
+ "title": "Paper Goods Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9197",
+ "title": "Tire Builders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9198",
+ "title": "Helpers--Production Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "51-9199",
+ "title": "Production Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-1041",
+ "title": "Aircraft Cargo Handling Supervisors",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-1042",
+ "title": "First-Line Supervisors of Helpers, Laborers, and Material Movers, Hand",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-1043",
+ "title": "First-Line Supervisors of Material-Moving Machine and Vehicle Operators",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-1044",
+ "title": "First-Line Supervisors of Passenger Attendants",
+ "cip_codes": [
+ 49.0106
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-1049",
+ "title": "First-Line Supervisors of Transportation Workers, All Other",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-2011",
+ "title": "Airline Pilots, Copilots, and Flight Engineers",
+ "cip_codes": [
+ 49.0102,
+ 49.0108
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-2012",
+ "title": "Commercial Pilots",
+ "cip_codes": [
+ 49.0102,
+ 49.0108
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-2021",
+ "title": "Air Traffic Controllers",
+ "cip_codes": [
+ 49.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-2022",
+ "title": "Airfield Operations Specialists",
+ "cip_codes": [
+ 49.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-2031",
+ "title": "Flight Attendants",
+ "cip_codes": [
+ 49.0106
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3011",
+ "title": "Ambulance Drivers and Attendants, Except Emergency Medical Technicians",
+ "cip_codes": [
+ 51.081
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3031",
+ "title": "Driver/Sales Workers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3032",
+ "title": "Heavy and Tractor-Trailer Truck Drivers",
+ "cip_codes": [
+ 49.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3033",
+ "title": "Light Truck Drivers",
+ "cip_codes": [
+ 49.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3051",
+ "title": "Bus Drivers, School",
+ "cip_codes": [
+ 49.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3052",
+ "title": "Bus Drivers, Transit and Intercity",
+ "cip_codes": [
+ 49.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3053",
+ "title": "Shuttle Drivers and Chauffeurs",
+ "cip_codes": [
+ 49.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3054",
+ "title": "Taxi Drivers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-3099",
+ "title": "Motor Vehicle Operators, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-4011",
+ "title": "Locomotive Engineers",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-4013",
+ "title": "Rail Yard Engineers, Dinkey Operators, and Hostlers",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-4022",
+ "title": "Railroad Brake, Signal, and Switch Operators and Locomotive Firers",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-4031",
+ "title": "Railroad Conductors and Yardmasters",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-4041",
+ "title": "Subway and Streetcar Operators",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-4099",
+ "title": "Rail Transportation Workers, All Other",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-5011",
+ "title": "Sailors and Marine Oilers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-5021",
+ "title": "Captains, Mates, and Pilots of Water Vessels",
+ "cip_codes": [
+ 49.0303,
+ 49.0309
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-5022",
+ "title": "Motorboat Operators",
+ "cip_codes": [
+ 49.0309,
+ 49.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-5031",
+ "title": "Ship Engineers",
+ "cip_codes": [
+ 49.0309
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-6011",
+ "title": "Bridge and Lock Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-6021",
+ "title": "Parking Attendants",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-6031",
+ "title": "Automotive and Watercraft Service Attendants",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-6032",
+ "title": "Aircraft Service Attendants",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-6041",
+ "title": "Traffic Technicians",
+ "cip_codes": [
+ 15.0201,
+ 44.0403
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-6051",
+ "title": "Transportation Inspectors",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-6061",
+ "title": "Passenger Attendants",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-6099",
+ "title": "Transportation Workers, All Other",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7011",
+ "title": "Conveyor Operators and Tenders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7021",
+ "title": "Crane and Tower Operators",
+ "cip_codes": [
+ 49.0202,
+ 49.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7031",
+ "title": "Dredge Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7041",
+ "title": "Hoist and Winch Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7051",
+ "title": "Industrial Truck and Tractor Operators",
+ "cip_codes": [
+ 49.0209
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7061",
+ "title": "Cleaners of Vehicles and Equipment",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7062",
+ "title": "Laborers and Freight, Stock, and Material Movers, Hand",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7063",
+ "title": "Machine Feeders and Offbearers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7064",
+ "title": "Packers and Packagers, Hand",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7065",
+ "title": "Stockers and Order Fillers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7071",
+ "title": "Gas Compressor and Gas Pumping Station Operators",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7072",
+ "title": "Pump Operators, Except Wellhead Pumpers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7073",
+ "title": "Wellhead Pumpers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7081",
+ "title": "Refuse and Recyclable Material Collectors",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7121",
+ "title": "Tank Car, Truck, and Ship Loaders",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "53-7199",
+ "title": "Material Moving Workers, All Other",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-1011",
+ "title": "Air Crew Officers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-1012",
+ "title": "Aircraft Launch and Recovery Officers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-1013",
+ "title": "Armored Assault Vehicle Officers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-1014",
+ "title": "Artillery and Missile Officers",
+ "cip_codes": [
+ 28.0605,
+ 29.0407
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-1015",
+ "title": "Command and Control Center Officers",
+ "cip_codes": [
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0405,
+ 29.0406
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-1016",
+ "title": "Infantry Officers",
+ "cip_codes": [
+ 28.0602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-1017",
+ "title": "Special Forces Officers",
+ "cip_codes": [
+ 28.0506,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0404,
+ 43.0304,
+ 43.0404,
+ 43.0407
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-1019",
+ "title": "Military Officer Special and Tactical Operations Leaders, All Other",
+ "cip_codes": [
+ 28.0503,
+ 28.0504,
+ 28.0505,
+ 28.0599,
+ 28.0601,
+ 28.0602,
+ 28.0604,
+ 29.0301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-2011",
+ "title": "First-Line Supervisors of Air Crew Members",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-2012",
+ "title": "First-Line Supervisors of Weapons Specialists/Crew Members",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-2013",
+ "title": "First-Line Supervisors of All Other Tactical Operations Specialists",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-3011",
+ "title": "Air Crew Members",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-3012",
+ "title": "Aircraft Launch and Recovery Specialists",
+ "cip_codes": [
+ 29.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-3013",
+ "title": "Armored Assault Vehicle Crew Members",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-3014",
+ "title": "Artillery and Missile Crew Members",
+ "cip_codes": [
+ 28.0605,
+ 29.0407,
+ 29.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-3015",
+ "title": "Command and Control Center Specialists",
+ "cip_codes": [
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0405,
+ 29.0406
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-3016",
+ "title": "Infantry",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": true,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-3018",
+ "title": "Special Forces",
+ "cip_codes": [
+ 28.0506,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0404,
+ 43.0304,
+ 43.0404,
+ 43.0407
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "55-3019",
+ "title": "Military Enlisted Tactical Operations and Air/Weapons Specialists and Crew Members, All Other",
+ "cip_codes": [
+ 28.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ },
+ {
+ "soc_code": "99-9999",
+ "title": "NO MATCH",
+ "cip_codes": [
+ 1.0508,
+ 1.0599,
+ 1.0699,
+ 1.0899,
+ 1.1302,
+ 1.8299,
+ 1.9999,
+ 3.0199,
+ 3.021,
+ 4.02,
+ 4.9999,
+ 9.0199,
+ 9.0799,
+ 9.0999,
+ 10.9999,
+ 11.0699,
+ 11.0899,
+ 11.0999,
+ 11.1099,
+ 11.9999,
+ 12.0599,
+ 12.0699,
+ 13.0701,
+ 13.1004,
+ 13.1299,
+ 14.0102,
+ 15.0799,
+ 15.1199,
+ 15.1599,
+ 15.9999,
+ 16.1701,
+ 19.0799,
+ 19.0999,
+ 19.9999,
+ 22.0001,
+ 22.0099,
+ 22.0399,
+ 22.9999,
+ 24.0199,
+ 25.9999,
+ 28.0101,
+ 28.0199,
+ 28.0301,
+ 28.0399,
+ 28.0401,
+ 28.0499,
+ 28.0501,
+ 28.0502,
+ 28.0603,
+ 28.0699,
+ 28.0701,
+ 28.0702,
+ 28.0703,
+ 28.0799,
+ 28.9999,
+ 29.0302,
+ 29.0304,
+ 29.0305,
+ 29.0399,
+ 29.0403,
+ 29.0499,
+ 29.0601,
+ 29.9999,
+ 30.0,
+ 30.0001,
+ 30.5299,
+ 30.9999,
+ 31.0599,
+ 31.9999,
+ 32.0101,
+ 32.0104,
+ 32.0105,
+ 32.0107,
+ 32.0108,
+ 32.0109,
+ 32.011,
+ 32.0111,
+ 32.0112,
+ 32.0199,
+ 32.0201,
+ 32.0202,
+ 32.0203,
+ 32.0204,
+ 32.0205,
+ 32.0299,
+ 33.0101,
+ 33.0102,
+ 33.0103,
+ 33.0104,
+ 33.0105,
+ 33.0106,
+ 33.0199,
+ 34.0102,
+ 34.0103,
+ 34.0104,
+ 34.0105,
+ 34.0199,
+ 35.0101,
+ 35.0102,
+ 35.0103,
+ 35.0105,
+ 35.0199,
+ 36.0101,
+ 36.0102,
+ 36.0103,
+ 36.0105,
+ 36.0106,
+ 36.0107,
+ 36.0108,
+ 36.0109,
+ 36.011,
+ 36.0111,
+ 36.0112,
+ 36.0113,
+ 36.0114,
+ 36.0115,
+ 36.0116,
+ 36.0117,
+ 36.0118,
+ 36.012,
+ 36.0121,
+ 36.0122,
+ 36.0123,
+ 36.0199,
+ 36.0202,
+ 36.0203,
+ 36.0204,
+ 36.0205,
+ 36.0206,
+ 36.0207,
+ 36.0299,
+ 37.0101,
+ 37.0102,
+ 37.0103,
+ 37.0104,
+ 37.0106,
+ 37.0107,
+ 37.0199,
+ 38.0299,
+ 39.0899,
+ 39.9999,
+ 43.0204,
+ 43.9999,
+ 44.0599,
+ 44.9999,
+ 46.0499,
+ 46.9999,
+ 47.0399,
+ 47.0699,
+ 47.9999,
+ 48.0,
+ 48.0399,
+ 48.9999,
+ 49.0199,
+ 49.0299,
+ 49.9999,
+ 50.0499,
+ 51.0,
+ 51.0699,
+ 51.1101,
+ 51.1102,
+ 51.1103,
+ 51.1105,
+ 51.1106,
+ 51.1107,
+ 51.1108,
+ 51.1109,
+ 51.111,
+ 51.1111,
+ 51.1199,
+ 51.1299,
+ 51.1599,
+ 51.1899,
+ 51.2699,
+ 51.2799,
+ 51.3699,
+ 51.9999,
+ 52.0299,
+ 52.0399,
+ 52.0799,
+ 52.1399,
+ 52.1999,
+ 52.9999,
+ 53.0101,
+ 53.0102,
+ 53.0103,
+ 53.0104,
+ 53.0105,
+ 53.0199,
+ 53.0201,
+ 53.0202,
+ 53.0203,
+ 53.0299,
+ 60.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "stability": null,
+ "growth": null,
+ "balance": null,
+ "recognition": null
+ }
+ }
+]
\ No newline at end of file
diff --git a/public/careers_with_ratings.json b/public/careers_with_ratings.json
new file mode 100644
index 0000000..04e36c8
--- /dev/null
+++ b/public/careers_with_ratings.json
@@ -0,0 +1,31707 @@
+[
+ {
+ "soc_code": "15-1299.07",
+ "title": "Blockchain Engineers",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "15-1241.00",
+ "title": "Computer Network Architects",
+ "cip_codes": [
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0401,
+ 11.0501,
+ 11.0501,
+ 11.0701,
+ 11.0802,
+ 11.0802,
+ 11.0901,
+ 11.0902,
+ 11.0902,
+ 11.1001,
+ 11.1001,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0999,
+ 14.2701,
+ 30.7001,
+ 30.7099,
+ 52.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1299.00",
+ "title": "Computer Occupations, All Other",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-1021.00",
+ "title": "Computer Science Teachers, Postsecondary",
+ "cip_codes": [
+ 11.0101,
+ 11.0102,
+ 11.0199,
+ 11.0201,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0804,
+ 11.0901,
+ 11.0902,
+ 13.1311,
+ 13.1321,
+ 26.1102,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 27.9999,
+ 30.0801,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 30.5001,
+ 38.0102,
+ 52.1201,
+ 52.1206,
+ 52.1207,
+ 52.1299,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1211.00",
+ "title": "Computer Systems Analysts",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0501,
+ 11.0701,
+ 11.0901,
+ 11.0901,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1005,
+ 43.0403,
+ 51.0723
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1299.08",
+ "title": "Computer Systems Engineers/Architects",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1221.00",
+ "title": "Computer and Information Research Scientists",
+ "cip_codes": [
+ 11.0101,
+ 11.0102,
+ 11.0103,
+ 11.0104,
+ 11.0199,
+ 11.0401,
+ 11.0701,
+ 11.0804,
+ 11.0902,
+ 26.1103,
+ 30.3101,
+ 30.7001,
+ 30.7099,
+ 40.0512,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3021.00",
+ "title": "Computer and Information Systems Managers",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0401,
+ 11.0701,
+ 11.0802,
+ 11.0901,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1005,
+ 30.0801,
+ 30.1601,
+ 30.3101,
+ 30.3901,
+ 30.7001,
+ 52.0205,
+ 52.1201,
+ 52.1206,
+ 52.1207,
+ 52.1299,
+ 52.2101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1243.01",
+ "title": "Data Warehousing Specialists",
+ "cip_codes": [
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0401,
+ 11.0501,
+ 11.0501,
+ 11.0701,
+ 11.0802,
+ 11.0802,
+ 11.0901,
+ 11.0902,
+ 11.0902,
+ 11.1001,
+ 11.1001,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0999,
+ 14.2701,
+ 30.7001,
+ 30.7099,
+ 52.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1242.00",
+ "title": "Database Administrators",
+ "cip_codes": [
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0401,
+ 11.0501,
+ 11.0501,
+ 11.0701,
+ 11.0802,
+ 11.0802,
+ 11.0901,
+ 11.0902,
+ 11.0902,
+ 11.1001,
+ 11.1001,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0999,
+ 14.2701,
+ 30.7001,
+ 30.7099,
+ 52.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1243.00",
+ "title": "Database Architects",
+ "cip_codes": [
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0401,
+ 11.0501,
+ 11.0501,
+ 11.0701,
+ 11.0802,
+ 11.0802,
+ 11.0901,
+ 11.0902,
+ 11.0902,
+ 11.1001,
+ 11.1001,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0999,
+ 14.2701,
+ 30.7001,
+ 30.7099,
+ 52.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1299.06",
+ "title": "Digital Forensics Analysts",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "15-1299.03",
+ "title": "Document Management Specialists",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "15-1299.02",
+ "title": "Geographic Information Systems Technologists and Technicians",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1211.01",
+ "title": "Health Informatics Specialists",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0501,
+ 11.0701,
+ 11.0901,
+ 11.0901,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1005,
+ 43.0403,
+ 51.0723
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1299.05",
+ "title": "Information Security Engineers",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "15-1299.09",
+ "title": "Information Technology Project Managers",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1244.00",
+ "title": "Network and Computer Systems Administrators",
+ "cip_codes": [
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0401,
+ 11.0501,
+ 11.0501,
+ 11.0701,
+ 11.0802,
+ 11.0802,
+ 11.0901,
+ 11.0902,
+ 11.0902,
+ 11.1001,
+ 11.1001,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0999,
+ 14.2701,
+ 30.7001,
+ 30.7099,
+ 52.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1299.04",
+ "title": "Penetration Testers",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "15-1253.00",
+ "title": "Software Quality Assurance Analysts and Testers",
+ "cip_codes": [
+ 9.0702,
+ 11.0101,
+ 11.0101,
+ 11.0102,
+ 11.0103,
+ 11.0103,
+ 11.0104,
+ 11.0104,
+ 11.0104,
+ 11.0105,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0202,
+ 11.0202,
+ 11.0202,
+ 11.0203,
+ 11.0203,
+ 11.0203,
+ 11.0204,
+ 11.0204,
+ 11.0204,
+ 11.0205,
+ 11.0205,
+ 11.0205,
+ 11.0299,
+ 11.0401,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0801,
+ 11.0801,
+ 11.0803,
+ 11.0804,
+ 11.0804,
+ 11.0902,
+ 11.0902,
+ 11.1004,
+ 11.1004,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0903,
+ 15.1201,
+ 15.1202,
+ 15.1204,
+ 15.1204,
+ 15.1204,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 50.0401,
+ 50.0409,
+ 51.0709,
+ 52.1201,
+ 52.1404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1241.01",
+ "title": "Telecommunications Engineering Specialists",
+ "cip_codes": [
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0401,
+ 11.0501,
+ 11.0501,
+ 11.0701,
+ 11.0802,
+ 11.0802,
+ 11.0901,
+ 11.0902,
+ 11.0902,
+ 11.1001,
+ 11.1001,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 11.1003,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0999,
+ 14.2701,
+ 30.7001,
+ 30.7099,
+ 52.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1255.01",
+ "title": "Video Game Designers",
+ "cip_codes": [
+ 9.0702,
+ 11.0101,
+ 11.0101,
+ 11.0102,
+ 11.0103,
+ 11.0103,
+ 11.0104,
+ 11.0104,
+ 11.0104,
+ 11.0105,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0202,
+ 11.0202,
+ 11.0202,
+ 11.0203,
+ 11.0203,
+ 11.0203,
+ 11.0204,
+ 11.0204,
+ 11.0204,
+ 11.0205,
+ 11.0205,
+ 11.0205,
+ 11.0299,
+ 11.0401,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0801,
+ 11.0801,
+ 11.0803,
+ 11.0804,
+ 11.0804,
+ 11.0902,
+ 11.0902,
+ 11.1004,
+ 11.1004,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0903,
+ 15.1201,
+ 15.1202,
+ 15.1204,
+ 15.1204,
+ 15.1204,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 50.0401,
+ 50.0409,
+ 51.0709,
+ 52.1201,
+ 52.1404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1299.01",
+ "title": "Web Administrators",
+ "cip_codes": [
+ 11.0101,
+ 11.0301,
+ 11.0401,
+ 11.0701,
+ 11.1005,
+ 26.1103,
+ 26.1104,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 40.0512,
+ 43.0403,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1255.00",
+ "title": "Web and Digital Interface Designers",
+ "cip_codes": [
+ 9.0702,
+ 11.0101,
+ 11.0101,
+ 11.0102,
+ 11.0103,
+ 11.0103,
+ 11.0104,
+ 11.0104,
+ 11.0104,
+ 11.0105,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0202,
+ 11.0202,
+ 11.0202,
+ 11.0203,
+ 11.0203,
+ 11.0203,
+ 11.0204,
+ 11.0204,
+ 11.0204,
+ 11.0205,
+ 11.0205,
+ 11.0205,
+ 11.0299,
+ 11.0401,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0801,
+ 11.0801,
+ 11.0803,
+ 11.0804,
+ 11.0804,
+ 11.0902,
+ 11.0902,
+ 11.1004,
+ 11.1004,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0903,
+ 15.1201,
+ 15.1202,
+ 15.1204,
+ 15.1204,
+ 15.1204,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 50.0401,
+ 50.0409,
+ 51.0709,
+ 52.1201,
+ 52.1404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "15-2051.01",
+ "title": "Business Intelligence Analysts",
+ "cip_codes": [
+ 11.0102,
+ 11.0103,
+ 11.0701,
+ 11.0802,
+ 11.0804,
+ 26.1103,
+ 26.1104,
+ 26.1199,
+ 27.0101,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0601,
+ 27.9999,
+ 30.0801,
+ 30.3001,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7102,
+ 30.7103,
+ 30.7104,
+ 30.7199,
+ 40.0512,
+ 45.0603,
+ 52.1301,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-2051.02",
+ "title": "Clinical Data Managers",
+ "cip_codes": [
+ 11.0102,
+ 11.0103,
+ 11.0701,
+ 11.0802,
+ 11.0804,
+ 26.1103,
+ 26.1104,
+ 26.1199,
+ 27.0101,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0601,
+ 27.9999,
+ 30.0801,
+ 30.3001,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7102,
+ 30.7103,
+ 30.7104,
+ 30.7199,
+ 40.0512,
+ 45.0603,
+ 52.1301,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-2051.00",
+ "title": "Data Scientists",
+ "cip_codes": [
+ 11.0102,
+ 11.0103,
+ 11.0701,
+ 11.0802,
+ 11.0804,
+ 26.1103,
+ 26.1104,
+ 26.1199,
+ 27.0101,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0601,
+ 27.9999,
+ 30.0801,
+ 30.3001,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7102,
+ 30.7103,
+ 30.7104,
+ 30.7199,
+ 40.0512,
+ 45.0603,
+ 52.1301,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "15-1252.00",
+ "title": "Software Developers",
+ "cip_codes": [
+ 9.0702,
+ 11.0101,
+ 11.0101,
+ 11.0102,
+ 11.0103,
+ 11.0103,
+ 11.0104,
+ 11.0104,
+ 11.0104,
+ 11.0105,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0202,
+ 11.0202,
+ 11.0202,
+ 11.0203,
+ 11.0203,
+ 11.0203,
+ 11.0204,
+ 11.0204,
+ 11.0204,
+ 11.0205,
+ 11.0205,
+ 11.0205,
+ 11.0299,
+ 11.0401,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0801,
+ 11.0801,
+ 11.0803,
+ 11.0804,
+ 11.0804,
+ 11.0902,
+ 11.0902,
+ 11.1004,
+ 11.1004,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0903,
+ 15.1201,
+ 15.1202,
+ 15.1204,
+ 15.1204,
+ 15.1204,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 50.0401,
+ 50.0409,
+ 51.0709,
+ 52.1201,
+ 52.1404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "15-1212.00",
+ "title": "Information Security Analysts",
+ "cip_codes": [
+ 11.0101,
+ 11.0103,
+ 11.0103,
+ 11.0501,
+ 11.0701,
+ 11.0901,
+ 11.0901,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1005,
+ 43.0403,
+ 51.0723
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1231.00",
+ "title": "Computer Network Support Specialists",
+ "cip_codes": [
+ 1.0106,
+ 11.0201,
+ 11.0501,
+ 11.0701,
+ 11.0901,
+ 11.0902,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1006,
+ 11.1006,
+ 51.0709
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1251.00",
+ "title": "Computer Programmers",
+ "cip_codes": [
+ 9.0702,
+ 11.0101,
+ 11.0101,
+ 11.0102,
+ 11.0103,
+ 11.0103,
+ 11.0104,
+ 11.0104,
+ 11.0104,
+ 11.0105,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0202,
+ 11.0202,
+ 11.0202,
+ 11.0203,
+ 11.0203,
+ 11.0203,
+ 11.0204,
+ 11.0204,
+ 11.0204,
+ 11.0205,
+ 11.0205,
+ 11.0205,
+ 11.0299,
+ 11.0401,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0801,
+ 11.0801,
+ 11.0803,
+ 11.0804,
+ 11.0804,
+ 11.0902,
+ 11.0902,
+ 11.1004,
+ 11.1004,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0903,
+ 15.1201,
+ 15.1202,
+ 15.1204,
+ 15.1204,
+ 15.1204,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 50.0401,
+ 50.0409,
+ 51.0709,
+ 52.1201,
+ 52.1404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-1254.00",
+ "title": "Web Developers",
+ "cip_codes": [
+ 9.0702,
+ 11.0101,
+ 11.0101,
+ 11.0102,
+ 11.0103,
+ 11.0103,
+ 11.0104,
+ 11.0104,
+ 11.0104,
+ 11.0105,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0201,
+ 11.0202,
+ 11.0202,
+ 11.0202,
+ 11.0203,
+ 11.0203,
+ 11.0203,
+ 11.0204,
+ 11.0204,
+ 11.0204,
+ 11.0205,
+ 11.0205,
+ 11.0205,
+ 11.0299,
+ 11.0401,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0701,
+ 11.0801,
+ 11.0801,
+ 11.0803,
+ 11.0804,
+ 11.0804,
+ 11.0902,
+ 11.0902,
+ 11.1004,
+ 11.1004,
+ 14.0901,
+ 14.0901,
+ 14.0903,
+ 14.0903,
+ 15.1201,
+ 15.1202,
+ 15.1204,
+ 15.1204,
+ 15.1204,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 30.7001,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 50.0401,
+ 50.0409,
+ 51.0709,
+ 52.1201,
+ 52.1404
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "43-9021.00",
+ "title": "Data Entry Keyers",
+ "cip_codes": [
+ 10.0305,
+ 11.0601,
+ 11.0602,
+ 52.0407,
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "43-9022.00",
+ "title": "Word Processors and Typists",
+ "cip_codes": [
+ 10.0305,
+ 11.0601,
+ 11.0602,
+ 52.0407,
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-1194.00",
+ "title": "Career/Technical Education Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0207,
+ 1.0504,
+ 1.0509,
+ 11.0801,
+ 11.0802,
+ 11.0803,
+ 12.0509,
+ 13.1211,
+ 13.1301,
+ 13.1303,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1314,
+ 13.1319,
+ 13.132,
+ 13.1327,
+ 15.1503,
+ 16.1602,
+ 19.0101,
+ 19.0201,
+ 19.0202,
+ 19.0299,
+ 19.0401,
+ 19.0402,
+ 19.0403,
+ 19.0499,
+ 19.0501,
+ 19.0504,
+ 19.0505,
+ 19.0599,
+ 19.0601,
+ 19.0701,
+ 19.0702,
+ 19.0704,
+ 19.0706,
+ 19.0708,
+ 19.0901,
+ 19.0902,
+ 19.0904,
+ 19.1001,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 24.0101,
+ 24.0102,
+ 24.0103,
+ 30.0101,
+ 30.0501,
+ 30.0601,
+ 30.1201,
+ 30.1299,
+ 30.1401,
+ 30.1501,
+ 30.1801,
+ 30.1901,
+ 30.2501,
+ 30.2502,
+ 30.2599,
+ 30.2601,
+ 30.2901,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 31.0101,
+ 31.0501,
+ 31.0504,
+ 31.0508,
+ 40.1099,
+ 40.9999,
+ 43.0202,
+ 43.0304,
+ 49.0205,
+ 50.0411,
+ 51.2706,
+ 51.3204,
+ 51.3299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "27-1024.00",
+ "title": "Graphic Designers",
+ "cip_codes": [
+ 4.0402,
+ 4.0501,
+ 11.0801,
+ 11.0803,
+ 15.1503,
+ 15.1701,
+ 19.0604,
+ 19.0699,
+ 19.0902,
+ 19.0904,
+ 19.0904,
+ 19.0906,
+ 30.3701,
+ 50.0102,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0402,
+ 50.0402,
+ 50.0404,
+ 50.0404,
+ 50.0404,
+ 50.0407,
+ 50.0408,
+ 50.0409,
+ 50.041,
+ 50.041,
+ 50.0502,
+ 50.051,
+ 52.1903,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-1014.00",
+ "title": "Special Effects Artists and Animators",
+ "cip_codes": [
+ 10.0304,
+ 11.0801,
+ 11.0804,
+ 50.0101,
+ 50.0101,
+ 50.0101,
+ 50.0102,
+ 50.0102,
+ 50.0102,
+ 50.0201,
+ 50.0201,
+ 50.0402,
+ 50.0409,
+ 50.0409,
+ 50.0409,
+ 50.041,
+ 50.0411,
+ 50.0701,
+ 50.0701,
+ 50.0702,
+ 50.0702,
+ 50.0705,
+ 50.0705,
+ 50.0705,
+ 50.0706,
+ 50.0706,
+ 50.0706,
+ 50.0708,
+ 50.0708,
+ 50.0708,
+ 50.0709,
+ 50.0709,
+ 50.071,
+ 50.071,
+ 50.0711,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0799,
+ 50.1101,
+ 50.1101,
+ 51.2703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9199.02",
+ "title": "Compliance Managers",
+ "cip_codes": [
+ 3.0204,
+ 9.0702,
+ 11.1005,
+ 25.0101,
+ 25.0103,
+ 30.0601,
+ 30.1202,
+ 30.3901,
+ 30.4001,
+ 30.4201,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 39.0801,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2899,
+ 42.9999,
+ 43.01,
+ 43.0103,
+ 43.0115,
+ 43.0202,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0404,
+ 44.0401,
+ 44.0402,
+ 44.0499,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1501,
+ 45.9999,
+ 50.1001,
+ 50.1002,
+ 50.1004,
+ 50.1099,
+ 51.0719,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0213,
+ 52.0214,
+ 52.0216,
+ 52.0701,
+ 52.0702,
+ 52.0703,
+ 52.0704,
+ 52.0903,
+ 52.0999,
+ 52.2101,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9199.08",
+ "title": "Loss Prevention Managers",
+ "cip_codes": [
+ 3.0204,
+ 9.0702,
+ 11.1005,
+ 25.0101,
+ 25.0103,
+ 30.0601,
+ 30.1202,
+ 30.3901,
+ 30.4001,
+ 30.4201,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 39.0801,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2899,
+ 42.9999,
+ 43.01,
+ 43.0103,
+ 43.0115,
+ 43.0202,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0404,
+ 44.0401,
+ 44.0402,
+ 44.0499,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1501,
+ 45.9999,
+ 50.1001,
+ 50.1002,
+ 50.1004,
+ 50.1099,
+ 51.0719,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0213,
+ 52.0214,
+ 52.0216,
+ 52.0701,
+ 52.0702,
+ 52.0703,
+ 52.0704,
+ 52.0903,
+ 52.0999,
+ 52.2101,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9199.00",
+ "title": "Managers, All Other",
+ "cip_codes": [
+ 3.0204,
+ 9.0702,
+ 11.1005,
+ 25.0101,
+ 25.0103,
+ 30.0601,
+ 30.1202,
+ 30.3901,
+ 30.4001,
+ 30.4201,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 39.0801,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2899,
+ 42.9999,
+ 43.01,
+ 43.0103,
+ 43.0115,
+ 43.0202,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0404,
+ 44.0401,
+ 44.0402,
+ 44.0499,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1501,
+ 45.9999,
+ 50.1001,
+ 50.1002,
+ 50.1004,
+ 50.1099,
+ 51.0719,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0213,
+ 52.0214,
+ 52.0216,
+ 52.0701,
+ 52.0702,
+ 52.0703,
+ 52.0704,
+ 52.0903,
+ 52.0999,
+ 52.2101,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "13-1082.00",
+ "title": "Project Management Specialists",
+ "cip_codes": [
+ 11.1005,
+ 52.0101,
+ 52.0201,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0211,
+ 52.0216,
+ 52.2002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "11-9199.01",
+ "title": "Regulatory Affairs Managers",
+ "cip_codes": [
+ 3.0204,
+ 9.0702,
+ 11.1005,
+ 25.0101,
+ 25.0103,
+ 30.0601,
+ 30.1202,
+ 30.3901,
+ 30.4001,
+ 30.4201,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 39.0801,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2899,
+ 42.9999,
+ 43.01,
+ 43.0103,
+ 43.0115,
+ 43.0202,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0404,
+ 44.0401,
+ 44.0402,
+ 44.0499,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1501,
+ 45.9999,
+ 50.1001,
+ 50.1002,
+ 50.1004,
+ 50.1099,
+ 51.0719,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0213,
+ 52.0214,
+ 52.0216,
+ 52.0701,
+ 52.0702,
+ 52.0703,
+ 52.0704,
+ 52.0903,
+ 52.0999,
+ 52.2101,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9199.10",
+ "title": "Wind Energy Development Managers",
+ "cip_codes": [
+ 3.0204,
+ 9.0702,
+ 11.1005,
+ 25.0101,
+ 25.0103,
+ 30.0601,
+ 30.1202,
+ 30.3901,
+ 30.4001,
+ 30.4201,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 39.0801,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2899,
+ 42.9999,
+ 43.01,
+ 43.0103,
+ 43.0115,
+ 43.0202,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0404,
+ 44.0401,
+ 44.0402,
+ 44.0499,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1501,
+ 45.9999,
+ 50.1001,
+ 50.1002,
+ 50.1004,
+ 50.1099,
+ 51.0719,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0213,
+ 52.0214,
+ 52.0216,
+ 52.0701,
+ 52.0702,
+ 52.0703,
+ 52.0704,
+ 52.0903,
+ 52.0999,
+ 52.2101,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-1232.00",
+ "title": "Computer User Support Specialists",
+ "cip_codes": [
+ 1.0106,
+ 11.0201,
+ 11.0501,
+ 11.0701,
+ 11.0901,
+ 11.0902,
+ 11.1001,
+ 11.1002,
+ 11.1003,
+ 11.1006,
+ 11.1006,
+ 51.0709
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9041.00",
+ "title": "Architectural and Engineering Managers",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0301,
+ 4.0401,
+ 4.0402,
+ 4.0501,
+ 4.0601,
+ 4.0902,
+ 14.0101,
+ 14.0201,
+ 14.0202,
+ 14.0299,
+ 14.0301,
+ 14.0401,
+ 14.0501,
+ 14.0601,
+ 14.0701,
+ 14.0702,
+ 14.0799,
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.0901,
+ 14.0902,
+ 14.0903,
+ 14.0999,
+ 14.1001,
+ 14.1003,
+ 14.1004,
+ 14.1099,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.1401,
+ 14.1801,
+ 14.1901,
+ 14.2001,
+ 14.2101,
+ 14.2201,
+ 14.2301,
+ 14.2401,
+ 14.2501,
+ 14.2701,
+ 14.2801,
+ 14.3201,
+ 14.3301,
+ 14.3401,
+ 14.3501,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1501,
+ 15.1502,
+ 15.1503,
+ 40.1001,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9041.01",
+ "title": "Biofuels/Biodiesel Technology and Product Development Managers",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0301,
+ 4.0401,
+ 4.0402,
+ 4.0501,
+ 4.0601,
+ 4.0902,
+ 14.0101,
+ 14.0201,
+ 14.0202,
+ 14.0299,
+ 14.0301,
+ 14.0401,
+ 14.0501,
+ 14.0601,
+ 14.0701,
+ 14.0702,
+ 14.0799,
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.0901,
+ 14.0902,
+ 14.0903,
+ 14.0999,
+ 14.1001,
+ 14.1003,
+ 14.1004,
+ 14.1099,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.1401,
+ 14.1801,
+ 14.1901,
+ 14.2001,
+ 14.2101,
+ 14.2201,
+ 14.2301,
+ 14.2401,
+ 14.2501,
+ 14.2701,
+ 14.2801,
+ 14.3201,
+ 14.3301,
+ 14.3401,
+ 14.3501,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1501,
+ 15.1502,
+ 15.1503,
+ 40.1001,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2199.03",
+ "title": "Energy Engineers, Except Wind and Solar",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1032.00",
+ "title": "Engineering Teachers, Postsecondary",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0299,
+ 4.0301,
+ 4.0401,
+ 4.0402,
+ 4.0403,
+ 4.0499,
+ 4.0501,
+ 4.0601,
+ 4.0802,
+ 4.0803,
+ 4.0899,
+ 4.0902,
+ 4.0999,
+ 14.0101,
+ 14.0201,
+ 14.0202,
+ 14.0299,
+ 14.0301,
+ 14.0401,
+ 14.0401,
+ 14.0501,
+ 14.0601,
+ 14.0701,
+ 14.0702,
+ 14.0799,
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.0901,
+ 14.0902,
+ 14.0903,
+ 14.0999,
+ 14.1001,
+ 14.1003,
+ 14.1004,
+ 14.1099,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.1401,
+ 14.1801,
+ 14.1901,
+ 14.2001,
+ 14.2101,
+ 14.2201,
+ 14.2301,
+ 14.2401,
+ 14.2501,
+ 14.2701,
+ 14.2801,
+ 14.3201,
+ 14.3301,
+ 14.3401,
+ 14.3501,
+ 14.3601,
+ 14.3701,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1503,
+ 30.3701,
+ 40.1001,
+ 50.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2199.00",
+ "title": "Engineers, All Other",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "17-2199.05",
+ "title": "Mechatronics Engineers",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2199.06",
+ "title": "Microsystems Engineers",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2199.09",
+ "title": "Nanosystems Engineers",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2199.07",
+ "title": "Photonics Engineers",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2199.08",
+ "title": "Robotics Engineers",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2199.11",
+ "title": "Solar Energy Systems Engineers",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2199.10",
+ "title": "Wind Energy Engineers",
+ "cip_codes": [
+ 14.0101,
+ 14.0103,
+ 14.0401,
+ 14.0702,
+ 14.0802,
+ 14.0805,
+ 14.1003,
+ 14.1004,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.2401,
+ 14.2701,
+ 14.3301,
+ 14.3401,
+ 14.3601,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1601,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2011.00",
+ "title": "Aerospace Engineers",
+ "cip_codes": [
+ 14.0201,
+ 14.0202,
+ 14.0299,
+ 14.1001,
+ 14.1901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-3021.00",
+ "title": "Aerospace Engineering and Operations Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "49-2091.00",
+ "title": "Avionics Technicians",
+ "cip_codes": [
+ 14.0299,
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 46.0302,
+ 47.0101,
+ 47.0103,
+ 47.0104,
+ 47.0105,
+ 47.011,
+ 47.0199,
+ 47.0604,
+ 47.0604,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-2021.00",
+ "title": "Agricultural Engineers",
+ "cip_codes": [
+ 14.0301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1031.00",
+ "title": "Architecture Teachers, Postsecondary",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0299,
+ 4.0301,
+ 4.0401,
+ 4.0402,
+ 4.0403,
+ 4.0499,
+ 4.0501,
+ 4.0601,
+ 4.0802,
+ 4.0803,
+ 4.0899,
+ 4.0902,
+ 4.0999,
+ 14.0101,
+ 14.0201,
+ 14.0202,
+ 14.0299,
+ 14.0301,
+ 14.0401,
+ 14.0401,
+ 14.0501,
+ 14.0601,
+ 14.0701,
+ 14.0702,
+ 14.0799,
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.0901,
+ 14.0902,
+ 14.0903,
+ 14.0999,
+ 14.1001,
+ 14.1003,
+ 14.1004,
+ 14.1099,
+ 14.1101,
+ 14.1201,
+ 14.1301,
+ 14.1401,
+ 14.1801,
+ 14.1901,
+ 14.2001,
+ 14.2101,
+ 14.2201,
+ 14.2301,
+ 14.2401,
+ 14.2501,
+ 14.2701,
+ 14.2801,
+ 14.3201,
+ 14.3301,
+ 14.3401,
+ 14.3501,
+ 14.3601,
+ 14.3701,
+ 14.3801,
+ 14.3901,
+ 14.4001,
+ 14.4101,
+ 14.4201,
+ 14.4301,
+ 14.4401,
+ 14.4501,
+ 14.4701,
+ 14.4801,
+ 14.4802,
+ 14.4899,
+ 14.9999,
+ 15.1502,
+ 15.1503,
+ 30.3701,
+ 40.1001,
+ 50.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2031.00",
+ "title": "Bioengineers and Biomedical Engineers",
+ "cip_codes": [
+ 14.0501,
+ 14.0702,
+ 14.4501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2041.00",
+ "title": "Chemical Engineers",
+ "cip_codes": [
+ 14.0601,
+ 14.0701,
+ 14.0702,
+ 14.0799,
+ 14.3201,
+ 14.4001,
+ 14.4301,
+ 14.4401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2131.00",
+ "title": "Materials Engineers",
+ "cip_codes": [
+ 14.0601,
+ 14.1801,
+ 14.2001,
+ 14.2801,
+ 14.3201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2051.00",
+ "title": "Civil Engineers",
+ "cip_codes": [
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.3301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2051.01",
+ "title": "Transportation Engineers",
+ "cip_codes": [
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.3301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2051.02",
+ "title": "Water/Wastewater Engineers",
+ "cip_codes": [
+ 14.0801,
+ 14.0802,
+ 14.0803,
+ 14.0804,
+ 14.0805,
+ 14.0899,
+ 14.3301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2081.00",
+ "title": "Environmental Engineers",
+ "cip_codes": [
+ 14.0802,
+ 14.0805,
+ 14.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2151.00",
+ "title": "Mining and Geological Engineers, Including Mining Safety Engineers",
+ "cip_codes": [
+ 14.0802,
+ 14.2101,
+ 14.3901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2171.00",
+ "title": "Petroleum Engineers",
+ "cip_codes": [
+ 14.0802,
+ 14.2501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2061.00",
+ "title": "Computer Hardware Engineers",
+ "cip_codes": [
+ 14.0901,
+ 14.0902,
+ 14.1001,
+ 14.4701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2071.00",
+ "title": "Electrical Engineers",
+ "cip_codes": [
+ 14.1001,
+ 14.1001,
+ 14.1004,
+ 14.1099,
+ 14.1099,
+ 14.4101,
+ 14.4701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2072.00",
+ "title": "Electronics Engineers, Except Computer",
+ "cip_codes": [
+ 14.1001,
+ 14.1001,
+ 14.1004,
+ 14.1099,
+ 14.1099,
+ 14.4101,
+ 14.4701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2072.01",
+ "title": "Radio Frequency Identification Device Specialists",
+ "cip_codes": [
+ 14.1001,
+ 14.1001,
+ 14.1004,
+ 14.1099,
+ 14.1099,
+ 14.4101,
+ 14.4701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "17-2141.02",
+ "title": "Automotive Engineers",
+ "cip_codes": [
+ 14.1101,
+ 14.1901,
+ 14.4101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2141.01",
+ "title": "Fuel Cell Engineers",
+ "cip_codes": [
+ 14.1101,
+ 14.1901,
+ 14.4101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2141.00",
+ "title": "Mechanical Engineers",
+ "cip_codes": [
+ 14.1101,
+ 14.1901,
+ 14.4101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9121.01",
+ "title": "Clinical Research Coordinators",
+ "cip_codes": [
+ 14.1201,
+ 14.3701,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0406,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0507,
+ 26.0508,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0799,
+ 26.0802,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0912,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1401,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 27.9999,
+ 30.0101,
+ 30.0801,
+ 30.1001,
+ 30.1501,
+ 30.1801,
+ 30.1901,
+ 30.2501,
+ 30.2599,
+ 30.2701,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 30.4901,
+ 30.5001,
+ 30.7001,
+ 30.7099,
+ 38.0102,
+ 40.0101,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1002,
+ 40.1099,
+ 40.1101,
+ 40.9999,
+ 51.1401,
+ 51.2006,
+ 52.021,
+ 52.0214,
+ 52.0216,
+ 54.0104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9121.00",
+ "title": "Natural Sciences Managers",
+ "cip_codes": [
+ 14.1201,
+ 14.3701,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0406,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0507,
+ 26.0508,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0799,
+ 26.0802,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0912,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1401,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 27.9999,
+ 30.0101,
+ 30.0801,
+ 30.1001,
+ 30.1501,
+ 30.1801,
+ 30.1901,
+ 30.2501,
+ 30.2599,
+ 30.2701,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 30.4901,
+ 30.5001,
+ 30.7001,
+ 30.7099,
+ 38.0102,
+ 40.0101,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1002,
+ 40.1099,
+ 40.1101,
+ 40.9999,
+ 51.1401,
+ 51.2006,
+ 52.021,
+ 52.0214,
+ 52.0216,
+ 54.0104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2012.00",
+ "title": "Physicists",
+ "cip_codes": [
+ 14.1201,
+ 40.0201,
+ 40.0202,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1101,
+ 40.1101,
+ 51.2205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "11-9121.02",
+ "title": "Water Resource Specialists",
+ "cip_codes": [
+ 14.1201,
+ 14.3701,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0406,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0507,
+ 26.0508,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0799,
+ 26.0802,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0912,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1401,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 27.9999,
+ 30.0101,
+ 30.0801,
+ 30.1001,
+ 30.1501,
+ 30.1801,
+ 30.1901,
+ 30.2501,
+ 30.2599,
+ 30.2701,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 30.4901,
+ 30.5001,
+ 30.7001,
+ 30.7099,
+ 38.0102,
+ 40.0101,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1002,
+ 40.1099,
+ 40.1101,
+ 40.9999,
+ 51.1401,
+ 51.2006,
+ 52.021,
+ 52.0214,
+ 52.0216,
+ 54.0104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2111.02",
+ "title": "Fire-Prevention and Protection Engineers",
+ "cip_codes": [
+ 14.1401,
+ 14.2701,
+ 14.3501,
+ 14.3601,
+ 14.9999,
+ 15.1501,
+ 15.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2111.00",
+ "title": "Health and Safety Engineers, Except Mining Safety Engineers and Inspectors",
+ "cip_codes": [
+ 14.1401,
+ 14.2701,
+ 14.3501,
+ 14.3601,
+ 14.9999,
+ 15.1501,
+ 15.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1051.00",
+ "title": "Cost Estimators",
+ "cip_codes": [
+ 14.1801,
+ 14.1901,
+ 14.3301,
+ 14.3601,
+ 15.1001,
+ 52.0101,
+ 52.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-2121.00",
+ "title": "Marine Engineers and Naval Architects",
+ "cip_codes": [
+ 14.2201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2161.00",
+ "title": "Nuclear Engineers",
+ "cip_codes": [
+ 14.2301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2112.01",
+ "title": "Human Factors Engineers and Ergonomists",
+ "cip_codes": [
+ 14.1401,
+ 14.2701,
+ 14.3501,
+ 14.3601,
+ 14.9999,
+ 15.1501,
+ 15.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2112.00",
+ "title": "Industrial Engineers",
+ "cip_codes": [
+ 14.1401,
+ 14.2701,
+ 14.3501,
+ 14.3601,
+ 14.9999,
+ 15.1501,
+ 15.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2112.03",
+ "title": "Manufacturing Engineers",
+ "cip_codes": [
+ 14.1401,
+ 14.2701,
+ 14.3501,
+ 14.3601,
+ 14.9999,
+ 15.1501,
+ 15.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-2112.02",
+ "title": "Validation Engineers",
+ "cip_codes": [
+ 14.1401,
+ 14.2701,
+ 14.3501,
+ 14.3601,
+ 14.9999,
+ 15.1501,
+ 15.1503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3051.03",
+ "title": "Biofuels Production Managers",
+ "cip_codes": [
+ 14.3501,
+ 15.1501,
+ 51.2006,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3051.04",
+ "title": "Biomass Power Plant Managers",
+ "cip_codes": [
+ 14.3501,
+ 15.1501,
+ 51.2006,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3051.02",
+ "title": "Geothermal Production Managers",
+ "cip_codes": [
+ 14.3501,
+ 15.1501,
+ 51.2006,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "11-3051.06",
+ "title": "Hydroelectric Production Managers",
+ "cip_codes": [
+ 14.3501,
+ 15.1501,
+ 51.2006,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3051.00",
+ "title": "Industrial Production Managers",
+ "cip_codes": [
+ 14.3501,
+ 15.1501,
+ 51.2006,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3051.01",
+ "title": "Quality Control Systems Managers",
+ "cip_codes": [
+ 14.3501,
+ 15.1501,
+ 51.2006,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-2031.00",
+ "title": "Operations Research Analysts",
+ "cip_codes": [
+ 14.3701,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-1021.00",
+ "title": "Cartographers and Photogrammetrists",
+ "cip_codes": [
+ 14.3801,
+ 14.3801,
+ 15.1102,
+ 15.1102,
+ 29.0203,
+ 43.0407,
+ 45.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-1022.01",
+ "title": "Geodetic Surveyors",
+ "cip_codes": [
+ 14.3801,
+ 14.3801,
+ 15.1102,
+ 15.1102,
+ 29.0203,
+ 43.0407,
+ 45.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-1022.00",
+ "title": "Surveyors",
+ "cip_codes": [
+ 14.3801,
+ 14.3801,
+ 15.1102,
+ 15.1102,
+ 29.0203,
+ 43.0407,
+ 45.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-3022.00",
+ "title": "Civil Engineering Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-3023.00",
+ "title": "Electrical and Electronic Engineering Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-3024.00",
+ "title": "Electro-Mechanical and Mechatronics Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "17-3024.01",
+ "title": "Robotics Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-3029.00",
+ "title": "Engineering Technologists and Technicians, Except Drafters, All Other",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "17-3026.00",
+ "title": "Industrial Engineering Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-3026.01",
+ "title": "Nanotechnology Engineering Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-3029.01",
+ "title": "Non-Destructive Testing Specialists",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "17-3029.08",
+ "title": "Photonics Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-3011.00",
+ "title": "Architectural and Civil Drafters",
+ "cip_codes": [
+ 4.0901,
+ 4.0902,
+ 4.0999,
+ 15.0101,
+ 15.0303,
+ 15.0306,
+ 15.0403,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.1102,
+ 15.1301,
+ 15.1301,
+ 15.1301,
+ 15.1301,
+ 15.1302,
+ 15.1302,
+ 15.1302,
+ 15.1302,
+ 15.1303,
+ 15.1304,
+ 15.1305,
+ 15.1306,
+ 15.1307,
+ 15.1307,
+ 15.1307,
+ 15.1307,
+ 15.1399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "53-6041.00",
+ "title": "Traffic Technicians",
+ "cip_codes": [
+ 15.0201,
+ 44.0403
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "17-3028.00",
+ "title": "Calibration Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "17-3012.00",
+ "title": "Electrical and Electronics Drafters",
+ "cip_codes": [
+ 4.0901,
+ 4.0902,
+ 4.0999,
+ 15.0101,
+ 15.0303,
+ 15.0306,
+ 15.0403,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.1102,
+ 15.1301,
+ 15.1301,
+ 15.1301,
+ 15.1301,
+ 15.1302,
+ 15.1302,
+ 15.1302,
+ 15.1302,
+ 15.1303,
+ 15.1304,
+ 15.1305,
+ 15.1306,
+ 15.1307,
+ 15.1307,
+ 15.1307,
+ 15.1307,
+ 15.1399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "49-2095.00",
+ "title": "Electrical and Electronics Repairers, Powerhouse, Substation, and Relay",
+ "cip_codes": [
+ 14.0299,
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 46.0302,
+ 47.0101,
+ 47.0103,
+ 47.0104,
+ 47.0105,
+ 47.011,
+ 47.0199,
+ 47.0604,
+ 47.0604,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-2091.00",
+ "title": "Disc Jockeys, Except Radio",
+ "cip_codes": [
+ 9.0906,
+ 10.0203,
+ 15.0307,
+ 50.0501,
+ 50.0507,
+ 50.0512,
+ 50.0599,
+ 50.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "27-4014.00",
+ "title": "Sound Engineering Technicians",
+ "cip_codes": [
+ 1.0802,
+ 10.0105,
+ 10.0105,
+ 10.0201,
+ 10.0201,
+ 10.0202,
+ 10.0202,
+ 10.0203,
+ 10.0203,
+ 10.0299,
+ 15.0307,
+ 50.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "49-9062.00",
+ "title": "Medical Equipment Repairers",
+ "cip_codes": [
+ 15.0401,
+ 15.0404,
+ 47.0404,
+ 47.0408,
+ 47.0499,
+ 47.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9069.00",
+ "title": "Precision Instrument and Equipment Repairers, All Other",
+ "cip_codes": [
+ 15.0401,
+ 15.0404,
+ 47.0404,
+ 47.0408,
+ 47.0499,
+ 47.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "49-9021.00",
+ "title": "Heating, Air Conditioning, and Refrigeration Mechanics and Installers",
+ "cip_codes": [
+ 15.0501,
+ 47.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "17-3025.00",
+ "title": "Environmental Engineering Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-4042.00",
+ "title": "Environmental Science and Protection Technicians, Including Health",
+ "cip_codes": [
+ 3.0104,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0901,
+ 15.0903,
+ 15.0999,
+ 26.1006,
+ 30.3301,
+ 30.4101,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0605,
+ 41,
+ 41,
+ 41.0303,
+ 41.0399,
+ 41.0399,
+ 41.0399,
+ 41.9999,
+ 41.9999,
+ 41.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-8031.00",
+ "title": "Water and Wastewater Treatment Plant and System Operators",
+ "cip_codes": [
+ 15.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-4041.00",
+ "title": "Hazardous Materials Removal Workers",
+ "cip_codes": [
+ 15.0508
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4121.00",
+ "title": "Welders, Cutters, Solderers, and Brazers",
+ "cip_codes": [
+ 15.0614,
+ 48.0508,
+ 48.0508
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-9141.00",
+ "title": "Semiconductor Processing Technicians",
+ "cip_codes": [
+ 15.0616,
+ 47.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-5011.00",
+ "title": "Occupational Health and Safety Specialists",
+ "cip_codes": [
+ 15.0701,
+ 15.0703,
+ 15.0705,
+ 26.1006,
+ 26.1006,
+ 51.0916,
+ 51.2202,
+ 51.2202,
+ 51.2206,
+ 51.2206,
+ 51.2213,
+ 51.2213
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "51-9061.00",
+ "title": "Inspectors, Testers, Sorters, Samplers, and Weighers",
+ "cip_codes": [
+ 15.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-5012.00",
+ "title": "Occupational Health and Safety Technicians",
+ "cip_codes": [
+ 15.0701,
+ 15.0703,
+ 15.0705,
+ 26.1006,
+ 26.1006,
+ 51.0916,
+ 51.2202,
+ 51.2202,
+ 51.2206,
+ 51.2206,
+ 51.2213,
+ 51.2213
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-3013.00",
+ "title": "Mechanical Drafters",
+ "cip_codes": [
+ 4.0901,
+ 4.0902,
+ 4.0999,
+ 15.0101,
+ 15.0303,
+ 15.0306,
+ 15.0403,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.1102,
+ 15.1301,
+ 15.1301,
+ 15.1301,
+ 15.1301,
+ 15.1302,
+ 15.1302,
+ 15.1302,
+ 15.1302,
+ 15.1303,
+ 15.1304,
+ 15.1305,
+ 15.1306,
+ 15.1307,
+ 15.1307,
+ 15.1307,
+ 15.1307,
+ 15.1399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "17-3027.01",
+ "title": "Automotive Engineering Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "49-3023.00",
+ "title": "Automotive Service Technicians and Mechanics",
+ "cip_codes": [
+ 15.0803,
+ 15.0807,
+ 47.06,
+ 47.0603,
+ 47.0603,
+ 47.0604,
+ 47.0612,
+ 47.0613,
+ 47.0614,
+ 47.0617
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "17-3027.00",
+ "title": "Mechanical Engineering Technologists and Technicians",
+ "cip_codes": [
+ 14.0202,
+ 15,
+ 15,
+ 15,
+ 15,
+ 15.0001,
+ 15.0001,
+ 15.0001,
+ 15.0101,
+ 15.0101,
+ 15.0201,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0303,
+ 15.0304,
+ 15.0305,
+ 15.0306,
+ 15.0307,
+ 15.0399,
+ 15.0401,
+ 15.0401,
+ 15.0403,
+ 15.0404,
+ 15.0404,
+ 15.0405,
+ 15.0406,
+ 15.0406,
+ 15.0407,
+ 15.0499,
+ 15.0501,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0599,
+ 15.0607,
+ 15.0611,
+ 15.0612,
+ 15.0613,
+ 15.0614,
+ 15.0615,
+ 15.0616,
+ 15.0617,
+ 15.0699,
+ 15.0703,
+ 15.0704,
+ 15.0705,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.0805,
+ 15.0806,
+ 15.0807,
+ 15.0899,
+ 15.0901,
+ 15.1001,
+ 15.1103,
+ 15.1103,
+ 15.1201,
+ 15.1201,
+ 15.1202,
+ 15.1202,
+ 15.1203,
+ 15.1204,
+ 15.1299,
+ 15.1401,
+ 15.1501,
+ 15.1503,
+ 15.1503,
+ 15.1701,
+ 15.1702,
+ 15.1703,
+ 15.1704,
+ 15.1705,
+ 15.1706,
+ 15.1799,
+ 26.1006,
+ 29.0303,
+ 29.0306,
+ 29.0307,
+ 29.0401,
+ 29.0402,
+ 29.0409,
+ 46.0415,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "49-3051.00",
+ "title": "Motorboat Mechanics and Service Technicians",
+ "cip_codes": [
+ 15.0806,
+ 47.0606,
+ 47.0606,
+ 47.0611,
+ 47.0616
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-4043.00",
+ "title": "Geological Technicians, Except Hydrologic Technicians",
+ "cip_codes": [
+ 3.0104,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0901,
+ 15.0903,
+ 15.0999,
+ 26.1006,
+ 30.3301,
+ 30.4101,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0605,
+ 41,
+ 41,
+ 41.0303,
+ 41.0399,
+ 41.0399,
+ 41.0399,
+ 41.9999,
+ 41.9999,
+ 41.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "47-5013.00",
+ "title": "Service Unit Operators, Oil and Gas",
+ "cip_codes": [
+ 15.0901,
+ 46.0504,
+ 46.0504
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-8092.00",
+ "title": "Gas Plant Operators",
+ "cip_codes": [
+ 15.0903,
+ 41.0301,
+ 41.0303,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "11-9021.00",
+ "title": "Construction Managers",
+ "cip_codes": [
+ 15.1001,
+ 44.0402,
+ 52.0101,
+ 52.0201,
+ 52.0205,
+ 52.2001,
+ 52.2002,
+ 52.2099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-3019.00",
+ "title": "Drafters, All Other",
+ "cip_codes": [
+ 4.0901,
+ 4.0902,
+ 4.0999,
+ 15.0101,
+ 15.0303,
+ 15.0306,
+ 15.0403,
+ 15.0801,
+ 15.0803,
+ 15.0805,
+ 15.1102,
+ 15.1301,
+ 15.1301,
+ 15.1301,
+ 15.1301,
+ 15.1302,
+ 15.1302,
+ 15.1302,
+ 15.1302,
+ 15.1303,
+ 15.1304,
+ 15.1305,
+ 15.1306,
+ 15.1307,
+ 15.1307,
+ 15.1307,
+ 15.1307,
+ 15.1399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "17-3031.00",
+ "title": "Surveying and Mapping Technicians",
+ "cip_codes": [
+ 15.1102,
+ 45.0701,
+ 45.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-4051.02",
+ "title": "Nuclear Monitoring Technicians",
+ "cip_codes": [
+ 15.1401,
+ 41.0204,
+ 41.0205,
+ 41.0299,
+ 51.0916
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-4051.00",
+ "title": "Nuclear Technicians",
+ "cip_codes": [
+ 15.1401,
+ 41.0204,
+ 41.0205,
+ 41.0299,
+ 51.0916
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "11-3013.00",
+ "title": "Facilities Managers",
+ "cip_codes": [
+ 1.8202,
+ 15.1501,
+ 19.0604,
+ 30.1201,
+ 30.1299,
+ 31.0301,
+ 46.0401,
+ 46.0412,
+ 51.0702,
+ 51.0711,
+ 52.0101,
+ 52.0101,
+ 52.0201,
+ 52.0201,
+ 52.0202,
+ 52.0202,
+ 52.0204,
+ 52.0205,
+ 52.0207,
+ 52.0904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "11-3013.01",
+ "title": "Security Managers",
+ "cip_codes": [
+ 1.8202,
+ 15.1501,
+ 19.0604,
+ 30.1201,
+ 30.1299,
+ 31.0301,
+ 46.0401,
+ 46.0412,
+ 51.0702,
+ 51.0711,
+ 52.0101,
+ 52.0101,
+ 52.0201,
+ 52.0201,
+ 52.0202,
+ 52.0202,
+ 52.0204,
+ 52.0205,
+ 52.0207,
+ 52.0904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "27-1021.00",
+ "title": "Commercial and Industrial Designers",
+ "cip_codes": [
+ 4.0402,
+ 4.0501,
+ 11.0801,
+ 11.0803,
+ 15.1503,
+ 15.1701,
+ 19.0604,
+ 19.0699,
+ 19.0902,
+ 19.0904,
+ 19.0904,
+ 19.0906,
+ 30.3701,
+ 50.0102,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0402,
+ 50.0402,
+ 50.0404,
+ 50.0404,
+ 50.0404,
+ 50.0407,
+ 50.0408,
+ 50.0409,
+ 50.041,
+ 50.041,
+ 50.0502,
+ 50.051,
+ 52.1903,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1199.00",
+ "title": "Postsecondary Teachers, All Other",
+ "cip_codes": [
+ 1.0207,
+ 1.0504,
+ 1.0509,
+ 11.0801,
+ 11.0802,
+ 11.0803,
+ 12.0509,
+ 13.1211,
+ 13.1301,
+ 13.1303,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1314,
+ 13.1319,
+ 13.132,
+ 13.1327,
+ 15.1503,
+ 16.1602,
+ 19.0101,
+ 19.0201,
+ 19.0202,
+ 19.0299,
+ 19.0401,
+ 19.0402,
+ 19.0403,
+ 19.0499,
+ 19.0501,
+ 19.0504,
+ 19.0505,
+ 19.0599,
+ 19.0601,
+ 19.0701,
+ 19.0702,
+ 19.0704,
+ 19.0706,
+ 19.0708,
+ 19.0901,
+ 19.0902,
+ 19.0904,
+ 19.1001,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 24.0101,
+ 24.0102,
+ 24.0103,
+ 30.0101,
+ 30.0501,
+ 30.0601,
+ 30.1201,
+ 30.1299,
+ 30.1401,
+ 30.1501,
+ 30.1801,
+ 30.1901,
+ 30.2501,
+ 30.2502,
+ 30.2599,
+ 30.2601,
+ 30.2901,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 31.0101,
+ 31.0501,
+ 31.0504,
+ 31.0508,
+ 40.1099,
+ 40.9999,
+ 43.0202,
+ 43.0304,
+ 49.0205,
+ 50.0411,
+ 51.2706,
+ 51.3204,
+ 51.3299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-8013.03",
+ "title": "Biomass Plant Technicians",
+ "cip_codes": [
+ 15.1702,
+ 15.1705,
+ 41.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-8013.04",
+ "title": "Hydroelectric Plant Technicians",
+ "cip_codes": [
+ 15.1702,
+ 15.1705,
+ 41.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-8013.00",
+ "title": "Power Plant Operators",
+ "cip_codes": [
+ 15.1702,
+ 15.1705,
+ 41.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2231.00",
+ "title": "Solar Photovoltaic Installers",
+ "cip_codes": [
+ 15.1703,
+ 46.041,
+ 47.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9081.00",
+ "title": "Wind Turbine Service Technicians",
+ "cip_codes": [
+ 15.1704,
+ 47.0303,
+ 47.0701,
+ 47.0704
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-4012.00",
+ "title": "Agricultural Technicians",
+ "cip_codes": [
+ 1,
+ 1.0401,
+ 1.0901,
+ 1.0905,
+ 1.0907,
+ 1.1001,
+ 1.1002,
+ 1.1003,
+ 1.1005,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1201,
+ 1.1399,
+ 26.0101,
+ 26.0101,
+ 26.0202,
+ 26.0502,
+ 40.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-1029.01",
+ "title": "Bioinformatics Scientists",
+ "cip_codes": [
+ 1.1203,
+ 3.0601,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0207,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0499,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0504,
+ 26.0505,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0507,
+ 26.0508,
+ 26.0508,
+ 26.0509,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0702,
+ 26.0707,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1302,
+ 26.1303,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 30.3201,
+ 42.2706,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1042.00",
+ "title": "Biological Science Teachers, Postsecondary",
+ "cip_codes": [
+ 1,
+ 1.0101,
+ 1.0102,
+ 1.0103,
+ 1.0104,
+ 1.0105,
+ 1.0199,
+ 1.0201,
+ 1.0204,
+ 1.0299,
+ 1.0301,
+ 1.0302,
+ 1.0303,
+ 1.0304,
+ 1.0307,
+ 1.0308,
+ 1.0308,
+ 1.0399,
+ 1.0401,
+ 1.0505,
+ 1.0507,
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0606,
+ 1.0607,
+ 1.0701,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1001,
+ 1.1004,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1104,
+ 1.1105,
+ 1.1106,
+ 1.1106,
+ 1.1199,
+ 1.1201,
+ 1.1202,
+ 1.1203,
+ 1.1299,
+ 3.0101,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0299,
+ 3.0501,
+ 3.0502,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599,
+ 3.0601,
+ 3.9999,
+ 13.1301,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1322,
+ 26.0101,
+ 26.0102,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0508,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 26.0901,
+ 26.0902,
+ 26.0903,
+ 26.0904,
+ 26.0905,
+ 26.0907,
+ 26.0908,
+ 26.0909,
+ 26.091,
+ 26.0911,
+ 26.0912,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1399,
+ 26.1401,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 30.1001,
+ 30.1901,
+ 30.2701,
+ 30.4301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1029.00",
+ "title": "Biological Scientists, All Other",
+ "cip_codes": [
+ 1.1203,
+ 3.0601,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0207,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0499,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0504,
+ 26.0505,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0507,
+ 26.0508,
+ 26.0508,
+ 26.0509,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0702,
+ 26.0707,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1302,
+ 26.1303,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 30.3201,
+ 42.2706,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-4021.00",
+ "title": "Biological Technicians",
+ "cip_codes": [
+ 26.0101,
+ 26.0102,
+ 26.0202,
+ 26.0204,
+ 26.0406,
+ 26.0502,
+ 26.0503,
+ 26.0508,
+ 26.0701,
+ 26.0708,
+ 26.0709,
+ 26.0801,
+ 26.1102,
+ 26.1103,
+ 26.1104,
+ 26.1302,
+ 26.1304,
+ 26.1501,
+ 41.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-1029.04",
+ "title": "Biologists",
+ "cip_codes": [
+ 1.1203,
+ 3.0601,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0207,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0499,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0504,
+ 26.0505,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0507,
+ 26.0508,
+ 26.0508,
+ 26.0509,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0702,
+ 26.0707,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1302,
+ 26.1303,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 30.3201,
+ 42.2706,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-4013.00",
+ "title": "Food Science Technicians",
+ "cip_codes": [
+ 1,
+ 1.0401,
+ 1.0901,
+ 1.0905,
+ 1.0907,
+ 1.1001,
+ 1.1002,
+ 1.1003,
+ 1.1005,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1201,
+ 1.1399,
+ 26.0101,
+ 26.0101,
+ 26.0202,
+ 26.0502,
+ 40.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-4092.00",
+ "title": "Forensic Science Technicians",
+ "cip_codes": [
+ 26.0101,
+ 40.0401,
+ 40.0501,
+ 40.051,
+ 40.1001,
+ 40.1002,
+ 41,
+ 41.0303,
+ 41.0399,
+ 41.9999,
+ 43.01,
+ 43.01,
+ 43.0104,
+ 43.0402,
+ 43.0402,
+ 43.0406,
+ 43.0406,
+ 45.0205,
+ 45.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-1029.03",
+ "title": "Geneticists",
+ "cip_codes": [
+ 1.1203,
+ 3.0601,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0207,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0499,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0504,
+ 26.0505,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0507,
+ 26.0508,
+ 26.0508,
+ 26.0509,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0702,
+ 26.0707,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1302,
+ 26.1303,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 30.3201,
+ 42.2706,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "19-1099.00",
+ "title": "Life Scientists, All Other",
+ "cip_codes": [
+ 26.0101,
+ 26.1301,
+ 26.1399,
+ 26.9999,
+ 30.1701,
+ 30.1801,
+ 30.1901,
+ 30.4301,
+ 42.2706,
+ 51.2314
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-1029.02",
+ "title": "Molecular and Cellular Biologists",
+ "cip_codes": [
+ 1.1203,
+ 3.0601,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0207,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0499,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0504,
+ 26.0505,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0507,
+ 26.0508,
+ 26.0508,
+ 26.0509,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0702,
+ 26.0707,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1302,
+ 26.1303,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 30.3201,
+ 42.2706,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-4012.01",
+ "title": "Precision Agriculture Technicians",
+ "cip_codes": [
+ 1,
+ 1.0401,
+ 1.0901,
+ 1.0905,
+ 1.0907,
+ 1.1001,
+ 1.1002,
+ 1.1003,
+ 1.1005,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1201,
+ 1.1399,
+ 26.0101,
+ 26.0101,
+ 26.0202,
+ 26.0502,
+ 40.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-2031.00",
+ "title": "Secondary School Teachers, Except Special and Career/Technical Education",
+ "cip_codes": [
+ 13.0201,
+ 13.1203,
+ 13.1205,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1211,
+ 13.1212,
+ 13.1213,
+ 13.1301,
+ 13.1302,
+ 13.1303,
+ 13.1304,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1308,
+ 13.1309,
+ 13.1309,
+ 13.131,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1318,
+ 13.1319,
+ 13.132,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1327,
+ 13.1328,
+ 13.1329,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1333,
+ 13.1335,
+ 13.1337,
+ 13.1338,
+ 13.1339,
+ 13.1401,
+ 13.1402,
+ 13.1499,
+ 16.0101,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0399,
+ 16.0402,
+ 16.05,
+ 16.0501,
+ 16.0599,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0905,
+ 16.0999,
+ 16.1001,
+ 16.1101,
+ 16.1102,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1409,
+ 16.1499,
+ 16.1601,
+ 16.1602,
+ 16.9999,
+ 19.0101,
+ 23.0101,
+ 26.0101,
+ 27.0101,
+ 30.0101,
+ 30.3601,
+ 30.3801,
+ 30.4101,
+ 30.4501,
+ 40.0101,
+ 40.0501,
+ 40.0801,
+ 45.0101,
+ 45.0199,
+ 45.0601,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1099,
+ 50.0701,
+ 50.0901,
+ 54.0101,
+ 54.0102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-1042.00",
+ "title": "Medical Scientists, Except Epidemiologists",
+ "cip_codes": [
+ 26.0102,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0401,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0507,
+ 26.0508,
+ 26.0509,
+ 26.0509,
+ 26.0806,
+ 26.0901,
+ 26.0902,
+ 26.0903,
+ 26.0904,
+ 26.0905,
+ 26.0907,
+ 26.0908,
+ 26.0909,
+ 26.091,
+ 26.0911,
+ 26.0912,
+ 26.0913,
+ 26.0999,
+ 26.1001,
+ 26.1002,
+ 26.1003,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 26.1007,
+ 26.1099,
+ 26.1102,
+ 26.1309,
+ 26.1309,
+ 26.1311,
+ 26.1401,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 30.1001,
+ 30.1101,
+ 42.2709,
+ 45.0205,
+ 51.1401,
+ 51.1401,
+ 51.1402,
+ 51.1405,
+ 51.1499,
+ 51.2003,
+ 51.2004,
+ 51.2005,
+ 51.201,
+ 51.2202,
+ 51.2202,
+ 61.0101,
+ 61.0102,
+ 61.0103,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0109,
+ 61.011,
+ 61.0111,
+ 61.0112,
+ 61.0113,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0122,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0202,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0214,
+ 61.0215,
+ 61.0216,
+ 61.0217,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0499,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0799,
+ 61.0804,
+ 61.0805,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0811,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1099,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1299,
+ 61.1302,
+ 61.1303,
+ 61.1304,
+ 61.1399,
+ 61.1499,
+ 61.1502,
+ 61.1503,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1699,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2103,
+ 61.2199,
+ 61.2299,
+ 61.2399,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2599,
+ 61.2603,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2612,
+ 61.2699,
+ 61.2703,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1021.00",
+ "title": "Biochemists and Biophysicists",
+ "cip_codes": [
+ 1.1203,
+ 3.0601,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0207,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0499,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0504,
+ 26.0505,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0507,
+ 26.0508,
+ 26.0508,
+ 26.0509,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0702,
+ 26.0707,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1302,
+ 26.1303,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 30.3201,
+ 42.2706,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "19-1022.00",
+ "title": "Microbiologists",
+ "cip_codes": [
+ 1.1203,
+ 3.0601,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0207,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0499,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0504,
+ 26.0505,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0507,
+ 26.0508,
+ 26.0508,
+ 26.0509,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0702,
+ 26.0707,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1302,
+ 26.1303,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 30.3201,
+ 42.2706,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1013.00",
+ "title": "Soil and Plant Scientists",
+ "cip_codes": [
+ 1,
+ 1,
+ 1,
+ 1.0308,
+ 1.031,
+ 1.0701,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0907,
+ 1.0999,
+ 1.1001,
+ 1.1002,
+ 1.1003,
+ 1.1004,
+ 1.1004,
+ 1.1005,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1104,
+ 1.1105,
+ 1.1106,
+ 1.1106,
+ 1.1199,
+ 1.1201,
+ 1.1202,
+ 1.1203,
+ 1.1299,
+ 1.8103,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 12.0509,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-2011.01",
+ "title": "Cytogenetic Technologists",
+ "cip_codes": [
+ 26.0401,
+ 51.0802,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1007,
+ 51.1008,
+ 51.101,
+ 51.101,
+ 51.1099,
+ 51.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-2011.02",
+ "title": "Cytotechnologists",
+ "cip_codes": [
+ 26.0401,
+ 51.0802,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1007,
+ 51.1008,
+ 51.101,
+ 51.101,
+ 51.1099,
+ 51.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1041.00",
+ "title": "Epidemiologists",
+ "cip_codes": [
+ 26.0102,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0401,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0507,
+ 26.0508,
+ 26.0509,
+ 26.0509,
+ 26.0806,
+ 26.0901,
+ 26.0902,
+ 26.0903,
+ 26.0904,
+ 26.0905,
+ 26.0907,
+ 26.0908,
+ 26.0909,
+ 26.091,
+ 26.0911,
+ 26.0912,
+ 26.0913,
+ 26.0999,
+ 26.1001,
+ 26.1002,
+ 26.1003,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 26.1007,
+ 26.1099,
+ 26.1102,
+ 26.1309,
+ 26.1309,
+ 26.1311,
+ 26.1401,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 30.1001,
+ 30.1101,
+ 42.2709,
+ 45.0205,
+ 51.1401,
+ 51.1401,
+ 51.1402,
+ 51.1405,
+ 51.1499,
+ 51.2003,
+ 51.2004,
+ 51.2005,
+ 51.201,
+ 51.2202,
+ 51.2202,
+ 61.0101,
+ 61.0102,
+ 61.0103,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0109,
+ 61.011,
+ 61.0111,
+ 61.0112,
+ 61.0113,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0122,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0202,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0214,
+ 61.0215,
+ 61.0216,
+ 61.0217,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0499,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0799,
+ 61.0804,
+ 61.0805,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0811,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1099,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1299,
+ 61.1302,
+ 61.1303,
+ 61.1304,
+ 61.1399,
+ 61.1499,
+ 61.1502,
+ 61.1503,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1699,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2103,
+ 61.2199,
+ 61.2299,
+ 61.2399,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2599,
+ 61.2603,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2612,
+ 61.2699,
+ 61.2703,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1071.00",
+ "title": "Health Specialties Teachers, Postsecondary",
+ "cip_codes": [
+ 1.8001,
+ 1.8101,
+ 1.8102,
+ 1.8103,
+ 1.8104,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 1.8301,
+ 13.1327,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0503,
+ 26.0913,
+ 26.0999,
+ 26.1001,
+ 26.1002,
+ 26.1003,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 26.1007,
+ 26.1099,
+ 26.1102,
+ 26.1309,
+ 26.1311,
+ 30.1101,
+ 30.1901,
+ 42.2709,
+ 44.0503,
+ 51.0101,
+ 51.0201,
+ 51.0202,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0401,
+ 51.0501,
+ 51.0502,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.0507,
+ 51.0508,
+ 51.0509,
+ 51.051,
+ 51.0511,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.0601,
+ 51.0602,
+ 51.0603,
+ 51.0801,
+ 51.0802,
+ 51.0803,
+ 51.0805,
+ 51.0901,
+ 51.0902,
+ 51.0903,
+ 51.0904,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0908,
+ 51.0909,
+ 51.091,
+ 51.0911,
+ 51.0912,
+ 51.0913,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0919,
+ 51.092,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1006,
+ 51.1007,
+ 51.1008,
+ 51.1009,
+ 51.101,
+ 51.1011,
+ 51.1012,
+ 51.1099,
+ 51.1405,
+ 51.1501,
+ 51.2001,
+ 51.2002,
+ 51.2003,
+ 51.2004,
+ 51.2005,
+ 51.2006,
+ 51.2007,
+ 51.2008,
+ 51.2009,
+ 51.201,
+ 51.2011,
+ 51.2099,
+ 51.2201,
+ 51.2202,
+ 51.2205,
+ 51.2206,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2212,
+ 51.2213,
+ 51.2214,
+ 51.2299,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2307,
+ 51.2308,
+ 51.2309,
+ 51.231,
+ 51.2313,
+ 51.2314,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3202,
+ 51.3203,
+ 51.3501,
+ 51.3502,
+ 51.3503,
+ 51.3599,
+ 51.3603,
+ 51.3801,
+ 51.3803,
+ 51.3804,
+ 51.3805,
+ 51.3806,
+ 51.3807,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899,
+ 61.0101,
+ 61.0102,
+ 61.0103,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0109,
+ 61.011,
+ 61.0111,
+ 61.0112,
+ 61.0113,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0122,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0202,
+ 61.0203,
+ 61.0204,
+ 61.0205,
+ 61.0206,
+ 61.0207,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0211,
+ 61.0212,
+ 61.0213,
+ 61.0214,
+ 61.0215,
+ 61.0216,
+ 61.0217,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0811,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1001,
+ 61.1099,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1201,
+ 61.1299,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1304,
+ 61.1399,
+ 61.1401,
+ 61.1499,
+ 61.1501,
+ 61.1502,
+ 61.1503,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2101,
+ 61.2102,
+ 61.2103,
+ 61.2199,
+ 61.2201,
+ 61.2299,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.2701,
+ 61.2702,
+ 61.2703,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2801,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-2011.04",
+ "title": "Histotechnologists",
+ "cip_codes": [
+ 26.0401,
+ 51.0802,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1007,
+ 51.1008,
+ 51.101,
+ 51.101,
+ 51.1099,
+ 51.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-2011.00",
+ "title": "Medical and Clinical Laboratory Technologists",
+ "cip_codes": [
+ 26.0401,
+ 51.0802,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1007,
+ 51.1008,
+ 51.101,
+ 51.101,
+ 51.1099,
+ 51.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9111.00",
+ "title": "Medical and Health Services Managers",
+ "cip_codes": [
+ 1.8201,
+ 1.8202,
+ 26.0509,
+ 44.0503,
+ 51.0701,
+ 51.0702,
+ 51.0704,
+ 51.0706,
+ 51.0718,
+ 51.0719,
+ 51.072,
+ 51.0721,
+ 51.0722,
+ 51.2001,
+ 51.2002,
+ 51.2007,
+ 51.2008,
+ 51.2011,
+ 51.2201,
+ 51.2208,
+ 51.221,
+ 51.2211,
+ 51.2213,
+ 51.2214,
+ 51.2299,
+ 51.3206,
+ 51.3299,
+ 51.3802,
+ 51.3818,
+ 51.382,
+ 52.0206,
+ 52.021,
+ 52.0214,
+ 52.0216
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1023.00",
+ "title": "Zoologists and Wildlife Biologists",
+ "cip_codes": [
+ 1.1203,
+ 3.0601,
+ 26.0101,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0207,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0499,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0504,
+ 26.0505,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0507,
+ 26.0508,
+ 26.0508,
+ 26.0509,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0702,
+ 26.0707,
+ 26.0707,
+ 26.0708,
+ 26.0709,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0807,
+ 26.0899,
+ 26.091,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1102,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1302,
+ 26.1303,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1311,
+ 26.1399,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 27.0306,
+ 30.1901,
+ 30.2701,
+ 30.3201,
+ 30.3201,
+ 42.2706,
+ 51.2003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-9092.00",
+ "title": "Genetic Counselors",
+ "cip_codes": [
+ 26.0801,
+ 26.0802,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 31.0507,
+ 51.0711,
+ 51.0909,
+ 51.0913,
+ 51.1509,
+ 51.2214,
+ 51.3201,
+ 51.3302,
+ 51.3702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1128.00",
+ "title": "Exercise Physiologists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2041.01",
+ "title": "Climate Change Policy Analysts",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 30.3201,
+ 30.3201,
+ 30.3301,
+ 30.3801,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4101,
+ 30.4201,
+ 30.4301,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0607,
+ 40.0699,
+ 51.2202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2041.02",
+ "title": "Environmental Restoration Planners",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 30.3201,
+ 30.3201,
+ 30.3301,
+ 30.3801,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4101,
+ 30.4201,
+ 30.4301,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0607,
+ 40.0699,
+ 51.2202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2041.00",
+ "title": "Environmental Scientists and Specialists, Including Health",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 30.3201,
+ 30.3201,
+ 30.3301,
+ 30.3801,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4101,
+ 30.4201,
+ 30.4301,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0607,
+ 40.0699,
+ 51.2202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2041.03",
+ "title": "Industrial Ecologists",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 30.3201,
+ 30.3201,
+ 30.3301,
+ 30.3801,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4101,
+ 30.4201,
+ 30.4301,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0607,
+ 40.0699,
+ 51.2202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-2041.01",
+ "title": "Biostatisticians",
+ "cip_codes": [
+ 13.0603,
+ 13.0604,
+ 13.0608,
+ 13.0699,
+ 26.1101,
+ 26.1102,
+ 26.1311,
+ 27.0101,
+ 27.0301,
+ 27.0304,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 30.4901,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7102,
+ 30.7199,
+ 42.2708,
+ 45.0102,
+ 45.0103,
+ 45.0603,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-2041.00",
+ "title": "Statisticians",
+ "cip_codes": [
+ 13.0603,
+ 13.0604,
+ 13.0608,
+ 13.0699,
+ 26.1101,
+ 26.1102,
+ 26.1311,
+ 27.0101,
+ 27.0301,
+ 27.0304,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 30.4901,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7102,
+ 30.7199,
+ 42.2708,
+ 45.0102,
+ 45.0103,
+ 45.0603,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1022.00",
+ "title": "Mathematical Science Teachers, Postsecondary",
+ "cip_codes": [
+ 11.0101,
+ 11.0102,
+ 11.0199,
+ 11.0201,
+ 11.0401,
+ 11.0501,
+ 11.0701,
+ 11.0804,
+ 11.0901,
+ 11.0902,
+ 13.1311,
+ 13.1321,
+ 26.1102,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 27.9999,
+ 30.0801,
+ 30.0801,
+ 30.1601,
+ 30.3001,
+ 30.3101,
+ 30.3901,
+ 30.4801,
+ 30.5001,
+ 38.0102,
+ 52.1201,
+ 52.1206,
+ 52.1207,
+ 52.1299,
+ 52.1302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-2099.01",
+ "title": "Bioinformatics Technicians",
+ "cip_codes": [
+ 26.1104,
+ 26.1199,
+ 27.0101,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.9999,
+ 30.0801,
+ 30.3001,
+ 30.4901,
+ 30.5001
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "15-2099.00",
+ "title": "Mathematical Science Occupations, All Other",
+ "cip_codes": [
+ 26.1104,
+ 26.1199,
+ 27.0101,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.9999,
+ 30.0801,
+ 30.3001,
+ 30.4901,
+ 30.5001
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "15-2021.00",
+ "title": "Mathematicians",
+ "cip_codes": [
+ 26.1199,
+ 27.0101,
+ 27.0102,
+ 27.0103,
+ 27.0104,
+ 27.0105,
+ 27.0199,
+ 27.0301,
+ 27.0303,
+ 27.0304,
+ 27.0305,
+ 27.0306,
+ 27.0399,
+ 27.0502,
+ 27.0503,
+ 27.9999,
+ 30.0801,
+ 30.4901,
+ 30.5001,
+ 38.0102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1031.00",
+ "title": "Conservation Scientists",
+ "cip_codes": [
+ 1.0308,
+ 1.1106,
+ 3.0101,
+ 3.0101,
+ 3.0201,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0501,
+ 3.0501,
+ 3.0502,
+ 3.0502,
+ 3.0506,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599,
+ 3.0601,
+ 26.1301,
+ 26.1305,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.4401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-1043.00",
+ "title": "Forestry and Conservation Science Teachers, Postsecondary",
+ "cip_codes": [
+ 1,
+ 1.0101,
+ 1.0102,
+ 1.0103,
+ 1.0104,
+ 1.0105,
+ 1.0199,
+ 1.0201,
+ 1.0204,
+ 1.0299,
+ 1.0301,
+ 1.0302,
+ 1.0303,
+ 1.0304,
+ 1.0307,
+ 1.0308,
+ 1.0308,
+ 1.0399,
+ 1.0401,
+ 1.0505,
+ 1.0507,
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0606,
+ 1.0607,
+ 1.0701,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1001,
+ 1.1004,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1104,
+ 1.1105,
+ 1.1106,
+ 1.1106,
+ 1.1199,
+ 1.1201,
+ 1.1202,
+ 1.1203,
+ 1.1299,
+ 3.0101,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0299,
+ 3.0501,
+ 3.0502,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599,
+ 3.0601,
+ 3.9999,
+ 13.1301,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1322,
+ 26.0101,
+ 26.0102,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0508,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 26.0901,
+ 26.0902,
+ 26.0903,
+ 26.0904,
+ 26.0905,
+ 26.0907,
+ 26.0908,
+ 26.0909,
+ 26.091,
+ 26.0911,
+ 26.0912,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1399,
+ 26.1401,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 30.1001,
+ 30.1901,
+ 30.2701,
+ 30.4301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1031.03",
+ "title": "Park Naturalists",
+ "cip_codes": [
+ 1.0308,
+ 1.1106,
+ 3.0101,
+ 3.0101,
+ 3.0201,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0501,
+ 3.0501,
+ 3.0502,
+ 3.0502,
+ 3.0506,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599,
+ 3.0601,
+ 26.1301,
+ 26.1305,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.4401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-1031.02",
+ "title": "Range Managers",
+ "cip_codes": [
+ 1.0308,
+ 1.1106,
+ 3.0101,
+ 3.0101,
+ 3.0201,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0501,
+ 3.0501,
+ 3.0502,
+ 3.0502,
+ 3.0506,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599,
+ 3.0601,
+ 26.1301,
+ 26.1305,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.4401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-1053.00",
+ "title": "Environmental Science Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1323,
+ 13.1329,
+ 13.1337,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 30.5001,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0508,
+ 40.0509,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0601,
+ 40.0602,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1002,
+ 40.1101,
+ 40.1101,
+ 51.2004,
+ 51.2205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-1094.00",
+ "title": "Community Health Workers",
+ "cip_codes": [
+ 9.0905,
+ 9.0905,
+ 19.071,
+ 19.071,
+ 19.0711,
+ 19.0712,
+ 30.1701,
+ 30.2502,
+ 39.0701,
+ 39.0799,
+ 44,
+ 44,
+ 44.0201,
+ 44.0701,
+ 51.0001,
+ 51.0001,
+ 51.0504,
+ 51.1504,
+ 51.1504,
+ 51.2201,
+ 51.2201,
+ 51.2207,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2209,
+ 51.221,
+ 51.2212,
+ 51.2212,
+ 51.3206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "21-1091.00",
+ "title": "Health Education Specialists",
+ "cip_codes": [
+ 9.0905,
+ 9.0905,
+ 19.071,
+ 19.071,
+ 19.0711,
+ 19.0712,
+ 30.1701,
+ 30.2502,
+ 39.0701,
+ 39.0799,
+ 44,
+ 44,
+ 44.0201,
+ 44.0701,
+ 51.0001,
+ 51.0001,
+ 51.0504,
+ 51.1504,
+ 51.1504,
+ 51.2201,
+ 51.2201,
+ 51.2207,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2209,
+ 51.221,
+ 51.2212,
+ 51.2212,
+ 51.3206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-1011.00",
+ "title": "Chiropractors",
+ "cip_codes": [
+ 51.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1181.00",
+ "title": "Audiologists",
+ "cip_codes": [
+ 51.0201,
+ 51.0202,
+ 51.0204,
+ 51.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1127.00",
+ "title": "Speech-Language Pathologists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1021.00",
+ "title": "Dentists, General",
+ "cip_codes": [
+ 51.0401,
+ 51.0501,
+ 51.0502,
+ 51.0503,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.0507,
+ 51.0508,
+ 51.0509,
+ 51.051,
+ 51.0511,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.1404,
+ 60.0101,
+ 60.0102,
+ 60.0102,
+ 60.0103,
+ 60.0104,
+ 60.0105,
+ 60.0106,
+ 60.0106,
+ 60.0107,
+ 60.0108,
+ 60.0109,
+ 60.011,
+ 60.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1029.00",
+ "title": "Dentists, All Other Specialists",
+ "cip_codes": [
+ 51.0401,
+ 51.0501,
+ 51.0502,
+ 51.0503,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.0507,
+ 51.0508,
+ 51.0509,
+ 51.051,
+ 51.0511,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.1404,
+ 60.0101,
+ 60.0102,
+ 60.0102,
+ 60.0103,
+ 60.0104,
+ 60.0105,
+ 60.0106,
+ 60.0106,
+ 60.0107,
+ 60.0108,
+ 60.0109,
+ 60.011,
+ 60.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1022.00",
+ "title": "Oral and Maxillofacial Surgeons",
+ "cip_codes": [
+ 51.0401,
+ 51.0501,
+ 51.0502,
+ 51.0503,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.0507,
+ 51.0508,
+ 51.0509,
+ 51.051,
+ 51.0511,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.1404,
+ 60.0101,
+ 60.0102,
+ 60.0102,
+ 60.0103,
+ 60.0104,
+ 60.0105,
+ 60.0106,
+ 60.0106,
+ 60.0107,
+ 60.0108,
+ 60.0109,
+ 60.011,
+ 60.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1023.00",
+ "title": "Orthodontists",
+ "cip_codes": [
+ 51.0401,
+ 51.0501,
+ 51.0502,
+ 51.0503,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.0507,
+ 51.0508,
+ 51.0509,
+ 51.051,
+ 51.0511,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.1404,
+ 60.0101,
+ 60.0102,
+ 60.0102,
+ 60.0103,
+ 60.0104,
+ 60.0105,
+ 60.0106,
+ 60.0106,
+ 60.0107,
+ 60.0108,
+ 60.0109,
+ 60.011,
+ 60.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1024.00",
+ "title": "Prosthodontists",
+ "cip_codes": [
+ 51.0401,
+ 51.0501,
+ 51.0502,
+ 51.0503,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.0507,
+ 51.0508,
+ 51.0509,
+ 51.051,
+ 51.0511,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.1404,
+ 60.0101,
+ 60.0102,
+ 60.0102,
+ 60.0103,
+ 60.0104,
+ 60.0105,
+ 60.0106,
+ 60.0106,
+ 60.0107,
+ 60.0108,
+ 60.0109,
+ 60.011,
+ 60.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "31-9091.00",
+ "title": "Dental Assistants",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-1292.00",
+ "title": "Dental Hygienists",
+ "cip_codes": [
+ 51.0602,
+ 51.33,
+ 51.3301,
+ 51.3301,
+ 51.3303,
+ 51.3304,
+ 51.3305,
+ 51.3306,
+ 51.3399,
+ 51.3401,
+ 51.3499,
+ 51.3701,
+ 51.3702,
+ 51.3703,
+ 51.3704,
+ 51.3799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-9081.00",
+ "title": "Dental Laboratory Technicians",
+ "cip_codes": [
+ 51.0603,
+ 51.1006,
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-1011.00",
+ "title": "Business Teachers, Postsecondary",
+ "cip_codes": [
+ 13.1303,
+ 13.131,
+ 30.1601,
+ 30.2801,
+ 30.7104,
+ 51.0702,
+ 52.0101,
+ 52.0201,
+ 52.0202,
+ 52.0203,
+ 52.0205,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0212,
+ 52.0213,
+ 52.0301,
+ 52.0303,
+ 52.0304,
+ 52.0305,
+ 52.0501,
+ 52.0599,
+ 52.0701,
+ 52.0702,
+ 52.0801,
+ 52.0804,
+ 52.0806,
+ 52.0807,
+ 52.0808,
+ 52.081,
+ 52.0909,
+ 52.1001,
+ 52.1002,
+ 52.1003,
+ 52.1004,
+ 52.1101,
+ 52.1301,
+ 52.1302,
+ 52.1304,
+ 52.1401,
+ 52.1402,
+ 52.1403,
+ 52.1404,
+ 52.1499,
+ 52.1701,
+ 52.1801,
+ 52.2002,
+ 52.2099,
+ 52.2101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "31-9099.00",
+ "title": "Healthcare Support Workers, All Other",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "31-9099.01",
+ "title": "Speech-Language Pathology Assistants",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "43-1011.00",
+ "title": "First-Line Supervisors of Office and Administrative Support Workers",
+ "cip_codes": [
+ 1.0106,
+ 1.8201,
+ 1.8202,
+ 1.8203,
+ 1.8204,
+ 51.0705,
+ 51.0711,
+ 51.0712,
+ 52.0204,
+ 52.0207,
+ 52.0208,
+ 52.0401,
+ 52.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-9021.00",
+ "title": "Health Information Technologists and Medical Registrars",
+ "cip_codes": [
+ 51.0706,
+ 51.0707,
+ 51.0713,
+ 51.0721,
+ 51.0723,
+ 51.2706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-2072.00",
+ "title": "Medical Records Specialists",
+ "cip_codes": [
+ 51.0706,
+ 51.0707,
+ 51.0713,
+ 51.0721
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "31-9094.00",
+ "title": "Medical Transcriptionists",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-6013.00",
+ "title": "Medical Secretaries and Administrative Assistants",
+ "cip_codes": [
+ 1.8201,
+ 1.8204,
+ 22.0301,
+ 51.071,
+ 51.0711,
+ 51.0712,
+ 51.0714,
+ 51.0716,
+ 52.0401,
+ 52.0401,
+ 52.0402,
+ 52.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "11-3012.00",
+ "title": "Administrative Services Managers",
+ "cip_codes": [
+ 1.8202,
+ 15.1501,
+ 19.0604,
+ 30.1201,
+ 30.1299,
+ 31.0301,
+ 46.0401,
+ 46.0412,
+ 51.0702,
+ 51.0711,
+ 52.0101,
+ 52.0101,
+ 52.0201,
+ 52.0201,
+ 52.0202,
+ 52.0202,
+ 52.0204,
+ 52.0205,
+ 52.0207,
+ 52.0904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-9099.00",
+ "title": "Healthcare Practitioners and Technical Workers, All Other",
+ "cip_codes": [
+ 26.0801,
+ 26.0802,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 31.0507,
+ 51.0711,
+ 51.0909,
+ 51.0913,
+ 51.1509,
+ 51.2214,
+ 51.3201,
+ 51.3302,
+ 51.3702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "31-9092.00",
+ "title": "Medical Assistants",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-9099.01",
+ "title": "Midwives",
+ "cip_codes": [
+ 26.0801,
+ 26.0802,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 31.0507,
+ 51.0711,
+ 51.0909,
+ 51.0913,
+ 51.1509,
+ 51.2214,
+ 51.3201,
+ 51.3302,
+ 51.3702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1031.00",
+ "title": "Claims Adjusters, Examiners, and Investigators",
+ "cip_codes": [
+ 47.0603,
+ 51.0715,
+ 52.1701,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1041.00",
+ "title": "Compliance Officers",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 3.0208,
+ 3.0209,
+ 30.4101,
+ 43.0121,
+ 51.0717,
+ 51.072,
+ 51.2213,
+ 52.1001,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "13-1041.06",
+ "title": "Coroners",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 3.0208,
+ 3.0209,
+ 30.4101,
+ 43.0121,
+ 51.0717,
+ 51.072,
+ 51.2213,
+ 52.1001,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "31-9099.02",
+ "title": "Endoscopy Technicians",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1041.01",
+ "title": "Environmental Compliance Inspectors",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 3.0208,
+ 3.0209,
+ 30.4101,
+ 43.0121,
+ 51.0717,
+ 51.072,
+ 51.2213,
+ 52.1001,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "13-1041.03",
+ "title": "Equal Opportunity Representatives and Officers",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 3.0208,
+ 3.0209,
+ 30.4101,
+ 43.0121,
+ 51.0717,
+ 51.072,
+ 51.2213,
+ 52.1001,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1041.07",
+ "title": "Regulatory Affairs Specialists",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 3.0208,
+ 3.0209,
+ 30.4101,
+ 43.0121,
+ 51.0717,
+ 51.072,
+ 51.2213,
+ 52.1001,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9033.00",
+ "title": "Education Administrators, Postsecondary",
+ "cip_codes": [
+ 13.0401,
+ 13.0401,
+ 13.0401,
+ 13.0401,
+ 13.0402,
+ 13.0403,
+ 13.0404,
+ 13.0404,
+ 13.0404,
+ 13.0404,
+ 13.0406,
+ 13.0406,
+ 13.0407,
+ 13.0408,
+ 13.0409,
+ 13.041,
+ 13.0411,
+ 13.0411,
+ 13.0411,
+ 13.0412,
+ 13.0412,
+ 13.0412,
+ 13.0412,
+ 13.0413,
+ 13.0414,
+ 13.0414,
+ 13.0499,
+ 51.0719,
+ 51.3202,
+ 51.3203,
+ 52.0206,
+ 52.0214,
+ 61.0207,
+ 61.0211
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1041.08",
+ "title": "Customs Brokers",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 3.0208,
+ 3.0209,
+ 30.4101,
+ 43.0121,
+ 51.0717,
+ 51.072,
+ 51.2213,
+ 52.1001,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1041.04",
+ "title": "Government Property Inspectors and Investigators",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 3.0208,
+ 3.0209,
+ 30.4101,
+ 43.0121,
+ 51.0717,
+ 51.072,
+ 51.2213,
+ 52.1001,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2012.01",
+ "title": "Histology Technicians",
+ "cip_codes": [
+ 26.0401,
+ 51.0802,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1007,
+ 51.1008,
+ 51.101,
+ 51.101,
+ 51.1099,
+ 51.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-2012.00",
+ "title": "Medical and Clinical Laboratory Technicians",
+ "cip_codes": [
+ 26.0401,
+ 51.0802,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1007,
+ 51.1008,
+ 51.101,
+ 51.101,
+ 51.1099,
+ 51.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "31-2011.00",
+ "title": "Occupational Therapy Assistants",
+ "cip_codes": [
+ 51.0803,
+ 51.2604
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-2052.00",
+ "title": "Pharmacy Technicians",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 19.0501,
+ 30.1901,
+ 51.0805,
+ 51.0811,
+ 51.0909,
+ 51.1012,
+ 51.1502,
+ 51.1802,
+ 51.1803,
+ 51.1804,
+ 51.3101,
+ 51.3103,
+ 51.3104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "31-2021.00",
+ "title": "Physical Therapist Assistants",
+ "cip_codes": [
+ 51.0806,
+ 51.2604,
+ 51.2605
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-3011.00",
+ "title": "Ambulance Drivers and Attendants, Except Emergency Medical Technicians",
+ "cip_codes": [
+ 51.081
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-2055.00",
+ "title": "Surgical Technologists",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 19.0501,
+ 30.1901,
+ 51.0805,
+ 51.0811,
+ 51.0909,
+ 51.1012,
+ 51.1502,
+ 51.1802,
+ 51.1803,
+ 51.1804,
+ 51.3101,
+ 51.3103,
+ 51.3104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2099.00",
+ "title": "Health Technologists and Technicians, All Other",
+ "cip_codes": [
+ 51.0812,
+ 51.0814,
+ 51.0903,
+ 51.0907,
+ 51.0908,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0918,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1011,
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-2099.01",
+ "title": "Neurodiagnostic Technologists",
+ "cip_codes": [
+ 51.0812,
+ 51.0814,
+ 51.0903,
+ 51.0907,
+ 51.0908,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0918,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1011,
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-2099.05",
+ "title": "Ophthalmic Medical Technologists",
+ "cip_codes": [
+ 51.0812,
+ 51.0814,
+ 51.0903,
+ 51.0907,
+ 51.0908,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0918,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1011,
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2031.00",
+ "title": "Cardiovascular Technologists and Technicians",
+ "cip_codes": [
+ 51.0901,
+ 51.0902,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0907,
+ 51.091,
+ 51.0911,
+ 51.0915,
+ 51.0919,
+ 51.092
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2042.00",
+ "title": "Emergency Medical Technicians",
+ "cip_codes": [
+ 51.0904,
+ 51.0904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-2043.00",
+ "title": "Paramedics",
+ "cip_codes": [
+ 51.0904,
+ 51.0904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-2033.00",
+ "title": "Nuclear Medicine Technologists",
+ "cip_codes": [
+ 51.0901,
+ 51.0902,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0907,
+ 51.091,
+ 51.0911,
+ 51.0915,
+ 51.0919,
+ 51.092
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2036.00",
+ "title": "Medical Dosimetrists",
+ "cip_codes": [
+ 51.0901,
+ 51.0902,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0907,
+ 51.091,
+ 51.0911,
+ 51.0915,
+ 51.0919,
+ 51.092
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1124.00",
+ "title": "Radiation Therapists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2034.00",
+ "title": "Radiologic Technologists and Technicians",
+ "cip_codes": [
+ 51.0901,
+ 51.0902,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0907,
+ 51.091,
+ 51.0911,
+ 51.0915,
+ 51.0919,
+ 51.092
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-1126.00",
+ "title": "Respiratory Therapists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-9093.00",
+ "title": "Surgical Assistants",
+ "cip_codes": [
+ 26.0801,
+ 26.0802,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 31.0507,
+ 51.0711,
+ 51.0909,
+ 51.0913,
+ 51.1509,
+ 51.2214,
+ 51.3201,
+ 51.3302,
+ 51.3702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2032.00",
+ "title": "Diagnostic Medical Sonographers",
+ "cip_codes": [
+ 51.0901,
+ 51.0902,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0907,
+ 51.091,
+ 51.0911,
+ 51.0915,
+ 51.0919,
+ 51.092
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-1071.01",
+ "title": "Anesthesiologist Assistants",
+ "cip_codes": [
+ 51.0912,
+ 60.0901,
+ 60.0902,
+ 60.0903,
+ 60.0904,
+ 60.0905,
+ 60.0906,
+ 60.0907,
+ 60.0908,
+ 60.0909,
+ 60.091,
+ 60.0911,
+ 60.0912,
+ 60.0913,
+ 60.0914,
+ 60.0915,
+ 60.0916,
+ 60.0917,
+ 60.0918,
+ 60.0919,
+ 60.092,
+ 60.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-1071.00",
+ "title": "Physician Assistants",
+ "cip_codes": [
+ 51.0912,
+ 60.0901,
+ 60.0902,
+ 60.0903,
+ 60.0904,
+ 60.0905,
+ 60.0906,
+ 60.0907,
+ 60.0908,
+ 60.0909,
+ 60.091,
+ 60.0911,
+ 60.0912,
+ 60.0913,
+ 60.0914,
+ 60.0915,
+ 60.0916,
+ 60.0917,
+ 60.0918,
+ 60.0919,
+ 60.092,
+ 60.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-9091.00",
+ "title": "Athletic Trainers",
+ "cip_codes": [
+ 26.0801,
+ 26.0802,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 31.0507,
+ 51.0711,
+ 51.0909,
+ 51.0913,
+ 51.1509,
+ 51.2214,
+ 51.3201,
+ 51.3302,
+ 51.3702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2092.00",
+ "title": "Hearing Aid Specialists",
+ "cip_codes": [
+ 51.0812,
+ 51.0814,
+ 51.0903,
+ 51.0907,
+ 51.0908,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0918,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1011,
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2035.00",
+ "title": "Magnetic Resonance Imaging Technologists",
+ "cip_codes": [
+ 51.0901,
+ 51.0902,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0907,
+ 51.091,
+ 51.0911,
+ 51.0915,
+ 51.0919,
+ 51.092
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-9083.00",
+ "title": "Ophthalmic Laboratory Technicians",
+ "cip_codes": [
+ 51.0603,
+ 51.1006,
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "31-9097.00",
+ "title": "Phlebotomists",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "31-9093.00",
+ "title": "Medical Equipment Preparers",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-1229.01",
+ "title": "Allergists and Immunologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1211.00",
+ "title": "Anesthesiologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0103,
+ 61.0103,
+ 61.0104,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0108,
+ 61.0109,
+ 61.0109,
+ 61.011,
+ 61.011,
+ 61.0111,
+ 61.0111,
+ 61.0112,
+ 61.0112,
+ 61.0114,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0119,
+ 61.012,
+ 61.0124,
+ 61.0202,
+ 61.0217,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399,
+ 61.1906,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1212.00",
+ "title": "Cardiologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0103,
+ 61.0103,
+ 61.0104,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0108,
+ 61.0109,
+ 61.0109,
+ 61.011,
+ 61.011,
+ 61.0111,
+ 61.0111,
+ 61.0112,
+ 61.0112,
+ 61.0114,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0119,
+ 61.012,
+ 61.0124,
+ 61.0202,
+ 61.0217,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399,
+ 61.1906,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1213.00",
+ "title": "Dermatologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0103,
+ 61.0103,
+ 61.0104,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0108,
+ 61.0109,
+ 61.0109,
+ 61.011,
+ 61.011,
+ 61.0111,
+ 61.0111,
+ 61.0112,
+ 61.0112,
+ 61.0114,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0119,
+ 61.012,
+ 61.0124,
+ 61.0202,
+ 61.0217,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399,
+ 61.1906,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1214.00",
+ "title": "Emergency Medicine Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0103,
+ 61.0103,
+ 61.0104,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0108,
+ 61.0109,
+ 61.0109,
+ 61.011,
+ 61.011,
+ 61.0111,
+ 61.0111,
+ 61.0112,
+ 61.0112,
+ 61.0114,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0119,
+ 61.012,
+ 61.0124,
+ 61.0202,
+ 61.0217,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399,
+ 61.1906,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1215.00",
+ "title": "Family Medicine Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0103,
+ 61.0103,
+ 61.0104,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0108,
+ 61.0109,
+ 61.0109,
+ 61.011,
+ 61.011,
+ 61.0111,
+ 61.0111,
+ 61.0112,
+ 61.0112,
+ 61.0114,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0119,
+ 61.012,
+ 61.0124,
+ 61.0202,
+ 61.0217,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399,
+ 61.1906,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1216.00",
+ "title": "General Internal Medicine Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0103,
+ 61.0103,
+ 61.0104,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0108,
+ 61.0109,
+ 61.0109,
+ 61.011,
+ 61.011,
+ 61.0111,
+ 61.0111,
+ 61.0112,
+ 61.0112,
+ 61.0114,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0119,
+ 61.012,
+ 61.0124,
+ 61.0202,
+ 61.0217,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399,
+ 61.1906,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1229.02",
+ "title": "Hospitalists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1217.00",
+ "title": "Neurologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0103,
+ 61.0103,
+ 61.0104,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0108,
+ 61.0109,
+ 61.0109,
+ 61.011,
+ 61.011,
+ 61.0111,
+ 61.0111,
+ 61.0112,
+ 61.0112,
+ 61.0114,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0119,
+ 61.012,
+ 61.0124,
+ 61.0202,
+ 61.0217,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399,
+ 61.1906,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1218.00",
+ "title": "Obstetricians and Gynecologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0103,
+ 61.0103,
+ 61.0104,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0108,
+ 61.0109,
+ 61.0109,
+ 61.011,
+ 61.011,
+ 61.0111,
+ 61.0111,
+ 61.0112,
+ 61.0112,
+ 61.0114,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0119,
+ 61.012,
+ 61.0124,
+ 61.0202,
+ 61.0217,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0811,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1399,
+ 61.1906,
+ 61.1907,
+ 61.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1241.00",
+ "title": "Ophthalmologists, Except Pediatric",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0101,
+ 61.0199,
+ 61.0214,
+ 61.0299,
+ 61.1001,
+ 61.1099,
+ 61.1401,
+ 61.1499,
+ 61.1501,
+ 61.1501,
+ 61.1504,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.2101,
+ 61.2101,
+ 61.2102,
+ 61.2102,
+ 61.2103,
+ 61.2103,
+ 61.2199,
+ 61.2199,
+ 61.2701,
+ 61.2702,
+ 61.2703,
+ 61.2704,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2801,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1242.00",
+ "title": "Orthopedic Surgeons, Except Pediatric",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0101,
+ 61.0199,
+ 61.0214,
+ 61.0299,
+ 61.1001,
+ 61.1099,
+ 61.1401,
+ 61.1499,
+ 61.1501,
+ 61.1501,
+ 61.1504,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.2101,
+ 61.2101,
+ 61.2102,
+ 61.2102,
+ 61.2103,
+ 61.2103,
+ 61.2199,
+ 61.2199,
+ 61.2701,
+ 61.2702,
+ 61.2703,
+ 61.2704,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2801,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1243.00",
+ "title": "Pediatric Surgeons",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0101,
+ 61.0199,
+ 61.0214,
+ 61.0299,
+ 61.1001,
+ 61.1099,
+ 61.1401,
+ 61.1499,
+ 61.1501,
+ 61.1501,
+ 61.1504,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.2101,
+ 61.2101,
+ 61.2102,
+ 61.2102,
+ 61.2103,
+ 61.2103,
+ 61.2199,
+ 61.2199,
+ 61.2701,
+ 61.2702,
+ 61.2703,
+ 61.2704,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2801,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1221.00",
+ "title": "Pediatricians, General",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1229.04",
+ "title": "Physical Medicine and Rehabilitation Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1229.00",
+ "title": "Physicians, All Other",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1222.00",
+ "title": "Physicians, Pathologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1229.05",
+ "title": "Preventive Medicine Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1223.00",
+ "title": "Psychiatrists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1224.00",
+ "title": "Radiologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1229.06",
+ "title": "Sports Medicine Physicians",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1249.00",
+ "title": "Surgeons, All Other",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 61.0101,
+ 61.0199,
+ 61.0214,
+ 61.0299,
+ 61.1001,
+ 61.1099,
+ 61.1401,
+ 61.1499,
+ 61.1501,
+ 61.1501,
+ 61.1504,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.2101,
+ 61.2101,
+ 61.2102,
+ 61.2102,
+ 61.2103,
+ 61.2103,
+ 61.2199,
+ 61.2199,
+ 61.2701,
+ 61.2702,
+ 61.2703,
+ 61.2704,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2801,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1229.03",
+ "title": "Urologists",
+ "cip_codes": [
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1201,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1202,
+ 51.1403,
+ 61.0101,
+ 61.0102,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0113,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0121,
+ 61.0122,
+ 61.0122,
+ 61.0123,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0203,
+ 61.0205,
+ 61.0206,
+ 61.0208,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0212,
+ 61.0213,
+ 61.0215,
+ 61.0216,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0502,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1201,
+ 61.1299,
+ 61.1304,
+ 61.1502,
+ 61.1503,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2501,
+ 61.2599,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-1081.00",
+ "title": "Podiatrists",
+ "cip_codes": [
+ 51.1203,
+ 61.2201,
+ 61.2299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-1014.00",
+ "title": "Mental Health Counselors",
+ "cip_codes": [
+ 13.1101,
+ 13.1102,
+ 13.1199,
+ 30.5301,
+ 39.0701,
+ 39.0799,
+ 42.2803,
+ 42.2803,
+ 42.2805,
+ 44.0701,
+ 44.0701,
+ 51.1501,
+ 51.1501,
+ 51.1503,
+ 51.1503,
+ 51.1505,
+ 51.1506,
+ 51.1506,
+ 51.1506,
+ 51.1508,
+ 51.151,
+ 51.151,
+ 51.1511,
+ 51.1513,
+ 51.231,
+ 51.2312,
+ 51.2314,
+ 52.1006,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-1011.00",
+ "title": "Substance Abuse and Behavioral Disorder Counselors",
+ "cip_codes": [
+ 13.1101,
+ 13.1102,
+ 13.1199,
+ 30.5301,
+ 39.0701,
+ 39.0799,
+ 42.2803,
+ 42.2803,
+ 42.2805,
+ 44.0701,
+ 44.0701,
+ 51.1501,
+ 51.1501,
+ 51.1503,
+ 51.1503,
+ 51.1505,
+ 51.1506,
+ 51.1506,
+ 51.1506,
+ 51.1508,
+ 51.151,
+ 51.151,
+ 51.1511,
+ 51.1513,
+ 51.231,
+ 51.2312,
+ 51.2314,
+ 52.1006,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "31-1133.00",
+ "title": "Psychiatric Aides",
+ "cip_codes": [
+ 51.1502,
+ 51.2601,
+ 51.2601,
+ 51.3902,
+ 51.3999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-2053.00",
+ "title": "Psychiatric Technicians",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 19.0501,
+ 30.1901,
+ 51.0805,
+ 51.0811,
+ 51.0909,
+ 51.1012,
+ 51.1502,
+ 51.1802,
+ 51.1803,
+ 51.1804,
+ 51.3101,
+ 51.3103,
+ 51.3104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "21-1022.00",
+ "title": "Healthcare Social Workers",
+ "cip_codes": [
+ 30.5301,
+ 42.2703,
+ 42.271,
+ 43.011,
+ 44.0701,
+ 44.0701,
+ 44.0701,
+ 44.0701,
+ 44.0702,
+ 44.0703,
+ 44.0703,
+ 44.0703,
+ 44.0799,
+ 44.0799,
+ 44.0799,
+ 44.0799,
+ 51.1503,
+ 51.1503,
+ 51.151,
+ 51.1511,
+ 51.1512,
+ 51.1512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "21-1023.00",
+ "title": "Mental Health and Substance Abuse Social Workers",
+ "cip_codes": [
+ 30.5301,
+ 42.2703,
+ 42.271,
+ 43.011,
+ 44.0701,
+ 44.0701,
+ 44.0701,
+ 44.0701,
+ 44.0702,
+ 44.0703,
+ 44.0703,
+ 44.0703,
+ 44.0799,
+ 44.0799,
+ 44.0799,
+ 44.0799,
+ 51.1503,
+ 51.1503,
+ 51.151,
+ 51.1511,
+ 51.1512,
+ 51.1512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-1113.00",
+ "title": "Social Work Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0208,
+ 22.0101,
+ 22.0201,
+ 22.0203,
+ 22.0204,
+ 22.0205,
+ 22.0206,
+ 22.0207,
+ 22.0208,
+ 22.0209,
+ 22.021,
+ 22.0211,
+ 22.0212,
+ 22.0213,
+ 22.0214,
+ 22.0215,
+ 22.0216,
+ 22.0217,
+ 22.0218,
+ 22.0219,
+ 22.022,
+ 22.0221,
+ 22.0222,
+ 22.0223,
+ 22.0224,
+ 22.0299,
+ 30.1101,
+ 30.2801,
+ 39.0802,
+ 43.01,
+ 43.0102,
+ 43.0103,
+ 43.0104,
+ 43.0107,
+ 43.0109,
+ 43.011,
+ 43.0112,
+ 43.0113,
+ 43.0114,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0121,
+ 43.0122,
+ 43.0123,
+ 43.0199,
+ 43.0304,
+ 43.0399,
+ 43.0401,
+ 43.0402,
+ 43.0403,
+ 43.0404,
+ 43.0405,
+ 43.0406,
+ 43.0407,
+ 43.0408,
+ 43.0499,
+ 44.0701,
+ 44.0703,
+ 44.0799,
+ 45.0401,
+ 51.1503,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-1013.00",
+ "title": "Marriage and Family Therapists",
+ "cip_codes": [
+ 13.1101,
+ 13.1102,
+ 13.1199,
+ 30.5301,
+ 39.0701,
+ 39.0799,
+ 42.2803,
+ 42.2803,
+ 42.2805,
+ 44.0701,
+ 44.0701,
+ 51.1501,
+ 51.1501,
+ 51.1503,
+ 51.1503,
+ 51.1505,
+ 51.1506,
+ 51.1506,
+ 51.1506,
+ 51.1508,
+ 51.151,
+ 51.151,
+ 51.1511,
+ 51.1513,
+ 51.231,
+ 51.2312,
+ 51.2314,
+ 52.1006,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1066.00",
+ "title": "Psychology Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 4.0301,
+ 4.1001,
+ 5.0101,
+ 5.0102,
+ 5.0103,
+ 5.0104,
+ 5.0105,
+ 5.0106,
+ 5.0107,
+ 5.0108,
+ 5.0109,
+ 5.011,
+ 5.0111,
+ 5.0112,
+ 5.0113,
+ 5.0114,
+ 5.0115,
+ 5.0116,
+ 5.0117,
+ 5.0118,
+ 5.0119,
+ 5.012,
+ 5.0121,
+ 5.0122,
+ 5.0123,
+ 5.0124,
+ 5.0125,
+ 5.0126,
+ 5.0127,
+ 5.0128,
+ 5.0129,
+ 5.013,
+ 5.0131,
+ 5.0132,
+ 5.0133,
+ 5.0134,
+ 5.0135,
+ 5.0136,
+ 5.0199,
+ 5.02,
+ 5.0201,
+ 5.0202,
+ 5.0203,
+ 5.0206,
+ 5.0207,
+ 5.0208,
+ 5.0209,
+ 5.021,
+ 5.0211,
+ 5.0212,
+ 5.0299,
+ 5.9999,
+ 13.0607,
+ 13.1332,
+ 13.1335,
+ 19.1001,
+ 30.1001,
+ 30.1202,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.3601,
+ 30.3901,
+ 30.4001,
+ 30.4001,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4901,
+ 30.5101,
+ 30.5101,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 38.0205,
+ 38.0206,
+ 38.0208,
+ 38.0209,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1004,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1103,
+ 45.1199,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.1505,
+ 51.2007,
+ 51.3204,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-2011.00",
+ "title": "Clergy",
+ "cip_codes": [
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0702,
+ 39.0706,
+ 51.1506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-1019.00",
+ "title": "Counselors, All Other",
+ "cip_codes": [
+ 13.1101,
+ 13.1102,
+ 13.1199,
+ 30.5301,
+ 39.0701,
+ 39.0799,
+ 42.2803,
+ 42.2803,
+ 42.2805,
+ 44.0701,
+ 44.0701,
+ 51.1501,
+ 51.1501,
+ 51.1503,
+ 51.1503,
+ 51.1505,
+ 51.1506,
+ 51.1506,
+ 51.1506,
+ 51.1508,
+ 51.151,
+ 51.151,
+ 51.1511,
+ 51.1513,
+ 51.231,
+ 51.2312,
+ 51.2314,
+ 52.1006,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "21-2021.00",
+ "title": "Directors, Religious Activities and Education",
+ "cip_codes": [
+ 30.2502,
+ 30.5301,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0502,
+ 39.0599,
+ 39.0701,
+ 39.0702,
+ 39.0703,
+ 39.0704,
+ 39.0705,
+ 39.0706,
+ 39.0799,
+ 51.1506,
+ 51.3201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-3033.00",
+ "title": "Clinical and Counseling Psychologists",
+ "cip_codes": [
+ 19.0702,
+ 19.0706,
+ 19.0711,
+ 30.1701,
+ 42.0101,
+ 42.0101,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2806,
+ 42.2807,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.281,
+ 42.2811,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 45.0401,
+ 51.1507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-1021.00",
+ "title": "Child, Family, and School Social Workers",
+ "cip_codes": [
+ 30.5301,
+ 42.2703,
+ 42.271,
+ 43.011,
+ 44.0701,
+ 44.0701,
+ 44.0701,
+ 44.0701,
+ 44.0702,
+ 44.0703,
+ 44.0703,
+ 44.0703,
+ 44.0799,
+ 44.0799,
+ 44.0799,
+ 44.0799,
+ 51.1503,
+ 51.1503,
+ 51.151,
+ 51.1511,
+ 51.1512,
+ 51.1512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "21-1029.00",
+ "title": "Social Workers, All Other",
+ "cip_codes": [
+ 30.5301,
+ 42.2703,
+ 42.271,
+ 43.011,
+ 44.0701,
+ 44.0701,
+ 44.0701,
+ 44.0701,
+ 44.0702,
+ 44.0703,
+ 44.0703,
+ 44.0703,
+ 44.0799,
+ 44.0799,
+ 44.0799,
+ 44.0799,
+ 51.1503,
+ 51.1503,
+ 51.151,
+ 51.1511,
+ 51.1512,
+ 51.1512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1041.00",
+ "title": "Optometrists",
+ "cip_codes": [
+ 51.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "29-2081.00",
+ "title": "Opticians, Dispensing",
+ "cip_codes": [
+ 51.1801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-2057.00",
+ "title": "Ophthalmic Medical Technicians",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 19.0501,
+ 30.1901,
+ 51.0805,
+ 51.0811,
+ 51.0909,
+ 51.1012,
+ 51.1502,
+ 51.1802,
+ 51.1803,
+ 51.1804,
+ 51.3101,
+ 51.3103,
+ 51.3104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-1051.00",
+ "title": "Pharmacists",
+ "cip_codes": [
+ 51.2001,
+ 51.2008,
+ 60.0801,
+ 60.0802,
+ 60.0803,
+ 60.0804,
+ 60.0805,
+ 60.0806,
+ 60.0807,
+ 60.0808,
+ 60.0809,
+ 60.081,
+ 60.0811,
+ 60.0812,
+ 60.0813,
+ 60.0814,
+ 60.0815,
+ 60.0816,
+ 60.0817,
+ 60.0818,
+ 60.0819,
+ 60.082,
+ 60.0821,
+ 60.0822,
+ 60.0823,
+ 60.0824,
+ 60.0825,
+ 60.0826,
+ 60.0827,
+ 60.0828,
+ 60.0829,
+ 60.083,
+ 60.0831,
+ 60.0832,
+ 60.0899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1052.00",
+ "title": "Chemistry Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1323,
+ 13.1329,
+ 13.1337,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 30.5001,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0508,
+ 40.0509,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0601,
+ 40.0602,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1002,
+ 40.1101,
+ 40.1101,
+ 51.2004,
+ 51.2205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2031.00",
+ "title": "Chemists",
+ "cip_codes": [
+ 19.0904,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.1001,
+ 40.1002,
+ 40.1002,
+ 40.1099,
+ 51.2004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1063.00",
+ "title": "Economics Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 4.0301,
+ 4.1001,
+ 5.0101,
+ 5.0102,
+ 5.0103,
+ 5.0104,
+ 5.0105,
+ 5.0106,
+ 5.0107,
+ 5.0108,
+ 5.0109,
+ 5.011,
+ 5.0111,
+ 5.0112,
+ 5.0113,
+ 5.0114,
+ 5.0115,
+ 5.0116,
+ 5.0117,
+ 5.0118,
+ 5.0119,
+ 5.012,
+ 5.0121,
+ 5.0122,
+ 5.0123,
+ 5.0124,
+ 5.0125,
+ 5.0126,
+ 5.0127,
+ 5.0128,
+ 5.0129,
+ 5.013,
+ 5.0131,
+ 5.0132,
+ 5.0133,
+ 5.0134,
+ 5.0135,
+ 5.0136,
+ 5.0199,
+ 5.02,
+ 5.0201,
+ 5.0202,
+ 5.0203,
+ 5.0206,
+ 5.0207,
+ 5.0208,
+ 5.0209,
+ 5.021,
+ 5.0211,
+ 5.0212,
+ 5.0299,
+ 5.9999,
+ 13.0607,
+ 13.1332,
+ 13.1335,
+ 19.1001,
+ 30.1001,
+ 30.1202,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.3601,
+ 30.3901,
+ 30.4001,
+ 30.4001,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4901,
+ 30.5101,
+ 30.5101,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 38.0205,
+ 38.0206,
+ 38.0208,
+ 38.0209,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1004,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1103,
+ 45.1199,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.1505,
+ 51.2007,
+ 51.3204,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3011.00",
+ "title": "Economists",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 27.0305,
+ 30.3901,
+ 30.4001,
+ 30.4901,
+ 30.5101,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.1004,
+ 51.2007,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3011.01",
+ "title": "Environmental Economists",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 27.0305,
+ 30.3901,
+ 30.4001,
+ 30.4901,
+ 30.5101,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.1004,
+ 51.2007,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-2021.00",
+ "title": "Marketing Managers",
+ "cip_codes": [
+ 19.0203,
+ 19.0203,
+ 19.0905,
+ 51.2011,
+ 51.2011,
+ 52.0101,
+ 52.0201,
+ 52.1401,
+ 52.1401,
+ 52.1402,
+ 52.1403,
+ 52.1404,
+ 52.1499,
+ 52.191
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-2022.00",
+ "title": "Sales Managers",
+ "cip_codes": [
+ 19.0203,
+ 19.0203,
+ 19.0905,
+ 51.2011,
+ 51.2011,
+ 52.0101,
+ 52.0201,
+ 52.1401,
+ 52.1401,
+ 52.1402,
+ 52.1403,
+ 52.1404,
+ 52.1499,
+ 52.191
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1054.00",
+ "title": "Physics Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1323,
+ 13.1329,
+ 13.1337,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 30.5001,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0508,
+ 40.0509,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0601,
+ 40.0602,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1002,
+ 40.1101,
+ 40.1101,
+ 51.2004,
+ 51.2205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1129.01",
+ "title": "Art Therapists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-1129.02",
+ "title": "Music Therapists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1129.00",
+ "title": "Therapists, All Other",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1122.01",
+ "title": "Low Vision Therapists, Orientation and Mobility Specialists, and Vision Rehabilitation Therapists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1122.00",
+ "title": "Occupational Therapists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-9082.00",
+ "title": "Medical Appliance Technicians",
+ "cip_codes": [
+ 51.0603,
+ 51.1006,
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-2091.00",
+ "title": "Orthotists and Prosthetists",
+ "cip_codes": [
+ 51.0812,
+ 51.0814,
+ 51.0903,
+ 51.0907,
+ 51.0908,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0918,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1011,
+ 51.2307,
+ 51.2312
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1123.00",
+ "title": "Physical Therapists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1125.00",
+ "title": "Recreational Therapists",
+ "cip_codes": [
+ 26.0908,
+ 31.0505,
+ 51.0201,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0907,
+ 51.0908,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2308,
+ 51.2309,
+ 51.2311,
+ 51.2311,
+ 51.2313,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "21-1015.00",
+ "title": "Rehabilitation Counselors",
+ "cip_codes": [
+ 13.1101,
+ 13.1102,
+ 13.1199,
+ 30.5301,
+ 39.0701,
+ 39.0799,
+ 42.2803,
+ 42.2803,
+ 42.2805,
+ 44.0701,
+ 44.0701,
+ 51.1501,
+ 51.1501,
+ 51.1503,
+ 51.1503,
+ 51.1505,
+ 51.1506,
+ 51.1506,
+ 51.1506,
+ 51.1508,
+ 51.151,
+ 51.151,
+ 51.1511,
+ 51.1513,
+ 51.231,
+ 51.2312,
+ 51.2314,
+ 52.1006,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "31-1131.00",
+ "title": "Nursing Assistants",
+ "cip_codes": [
+ 51.1502,
+ 51.2601,
+ 51.2601,
+ 51.3902,
+ 51.3999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "31-1121.00",
+ "title": "Home Health Aides",
+ "cip_codes": [
+ 51.2602,
+ 51.2602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "31-1122.00",
+ "title": "Personal Care Aides",
+ "cip_codes": [
+ 51.2602,
+ 51.2602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "31-2012.00",
+ "title": "Occupational Therapy Aides",
+ "cip_codes": [
+ 51.0803,
+ 51.2604
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "31-2022.00",
+ "title": "Physical Therapist Aides",
+ "cip_codes": [
+ 51.0806,
+ 51.2604,
+ 51.2605
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-1013.00",
+ "title": "Fine Artists, Including Painters, Sculptors, and Illustrators",
+ "cip_codes": [
+ 10.0304,
+ 11.0801,
+ 11.0804,
+ 50.0101,
+ 50.0101,
+ 50.0101,
+ 50.0102,
+ 50.0102,
+ 50.0102,
+ 50.0201,
+ 50.0201,
+ 50.0402,
+ 50.0409,
+ 50.0409,
+ 50.0409,
+ 50.041,
+ 50.0411,
+ 50.0701,
+ 50.0701,
+ 50.0702,
+ 50.0702,
+ 50.0705,
+ 50.0705,
+ 50.0705,
+ 50.0706,
+ 50.0706,
+ 50.0706,
+ 50.0708,
+ 50.0708,
+ 50.0708,
+ 50.0709,
+ 50.0709,
+ 50.071,
+ 50.071,
+ 50.0711,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0799,
+ 50.1101,
+ 50.1101,
+ 51.2703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-2051.00",
+ "title": "Dietetic Technicians",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 19.0501,
+ 30.1901,
+ 51.0805,
+ 51.0811,
+ 51.0909,
+ 51.1012,
+ 51.1502,
+ 51.1802,
+ 51.1803,
+ 51.1804,
+ 51.3101,
+ 51.3103,
+ 51.3104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-1031.00",
+ "title": "Dietitians and Nutritionists",
+ "cip_codes": [
+ 19.0501,
+ 19.0504,
+ 19.0505,
+ 19.0599,
+ 30.1901,
+ 51.3101,
+ 51.3102,
+ 51.3199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1126.00",
+ "title": "Philosophy and Religion Teachers, Postsecondary",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0702,
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 9.0908,
+ 9.9999,
+ 13.1302,
+ 13.1305,
+ 13.1306,
+ 13.1312,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.133,
+ 13.1333,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0104,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1801,
+ 16.9999,
+ 23.0101,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1402,
+ 23.1403,
+ 23.1404,
+ 23.1405,
+ 23.1499,
+ 23.9999,
+ 30.1301,
+ 30.2101,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.3601,
+ 30.4001,
+ 30.4501,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.4801,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 38.0001,
+ 38.0101,
+ 38.0103,
+ 38.0104,
+ 38.0199,
+ 38.0201,
+ 38.0202,
+ 38.0203,
+ 38.0204,
+ 38.0207,
+ 38.9999,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0501,
+ 39.0502,
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0706,
+ 39.0802,
+ 50.0101,
+ 50.0102,
+ 50.0201,
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0401,
+ 50.0404,
+ 50.0406,
+ 50.0407,
+ 50.0409,
+ 50.041,
+ 50.0501,
+ 50.0502,
+ 50.0504,
+ 50.0505,
+ 50.0506,
+ 50.0507,
+ 50.0509,
+ 50.051,
+ 50.0511,
+ 50.0512,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0605,
+ 50.0607,
+ 50.0607,
+ 50.0699,
+ 50.0701,
+ 50.0702,
+ 50.0703,
+ 50.0705,
+ 50.0706,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0902,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.1001,
+ 50.1002,
+ 50.1003,
+ 50.1004,
+ 50.1099,
+ 50.1101,
+ 50.9999,
+ 51.3201,
+ 51.3205,
+ 52.0501,
+ 52.0599,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1081.00",
+ "title": "Education Teachers, Postsecondary",
+ "cip_codes": [
+ 13.0101,
+ 13.0201,
+ 13.0202,
+ 13.0203,
+ 13.0299,
+ 13.0301,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 13.0901,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099,
+ 13.1202,
+ 13.1203,
+ 13.1205,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1209,
+ 13.121,
+ 13.1211,
+ 13.1213,
+ 13.1214,
+ 13.1301,
+ 13.1302,
+ 13.1303,
+ 13.1304,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1319,
+ 13.132,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.1329,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1337,
+ 13.1338,
+ 13.1339,
+ 13.1399,
+ 13.9999,
+ 25.0101,
+ 25.0102,
+ 44.0502,
+ 51.3202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1072.00",
+ "title": "Nursing Instructors and Teachers, Postsecondary",
+ "cip_codes": [
+ 1.8001,
+ 1.8101,
+ 1.8102,
+ 1.8103,
+ 1.8104,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 1.8301,
+ 13.1327,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0503,
+ 26.0913,
+ 26.0999,
+ 26.1001,
+ 26.1002,
+ 26.1003,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 26.1007,
+ 26.1099,
+ 26.1102,
+ 26.1309,
+ 26.1311,
+ 30.1101,
+ 30.1901,
+ 42.2709,
+ 44.0503,
+ 51.0101,
+ 51.0201,
+ 51.0202,
+ 51.0203,
+ 51.0204,
+ 51.0299,
+ 51.0401,
+ 51.0501,
+ 51.0502,
+ 51.0504,
+ 51.0505,
+ 51.0506,
+ 51.0507,
+ 51.0508,
+ 51.0509,
+ 51.051,
+ 51.0511,
+ 51.0512,
+ 51.0513,
+ 51.0514,
+ 51.0599,
+ 51.0601,
+ 51.0602,
+ 51.0603,
+ 51.0801,
+ 51.0802,
+ 51.0803,
+ 51.0805,
+ 51.0901,
+ 51.0902,
+ 51.0903,
+ 51.0904,
+ 51.0905,
+ 51.0906,
+ 51.0907,
+ 51.0908,
+ 51.0909,
+ 51.091,
+ 51.0911,
+ 51.0912,
+ 51.0913,
+ 51.0914,
+ 51.0915,
+ 51.0916,
+ 51.0917,
+ 51.0919,
+ 51.092,
+ 51.0921,
+ 51.0922,
+ 51.0923,
+ 51.0999,
+ 51.1001,
+ 51.1002,
+ 51.1003,
+ 51.1004,
+ 51.1005,
+ 51.1006,
+ 51.1007,
+ 51.1008,
+ 51.1009,
+ 51.101,
+ 51.1011,
+ 51.1012,
+ 51.1099,
+ 51.1405,
+ 51.1501,
+ 51.2001,
+ 51.2002,
+ 51.2003,
+ 51.2004,
+ 51.2005,
+ 51.2006,
+ 51.2007,
+ 51.2008,
+ 51.2009,
+ 51.201,
+ 51.2011,
+ 51.2099,
+ 51.2201,
+ 51.2202,
+ 51.2205,
+ 51.2206,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2212,
+ 51.2213,
+ 51.2214,
+ 51.2299,
+ 51.23,
+ 51.2301,
+ 51.2302,
+ 51.2305,
+ 51.2306,
+ 51.2307,
+ 51.2308,
+ 51.2309,
+ 51.231,
+ 51.2313,
+ 51.2314,
+ 51.2315,
+ 51.2316,
+ 51.2317,
+ 51.2399,
+ 51.3202,
+ 51.3203,
+ 51.3501,
+ 51.3502,
+ 51.3503,
+ 51.3599,
+ 51.3603,
+ 51.3801,
+ 51.3803,
+ 51.3804,
+ 51.3805,
+ 51.3806,
+ 51.3807,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899,
+ 61.0101,
+ 61.0102,
+ 61.0103,
+ 61.0104,
+ 61.0105,
+ 61.0106,
+ 61.0107,
+ 61.0108,
+ 61.0109,
+ 61.011,
+ 61.0111,
+ 61.0112,
+ 61.0113,
+ 61.0114,
+ 61.0115,
+ 61.0116,
+ 61.0117,
+ 61.0118,
+ 61.0119,
+ 61.012,
+ 61.0121,
+ 61.0122,
+ 61.0123,
+ 61.0124,
+ 61.0125,
+ 61.0199,
+ 61.0202,
+ 61.0203,
+ 61.0204,
+ 61.0205,
+ 61.0206,
+ 61.0207,
+ 61.0208,
+ 61.0209,
+ 61.021,
+ 61.0211,
+ 61.0212,
+ 61.0213,
+ 61.0214,
+ 61.0215,
+ 61.0216,
+ 61.0217,
+ 61.0218,
+ 61.0299,
+ 61.0301,
+ 61.0399,
+ 61.0401,
+ 61.0499,
+ 61.0501,
+ 61.0502,
+ 61.0503,
+ 61.0599,
+ 61.0601,
+ 61.0602,
+ 61.0603,
+ 61.0699,
+ 61.0701,
+ 61.0799,
+ 61.0801,
+ 61.0804,
+ 61.0805,
+ 61.0806,
+ 61.0807,
+ 61.0808,
+ 61.0809,
+ 61.081,
+ 61.0811,
+ 61.0812,
+ 61.0813,
+ 61.0814,
+ 61.0816,
+ 61.0818,
+ 61.0899,
+ 61.0901,
+ 61.0902,
+ 61.0903,
+ 61.0904,
+ 61.0999,
+ 61.1001,
+ 61.1099,
+ 61.1101,
+ 61.1102,
+ 61.1103,
+ 61.1104,
+ 61.1105,
+ 61.1106,
+ 61.1107,
+ 61.1199,
+ 61.1201,
+ 61.1299,
+ 61.1301,
+ 61.1302,
+ 61.1303,
+ 61.1304,
+ 61.1399,
+ 61.1401,
+ 61.1499,
+ 61.1501,
+ 61.1502,
+ 61.1503,
+ 61.1504,
+ 61.1505,
+ 61.1599,
+ 61.1601,
+ 61.1699,
+ 61.1701,
+ 61.1702,
+ 61.1703,
+ 61.1799,
+ 61.1801,
+ 61.1802,
+ 61.1803,
+ 61.1804,
+ 61.1805,
+ 61.1806,
+ 61.1807,
+ 61.1808,
+ 61.1809,
+ 61.181,
+ 61.1811,
+ 61.1812,
+ 61.1813,
+ 61.1814,
+ 61.1815,
+ 61.1899,
+ 61.1901,
+ 61.1902,
+ 61.1903,
+ 61.1904,
+ 61.1905,
+ 61.1906,
+ 61.1907,
+ 61.1908,
+ 61.1909,
+ 61.191,
+ 61.1911,
+ 61.1912,
+ 61.1913,
+ 61.1914,
+ 61.1915,
+ 61.1917,
+ 61.1999,
+ 61.2001,
+ 61.2002,
+ 61.2003,
+ 61.2099,
+ 61.2101,
+ 61.2102,
+ 61.2103,
+ 61.2199,
+ 61.2201,
+ 61.2299,
+ 61.2301,
+ 61.2302,
+ 61.2303,
+ 61.2399,
+ 61.2401,
+ 61.2402,
+ 61.2403,
+ 61.2404,
+ 61.2405,
+ 61.2406,
+ 61.2499,
+ 61.2501,
+ 61.2599,
+ 61.2601,
+ 61.2602,
+ 61.2603,
+ 61.2604,
+ 61.2605,
+ 61.2606,
+ 61.2607,
+ 61.2608,
+ 61.2609,
+ 61.261,
+ 61.2611,
+ 61.2612,
+ 61.2699,
+ 61.2701,
+ 61.2702,
+ 61.2703,
+ 61.2704,
+ 61.2705,
+ 61.2706,
+ 61.2707,
+ 61.2708,
+ 61.2799,
+ 61.2801,
+ 61.2802,
+ 61.2899,
+ 61.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3091.00",
+ "title": "Anthropologists and Archeologists",
+ "cip_codes": [
+ 3.0209,
+ 4.0801,
+ 4.0802,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 16.0199,
+ 19.0702,
+ 30.0501,
+ 30.1001,
+ 30.1101,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1301,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.2701,
+ 30.2901,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4001,
+ 30.4101,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4601,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.5101,
+ 30.5101,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0503,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3205,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3092.00",
+ "title": "Geographers",
+ "cip_codes": [
+ 3.0209,
+ 4.0801,
+ 4.0802,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 16.0199,
+ 19.0702,
+ 30.0501,
+ 30.1001,
+ 30.1101,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1301,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.2701,
+ 30.2901,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4001,
+ 30.4101,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4601,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.5101,
+ 30.5101,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0503,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3205,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-3093.00",
+ "title": "Historians",
+ "cip_codes": [
+ 3.0209,
+ 4.0801,
+ 4.0802,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 16.0199,
+ 19.0702,
+ 30.0501,
+ 30.1001,
+ 30.1101,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1301,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.2701,
+ 30.2901,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4001,
+ 30.4101,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4601,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.5101,
+ 30.5101,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0503,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3205,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1069.00",
+ "title": "Social Sciences Teachers, Postsecondary, All Other",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 4.0301,
+ 4.1001,
+ 5.0101,
+ 5.0102,
+ 5.0103,
+ 5.0104,
+ 5.0105,
+ 5.0106,
+ 5.0107,
+ 5.0108,
+ 5.0109,
+ 5.011,
+ 5.0111,
+ 5.0112,
+ 5.0113,
+ 5.0114,
+ 5.0115,
+ 5.0116,
+ 5.0117,
+ 5.0118,
+ 5.0119,
+ 5.012,
+ 5.0121,
+ 5.0122,
+ 5.0123,
+ 5.0124,
+ 5.0125,
+ 5.0126,
+ 5.0127,
+ 5.0128,
+ 5.0129,
+ 5.013,
+ 5.0131,
+ 5.0132,
+ 5.0133,
+ 5.0134,
+ 5.0135,
+ 5.0136,
+ 5.0199,
+ 5.02,
+ 5.0201,
+ 5.0202,
+ 5.0203,
+ 5.0206,
+ 5.0207,
+ 5.0208,
+ 5.0209,
+ 5.021,
+ 5.0211,
+ 5.0212,
+ 5.0299,
+ 5.9999,
+ 13.0607,
+ 13.1332,
+ 13.1335,
+ 19.1001,
+ 30.1001,
+ 30.1202,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.3601,
+ 30.3901,
+ 30.4001,
+ 30.4001,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4901,
+ 30.5101,
+ 30.5101,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 38.0205,
+ 38.0206,
+ 38.0208,
+ 38.0209,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1004,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1103,
+ 45.1199,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.1505,
+ 51.2007,
+ 51.3204,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-3099.00",
+ "title": "Social Scientists and Related Workers, All Other",
+ "cip_codes": [
+ 3.0209,
+ 4.0801,
+ 4.0802,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 16.0199,
+ 19.0702,
+ 30.0501,
+ 30.1001,
+ 30.1101,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1301,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.2701,
+ 30.2901,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4001,
+ 30.4101,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4601,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.5101,
+ 30.5101,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0503,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3205,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-3041.00",
+ "title": "Sociologists",
+ "cip_codes": [
+ 45.0102,
+ 45.0103,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 51.3204
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1125.00",
+ "title": "History Teachers, Postsecondary",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0702,
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 9.0908,
+ 9.9999,
+ 13.1302,
+ 13.1305,
+ 13.1306,
+ 13.1312,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.133,
+ 13.1333,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0104,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1801,
+ 16.9999,
+ 23.0101,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1402,
+ 23.1403,
+ 23.1404,
+ 23.1405,
+ 23.1499,
+ 23.9999,
+ 30.1301,
+ 30.2101,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.3601,
+ 30.4001,
+ 30.4501,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.4801,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 38.0001,
+ 38.0101,
+ 38.0103,
+ 38.0104,
+ 38.0199,
+ 38.0201,
+ 38.0202,
+ 38.0203,
+ 38.0204,
+ 38.0207,
+ 38.9999,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0501,
+ 39.0502,
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0706,
+ 39.0802,
+ 50.0101,
+ 50.0102,
+ 50.0201,
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0401,
+ 50.0404,
+ 50.0406,
+ 50.0407,
+ 50.0409,
+ 50.041,
+ 50.0501,
+ 50.0502,
+ 50.0504,
+ 50.0505,
+ 50.0506,
+ 50.0507,
+ 50.0509,
+ 50.051,
+ 50.0511,
+ 50.0512,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0605,
+ 50.0607,
+ 50.0607,
+ 50.0699,
+ 50.0701,
+ 50.0702,
+ 50.0703,
+ 50.0705,
+ 50.0706,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0902,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.1001,
+ 50.1002,
+ 50.1003,
+ 50.1004,
+ 50.1099,
+ 50.1101,
+ 50.9999,
+ 51.3201,
+ 51.3205,
+ 52.0501,
+ 52.0599,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1299.00",
+ "title": "Healthcare Diagnosing or Treating Practitioners, All Other",
+ "cip_codes": [
+ 51.0602,
+ 51.33,
+ 51.3301,
+ 51.3301,
+ 51.3303,
+ 51.3304,
+ 51.3305,
+ 51.3306,
+ 51.3399,
+ 51.3401,
+ 51.3499,
+ 51.3701,
+ 51.3702,
+ 51.3703,
+ 51.3704,
+ 51.3799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "29-1299.01",
+ "title": "Naturopathic Physicians",
+ "cip_codes": [
+ 51.0602,
+ 51.33,
+ 51.3301,
+ 51.3301,
+ 51.3303,
+ 51.3304,
+ 51.3305,
+ 51.3306,
+ 51.3399,
+ 51.3401,
+ 51.3499,
+ 51.3701,
+ 51.3702,
+ 51.3703,
+ 51.3704,
+ 51.3799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1299.02",
+ "title": "Orthoptists",
+ "cip_codes": [
+ 51.0602,
+ 51.33,
+ 51.3301,
+ 51.3301,
+ 51.3303,
+ 51.3304,
+ 51.3305,
+ 51.3306,
+ 51.3399,
+ 51.3401,
+ 51.3499,
+ 51.3701,
+ 51.3702,
+ 51.3703,
+ 51.3704,
+ 51.3799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-1291.00",
+ "title": "Acupuncturists",
+ "cip_codes": [
+ 51.0602,
+ 51.33,
+ 51.3301,
+ 51.3301,
+ 51.3303,
+ 51.3304,
+ 51.3305,
+ 51.3306,
+ 51.3399,
+ 51.3401,
+ 51.3499,
+ 51.3701,
+ 51.3702,
+ 51.3703,
+ 51.3704,
+ 51.3799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "31-9011.00",
+ "title": "Massage Therapists",
+ "cip_codes": [
+ 51.3501,
+ 51.3502,
+ 51.3503,
+ 51.3599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-9031.00",
+ "title": "Exercise Trainers and Group Fitness Instructors",
+ "cip_codes": [
+ 13.1314,
+ 31.0501,
+ 31.0504,
+ 31.0507,
+ 31.0601,
+ 51.3602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-1141.01",
+ "title": "Acute Care Nurses",
+ "cip_codes": [
+ 51.3801,
+ 51.3802,
+ 51.3803,
+ 51.3805,
+ 51.3806,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-1141.02",
+ "title": "Advanced Practice Psychiatric Nurses",
+ "cip_codes": [
+ 51.3801,
+ 51.3802,
+ 51.3803,
+ 51.3805,
+ 51.3806,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1141.04",
+ "title": "Clinical Nurse Specialists",
+ "cip_codes": [
+ 51.3801,
+ 51.3802,
+ 51.3803,
+ 51.3805,
+ 51.3806,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1141.03",
+ "title": "Critical Care Nurses",
+ "cip_codes": [
+ 51.3801,
+ 51.3802,
+ 51.3803,
+ 51.3805,
+ 51.3806,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1141.00",
+ "title": "Registered Nurses",
+ "cip_codes": [
+ 51.3801,
+ 51.3802,
+ 51.3803,
+ 51.3805,
+ 51.3806,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1171.00",
+ "title": "Nurse Practitioners",
+ "cip_codes": [
+ 51.3802,
+ 51.3803,
+ 51.3805,
+ 51.3806,
+ 51.3808,
+ 51.3809,
+ 51.381,
+ 51.3811,
+ 51.3812,
+ 51.3813,
+ 51.3814,
+ 51.3815,
+ 51.3816,
+ 51.3818,
+ 51.3819,
+ 51.382,
+ 51.3821,
+ 51.3822,
+ 51.3824,
+ 51.3899,
+ 60.0701,
+ 60.0702,
+ 60.0703,
+ 60.0704,
+ 60.0705,
+ 60.0706,
+ 60.0707,
+ 60.0708,
+ 60.0709,
+ 60.071,
+ 60.0711,
+ 60.0712,
+ 60.0713,
+ 60.0714,
+ 60.0715,
+ 60.0716,
+ 60.0717,
+ 60.0718,
+ 60.0719,
+ 60.072,
+ 60.0721,
+ 60.0722,
+ 60.0723,
+ 60.0724,
+ 60.0725,
+ 60.0726,
+ 60.0727,
+ 60.0728,
+ 60.0729,
+ 60.073,
+ 60.0731,
+ 60.0732,
+ 60.0733,
+ 60.0734,
+ 60.0735,
+ 60.0736,
+ 60.0737,
+ 60.0738,
+ 60.0739,
+ 60.074,
+ 60.0741,
+ 60.0742,
+ 60.0743,
+ 60.0744,
+ 60.0745,
+ 60.0746,
+ 60.0747,
+ 60.0748,
+ 60.0749,
+ 60.075,
+ 60.0751,
+ 60.0799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-1151.00",
+ "title": "Nurse Anesthetists",
+ "cip_codes": [
+ 51.3804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "29-1161.00",
+ "title": "Nurse Midwives",
+ "cip_codes": [
+ 51.3807
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "29-2061.00",
+ "title": "Licensed Practical and Licensed Vocational Nurses",
+ "cip_codes": [
+ 51.3901,
+ 51.3999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-2022.00",
+ "title": "Appraisers of Personal and Business Property",
+ "cip_codes": [
+ 4.1001,
+ 50.0703,
+ 52.0101,
+ 52.0301,
+ 52.0304,
+ 52.0305,
+ 52.0801,
+ 52.1501,
+ 52.1501,
+ 52.1601,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "11-9199.11",
+ "title": "Brownfield Redevelopment Specialists and Site Managers",
+ "cip_codes": [
+ 3.0204,
+ 9.0702,
+ 11.1005,
+ 25.0101,
+ 25.0103,
+ 30.0601,
+ 30.1202,
+ 30.3901,
+ 30.4001,
+ 30.4201,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 39.0801,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2899,
+ 42.9999,
+ 43.01,
+ 43.0103,
+ 43.0115,
+ 43.0202,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0404,
+ 44.0401,
+ 44.0402,
+ 44.0499,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1501,
+ 45.9999,
+ 50.1001,
+ 50.1002,
+ 50.1004,
+ 50.1099,
+ 51.0719,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0213,
+ 52.0214,
+ 52.0216,
+ 52.0701,
+ 52.0702,
+ 52.0703,
+ 52.0704,
+ 52.0903,
+ 52.0999,
+ 52.2101,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-1011.00",
+ "title": "Chief Executives",
+ "cip_codes": [
+ 44.0401,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.0701,
+ 52.0704,
+ 52.0801,
+ 52.1101,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "11-1011.03",
+ "title": "Chief Sustainability Officers",
+ "cip_codes": [
+ 44.0401,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.0701,
+ 52.0704,
+ 52.0801,
+ 52.1101,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "11-9072.00",
+ "title": "Entertainment and Recreation Managers, Except Gambling",
+ "cip_codes": [
+ 3.0207,
+ 31.0301,
+ 31.0302,
+ 31.0399,
+ 31.0504,
+ 52.0101,
+ 52.0201,
+ 52.0901,
+ 52.0906,
+ 52.0908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "11-9179.01",
+ "title": "Fitness and Wellness Coordinators",
+ "cip_codes": [
+ 12.0301,
+ 12.0302,
+ 12.0399,
+ 12.0412,
+ 52.0101,
+ 52.0201,
+ 52.0212,
+ 52.0703,
+ 52.0901,
+ 52.0903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-1021.00",
+ "title": "General and Operations Managers",
+ "cip_codes": [
+ 1.8202,
+ 31.0301,
+ 31.0399,
+ 44.0401,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.0212,
+ 52.0215,
+ 52.0701,
+ 52.0704,
+ 52.0801,
+ 52.081,
+ 52.1101,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1111.00",
+ "title": "Management Analysts",
+ "cip_codes": [
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0608,
+ 13.0699,
+ 27.0601,
+ 30.7101,
+ 30.7102,
+ 30.7103,
+ 30.7104,
+ 30.7199,
+ 42.2804,
+ 52.0101,
+ 52.0201,
+ 52.0213,
+ 52.0601,
+ 52.1301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9179.00",
+ "title": "Personal Service Managers, All Other",
+ "cip_codes": [
+ 12.0301,
+ 12.0302,
+ 12.0399,
+ 12.0412,
+ 52.0101,
+ 52.0201,
+ 52.0212,
+ 52.0703,
+ 52.0901,
+ 52.0903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "11-9151.00",
+ "title": "Social and Community Service Managers",
+ "cip_codes": [
+ 30.1701,
+ 30.5301,
+ 44,
+ 44.0201,
+ 44.0401,
+ 44.0701,
+ 44.0702,
+ 44.0703,
+ 44.0799,
+ 52.0101,
+ 52.0201,
+ 52.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9179.02",
+ "title": "Spa Managers",
+ "cip_codes": [
+ 12.0301,
+ 12.0302,
+ 12.0399,
+ 12.0412,
+ 52.0101,
+ 52.0201,
+ 52.0212,
+ 52.0703,
+ 52.0901,
+ 52.0903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3071.04",
+ "title": "Supply Chain Managers",
+ "cip_codes": [
+ 44.0401,
+ 44.0403,
+ 49.0101,
+ 49.0104,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0209
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-3071.00",
+ "title": "Transportation, Storage, and Distribution Managers",
+ "cip_codes": [
+ 44.0401,
+ 44.0403,
+ 49.0101,
+ 49.0104,
+ 52.0101,
+ 52.0201,
+ 52.0203,
+ 52.0209
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9199.09",
+ "title": "Wind Energy Operations Managers",
+ "cip_codes": [
+ 3.0204,
+ 9.0702,
+ 11.1005,
+ 25.0101,
+ 25.0103,
+ 30.0601,
+ 30.1202,
+ 30.3901,
+ 30.4001,
+ 30.4201,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 39.0801,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2899,
+ 42.9999,
+ 43.01,
+ 43.0103,
+ 43.0115,
+ 43.0202,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0404,
+ 44.0401,
+ 44.0402,
+ 44.0499,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0401,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1501,
+ 45.9999,
+ 50.1001,
+ 50.1002,
+ 50.1004,
+ 50.1099,
+ 51.0719,
+ 51.2009,
+ 52.0101,
+ 52.0201,
+ 52.0206,
+ 52.021,
+ 52.0211,
+ 52.0213,
+ 52.0214,
+ 52.0216,
+ 52.0701,
+ 52.0702,
+ 52.0703,
+ 52.0704,
+ 52.0903,
+ 52.0999,
+ 52.2101,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1199.04",
+ "title": "Business Continuity Planners",
+ "cip_codes": [
+ 52.0201,
+ 52.0208,
+ 52.0499,
+ 52.0904,
+ 52.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1199.00",
+ "title": "Business Operations Specialists, All Other",
+ "cip_codes": [
+ 52.0201,
+ 52.0208,
+ 52.0499,
+ 52.0904,
+ 52.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "11-3111.00",
+ "title": "Compensation and Benefits Managers",
+ "cip_codes": [
+ 52.0201,
+ 52.1001,
+ 52.1002,
+ 52.1003,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1141.00",
+ "title": "Compensation, Benefits, and Job Analysis Specialists",
+ "cip_codes": [
+ 52.0201,
+ 52.0801,
+ 52.1001,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3121.00",
+ "title": "Human Resources Managers",
+ "cip_codes": [
+ 9.0901,
+ 42.2804,
+ 52.0201,
+ 52.0213,
+ 52.1001,
+ 52.1002,
+ 52.1003,
+ 52.1004,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1071.00",
+ "title": "Human Resources Specialists",
+ "cip_codes": [
+ 30.2801,
+ 42.2804,
+ 52.0201,
+ 52.1001,
+ 52.1001,
+ 52.1002,
+ 52.1003,
+ 52.1004,
+ 52.1006,
+ 52.1099,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1081.00",
+ "title": "Logisticians",
+ "cip_codes": [
+ 11.1005,
+ 52.0101,
+ 52.0201,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0211,
+ 52.0216,
+ 52.2002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1081.02",
+ "title": "Logistics Analysts",
+ "cip_codes": [
+ 11.1005,
+ 52.0101,
+ 52.0201,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0211,
+ 52.0216,
+ 52.2002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1081.01",
+ "title": "Logistics Engineers",
+ "cip_codes": [
+ 11.1005,
+ 52.0101,
+ 52.0201,
+ 52.0201,
+ 52.0203,
+ 52.0205,
+ 52.0211,
+ 52.0216,
+ 52.2002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1199.06",
+ "title": "Online Merchants",
+ "cip_codes": [
+ 52.0201,
+ 52.0208,
+ 52.0499,
+ 52.0904,
+ 52.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1199.07",
+ "title": "Security Management Specialists",
+ "cip_codes": [
+ 52.0201,
+ 52.0208,
+ 52.0499,
+ 52.0904,
+ 52.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "13-1199.05",
+ "title": "Sustainability Specialists",
+ "cip_codes": [
+ 52.0201,
+ 52.0208,
+ 52.0499,
+ 52.0904,
+ 52.1101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-3131.00",
+ "title": "Training and Development Managers",
+ "cip_codes": [
+ 9.0901,
+ 13.0403,
+ 13.0607,
+ 42.2804,
+ 52.0201,
+ 52.0213,
+ 52.1001,
+ 52.1003,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1011.00",
+ "title": "Agents and Business Managers of Artists, Performers, and Athletes",
+ "cip_codes": [
+ 9.0906,
+ 50.1001,
+ 50.1002,
+ 50.1099,
+ 52.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1023.00",
+ "title": "Purchasing Agents, Except Wholesale, Retail, and Farm Products",
+ "cip_codes": [
+ 1.0105,
+ 12.051,
+ 19.0905,
+ 52.0202,
+ 52.1801,
+ 52.1801,
+ 52.1802,
+ 52.1899,
+ 52.1899,
+ 52.1902,
+ 52.1904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-3061.00",
+ "title": "Purchasing Managers",
+ "cip_codes": [
+ 52.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "49-1011.00",
+ "title": "First-Line Supervisors of Mechanics, Installers, and Repairers",
+ "cip_codes": [
+ 46.0301,
+ 46.0303,
+ 47,
+ 47.06,
+ 47.0617,
+ 47.0618,
+ 47.0701,
+ 47.0703,
+ 47.0704,
+ 47.0705,
+ 47.0706,
+ 52.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-1011.00",
+ "title": "First-Line Supervisors of Production and Operating Workers",
+ "cip_codes": [
+ 52.0205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9039.00",
+ "title": "Education Administrators, All Other",
+ "cip_codes": [
+ 13.0401,
+ 13.0401,
+ 13.0401,
+ 13.0401,
+ 13.0402,
+ 13.0403,
+ 13.0404,
+ 13.0404,
+ 13.0404,
+ 13.0404,
+ 13.0406,
+ 13.0406,
+ 13.0407,
+ 13.0408,
+ 13.0409,
+ 13.041,
+ 13.0411,
+ 13.0411,
+ 13.0411,
+ 13.0412,
+ 13.0412,
+ 13.0412,
+ 13.0412,
+ 13.0413,
+ 13.0414,
+ 13.0414,
+ 13.0499,
+ 51.0719,
+ 51.3202,
+ 51.3203,
+ 52.0206,
+ 52.0214,
+ 61.0207,
+ 61.0211
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "13-2099.01",
+ "title": "Financial Quantitative Analysts",
+ "cip_codes": [
+ 27.0305,
+ 39.0801,
+ 52.0206,
+ 52.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-2099.00",
+ "title": "Financial Specialists, All Other",
+ "cip_codes": [
+ 27.0305,
+ 39.0801,
+ 52.0206,
+ 52.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "13-2099.04",
+ "title": "Fraud Examiners, Investigators and Analysts",
+ "cip_codes": [
+ 27.0305,
+ 39.0801,
+ 52.0206,
+ 52.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-2033.00",
+ "title": "Fundraising Managers",
+ "cip_codes": [
+ 9.01,
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.09,
+ 9.09,
+ 9.0902,
+ 9.0902,
+ 9.0904,
+ 9.0907,
+ 9.0909,
+ 9.0909,
+ 52.0206,
+ 52.0213,
+ 52.0501,
+ 52.0502,
+ 52.0599,
+ 52.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "41-1011.00",
+ "title": "First-Line Supervisors of Retail Sales Workers",
+ "cip_codes": [
+ 1.0608,
+ 19.0203,
+ 52.0208,
+ 52.0212,
+ 52.1803,
+ 52.1804,
+ 52.1804,
+ 52.1899,
+ 52.1899,
+ 52.1909,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1131.00",
+ "title": "Fundraisers",
+ "cip_codes": [
+ 9.01,
+ 9.09,
+ 9.0902,
+ 9.0904,
+ 52.0214,
+ 52.0502,
+ 52.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "15-2011.00",
+ "title": "Actuaries",
+ "cip_codes": [
+ 27.0301,
+ 27.0304,
+ 27.0501,
+ 27.0502,
+ 27.0503,
+ 27.0599,
+ 27.0601,
+ 52.0215,
+ 52.1304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-3031.00",
+ "title": "Financial Managers",
+ "cip_codes": [
+ 30.1601,
+ 30.7104,
+ 52.0215,
+ 52.0304,
+ 52.0305,
+ 52.0801,
+ 52.0806,
+ 52.0808,
+ 52.0809,
+ 52.081,
+ 52.0899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-2054.00",
+ "title": "Financial Risk Specialists",
+ "cip_codes": [
+ 19.0401,
+ 27.0305,
+ 27.0305,
+ 30.7104,
+ 52.0215,
+ 52.0215,
+ 52.0301,
+ 52.0304,
+ 52.0304,
+ 52.0305,
+ 52.0305,
+ 52.0601,
+ 52.0801,
+ 52.0801,
+ 52.0801,
+ 52.0804,
+ 52.0806,
+ 52.0806,
+ 52.0807,
+ 52.0807,
+ 52.0808,
+ 52.0808,
+ 52.081,
+ 52.081,
+ 52.081,
+ 52.1304,
+ 52.1304,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "13-2053.00",
+ "title": "Insurance Underwriters",
+ "cip_codes": [
+ 19.0401,
+ 27.0305,
+ 27.0305,
+ 30.7104,
+ 52.0215,
+ 52.0215,
+ 52.0301,
+ 52.0304,
+ 52.0304,
+ 52.0305,
+ 52.0305,
+ 52.0601,
+ 52.0801,
+ 52.0801,
+ 52.0801,
+ 52.0804,
+ 52.0806,
+ 52.0806,
+ 52.0807,
+ 52.0807,
+ 52.0808,
+ 52.0808,
+ 52.081,
+ 52.081,
+ 52.081,
+ 52.1304,
+ 52.1304,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-3031.03",
+ "title": "Investment Fund Managers",
+ "cip_codes": [
+ 30.1601,
+ 30.7104,
+ 52.0215,
+ 52.0304,
+ 52.0305,
+ 52.0801,
+ 52.0806,
+ 52.0808,
+ 52.0809,
+ 52.081,
+ 52.0899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-3031.01",
+ "title": "Treasurers and Controllers",
+ "cip_codes": [
+ 30.1601,
+ 30.7104,
+ 52.0215,
+ 52.0304,
+ 52.0305,
+ 52.0801,
+ 52.0806,
+ 52.0808,
+ 52.0809,
+ 52.081,
+ 52.0899
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-2011.00",
+ "title": "Accountants and Auditors",
+ "cip_codes": [
+ 30.1601,
+ 43.0405,
+ 52.0301,
+ 52.0303,
+ 52.0304,
+ 52.0305,
+ 52.1601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-2031.00",
+ "title": "Budget Analysts",
+ "cip_codes": [
+ 52.0301,
+ 52.0304,
+ 52.0801,
+ 52.0808
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-2041.00",
+ "title": "Credit Analysts",
+ "cip_codes": [
+ 52.0301,
+ 52.0801,
+ 52.0809,
+ 52.081
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-2061.00",
+ "title": "Financial Examiners",
+ "cip_codes": [
+ 43.0121,
+ 43.0405,
+ 52.0301,
+ 52.0303,
+ 52.1601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-2081.00",
+ "title": "Tax Examiners and Collectors, and Revenue Agents",
+ "cip_codes": [
+ 52.0301,
+ 52.0301,
+ 52.0302,
+ 52.1601,
+ 52.1601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-2082.00",
+ "title": "Tax Preparers",
+ "cip_codes": [
+ 52.0301,
+ 52.0301,
+ 52.0302,
+ 52.1601,
+ 52.1601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-3031.00",
+ "title": "Bookkeeping, Accounting, and Auditing Clerks",
+ "cip_codes": [
+ 52.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4011.00",
+ "title": "Brokerage Clerks",
+ "cip_codes": [
+ 52.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-3051.00",
+ "title": "Payroll and Timekeeping Clerks",
+ "cip_codes": [
+ 52.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-9111.00",
+ "title": "Statistical Assistants",
+ "cip_codes": [
+ 52.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "13-2051.00",
+ "title": "Financial and Investment Analysts",
+ "cip_codes": [
+ 19.0401,
+ 27.0305,
+ 27.0305,
+ 30.7104,
+ 52.0215,
+ 52.0215,
+ 52.0301,
+ 52.0304,
+ 52.0304,
+ 52.0305,
+ 52.0305,
+ 52.0601,
+ 52.0801,
+ 52.0801,
+ 52.0801,
+ 52.0804,
+ 52.0806,
+ 52.0806,
+ 52.0807,
+ 52.0807,
+ 52.0808,
+ 52.0808,
+ 52.081,
+ 52.081,
+ 52.081,
+ 52.1304,
+ 52.1304,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "43-6011.00",
+ "title": "Executive Secretaries and Executive Administrative Assistants",
+ "cip_codes": [
+ 1.8201,
+ 1.8204,
+ 22.0301,
+ 51.071,
+ 51.0711,
+ 51.0712,
+ 51.0714,
+ 51.0716,
+ 52.0401,
+ 52.0401,
+ 52.0402,
+ 52.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4161.00",
+ "title": "Human Resources Assistants, Except Payroll and Timekeeping",
+ "cip_codes": [
+ 52.0401,
+ 52.0407,
+ 52.1001,
+ 52.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-6014.00",
+ "title": "Secretaries and Administrative Assistants, Except Legal, Medical, and Executive",
+ "cip_codes": [
+ 1.8201,
+ 1.8204,
+ 22.0301,
+ 51.071,
+ 51.0711,
+ 51.0712,
+ 51.0714,
+ 51.0716,
+ 52.0401,
+ 52.0401,
+ 52.0402,
+ 52.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4051.00",
+ "title": "Customer Service Representatives",
+ "cip_codes": [
+ 52.0406,
+ 52.0411
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4151.00",
+ "title": "Order Clerks",
+ "cip_codes": [
+ 52.0406,
+ 52.0408,
+ 52.0411
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4171.00",
+ "title": "Receptionists and Information Clerks",
+ "cip_codes": [
+ 1.8203,
+ 52.0406
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-5011.00",
+ "title": "Cargo and Freight Agents",
+ "cip_codes": [
+ 52.0408,
+ 52.041
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4021.00",
+ "title": "Correspondence Clerks",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4071.00",
+ "title": "File Clerks",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "43-5011.01",
+ "title": "Freight Forwarders",
+ "cip_codes": [
+ 52.0408,
+ 52.041
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-9041.00",
+ "title": "Insurance Claims and Policy Processing Clerks",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-9061.00",
+ "title": "Office Clerks, General",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-3061.00",
+ "title": "Procurement Clerks",
+ "cip_codes": [
+ 52.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-5061.00",
+ "title": "Production, Planning, and Expediting Clerks",
+ "cip_codes": [
+ 52.0409
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-5032.00",
+ "title": "Dispatchers, Except Police, Fire, and Ambulance",
+ "cip_codes": [
+ 52.041,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-1122.00",
+ "title": "Communications Teachers, Postsecondary",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0702,
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 9.0908,
+ 9.9999,
+ 13.1302,
+ 13.1305,
+ 13.1306,
+ 13.1312,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.133,
+ 13.1333,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0104,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1801,
+ 16.9999,
+ 23.0101,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1402,
+ 23.1403,
+ 23.1404,
+ 23.1405,
+ 23.1499,
+ 23.9999,
+ 30.1301,
+ 30.2101,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.3601,
+ 30.4001,
+ 30.4501,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.4801,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 38.0001,
+ 38.0101,
+ 38.0103,
+ 38.0104,
+ 38.0199,
+ 38.0201,
+ 38.0202,
+ 38.0203,
+ 38.0204,
+ 38.0207,
+ 38.9999,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0501,
+ 39.0502,
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0706,
+ 39.0802,
+ 50.0101,
+ 50.0102,
+ 50.0201,
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0401,
+ 50.0404,
+ 50.0406,
+ 50.0407,
+ 50.0409,
+ 50.041,
+ 50.0501,
+ 50.0502,
+ 50.0504,
+ 50.0505,
+ 50.0506,
+ 50.0507,
+ 50.0509,
+ 50.051,
+ 50.0511,
+ 50.0512,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0605,
+ 50.0607,
+ 50.0607,
+ 50.0699,
+ 50.0701,
+ 50.0702,
+ 50.0703,
+ 50.0705,
+ 50.0706,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0902,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.1001,
+ 50.1002,
+ 50.1003,
+ 50.1004,
+ 50.1099,
+ 50.1101,
+ 50.9999,
+ 51.3201,
+ 51.3205,
+ 52.0501,
+ 52.0599,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-3041.00",
+ "title": "Editors",
+ "cip_codes": [
+ 9.01,
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0102,
+ 9.0401,
+ 9.0401,
+ 9.0402,
+ 9.0402,
+ 9.0908,
+ 9.0908,
+ 9.1001,
+ 9.9999,
+ 9.9999,
+ 19.0202,
+ 19.0202,
+ 23.1301,
+ 23.1301,
+ 23.1301,
+ 23.1302,
+ 23.1302,
+ 23.1303,
+ 23.1303,
+ 23.1303,
+ 23.1304,
+ 23.1304,
+ 23.1399,
+ 23.1399,
+ 23.1401,
+ 23.1401,
+ 23.1405,
+ 23.1405,
+ 23.1499,
+ 23.1499,
+ 50.0504,
+ 50.0511,
+ 52.0501,
+ 52.0501,
+ 52.0501,
+ 52.0502,
+ 52.0502,
+ 52.0599,
+ 52.0599,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-3043.05",
+ "title": "Poets, Lyricists and Creative Writers",
+ "cip_codes": [
+ 9.01,
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0102,
+ 9.0401,
+ 9.0401,
+ 9.0402,
+ 9.0402,
+ 9.0908,
+ 9.0908,
+ 9.1001,
+ 9.9999,
+ 9.9999,
+ 19.0202,
+ 19.0202,
+ 23.1301,
+ 23.1301,
+ 23.1301,
+ 23.1302,
+ 23.1302,
+ 23.1303,
+ 23.1303,
+ 23.1303,
+ 23.1304,
+ 23.1304,
+ 23.1399,
+ 23.1399,
+ 23.1401,
+ 23.1401,
+ 23.1405,
+ 23.1405,
+ 23.1499,
+ 23.1499,
+ 50.0504,
+ 50.0511,
+ 52.0501,
+ 52.0501,
+ 52.0501,
+ 52.0502,
+ 52.0502,
+ 52.0599,
+ 52.0599,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "43-9081.00",
+ "title": "Proofreaders and Copy Markers",
+ "cip_codes": [
+ 9.0401,
+ 23.0101,
+ 23.1301,
+ 23.1399,
+ 52.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-2032.00",
+ "title": "Public Relations Managers",
+ "cip_codes": [
+ 9.01,
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.09,
+ 9.09,
+ 9.0902,
+ 9.0902,
+ 9.0904,
+ 9.0907,
+ 9.0909,
+ 9.0909,
+ 52.0206,
+ 52.0213,
+ 52.0501,
+ 52.0502,
+ 52.0599,
+ 52.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "27-3031.00",
+ "title": "Public Relations Specialists",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.09,
+ 9.0902,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 19.0202,
+ 52.0501,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-3042.00",
+ "title": "Technical Writers",
+ "cip_codes": [
+ 9.01,
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0102,
+ 9.0401,
+ 9.0401,
+ 9.0402,
+ 9.0402,
+ 9.0908,
+ 9.0908,
+ 9.1001,
+ 9.9999,
+ 9.9999,
+ 19.0202,
+ 19.0202,
+ 23.1301,
+ 23.1301,
+ 23.1301,
+ 23.1302,
+ 23.1302,
+ 23.1303,
+ 23.1303,
+ 23.1303,
+ 23.1304,
+ 23.1304,
+ 23.1399,
+ 23.1399,
+ 23.1401,
+ 23.1401,
+ 23.1405,
+ 23.1405,
+ 23.1499,
+ 23.1499,
+ 50.0504,
+ 50.0511,
+ 52.0501,
+ 52.0501,
+ 52.0501,
+ 52.0502,
+ 52.0502,
+ 52.0599,
+ 52.0599,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-3043.00",
+ "title": "Writers and Authors",
+ "cip_codes": [
+ 9.01,
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0102,
+ 9.0401,
+ 9.0401,
+ 9.0402,
+ 9.0402,
+ 9.0908,
+ 9.0908,
+ 9.1001,
+ 9.9999,
+ 9.9999,
+ 19.0202,
+ 19.0202,
+ 23.1301,
+ 23.1301,
+ 23.1301,
+ 23.1302,
+ 23.1302,
+ 23.1303,
+ 23.1303,
+ 23.1303,
+ 23.1304,
+ 23.1304,
+ 23.1399,
+ 23.1399,
+ 23.1401,
+ 23.1401,
+ 23.1405,
+ 23.1405,
+ 23.1499,
+ 23.1499,
+ 50.0504,
+ 50.0511,
+ 52.0501,
+ 52.0501,
+ 52.0501,
+ 52.0502,
+ 52.0502,
+ 52.0599,
+ 52.0599,
+ 52.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-3022.00",
+ "title": "Survey Researchers",
+ "cip_codes": [
+ 13.0608,
+ 27.0501,
+ 27.0601,
+ 45.0102,
+ 45.0601,
+ 45.0602,
+ 52.0601,
+ 52.1302,
+ 52.1402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-2072.00",
+ "title": "Loan Officers",
+ "cip_codes": [
+ 52.0801,
+ 52.0803,
+ 52.0804,
+ 52.0809,
+ 52.0809
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-2052.00",
+ "title": "Personal Financial Advisors",
+ "cip_codes": [
+ 19.0401,
+ 27.0305,
+ 27.0305,
+ 30.7104,
+ 52.0215,
+ 52.0215,
+ 52.0301,
+ 52.0304,
+ 52.0304,
+ 52.0305,
+ 52.0305,
+ 52.0601,
+ 52.0801,
+ 52.0801,
+ 52.0801,
+ 52.0804,
+ 52.0806,
+ 52.0806,
+ 52.0807,
+ 52.0807,
+ 52.0808,
+ 52.0808,
+ 52.081,
+ 52.081,
+ 52.081,
+ 52.1304,
+ 52.1304,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "43-3011.00",
+ "title": "Bill and Account Collectors",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4041.00",
+ "title": "Credit Authorizers, Checkers, and Clerks",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "13-2071.00",
+ "title": "Credit Counselors",
+ "cip_codes": [
+ 52.0801,
+ 52.0803,
+ 52.0804,
+ 52.0809,
+ 52.0809
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "43-4131.00",
+ "title": "Loan Interviewers and Clerks",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "43-4141.00",
+ "title": "New Accounts Clerks",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-3071.00",
+ "title": "Tellers",
+ "cip_codes": [
+ 52.0803
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "41-3031.00",
+ "title": "Securities, Commodities, and Financial Services Sales Agents",
+ "cip_codes": [
+ 52.0804,
+ 52.0807,
+ 52.1908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9051.00",
+ "title": "Food Service Managers",
+ "cip_codes": [
+ 12.0504,
+ 12.0509,
+ 12.051,
+ 19.0505,
+ 52.0901,
+ 52.0904,
+ 52.0905,
+ 52.0909,
+ 52.091,
+ 52.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9081.00",
+ "title": "Lodging Managers",
+ "cip_codes": [
+ 52.0901,
+ 52.0904,
+ 52.0905,
+ 52.0906,
+ 52.0909,
+ 52.0999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "39-7012.00",
+ "title": "Travel Guides",
+ "cip_codes": [
+ 45.0301,
+ 52.0903,
+ 54.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "13-1121.00",
+ "title": "Meeting, Convention, and Event Planners",
+ "cip_codes": [
+ 19.0604,
+ 52.0907
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "39-1013.00",
+ "title": "First-Line Supervisors of Gambling Services Workers",
+ "cip_codes": [
+ 12.0601,
+ 12.0602,
+ 31.0601,
+ 52.0908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9071.00",
+ "title": "Gambling Managers",
+ "cip_codes": [
+ 3.0207,
+ 31.0301,
+ 31.0302,
+ 31.0399,
+ 31.0504,
+ 52.0101,
+ 52.0201,
+ 52.0901,
+ 52.0906,
+ 52.0908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1075.00",
+ "title": "Labor Relations Specialists",
+ "cip_codes": [
+ 30.2801,
+ 42.2804,
+ 52.0201,
+ 52.1001,
+ 52.1001,
+ 52.1002,
+ 52.1003,
+ 52.1004,
+ 52.1006,
+ 52.1099,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1151.00",
+ "title": "Training and Development Specialists",
+ "cip_codes": [
+ 9.0901,
+ 13.0501,
+ 13.1201,
+ 42.2804,
+ 52.1001,
+ 52.1005,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1112.00",
+ "title": "Law Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0208,
+ 22.0101,
+ 22.0201,
+ 22.0203,
+ 22.0204,
+ 22.0205,
+ 22.0206,
+ 22.0207,
+ 22.0208,
+ 22.0209,
+ 22.021,
+ 22.0211,
+ 22.0212,
+ 22.0213,
+ 22.0214,
+ 22.0215,
+ 22.0216,
+ 22.0217,
+ 22.0218,
+ 22.0219,
+ 22.022,
+ 22.0221,
+ 22.0222,
+ 22.0223,
+ 22.0224,
+ 22.0299,
+ 30.1101,
+ 30.2801,
+ 39.0802,
+ 43.01,
+ 43.0102,
+ 43.0103,
+ 43.0104,
+ 43.0107,
+ 43.0109,
+ 43.011,
+ 43.0112,
+ 43.0113,
+ 43.0114,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0121,
+ 43.0122,
+ 43.0123,
+ 43.0199,
+ 43.0304,
+ 43.0399,
+ 43.0401,
+ 43.0402,
+ 43.0403,
+ 43.0404,
+ 43.0405,
+ 43.0406,
+ 43.0407,
+ 43.0408,
+ 43.0499,
+ 44.0701,
+ 44.0703,
+ 44.0799,
+ 45.0401,
+ 51.1503,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-1012.00",
+ "title": "Educational, Guidance, and Career Counselors and Advisors",
+ "cip_codes": [
+ 13.1101,
+ 13.1102,
+ 13.1199,
+ 30.5301,
+ 39.0701,
+ 39.0799,
+ 42.2803,
+ 42.2803,
+ 42.2805,
+ 44.0701,
+ 44.0701,
+ 51.1501,
+ 51.1501,
+ 51.1503,
+ 51.1503,
+ 51.1505,
+ 51.1506,
+ 51.1506,
+ 51.1506,
+ 51.1508,
+ 51.151,
+ 51.151,
+ 51.1511,
+ 51.1513,
+ 51.231,
+ 51.2312,
+ 51.2314,
+ 52.1006,
+ 52.1006
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-2011.00",
+ "title": "Advertising and Promotions Managers",
+ "cip_codes": [
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 52.1401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "13-1161.00",
+ "title": "Market Research Analysts and Marketing Specialists",
+ "cip_codes": [
+ 19.0203,
+ 19.0905,
+ 30.7102,
+ 45.0602,
+ 52.1401,
+ 52.1402,
+ 52.1403,
+ 52.1404,
+ 52.1499,
+ 52.1904,
+ 52.1905,
+ 52.1906,
+ 52.1907,
+ 52.1908,
+ 52.1909,
+ 52.191
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1161.01",
+ "title": "Search Marketing Strategists",
+ "cip_codes": [
+ 19.0203,
+ 19.0905,
+ 30.7102,
+ 45.0602,
+ 52.1401,
+ 52.1402,
+ 52.1403,
+ 52.1404,
+ 52.1499,
+ 52.1904,
+ 52.1905,
+ 52.1906,
+ 52.1907,
+ 52.1908,
+ 52.1909,
+ 52.191
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-2023.00",
+ "title": "Appraisers and Assessors of Real Estate",
+ "cip_codes": [
+ 4.1001,
+ 50.0703,
+ 52.0101,
+ 52.0301,
+ 52.0304,
+ 52.0305,
+ 52.0801,
+ 52.1501,
+ 52.1501,
+ 52.1601,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "11-9141.00",
+ "title": "Property, Real Estate, and Community Association Managers",
+ "cip_codes": [
+ 4.1001,
+ 52.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "41-9021.00",
+ "title": "Real Estate Brokers",
+ "cip_codes": [
+ 4.1001,
+ 4.1001,
+ 52.1501,
+ 52.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "41-9022.00",
+ "title": "Real Estate Sales Agents",
+ "cip_codes": [
+ 4.1001,
+ 4.1001,
+ 52.1501,
+ 52.1501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1032.00",
+ "title": "Insurance Appraisers, Auto Damage",
+ "cip_codes": [
+ 47.0603,
+ 51.0715,
+ 52.1701,
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "41-3021.00",
+ "title": "Insurance Sales Agents",
+ "cip_codes": [
+ 52.1701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "41-4012.00",
+ "title": "Sales Representatives, Wholesale and Manufacturing, Except Technical and Scientific Products",
+ "cip_codes": [
+ 1.0105,
+ 52.1801,
+ 52.1804,
+ 52.1899,
+ 52.1902,
+ 52.1904,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1022.00",
+ "title": "Wholesale and Retail Buyers, Except Farm Products",
+ "cip_codes": [
+ 1.0105,
+ 12.051,
+ 19.0905,
+ 52.0202,
+ 52.1801,
+ 52.1801,
+ 52.1802,
+ 52.1899,
+ 52.1899,
+ 52.1902,
+ 52.1904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "41-9011.00",
+ "title": "Demonstrators and Product Promoters",
+ "cip_codes": [
+ 52.1803,
+ 52.1903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "41-3091.00",
+ "title": "Sales Representatives of Services, Except Advertising, Insurance, Financial Services, and Travel",
+ "cip_codes": [
+ 52.1803,
+ 52.1804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "41-9099.00",
+ "title": "Sales and Related Workers, All Other",
+ "cip_codes": [
+ 52.1803,
+ 52.1804,
+ 52.1901,
+ 52.1909,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "41-3011.00",
+ "title": "Advertising Sales Agents",
+ "cip_codes": [
+ 52.1804
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "41-1012.00",
+ "title": "First-Line Supervisors of Non-Retail Sales Workers",
+ "cip_codes": [
+ 1.0608,
+ 19.0203,
+ 52.0208,
+ 52.0212,
+ 52.1803,
+ 52.1804,
+ 52.1804,
+ 52.1899,
+ 52.1899,
+ 52.1909,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "41-2022.00",
+ "title": "Parts Salespersons",
+ "cip_codes": [
+ 52.1804,
+ 52.1907,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "41-4011.00",
+ "title": "Sales Representatives, Wholesale and Manufacturing, Technical and Scientific Products",
+ "cip_codes": [
+ 1.0105,
+ 52.1801,
+ 52.1804,
+ 52.1899,
+ 52.1902,
+ 52.1904,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "41-4011.07",
+ "title": "Solar Sales Representatives and Assessors",
+ "cip_codes": [
+ 1.0105,
+ 52.1801,
+ 52.1804,
+ 52.1899,
+ 52.1902,
+ 52.1904,
+ 52.1909
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "41-3041.00",
+ "title": "Travel Agents",
+ "cip_codes": [
+ 52.1804,
+ 52.1905
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-1026.00",
+ "title": "Merchandise Displayers and Window Trimmers",
+ "cip_codes": [
+ 4.0402,
+ 4.0501,
+ 11.0801,
+ 11.0803,
+ 15.1503,
+ 15.1701,
+ 19.0604,
+ 19.0699,
+ 19.0902,
+ 19.0904,
+ 19.0904,
+ 19.0906,
+ 30.3701,
+ 50.0102,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0402,
+ 50.0402,
+ 50.0404,
+ 50.0404,
+ 50.0404,
+ 50.0407,
+ 50.0408,
+ 50.0409,
+ 50.041,
+ 50.041,
+ 50.0502,
+ 50.051,
+ 52.1903,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "41-9012.00",
+ "title": "Models",
+ "cip_codes": [
+ 52.1803,
+ 52.1903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-1121.00",
+ "title": "Art, Drama, and Music Teachers, Postsecondary",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0702,
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 9.0908,
+ 9.9999,
+ 13.1302,
+ 13.1305,
+ 13.1306,
+ 13.1312,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.133,
+ 13.1333,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0104,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1801,
+ 16.9999,
+ 23.0101,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1402,
+ 23.1403,
+ 23.1404,
+ 23.1405,
+ 23.1499,
+ 23.9999,
+ 30.1301,
+ 30.2101,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.3601,
+ 30.4001,
+ 30.4501,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.4801,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 38.0001,
+ 38.0101,
+ 38.0103,
+ 38.0104,
+ 38.0199,
+ 38.0201,
+ 38.0202,
+ 38.0203,
+ 38.0204,
+ 38.0207,
+ 38.9999,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0501,
+ 39.0502,
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0706,
+ 39.0802,
+ 50.0101,
+ 50.0102,
+ 50.0201,
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0401,
+ 50.0404,
+ 50.0406,
+ 50.0407,
+ 50.0409,
+ 50.041,
+ 50.0501,
+ 50.0502,
+ 50.0504,
+ 50.0505,
+ 50.0506,
+ 50.0507,
+ 50.0509,
+ 50.051,
+ 50.0511,
+ 50.0512,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0605,
+ 50.0607,
+ 50.0607,
+ 50.0699,
+ 50.0701,
+ 50.0702,
+ 50.0703,
+ 50.0705,
+ 50.0706,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0902,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.1001,
+ 50.1002,
+ 50.1003,
+ 50.1004,
+ 50.1099,
+ 50.1101,
+ 50.9999,
+ 51.3201,
+ 51.3205,
+ 52.0501,
+ 52.0599,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-1019.00",
+ "title": "Artists and Related Workers, All Other",
+ "cip_codes": [
+ 10.0304,
+ 11.0801,
+ 11.0804,
+ 50.0101,
+ 50.0101,
+ 50.0101,
+ 50.0102,
+ 50.0102,
+ 50.0102,
+ 50.0201,
+ 50.0201,
+ 50.0402,
+ 50.0409,
+ 50.0409,
+ 50.0409,
+ 50.041,
+ 50.0411,
+ 50.0701,
+ 50.0701,
+ 50.0702,
+ 50.0702,
+ 50.0705,
+ 50.0705,
+ 50.0705,
+ 50.0706,
+ 50.0706,
+ 50.0706,
+ 50.0708,
+ 50.0708,
+ 50.0708,
+ 50.0709,
+ 50.0709,
+ 50.071,
+ 50.071,
+ 50.0711,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0799,
+ 50.1101,
+ 50.1101,
+ 51.2703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "27-1012.00",
+ "title": "Craft Artists",
+ "cip_codes": [
+ 10.0304,
+ 11.0801,
+ 11.0804,
+ 50.0101,
+ 50.0101,
+ 50.0101,
+ 50.0102,
+ 50.0102,
+ 50.0102,
+ 50.0201,
+ 50.0201,
+ 50.0402,
+ 50.0409,
+ 50.0409,
+ 50.0409,
+ 50.041,
+ 50.0411,
+ 50.0701,
+ 50.0701,
+ 50.0702,
+ 50.0702,
+ 50.0705,
+ 50.0705,
+ 50.0705,
+ 50.0706,
+ 50.0706,
+ 50.0706,
+ 50.0708,
+ 50.0708,
+ 50.0708,
+ 50.0709,
+ 50.0709,
+ 50.071,
+ 50.071,
+ 50.0711,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0799,
+ 50.1101,
+ 50.1101,
+ 51.2703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-4021.00",
+ "title": "Photographers",
+ "cip_codes": [
+ 9.0404,
+ 50.0101,
+ 50.0102,
+ 50.0406,
+ 50.0605,
+ 50.0701
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "27-1011.00",
+ "title": "Art Directors",
+ "cip_codes": [
+ 10.0304,
+ 11.0801,
+ 11.0804,
+ 50.0101,
+ 50.0101,
+ 50.0101,
+ 50.0102,
+ 50.0102,
+ 50.0102,
+ 50.0201,
+ 50.0201,
+ 50.0402,
+ 50.0409,
+ 50.0409,
+ 50.0409,
+ 50.041,
+ 50.0411,
+ 50.0701,
+ 50.0701,
+ 50.0702,
+ 50.0702,
+ 50.0705,
+ 50.0705,
+ 50.0705,
+ 50.0706,
+ 50.0706,
+ 50.0706,
+ 50.0708,
+ 50.0708,
+ 50.0708,
+ 50.0709,
+ 50.0709,
+ 50.071,
+ 50.071,
+ 50.0711,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0799,
+ 50.1101,
+ 50.1101,
+ 51.2703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-2032.00",
+ "title": "Choreographers",
+ "cip_codes": [
+ 50.0301,
+ 50.0301,
+ 50.0302,
+ 50.0302,
+ 50.0399,
+ 50.0399,
+ 50.0509,
+ 50.0509,
+ 50.0512,
+ 50.0512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-2031.00",
+ "title": "Dancers",
+ "cip_codes": [
+ 50.0301,
+ 50.0301,
+ 50.0302,
+ 50.0302,
+ 50.0399,
+ 50.0399,
+ 50.0509,
+ 50.0509,
+ 50.0512,
+ 50.0512
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "27-1029.00",
+ "title": "Designers, All Other",
+ "cip_codes": [
+ 4.0402,
+ 4.0501,
+ 11.0801,
+ 11.0803,
+ 15.1503,
+ 15.1701,
+ 19.0604,
+ 19.0699,
+ 19.0902,
+ 19.0904,
+ 19.0904,
+ 19.0906,
+ 30.3701,
+ 50.0102,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0402,
+ 50.0402,
+ 50.0404,
+ 50.0404,
+ 50.0404,
+ 50.0407,
+ 50.0408,
+ 50.0409,
+ 50.041,
+ 50.041,
+ 50.0502,
+ 50.051,
+ 52.1903,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "27-1027.00",
+ "title": "Set and Exhibit Designers",
+ "cip_codes": [
+ 4.0402,
+ 4.0501,
+ 11.0801,
+ 11.0803,
+ 15.1503,
+ 15.1701,
+ 19.0604,
+ 19.0699,
+ 19.0902,
+ 19.0904,
+ 19.0904,
+ 19.0906,
+ 30.3701,
+ 50.0102,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0402,
+ 50.0402,
+ 50.0404,
+ 50.0404,
+ 50.0404,
+ 50.0407,
+ 50.0408,
+ 50.0409,
+ 50.041,
+ 50.041,
+ 50.0502,
+ 50.051,
+ 52.1903,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "27-1022.00",
+ "title": "Fashion Designers",
+ "cip_codes": [
+ 4.0402,
+ 4.0501,
+ 11.0801,
+ 11.0803,
+ 15.1503,
+ 15.1701,
+ 19.0604,
+ 19.0699,
+ 19.0902,
+ 19.0904,
+ 19.0904,
+ 19.0906,
+ 30.3701,
+ 50.0102,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0402,
+ 50.0402,
+ 50.0404,
+ 50.0404,
+ 50.0404,
+ 50.0407,
+ 50.0408,
+ 50.0409,
+ 50.041,
+ 50.041,
+ 50.0502,
+ 50.051,
+ 52.1903,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-1025.00",
+ "title": "Interior Designers",
+ "cip_codes": [
+ 4.0402,
+ 4.0501,
+ 11.0801,
+ 11.0803,
+ 15.1503,
+ 15.1701,
+ 19.0604,
+ 19.0699,
+ 19.0902,
+ 19.0904,
+ 19.0904,
+ 19.0906,
+ 30.3701,
+ 50.0102,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0401,
+ 50.0402,
+ 50.0402,
+ 50.0404,
+ 50.0404,
+ 50.0404,
+ 50.0407,
+ 50.0408,
+ 50.0409,
+ 50.041,
+ 50.041,
+ 50.0502,
+ 50.051,
+ 52.1903,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "27-2011.00",
+ "title": "Actors",
+ "cip_codes": [
+ 9.0701,
+ 50.0501,
+ 50.0501,
+ 50.0506,
+ 50.0507,
+ 50.0507,
+ 50.0509,
+ 50.0509,
+ 50.0511,
+ 50.0512,
+ 50.0512,
+ 50.0599,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0607,
+ 50.1004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-2099.00",
+ "title": "Entertainers and Performers, Sports and Related Workers, All Other",
+ "cip_codes": [
+ 9.0906,
+ 10.0203,
+ 15.0307,
+ 50.0501,
+ 50.0507,
+ 50.0512,
+ 50.0599,
+ 50.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "27-2012.03",
+ "title": "Media Programming Directors",
+ "cip_codes": [
+ 9.0701,
+ 50.0501,
+ 50.0501,
+ 50.0506,
+ 50.0507,
+ 50.0507,
+ 50.0509,
+ 50.0509,
+ 50.0511,
+ 50.0512,
+ 50.0512,
+ 50.0599,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0607,
+ 50.1004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "27-2012.05",
+ "title": "Media Technical Directors/Managers",
+ "cip_codes": [
+ 9.0701,
+ 50.0501,
+ 50.0501,
+ 50.0506,
+ 50.0507,
+ 50.0507,
+ 50.0509,
+ 50.0509,
+ 50.0511,
+ 50.0512,
+ 50.0512,
+ 50.0599,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0607,
+ 50.1004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-2012.00",
+ "title": "Producers and Directors",
+ "cip_codes": [
+ 9.0701,
+ 50.0501,
+ 50.0501,
+ 50.0506,
+ 50.0507,
+ 50.0507,
+ 50.0509,
+ 50.0509,
+ 50.0511,
+ 50.0512,
+ 50.0512,
+ 50.0599,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0607,
+ 50.1004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "27-2012.04",
+ "title": "Talent Directors",
+ "cip_codes": [
+ 9.0701,
+ 50.0501,
+ 50.0501,
+ 50.0506,
+ 50.0507,
+ 50.0507,
+ 50.0509,
+ 50.0509,
+ 50.0511,
+ 50.0512,
+ 50.0512,
+ 50.0599,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0607,
+ 50.1004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-2041.00",
+ "title": "Music Directors and Composers",
+ "cip_codes": [
+ 39.0501,
+ 39.0502,
+ 50.0509,
+ 50.0509,
+ 50.0901,
+ 50.0903,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.0999,
+ 50.1003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-2042.00",
+ "title": "Musicians and Singers",
+ "cip_codes": [
+ 39.0501,
+ 39.0502,
+ 50.0509,
+ 50.0509,
+ 50.0901,
+ 50.0903,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.0999,
+ 50.1003
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "39-3092.00",
+ "title": "Costume Attendants",
+ "cip_codes": [
+ 50.0599,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "27-4031.00",
+ "title": "Camera Operators, Television, Video, and Film",
+ "cip_codes": [
+ 9.0404,
+ 9.0701,
+ 10.0105,
+ 10.0202,
+ 10.0202,
+ 10.0299,
+ 10.0299,
+ 50.0602,
+ 50.0602,
+ 50.0607,
+ 50.0607
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "27-4032.00",
+ "title": "Film and Video Editors",
+ "cip_codes": [
+ 9.0404,
+ 9.0701,
+ 10.0105,
+ 10.0202,
+ 10.0202,
+ 10.0299,
+ 10.0299,
+ 50.0602,
+ 50.0602,
+ 50.0607,
+ 50.0607
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-4011.00",
+ "title": "Archivists",
+ "cip_codes": [
+ 25.0103,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1401,
+ 30.1401,
+ 30.1401,
+ 30.5201,
+ 30.5201,
+ 30.5202,
+ 30.5202,
+ 30.5203,
+ 30.5203,
+ 50.0703,
+ 50.0703,
+ 50.0703,
+ 54.0105,
+ 54.0105,
+ 54.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-4012.00",
+ "title": "Curators",
+ "cip_codes": [
+ 25.0103,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1401,
+ 30.1401,
+ 30.1401,
+ 30.5201,
+ 30.5201,
+ 30.5202,
+ 30.5202,
+ 30.5203,
+ 30.5203,
+ 50.0703,
+ 50.0703,
+ 50.0703,
+ 54.0105,
+ 54.0105,
+ 54.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-4013.00",
+ "title": "Museum Technicians and Conservators",
+ "cip_codes": [
+ 25.0103,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1401,
+ 30.1401,
+ 30.1401,
+ 30.5201,
+ 30.5201,
+ 30.5202,
+ 30.5202,
+ 30.5203,
+ 30.5203,
+ 50.0703,
+ 50.0703,
+ 50.0703,
+ 54.0105,
+ 54.0105,
+ 54.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-9071.06",
+ "title": "Gem and Diamond Workers",
+ "cip_codes": [
+ 47.0408,
+ 50.0713,
+ 50.0714
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-9071.00",
+ "title": "Jewelers and Precious Stone and Metal Workers",
+ "cip_codes": [
+ 47.0408,
+ 50.0713,
+ 50.0714
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "11-9161.00",
+ "title": "Emergency Management Directors",
+ "cip_codes": [
+ 43.0119,
+ 43.012,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 61.0603
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-1011.00",
+ "title": "Architects, Except Landscape and Naval",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0401,
+ 4.0401,
+ 4.0601,
+ 4.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3051.00",
+ "title": "Urban and Regional Planners",
+ "cip_codes": [
+ 4.0301,
+ 4.0403,
+ 4.1001,
+ 30.3301,
+ 30.3701,
+ 44.0403,
+ 45.1201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "17-1012.00",
+ "title": "Landscape Architects",
+ "cip_codes": [
+ 4.0201,
+ 4.0202,
+ 4.0401,
+ 4.0401,
+ 4.0601,
+ 4.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "55-1019.00",
+ "title": "Military Officer Special and Tactical Operations Leaders, All Other",
+ "cip_codes": [
+ 28.0503,
+ 28.0504,
+ 28.0505,
+ 28.0506,
+ 28.0599,
+ 28.0601,
+ 28.0602,
+ 28.0602,
+ 28.0604,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0301,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "55-3018.00",
+ "title": "Special Forces",
+ "cip_codes": [
+ 28.0506,
+ 28.0599,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0401,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 29.0408,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "55-1017.00",
+ "title": "Special Forces Officers",
+ "cip_codes": [
+ 28.0503,
+ 28.0504,
+ 28.0505,
+ 28.0506,
+ 28.0599,
+ 28.0601,
+ 28.0602,
+ 28.0602,
+ 28.0604,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0301,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "55-3019.00",
+ "title": "Military Enlisted Tactical Operations and Air/Weapons Specialists and Crew Members, All Other",
+ "cip_codes": [
+ 28.0506,
+ 28.0599,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0401,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 29.0408,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "55-1016.00",
+ "title": "Infantry Officers",
+ "cip_codes": [
+ 28.0503,
+ 28.0504,
+ 28.0505,
+ 28.0506,
+ 28.0599,
+ 28.0601,
+ 28.0602,
+ 28.0602,
+ 28.0604,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0301,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "55-3014.00",
+ "title": "Artillery and Missile Crew Members",
+ "cip_codes": [
+ 28.0506,
+ 28.0599,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0401,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 29.0408,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "55-1014.00",
+ "title": "Artillery and Missile Officers",
+ "cip_codes": [
+ 28.0503,
+ 28.0504,
+ 28.0505,
+ 28.0506,
+ 28.0599,
+ 28.0601,
+ 28.0602,
+ 28.0602,
+ 28.0604,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0301,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-1041.00",
+ "title": "Agricultural Sciences Teachers, Postsecondary",
+ "cip_codes": [
+ 1,
+ 1.0101,
+ 1.0102,
+ 1.0103,
+ 1.0104,
+ 1.0105,
+ 1.0199,
+ 1.0201,
+ 1.0204,
+ 1.0299,
+ 1.0301,
+ 1.0302,
+ 1.0303,
+ 1.0304,
+ 1.0307,
+ 1.0308,
+ 1.0308,
+ 1.0399,
+ 1.0401,
+ 1.0505,
+ 1.0507,
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0606,
+ 1.0607,
+ 1.0701,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1001,
+ 1.1004,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1104,
+ 1.1105,
+ 1.1106,
+ 1.1106,
+ 1.1199,
+ 1.1201,
+ 1.1202,
+ 1.1203,
+ 1.1299,
+ 3.0101,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0299,
+ 3.0501,
+ 3.0502,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599,
+ 3.0601,
+ 3.9999,
+ 13.1301,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1322,
+ 26.0101,
+ 26.0102,
+ 26.0202,
+ 26.0203,
+ 26.0204,
+ 26.0205,
+ 26.0206,
+ 26.0207,
+ 26.0208,
+ 26.0209,
+ 26.021,
+ 26.0299,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0399,
+ 26.0401,
+ 26.0403,
+ 26.0404,
+ 26.0406,
+ 26.0407,
+ 26.0499,
+ 26.0502,
+ 26.0503,
+ 26.0504,
+ 26.0505,
+ 26.0506,
+ 26.0507,
+ 26.0508,
+ 26.0599,
+ 26.0701,
+ 26.0702,
+ 26.0707,
+ 26.0799,
+ 26.0801,
+ 26.0802,
+ 26.0803,
+ 26.0804,
+ 26.0805,
+ 26.0806,
+ 26.0807,
+ 26.0899,
+ 26.0901,
+ 26.0902,
+ 26.0903,
+ 26.0904,
+ 26.0905,
+ 26.0907,
+ 26.0908,
+ 26.0909,
+ 26.091,
+ 26.0911,
+ 26.0912,
+ 26.0913,
+ 26.1001,
+ 26.1004,
+ 26.1101,
+ 26.1104,
+ 26.1199,
+ 26.1201,
+ 26.1301,
+ 26.1301,
+ 26.1302,
+ 26.1303,
+ 26.1304,
+ 26.1305,
+ 26.1306,
+ 26.1307,
+ 26.1308,
+ 26.131,
+ 26.1399,
+ 26.1401,
+ 26.1501,
+ 26.1502,
+ 26.1503,
+ 26.1504,
+ 26.1599,
+ 26.9999,
+ 30.1001,
+ 30.1901,
+ 30.2701,
+ 30.4301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1011.00",
+ "title": "Animal Scientists",
+ "cip_codes": [
+ 1,
+ 1,
+ 1,
+ 1.0308,
+ 1.031,
+ 1.0701,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0907,
+ 1.0999,
+ 1.1001,
+ 1.1002,
+ 1.1003,
+ 1.1004,
+ 1.1004,
+ 1.1005,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1104,
+ 1.1105,
+ 1.1106,
+ 1.1106,
+ 1.1199,
+ 1.1201,
+ 1.1202,
+ 1.1203,
+ 1.1299,
+ 1.8103,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 12.0509,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-1012.00",
+ "title": "Food Scientists and Technologists",
+ "cip_codes": [
+ 1,
+ 1,
+ 1,
+ 1.0308,
+ 1.031,
+ 1.0701,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0907,
+ 1.0999,
+ 1.1001,
+ 1.1002,
+ 1.1003,
+ 1.1004,
+ 1.1004,
+ 1.1005,
+ 1.1099,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1104,
+ 1.1105,
+ 1.1106,
+ 1.1106,
+ 1.1199,
+ 1.1201,
+ 1.1202,
+ 1.1203,
+ 1.1299,
+ 1.8103,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 12.0509,
+ 26.0301,
+ 26.0305,
+ 26.0307,
+ 26.0308,
+ 26.0399,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9013.00",
+ "title": "Farmers, Ranchers, and Other Agricultural Managers",
+ "cip_codes": [
+ 1.0101,
+ 1.0102,
+ 1.0104,
+ 1.0199,
+ 1.0301,
+ 1.0302,
+ 1.0303,
+ 1.0304,
+ 1.0306,
+ 1.0307,
+ 1.0308,
+ 1.031,
+ 1.0399,
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0606,
+ 1.0609,
+ 1.061,
+ 1.0901,
+ 1.0902,
+ 1.0903,
+ 1.0904,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1004,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1105,
+ 1.1106,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "45-1011.00",
+ "title": "First-Line Supervisors of Farming, Fishing, and Forestry Workers",
+ "cip_codes": [
+ 1.0101,
+ 1.0104,
+ 1.0199,
+ 1.0301,
+ 1.0302,
+ 1.0303,
+ 1.0304,
+ 1.0306,
+ 1.0307,
+ 1.0308,
+ 1.031,
+ 1.0399,
+ 1.0401,
+ 1.0604,
+ 1.0606,
+ 1.0901,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1004,
+ 1.1101,
+ 1.1102,
+ 3.0301,
+ 3.0501,
+ 3.051
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-9021.00",
+ "title": "Farm and Home Management Educators",
+ "cip_codes": [
+ 1.0104,
+ 1.0302,
+ 1.0304,
+ 1.0306,
+ 1.0307,
+ 1.031,
+ 1.0601,
+ 1.0609,
+ 1.061,
+ 1.0801,
+ 1.0901,
+ 1.0902,
+ 1.0904,
+ 1.0905,
+ 1.0906,
+ 1.0907,
+ 1.0999,
+ 1.1101,
+ 1.1102,
+ 1.1103,
+ 1.1105,
+ 1.1106,
+ 19.0101,
+ 19.0201,
+ 19.0203,
+ 19.0401,
+ 19.0402,
+ 19.0403,
+ 19.0499,
+ 19.0601,
+ 19.0605,
+ 19.0704,
+ 19.0706,
+ 19.0707,
+ 19.0711,
+ 19.0712,
+ 19.0901,
+ 30.1901
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "13-1021.00",
+ "title": "Buyers and Purchasing Agents, Farm Products",
+ "cip_codes": [
+ 1.0105,
+ 12.051,
+ 19.0905,
+ 52.0202,
+ 52.1801,
+ 52.1801,
+ 52.1802,
+ 52.1899,
+ 52.1899,
+ 52.1902,
+ 52.1904
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "49-3041.00",
+ "title": "Farm Equipment Mechanics and Service Technicians",
+ "cip_codes": [
+ 1.0201,
+ 1.0204,
+ 1.0205,
+ 1.0205,
+ 1.0207,
+ 1.0299,
+ 47.0302,
+ 47.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "45-2091.00",
+ "title": "Agricultural Equipment Operators",
+ "cip_codes": [
+ 1.0204,
+ 1.031,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "49-3011.00",
+ "title": "Aircraft Mechanics and Service Technicians",
+ "cip_codes": [
+ 1.0205,
+ 47.0607,
+ 47.0608
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-3042.00",
+ "title": "Mobile Heavy Equipment Mechanics, Except Engines",
+ "cip_codes": [
+ 1.0201,
+ 1.0204,
+ 1.0205,
+ 1.0205,
+ 1.0207,
+ 1.0299,
+ 47.0302,
+ 47.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "45-2021.00",
+ "title": "Animal Breeders",
+ "cip_codes": [
+ 1.0302,
+ 1.0307,
+ 1.031
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "45-2093.00",
+ "title": "Farmworkers, Farm, Ranch, and Aquacultural Animals",
+ "cip_codes": [
+ 1.0204,
+ 1.031,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "45-2011.00",
+ "title": "Agricultural Inspectors",
+ "cip_codes": [
+ 1.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "39-2021.00",
+ "title": "Animal Caretakers",
+ "cip_codes": [
+ 1.0504,
+ 1.0509,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-2011.00",
+ "title": "Animal Trainers",
+ "cip_codes": [
+ 1.0505,
+ 1.0507,
+ 30.3401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "37-1012.00",
+ "title": "First-Line Supervisors of Landscaping, Lawn Service, and Groundskeeping Workers",
+ "cip_codes": [
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0606,
+ 1.0607,
+ 31.0302,
+ 46.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "37-3011.00",
+ "title": "Landscaping and Groundskeeping Workers",
+ "cip_codes": [
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0605,
+ 1.0606,
+ 1.0606,
+ 1.0607,
+ 1.0607,
+ 31.0302,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "37-3012.00",
+ "title": "Pesticide Handlers, Sprayers, and Applicators, Vegetation",
+ "cip_codes": [
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0605,
+ 1.0606,
+ 1.0606,
+ 1.0607,
+ 1.0607,
+ 31.0302,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "45-4011.00",
+ "title": "Forest and Conservation Workers",
+ "cip_codes": [
+ 1.0606,
+ 3.0501,
+ 3.0511,
+ 3.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-4011.00",
+ "title": "Audio and Video Technicians",
+ "cip_codes": [
+ 1.0802,
+ 10.0105,
+ 10.0105,
+ 10.0201,
+ 10.0201,
+ 10.0202,
+ 10.0202,
+ 10.0203,
+ 10.0203,
+ 10.0299,
+ 15.0307,
+ 50.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-3023.00",
+ "title": "News Analysts, Reporters, and Journalists",
+ "cip_codes": [
+ 1.0802,
+ 9.01,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0404,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0904,
+ 9.0906,
+ 9.0907
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "51-3092.00",
+ "title": "Food Batchmakers",
+ "cip_codes": [
+ 1.1003,
+ 1.1005,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-9012.00",
+ "title": "Separating, Filtering, Clarifying, Precipitating, and Still Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 1.1003,
+ 1.1004,
+ 1.1005,
+ 41.0301,
+ 41.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-1131.00",
+ "title": "Veterinarians",
+ "cip_codes": [
+ 1.8001,
+ 1.8101,
+ 1.8102,
+ 1.8103,
+ 1.8104,
+ 1.8105,
+ 1.8106,
+ 1.8107,
+ 1.8108,
+ 1.8109,
+ 1.811,
+ 1.8111,
+ 1.8199,
+ 60.0301,
+ 60.0302,
+ 60.0303,
+ 60.0304,
+ 60.0305,
+ 60.0306,
+ 60.0307,
+ 60.0308,
+ 60.0309,
+ 60.031,
+ 60.0311,
+ 60.0312,
+ 60.0313,
+ 60.0314,
+ 60.0315,
+ 60.0316,
+ 60.0317,
+ 60.0318,
+ 60.0319,
+ 60.032,
+ 60.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "31-9096.00",
+ "title": "Veterinary Assistants and Laboratory Animal Caretakers",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 51.0601,
+ 51.0703,
+ 51.0708,
+ 51.0711,
+ 51.0711,
+ 51.0714,
+ 51.0717,
+ 51.0799,
+ 51.0801,
+ 51.0809,
+ 51.0813,
+ 51.0814,
+ 51.0815,
+ 51.0816,
+ 51.0899,
+ 51.1009,
+ 51.1012,
+ 51.2603,
+ 51.2604,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "29-2056.00",
+ "title": "Veterinary Technologists and Technicians",
+ "cip_codes": [
+ 1.8301,
+ 1.8399,
+ 19.0501,
+ 30.1901,
+ 51.0805,
+ 51.0811,
+ 51.0909,
+ 51.1012,
+ 51.1502,
+ 51.1802,
+ 51.1803,
+ 51.1804,
+ 51.3101,
+ 51.3103,
+ 51.3104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-4022.00",
+ "title": "Librarians and Media Collections Specialists",
+ "cip_codes": [
+ 13.0501,
+ 13.1334,
+ 25.0101,
+ 25.0102,
+ 25.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-1082.00",
+ "title": "Library Science Teachers, Postsecondary",
+ "cip_codes": [
+ 13.0101,
+ 13.0201,
+ 13.0202,
+ 13.0203,
+ 13.0299,
+ 13.0301,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 13.0901,
+ 13.1005,
+ 13.1006,
+ 13.1007,
+ 13.1008,
+ 13.1009,
+ 13.1011,
+ 13.1012,
+ 13.1013,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099,
+ 13.1202,
+ 13.1203,
+ 13.1205,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1209,
+ 13.121,
+ 13.1211,
+ 13.1213,
+ 13.1214,
+ 13.1301,
+ 13.1302,
+ 13.1303,
+ 13.1304,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1319,
+ 13.132,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.1329,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1337,
+ 13.1338,
+ 13.1339,
+ 13.1399,
+ 13.9999,
+ 25.0101,
+ 25.0102,
+ 44.0502,
+ 51.3202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-4031.00",
+ "title": "Library Technicians",
+ "cip_codes": [
+ 25.0301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-6093.00",
+ "title": "Upholsterers",
+ "cip_codes": [
+ 19.0902,
+ 48.0303,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-6042.00",
+ "title": "Shoe Machine Operators and Tenders",
+ "cip_codes": [
+ 48.0304,
+ 48.0304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-6041.00",
+ "title": "Shoe and Leather Workers and Repairers",
+ "cip_codes": [
+ 48.0304,
+ 48.0304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4031.00",
+ "title": "Cutting, Punching, and Press Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4032.00",
+ "title": "Drilling and Boring Machine Tool Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4021.00",
+ "title": "Extruding and Drawing Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4022.00",
+ "title": "Forging Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4033.00",
+ "title": "Grinding, Lapping, Polishing, and Buffing Machine Tool Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4191.00",
+ "title": "Heat Treating Equipment Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0503,
+ 48.0503,
+ 48.0503,
+ 48.0599,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4034.00",
+ "title": "Lathe and Turning Machine Tool Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4192.00",
+ "title": "Layout Workers, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0503,
+ 48.0503,
+ 48.0503,
+ 48.0599,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4041.00",
+ "title": "Machinists",
+ "cip_codes": [
+ 48.0501,
+ 48.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4199.00",
+ "title": "Metal Workers and Plastic Workers, All Other",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0503,
+ 48.0503,
+ 48.0503,
+ 48.0599,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4035.00",
+ "title": "Milling and Planing Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4081.00",
+ "title": "Multiple Machine Tool Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4023.00",
+ "title": "Rolling Machine Setters, Operators, and Tenders, Metal and Plastic",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-9161.00",
+ "title": "Computer Numerically Controlled Tool Operators",
+ "cip_codes": [
+ 48.0503,
+ 48.051,
+ 48.051
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-2041.00",
+ "title": "Structural Metal Fabricators and Fitters",
+ "cip_codes": [
+ 48.0503,
+ 48.0511
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4194.00",
+ "title": "Tool Grinders, Filers, and Sharpeners",
+ "cip_codes": [
+ 48.0501,
+ 48.0501,
+ 48.0501,
+ 48.0503,
+ 48.0503,
+ 48.0503,
+ 48.0503,
+ 48.0599,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4061.00",
+ "title": "Model Makers, Metal and Plastic",
+ "cip_codes": [
+ 48.0506,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4062.00",
+ "title": "Patternmakers, Metal and Plastic",
+ "cip_codes": [
+ 48.0506,
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2211.00",
+ "title": "Sheet Metal Workers",
+ "cip_codes": [
+ 48.0506
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4111.00",
+ "title": "Tool and Die Makers",
+ "cip_codes": [
+ 48.0507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-4122.00",
+ "title": "Welding, Soldering, and Brazing Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 15.0614,
+ 48.0508,
+ 48.0508
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-4071.00",
+ "title": "Foundry Mold and Coremakers",
+ "cip_codes": [
+ 48.0509,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-9162.00",
+ "title": "Computer Numerically Controlled Tool Programmers",
+ "cip_codes": [
+ 48.0503,
+ 48.051,
+ 48.051
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-7099.00",
+ "title": "Woodworkers, All Other",
+ "cip_codes": [
+ 48.0701,
+ 48.0702,
+ 48.0703,
+ 48.0704,
+ 48.0799
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-7042.00",
+ "title": "Woodworking Machine Setters, Operators, and Tenders, Except Sawing",
+ "cip_codes": [
+ 48.0701,
+ 48.0703,
+ 48.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-7021.00",
+ "title": "Furniture Finishers",
+ "cip_codes": [
+ 48.0702
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-7011.00",
+ "title": "Cabinetmakers and Bench Carpenters",
+ "cip_codes": [
+ 48.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-7031.00",
+ "title": "Model Makers, Wood",
+ "cip_codes": [
+ 48.0703,
+ 48.0703,
+ 48.0704
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-7032.00",
+ "title": "Patternmakers, Wood",
+ "cip_codes": [
+ 48.0703,
+ 48.0703,
+ 48.0704
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-7041.00",
+ "title": "Sawing Machine Setters, Operators, and Tenders, Wood",
+ "cip_codes": [
+ 48.0701,
+ 48.0703,
+ 48.0703
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-2011.00",
+ "title": "Boilermakers",
+ "cip_codes": [
+ 48.0801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-4011.00",
+ "title": "Embalmers",
+ "cip_codes": [
+ 12.0301,
+ 12.0303,
+ 12.0303,
+ 12.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "11-9171.00",
+ "title": "Funeral Home Managers",
+ "cip_codes": [
+ 12.0301,
+ 12.0302,
+ 12.0399,
+ 12.0412,
+ 52.0101,
+ 52.0201,
+ 52.0212,
+ 52.0703,
+ 52.0901,
+ 52.0903
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "39-4031.00",
+ "title": "Morticians, Undertakers, and Funeral Arrangers",
+ "cip_codes": [
+ 12.0301,
+ 12.0302,
+ 12.0399,
+ 30.5301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "39-4012.00",
+ "title": "Crematory Operators",
+ "cip_codes": [
+ 12.0301,
+ 12.0303,
+ 12.0303,
+ 12.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "39-5012.00",
+ "title": "Hairdressers, Hairstylists, and Cosmetologists",
+ "cip_codes": [
+ 12.0401,
+ 12.0402,
+ 12.0404,
+ 12.0406,
+ 12.0407,
+ 12.0407,
+ 12.0411,
+ 12.0412,
+ 12.0412,
+ 12.0413,
+ 12.0413,
+ 12.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-5091.00",
+ "title": "Makeup Artists, Theatrical and Performance",
+ "cip_codes": [
+ 12.0401,
+ 12.0401,
+ 12.0401,
+ 12.0401,
+ 12.0406,
+ 12.0408,
+ 12.0409,
+ 12.041,
+ 12.0411,
+ 12.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "39-5092.00",
+ "title": "Manicurists and Pedicurists",
+ "cip_codes": [
+ 12.0401,
+ 12.0401,
+ 12.0401,
+ 12.0401,
+ 12.0406,
+ 12.0408,
+ 12.0409,
+ 12.041,
+ 12.0411,
+ 12.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-5093.00",
+ "title": "Shampooers",
+ "cip_codes": [
+ 12.0401,
+ 12.0401,
+ 12.0401,
+ 12.0401,
+ 12.0406,
+ 12.0408,
+ 12.0409,
+ 12.041,
+ 12.0411,
+ 12.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "39-5094.00",
+ "title": "Skincare Specialists",
+ "cip_codes": [
+ 12.0401,
+ 12.0401,
+ 12.0401,
+ 12.0401,
+ 12.0406,
+ 12.0408,
+ 12.0409,
+ 12.041,
+ 12.0411,
+ 12.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-5011.00",
+ "title": "Barbers",
+ "cip_codes": [
+ 12.0401,
+ 12.0402,
+ 12.0404,
+ 12.0406,
+ 12.0407,
+ 12.0407,
+ 12.0411,
+ 12.0412,
+ 12.0412,
+ 12.0413,
+ 12.0413,
+ 12.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-1022.00",
+ "title": "First-Line Supervisors of Personal Service Workers",
+ "cip_codes": [
+ 12.0412
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "35-1011.00",
+ "title": "Chefs and Head Cooks",
+ "cip_codes": [
+ 12.05,
+ 12.05,
+ 12.0501,
+ 12.0503,
+ 12.0503,
+ 12.0504,
+ 12.0504,
+ 12.0507,
+ 12.0509,
+ 19.0505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "35-2019.00",
+ "title": "Cooks, All Other",
+ "cip_codes": [
+ 12.05,
+ 12.05,
+ 12.05,
+ 12.0503,
+ 12.0503,
+ 12.0503,
+ 12.0504,
+ 12.0505,
+ 12.0505,
+ 12.0505,
+ 12.0508,
+ 12.0509,
+ 19.0505,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "35-2012.00",
+ "title": "Cooks, Institution and Cafeteria",
+ "cip_codes": [
+ 12.05,
+ 12.05,
+ 12.05,
+ 12.0503,
+ 12.0503,
+ 12.0503,
+ 12.0504,
+ 12.0505,
+ 12.0505,
+ 12.0505,
+ 12.0508,
+ 12.0509,
+ 19.0505,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "35-2014.00",
+ "title": "Cooks, Restaurant",
+ "cip_codes": [
+ 12.05,
+ 12.05,
+ 12.05,
+ 12.0503,
+ 12.0503,
+ 12.0503,
+ 12.0504,
+ 12.0505,
+ 12.0505,
+ 12.0505,
+ 12.0508,
+ 12.0509,
+ 19.0505,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "35-1012.00",
+ "title": "First-Line Supervisors of Food Preparation and Serving Workers",
+ "cip_codes": [
+ 12.05,
+ 12.05,
+ 12.0501,
+ 12.0503,
+ 12.0503,
+ 12.0504,
+ 12.0504,
+ 12.0507,
+ 12.0509,
+ 19.0505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-3011.00",
+ "title": "Bakers",
+ "cip_codes": [
+ 12.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "35-3011.00",
+ "title": "Bartenders",
+ "cip_codes": [
+ 12.0502
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "35-2013.00",
+ "title": "Cooks, Private Household",
+ "cip_codes": [
+ 12.05,
+ 12.05,
+ 12.05,
+ 12.0503,
+ 12.0503,
+ 12.0503,
+ 12.0504,
+ 12.0505,
+ 12.0505,
+ 12.0505,
+ 12.0508,
+ 12.0509,
+ 19.0505,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-3021.00",
+ "title": "Butchers and Meat Cutters",
+ "cip_codes": [
+ 12.0506,
+ 12.0506,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-3023.00",
+ "title": "Slaughterers and Meat Packers",
+ "cip_codes": [
+ 12.0506,
+ 12.0506,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "43-3041.00",
+ "title": "Gambling Cage Workers",
+ "cip_codes": [
+ 12.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "33-9031.00",
+ "title": "Gambling Surveillance Officers and Gambling Investigators",
+ "cip_codes": [
+ 12.0601,
+ 43.0109,
+ 43.0109
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-3011.00",
+ "title": "Gambling Dealers",
+ "cip_codes": [
+ 12.0602,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-6012.00",
+ "title": "Concierges",
+ "cip_codes": [
+ 12.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "33-3021.00",
+ "title": "Detectives and Criminal Investigators",
+ "cip_codes": [
+ 3.0208,
+ 29.0203,
+ 43.01,
+ 43.0107,
+ 43.0114,
+ 43.0115,
+ 43.0121,
+ 43.0122,
+ 43.0123,
+ 43.0402,
+ 43.0403,
+ 43.0405,
+ 43.0407,
+ 43.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "33-1012.00",
+ "title": "First-Line Supervisors of Police and Detectives",
+ "cip_codes": [
+ 3.0208,
+ 29.0203,
+ 43.01,
+ 43.01,
+ 43.0102,
+ 43.0102,
+ 43.0103,
+ 43.0104,
+ 43.0104,
+ 43.0113,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0122,
+ 43.0123,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0401,
+ 43.0404,
+ 43.0407,
+ 43.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "33-3021.06",
+ "title": "Intelligence Analysts",
+ "cip_codes": [
+ 3.0208,
+ 29.0203,
+ 43.01,
+ 43.0107,
+ 43.0114,
+ 43.0115,
+ 43.0121,
+ 43.0122,
+ 43.0123,
+ 43.0402,
+ 43.0403,
+ 43.0405,
+ 43.0407,
+ 43.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "33-3021.02",
+ "title": "Police Identification and Records Officers",
+ "cip_codes": [
+ 3.0208,
+ 29.0203,
+ 43.01,
+ 43.0107,
+ 43.0114,
+ 43.0115,
+ 43.0121,
+ 43.0122,
+ 43.0123,
+ 43.0402,
+ 43.0403,
+ 43.0405,
+ 43.0407,
+ 43.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "55-1015.00",
+ "title": "Command and Control Center Officers",
+ "cip_codes": [
+ 28.0503,
+ 28.0504,
+ 28.0505,
+ 28.0506,
+ 28.0599,
+ 28.0601,
+ 28.0602,
+ 28.0602,
+ 28.0604,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0301,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "55-3015.00",
+ "title": "Command and Control Center Specialists",
+ "cip_codes": [
+ 28.0506,
+ 28.0599,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0401,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 29.0408,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "55-3012.00",
+ "title": "Aircraft Launch and Recovery Specialists",
+ "cip_codes": [
+ 28.0506,
+ 28.0599,
+ 28.0605,
+ 29.0201,
+ 29.0202,
+ 29.0203,
+ 29.0204,
+ 29.0205,
+ 29.0206,
+ 29.0207,
+ 29.0299,
+ 29.0401,
+ 29.0404,
+ 29.0405,
+ 29.0406,
+ 29.0407,
+ 29.0408,
+ 43.0304,
+ 43.0404,
+ 43.0407,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "49-9099.01",
+ "title": "Geothermal Technicians",
+ "cip_codes": [
+ 46.0302,
+ 46.0412,
+ 47,
+ 47.0101,
+ 47.0402,
+ 47.0403,
+ 47.0409,
+ 47.0701,
+ 47.0703,
+ 47.0705,
+ 47.0706,
+ 47.0799,
+ 49.0304,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9099.00",
+ "title": "Installation, Maintenance, and Repair Workers, All Other",
+ "cip_codes": [
+ 46.0302,
+ 46.0412,
+ 47,
+ 47.0101,
+ 47.0402,
+ 47.0403,
+ 47.0409,
+ 47.0701,
+ 47.0703,
+ 47.0705,
+ 47.0706,
+ 47.0799,
+ 49.0304,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "49-2092.00",
+ "title": "Electric Motor, Power Tool, and Related Repairers",
+ "cip_codes": [
+ 14.0299,
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 46.0302,
+ 47.0101,
+ 47.0103,
+ 47.0104,
+ 47.0105,
+ 47.011,
+ 47.0199,
+ 47.0604,
+ 47.0604,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-2011.00",
+ "title": "Computer, Automated Teller, and Office Machine Repairers",
+ "cip_codes": [
+ 47.0102,
+ 47.0104
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-2097.00",
+ "title": "Audiovisual Equipment Installers and Repairers",
+ "cip_codes": [
+ 14.0299,
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 46.0302,
+ 47.0101,
+ 47.0103,
+ 47.0104,
+ 47.0105,
+ 47.011,
+ 47.0199,
+ 47.0604,
+ 47.0604,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-2099.00",
+ "title": "Communications Equipment Operators, All Other",
+ "cip_codes": [
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "49-2021.00",
+ "title": "Radio, Cellular, and Tower Equipment Installers and Repairers",
+ "cip_codes": [
+ 47.0103,
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-2022.00",
+ "title": "Telecommunications Equipment Installers and Repairers, Except Line Installers",
+ "cip_codes": [
+ 47.0103,
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9052.00",
+ "title": "Telecommunications Line Installers and Repairers",
+ "cip_codes": [
+ 46.0301,
+ 46.0303,
+ 46.0399,
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-2094.00",
+ "title": "Electrical and Electronics Repairers, Commercial and Industrial Equipment",
+ "cip_codes": [
+ 14.0299,
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 46.0302,
+ 47.0101,
+ 47.0103,
+ 47.0104,
+ 47.0105,
+ 47.011,
+ 47.0199,
+ 47.0604,
+ 47.0604,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9031.00",
+ "title": "Home Appliance Repairers",
+ "cip_codes": [
+ 47.0106
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-2098.00",
+ "title": "Security and Fire Alarm Systems Installers",
+ "cip_codes": [
+ 14.0299,
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 46.0302,
+ 47.0101,
+ 47.0103,
+ 47.0104,
+ 47.0105,
+ 47.011,
+ 47.0199,
+ 47.0604,
+ 47.0604,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9012.00",
+ "title": "Control and Valve Installers and Repairers, Except Mechanical Door",
+ "cip_codes": [
+ 47.0302,
+ 47.0303,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "49-3043.00",
+ "title": "Rail Car Repairers",
+ "cip_codes": [
+ 1.0201,
+ 1.0204,
+ 1.0205,
+ 1.0205,
+ 1.0207,
+ 1.0299,
+ 47.0302,
+ 47.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-4021.00",
+ "title": "Elevator and Escalator Installers and Repairers",
+ "cip_codes": [
+ 47.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9041.00",
+ "title": "Industrial Machinery Mechanics",
+ "cip_codes": [
+ 47.0303,
+ 47.0303,
+ 47.0303,
+ 47.0303,
+ 47.0701,
+ 47.0705,
+ 47.0706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9043.00",
+ "title": "Maintenance Workers, Machinery",
+ "cip_codes": [
+ 47.0303,
+ 47.0303,
+ 47.0303,
+ 47.0303,
+ 47.0701,
+ 47.0705,
+ 47.0706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9044.00",
+ "title": "Millwrights",
+ "cip_codes": [
+ 47.0303,
+ 47.0303,
+ 47.0303,
+ 47.0303,
+ 47.0701,
+ 47.0705,
+ 47.0706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9045.00",
+ "title": "Refractory Materials Repairers, Except Brickmasons",
+ "cip_codes": [
+ 47.0303,
+ 47.0303,
+ 47.0303,
+ 47.0303,
+ 47.0701,
+ 47.0705,
+ 47.0706
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9094.00",
+ "title": "Locksmiths and Safe Repairers",
+ "cip_codes": [
+ 46.0302,
+ 46.0412,
+ 47,
+ 47.0101,
+ 47.0402,
+ 47.0403,
+ 47.0409,
+ 47.0701,
+ 47.0703,
+ 47.0705,
+ 47.0706,
+ 47.0799,
+ 49.0304,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9063.00",
+ "title": "Musical Instrument Repairers and Tuners",
+ "cip_codes": [
+ 15.0401,
+ 15.0404,
+ 47.0404,
+ 47.0408,
+ 47.0499,
+ 47.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-2061.00",
+ "title": "Timing Device Assemblers and Adjusters",
+ "cip_codes": [
+ 47.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9064.00",
+ "title": "Watch and Clock Repairers",
+ "cip_codes": [
+ 15.0401,
+ 15.0404,
+ 47.0404,
+ 47.0408,
+ 47.0499,
+ 47.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9061.00",
+ "title": "Camera and Photographic Equipment Repairers",
+ "cip_codes": [
+ 15.0401,
+ 15.0404,
+ 47.0404,
+ 47.0408,
+ 47.0499,
+ 47.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-3021.00",
+ "title": "Automotive Body and Related Repairers",
+ "cip_codes": [
+ 15.0803,
+ 15.0807,
+ 47.06,
+ 47.0603,
+ 47.0603,
+ 47.0604,
+ 47.0612,
+ 47.0613,
+ 47.0614,
+ 47.0617
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-3022.00",
+ "title": "Automotive Glass Installers and Repairers",
+ "cip_codes": [
+ 15.0803,
+ 15.0807,
+ 47.06,
+ 47.0603,
+ 47.0603,
+ 47.0604,
+ 47.0612,
+ 47.0613,
+ 47.0614,
+ 47.0617
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-9124.00",
+ "title": "Coating, Painting, and Spraying Machine Setters, Operators, and Tenders",
+ "cip_codes": [
+ 47.0603,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-2093.00",
+ "title": "Electrical and Electronics Installers and Repairers, Transportation Equipment",
+ "cip_codes": [
+ 14.0299,
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 46.0302,
+ 47.0101,
+ 47.0103,
+ 47.0104,
+ 47.0105,
+ 47.011,
+ 47.0199,
+ 47.0604,
+ 47.0604,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-2096.00",
+ "title": "Electronic Equipment Installers and Repairers, Motor Vehicles",
+ "cip_codes": [
+ 14.0299,
+ 15.0303,
+ 15.1702,
+ 46.0301,
+ 46.0302,
+ 47.0101,
+ 47.0103,
+ 47.0104,
+ 47.0105,
+ 47.011,
+ 47.0199,
+ 47.0604,
+ 47.0604,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-3031.00",
+ "title": "Bus and Truck Mechanics and Diesel Engine Specialists",
+ "cip_codes": [
+ 47.0605,
+ 47.0613
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-3053.00",
+ "title": "Outdoor Power Equipment and Other Small Engine Mechanics",
+ "cip_codes": [
+ 15.0806,
+ 47.0606,
+ 47.0606,
+ 47.0611,
+ 47.0616
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-2011.00",
+ "title": "Aircraft Structure, Surfaces, Rigging, and Systems Assemblers",
+ "cip_codes": [
+ 47.0607,
+ 47.0608,
+ 47.0609
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-3091.00",
+ "title": "Bicycle Repairers",
+ "cip_codes": [
+ 47.061,
+ 47.0618,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-3052.00",
+ "title": "Motorcycle Mechanics",
+ "cip_codes": [
+ 15.0806,
+ 47.0606,
+ 47.0606,
+ 47.0611,
+ 47.0616
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-2031.00",
+ "title": "Engine and Other Machine Assemblers",
+ "cip_codes": [
+ 47.0615
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-3092.00",
+ "title": "Recreational Vehicle Service Technicians",
+ "cip_codes": [
+ 47.061,
+ 47.0618,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2061.00",
+ "title": "Construction Laborers",
+ "cip_codes": [
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-1011.00",
+ "title": "First-Line Supervisors of Construction Trades and Extraction Workers",
+ "cip_codes": [
+ 46,
+ 46.0101,
+ 46.0201,
+ 46.0302,
+ 46.0401,
+ 46.0402,
+ 46.0403,
+ 46.0404,
+ 46.0406,
+ 46.0408,
+ 46.041,
+ 46.0412,
+ 46.0413,
+ 46.0414,
+ 46.0415,
+ 46.0502,
+ 46.0503,
+ 46.0504,
+ 46.0505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "47-1011.03",
+ "title": "Solar Energy Installation Managers",
+ "cip_codes": [
+ 46,
+ 46.0101,
+ 46.0201,
+ 46.0302,
+ 46.0401,
+ 46.0402,
+ 46.0403,
+ 46.0404,
+ 46.0406,
+ 46.0408,
+ 46.041,
+ 46.0412,
+ 46.0413,
+ 46.0414,
+ 46.0415,
+ 46.0502,
+ 46.0503,
+ 46.0504,
+ 46.0505
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "47-2021.00",
+ "title": "Brickmasons and Blockmasons",
+ "cip_codes": [
+ 46.0101,
+ 46.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2022.00",
+ "title": "Stonemasons",
+ "cip_codes": [
+ 46.0101,
+ 46.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2044.00",
+ "title": "Tile and Stone Setters",
+ "cip_codes": [
+ 46.0101,
+ 46.0413,
+ 46.0413,
+ 46.0413,
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2031.00",
+ "title": "Carpenters",
+ "cip_codes": [
+ 46.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9051.00",
+ "title": "Electrical Power-Line Installers and Repairers",
+ "cip_codes": [
+ 46.0301,
+ 46.0303,
+ 46.0399,
+ 47.0103
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2111.00",
+ "title": "Electricians",
+ "cip_codes": [
+ 46.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9097.00",
+ "title": "Signal and Track Switch Repairers",
+ "cip_codes": [
+ 46.0302,
+ 46.0412,
+ 47,
+ 47.0101,
+ 47.0402,
+ 47.0403,
+ 47.0409,
+ 47.0701,
+ 47.0703,
+ 47.0705,
+ 47.0706,
+ 47.0799,
+ 49.0304,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "37-1011.00",
+ "title": "First-Line Supervisors of Housekeeping and Janitorial Workers",
+ "cip_codes": [
+ 1.0601,
+ 1.0603,
+ 1.0604,
+ 1.0605,
+ 1.0606,
+ 1.0607,
+ 31.0302,
+ 46.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9071.00",
+ "title": "Maintenance and Repair Workers, General",
+ "cip_codes": [
+ 46.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2051.00",
+ "title": "Cement Masons and Concrete Finishers",
+ "cip_codes": [
+ 46.0402,
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-4011.00",
+ "title": "Construction and Building Inspectors",
+ "cip_codes": [
+ 46.0403
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "47-4011.01",
+ "title": "Energy Auditors",
+ "cip_codes": [
+ 46.0403
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "47-2081.00",
+ "title": "Drywall and Ceiling Tile Installers",
+ "cip_codes": [
+ 46.0404,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2121.00",
+ "title": "Glaziers",
+ "cip_codes": [
+ 46.0406
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2141.00",
+ "title": "Painters, Construction and Maintenance",
+ "cip_codes": [
+ 46.0408,
+ 46.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2142.00",
+ "title": "Paperhangers",
+ "cip_codes": [
+ 46.0408,
+ 46.0408
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-2181.00",
+ "title": "Roofers",
+ "cip_codes": [
+ 46.041
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2221.00",
+ "title": "Structural Iron and Steel Workers",
+ "cip_codes": [
+ 46.0411
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "49-9095.00",
+ "title": "Manufactured Building and Mobile Home Installers",
+ "cip_codes": [
+ 46.0302,
+ 46.0412,
+ 47,
+ 47.0101,
+ 47.0402,
+ 47.0403,
+ 47.0409,
+ 47.0701,
+ 47.0703,
+ 47.0705,
+ 47.0706,
+ 47.0799,
+ 49.0304,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2041.00",
+ "title": "Carpet Installers",
+ "cip_codes": [
+ 46.0101,
+ 46.0413,
+ 46.0413,
+ 46.0413,
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-2042.00",
+ "title": "Floor Layers, Except Carpet, Wood, and Hard Tiles",
+ "cip_codes": [
+ 46.0101,
+ 46.0413,
+ 46.0413,
+ 46.0413,
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2043.00",
+ "title": "Floor Sanders and Finishers",
+ "cip_codes": [
+ 46.0101,
+ 46.0413,
+ 46.0413,
+ 46.0413,
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-2053.00",
+ "title": "Terrazzo Workers and Finishers",
+ "cip_codes": [
+ 46.0402,
+ 46.0413
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-2131.00",
+ "title": "Insulation Workers, Floor, Ceiling, and Wall",
+ "cip_codes": [
+ 46.0414,
+ 46.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2132.00",
+ "title": "Insulation Workers, Mechanical",
+ "cip_codes": [
+ 46.0414,
+ 46.0414
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2152.00",
+ "title": "Plumbers, Pipefitters, and Steamfitters",
+ "cip_codes": [
+ 46.0502,
+ 46.0503,
+ 46.0599,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2152.04",
+ "title": "Solar Thermal Installers and Technicians",
+ "cip_codes": [
+ 46.0502,
+ 46.0503,
+ 46.0599,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-4071.00",
+ "title": "Septic Tank Servicers and Sewer Pipe Cleaners",
+ "cip_codes": [
+ 46.0503
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-5011.00",
+ "title": "Derrick Operators, Oil and Gas",
+ "cip_codes": [
+ 15.0901,
+ 46.0504,
+ 46.0504
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-5023.00",
+ "title": "Earth Drillers, Except Oil and Gas",
+ "cip_codes": [
+ 46.0504,
+ 49.0202,
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-5032.00",
+ "title": "Explosives Workers, Ordnance Handling Experts, and Blasters",
+ "cip_codes": [
+ 46.0504,
+ 46.0505,
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-5012.00",
+ "title": "Rotary Drill Operators, Oil and Gas",
+ "cip_codes": [
+ 15.0901,
+ 46.0504,
+ 46.0504
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-7011.00",
+ "title": "Tour Guides and Escorts",
+ "cip_codes": [
+ 45.0301,
+ 52.0903,
+ 54.0101
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-2011.00",
+ "title": "Airline Pilots, Copilots, and Flight Engineers",
+ "cip_codes": [
+ 49.0102,
+ 49.0102,
+ 49.0108,
+ 49.0108
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "53-2012.00",
+ "title": "Commercial Pilots",
+ "cip_codes": [
+ 49.0102,
+ 49.0102,
+ 49.0108,
+ 49.0108
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "53-2021.00",
+ "title": "Air Traffic Controllers",
+ "cip_codes": [
+ 49.0105,
+ 49.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "53-2022.00",
+ "title": "Airfield Operations Specialists",
+ "cip_codes": [
+ 49.0105,
+ 49.0105
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "53-1044.00",
+ "title": "First-Line Supervisors of Passenger Attendants",
+ "cip_codes": [
+ 49.0106,
+ 49.0208,
+ 49.0208,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-2031.00",
+ "title": "Flight Attendants",
+ "cip_codes": [
+ 49.0106
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-5041.00",
+ "title": "Continuous Mining Machine Operators",
+ "cip_codes": [
+ 49.0202,
+ 49.0202,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-7021.00",
+ "title": "Crane and Tower Operators",
+ "cip_codes": [
+ 49.0202,
+ 49.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-7031.00",
+ "title": "Dredge Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-5022.00",
+ "title": "Excavating and Loading Machine and Dragline Operators, Surface Mining",
+ "cip_codes": [
+ 46.0504,
+ 49.0202,
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-5099.00",
+ "title": "Extraction Workers, All Other",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-4051.00",
+ "title": "Highway Maintenance Workers",
+ "cip_codes": [
+ 49.0202,
+ 49.0207
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-7041.00",
+ "title": "Hoist and Winch Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "45-4022.00",
+ "title": "Logging Equipment Operators",
+ "cip_codes": [
+ 49.0202,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-7199.00",
+ "title": "Material Moving Workers, All Other",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-2073.00",
+ "title": "Operating Engineers and Other Construction Equipment Operators",
+ "cip_codes": [
+ 49.0202,
+ 49.0202,
+ 49.0202,
+ 49.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-2071.00",
+ "title": "Paving, Surfacing, and Tamping Equipment Operators",
+ "cip_codes": [
+ 49.0202,
+ 49.0202,
+ 49.0202,
+ 49.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-2072.00",
+ "title": "Pile Driver Operators",
+ "cip_codes": [
+ 49.0202,
+ 49.0202,
+ 49.0202,
+ 49.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "47-4061.00",
+ "title": "Rail-Track Laying and Maintenance Equipment Operators",
+ "cip_codes": [
+ 49.0202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "47-5049.00",
+ "title": "Underground Mining Machine Operators, All Other",
+ "cip_codes": [
+ 49.0202,
+ 49.0202,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-3051.00",
+ "title": "Bus Drivers, School",
+ "cip_codes": [
+ 49.0205,
+ 49.0205,
+ 49.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-3052.00",
+ "title": "Bus Drivers, Transit and Intercity",
+ "cip_codes": [
+ 49.0205,
+ 49.0205,
+ 49.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-3032.00",
+ "title": "Heavy and Tractor-Trailer Truck Drivers",
+ "cip_codes": [
+ 49.0205,
+ 49.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-3033.00",
+ "title": "Light Truck Drivers",
+ "cip_codes": [
+ 49.0205,
+ 49.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-3053.00",
+ "title": "Shuttle Drivers and Chauffeurs",
+ "cip_codes": [
+ 49.0205,
+ 49.0205,
+ 49.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-1043.00",
+ "title": "First-Line Supervisors of Material-Moving Machine and Vehicle Operators",
+ "cip_codes": [
+ 49.0106,
+ 49.0208,
+ 49.0208,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "53-1049.00",
+ "title": "First-Line Supervisors of Transportation Workers, All Other",
+ "cip_codes": [
+ 49.0106,
+ 49.0208,
+ 49.0208,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-4011.00",
+ "title": "Locomotive Engineers",
+ "cip_codes": [
+ 49.0208,
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-4099.00",
+ "title": "Rail Transportation Workers, All Other",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-4013.00",
+ "title": "Rail Yard Engineers, Dinkey Operators, and Hostlers",
+ "cip_codes": [
+ 49.0208,
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-4022.00",
+ "title": "Railroad Brake, Signal, and Switch Operators and Locomotive Firers",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "53-4031.00",
+ "title": "Railroad Conductors and Yardmasters",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-4041.00",
+ "title": "Subway and Streetcar Operators",
+ "cip_codes": [
+ 49.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-7051.00",
+ "title": "Industrial Truck and Tractor Operators",
+ "cip_codes": [
+ 49.0209
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-5021.00",
+ "title": "Captains, Mates, and Pilots of Water Vessels",
+ "cip_codes": [
+ 49.0303,
+ 49.0309,
+ 49.0309,
+ 49.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "49-9092.00",
+ "title": "Commercial Divers",
+ "cip_codes": [
+ 46.0302,
+ 46.0412,
+ 47,
+ 47.0101,
+ 47.0402,
+ 47.0403,
+ 47.0409,
+ 47.0701,
+ 47.0703,
+ 47.0705,
+ 47.0706,
+ 47.0799,
+ 49.0304,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-5022.00",
+ "title": "Motorboat Operators",
+ "cip_codes": [
+ 49.0303,
+ 49.0309,
+ 49.0309,
+ 49.0399
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "53-5031.00",
+ "title": "Ship Engineers",
+ "cip_codes": [
+ 49.0309
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-4044.00",
+ "title": "Hydrologic Technicians",
+ "cip_codes": [
+ 3.0104,
+ 15.0506,
+ 15.0507,
+ 15.0508,
+ 15.0901,
+ 15.0903,
+ 15.0999,
+ 26.1006,
+ 30.3301,
+ 30.4101,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0605,
+ 41,
+ 41,
+ 41.0303,
+ 41.0399,
+ 41.0399,
+ 41.0399,
+ 41.9999,
+ 41.9999,
+ 41.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-4099.00",
+ "title": "Life, Physical, and Social Science Technicians, All Other",
+ "cip_codes": [
+ 26.0101,
+ 40.0401,
+ 40.0501,
+ 40.051,
+ 40.1001,
+ 40.1002,
+ 41,
+ 41.0303,
+ 41.0399,
+ 41.9999,
+ 43.01,
+ 43.01,
+ 43.0104,
+ 43.0402,
+ 43.0402,
+ 43.0406,
+ 43.0406,
+ 45.0205,
+ 45.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-4099.01",
+ "title": "Quality Control Analysts",
+ "cip_codes": [
+ 26.0101,
+ 40.0401,
+ 40.0501,
+ 40.051,
+ 40.1001,
+ 40.1002,
+ 41,
+ 41.0303,
+ 41.0399,
+ 41.9999,
+ 43.01,
+ 43.01,
+ 43.0104,
+ 43.0402,
+ 43.0402,
+ 43.0406,
+ 43.0406,
+ 45.0205,
+ 45.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-4099.03",
+ "title": "Remote Sensing Technicians",
+ "cip_codes": [
+ 26.0101,
+ 40.0401,
+ 40.0501,
+ 40.051,
+ 40.1001,
+ 40.1002,
+ 41,
+ 41.0303,
+ 41.0399,
+ 41.9999,
+ 43.01,
+ 43.01,
+ 43.0104,
+ 43.0402,
+ 43.0402,
+ 43.0406,
+ 43.0406,
+ 45.0205,
+ 45.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-8011.00",
+ "title": "Nuclear Power Reactor Operators",
+ "cip_codes": [
+ 15.1702,
+ 15.1705,
+ 41.0205,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "51-9011.00",
+ "title": "Chemical Equipment Operators and Tenders",
+ "cip_codes": [
+ 1.1003,
+ 1.1004,
+ 1.1005,
+ 41.0301,
+ 41.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-8091.00",
+ "title": "Chemical Plant and System Operators",
+ "cip_codes": [
+ 15.0903,
+ 41.0301,
+ 41.0303,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-4031.00",
+ "title": "Chemical Technicians",
+ "cip_codes": [
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0509,
+ 41.0301,
+ 41.0303
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-1062.00",
+ "title": "Area, Ethnic, and Cultural Studies Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 4.0301,
+ 4.1001,
+ 5.0101,
+ 5.0102,
+ 5.0103,
+ 5.0104,
+ 5.0105,
+ 5.0106,
+ 5.0107,
+ 5.0108,
+ 5.0109,
+ 5.011,
+ 5.0111,
+ 5.0112,
+ 5.0113,
+ 5.0114,
+ 5.0115,
+ 5.0116,
+ 5.0117,
+ 5.0118,
+ 5.0119,
+ 5.012,
+ 5.0121,
+ 5.0122,
+ 5.0123,
+ 5.0124,
+ 5.0125,
+ 5.0126,
+ 5.0127,
+ 5.0128,
+ 5.0129,
+ 5.013,
+ 5.0131,
+ 5.0132,
+ 5.0133,
+ 5.0134,
+ 5.0135,
+ 5.0136,
+ 5.0199,
+ 5.02,
+ 5.0201,
+ 5.0202,
+ 5.0203,
+ 5.0206,
+ 5.0207,
+ 5.0208,
+ 5.0209,
+ 5.021,
+ 5.0211,
+ 5.0212,
+ 5.0299,
+ 5.9999,
+ 13.0607,
+ 13.1332,
+ 13.1335,
+ 19.1001,
+ 30.1001,
+ 30.1202,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.3601,
+ 30.3901,
+ 30.4001,
+ 30.4001,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4901,
+ 30.5101,
+ 30.5101,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 38.0205,
+ 38.0206,
+ 38.0208,
+ 38.0209,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1004,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1103,
+ 45.1199,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.1505,
+ 51.2007,
+ 51.3204,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-3091.00",
+ "title": "Interpreters and Translators",
+ "cip_codes": [
+ 5.0211,
+ 9.0101,
+ 9.0702,
+ 10.0105,
+ 10.0204,
+ 13.1003,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1603,
+ 16.1699,
+ 16.1801,
+ 16.9999,
+ 22.0303,
+ 22.0304,
+ 22.0304,
+ 22.0305,
+ 30.4001,
+ 30.4501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "23-2099.00",
+ "title": "Legal Support Workers, All Other",
+ "cip_codes": [
+ 22,
+ 22.0302,
+ 22.0302,
+ 22.0304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "23-2011.00",
+ "title": "Paralegals and Legal Assistants",
+ "cip_codes": [
+ 22,
+ 22.0302
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "23-1021.00",
+ "title": "Administrative Law Judges, Adjudicators, and Hearing Officers",
+ "cip_codes": [
+ 22.0101,
+ 22.0101,
+ 22.0101,
+ 30.0501,
+ 30.2801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "23-1022.00",
+ "title": "Arbitrators, Mediators, and Conciliators",
+ "cip_codes": [
+ 22.0101,
+ 22.0101,
+ 22.0101,
+ 30.0501,
+ 30.2801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "23-1023.00",
+ "title": "Judges, Magistrate Judges, and Magistrates",
+ "cip_codes": [
+ 22.0101,
+ 22.0101,
+ 22.0101,
+ 30.0501,
+ 30.2801
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "23-1012.00",
+ "title": "Judicial Law Clerks",
+ "cip_codes": [
+ 22.0101,
+ 22.0101,
+ 22.0201,
+ 22.0202,
+ 22.0203,
+ 22.0204,
+ 22.0205,
+ 22.0206,
+ 22.0207,
+ 22.0208,
+ 22.0209,
+ 22.021,
+ 22.0211,
+ 22.0212,
+ 22.0213,
+ 22.0214,
+ 22.0215,
+ 22.0216,
+ 22.0217,
+ 22.0218,
+ 22.0219,
+ 22.022,
+ 22.0221,
+ 22.0222,
+ 22.0223,
+ 22.0224,
+ 22.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "23-1011.00",
+ "title": "Lawyers",
+ "cip_codes": [
+ 22.0101,
+ 22.0101,
+ 22.0201,
+ 22.0202,
+ 22.0203,
+ 22.0204,
+ 22.0205,
+ 22.0206,
+ 22.0207,
+ 22.0208,
+ 22.0209,
+ 22.021,
+ 22.0211,
+ 22.0212,
+ 22.0213,
+ 22.0214,
+ 22.0215,
+ 22.0216,
+ 22.0217,
+ 22.0218,
+ 22.0219,
+ 22.022,
+ 22.0221,
+ 22.0222,
+ 22.0223,
+ 22.0224,
+ 22.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 5
+ }
+ },
+ {
+ "soc_code": "43-6012.00",
+ "title": "Legal Secretaries and Administrative Assistants",
+ "cip_codes": [
+ 1.8201,
+ 1.8204,
+ 22.0301,
+ 51.071,
+ 51.0711,
+ 51.0712,
+ 51.0714,
+ 51.0716,
+ 52.0401,
+ 52.0401,
+ 52.0402,
+ 52.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "23-2093.00",
+ "title": "Title Examiners, Abstractors, and Searchers",
+ "cip_codes": [
+ 22,
+ 22.0302,
+ 22.0302,
+ 22.0304
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-3092.00",
+ "title": "Court Reporters and Simultaneous Captioners",
+ "cip_codes": [
+ 5.0211,
+ 9.0101,
+ 9.0702,
+ 10.0105,
+ 10.0204,
+ 13.1003,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1603,
+ 16.1699,
+ 16.1801,
+ 16.9999,
+ 22.0303,
+ 22.0304,
+ 22.0304,
+ 22.0305,
+ 30.4001,
+ 30.4501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-1123.00",
+ "title": "English Language and Literature Teachers, Postsecondary",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0702,
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 9.0908,
+ 9.9999,
+ 13.1302,
+ 13.1305,
+ 13.1306,
+ 13.1312,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.133,
+ 13.1333,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0104,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1801,
+ 16.9999,
+ 23.0101,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1402,
+ 23.1403,
+ 23.1404,
+ 23.1405,
+ 23.1499,
+ 23.9999,
+ 30.1301,
+ 30.2101,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.3601,
+ 30.4001,
+ 30.4501,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.4801,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 38.0001,
+ 38.0101,
+ 38.0103,
+ 38.0104,
+ 38.0199,
+ 38.0201,
+ 38.0202,
+ 38.0203,
+ 38.0204,
+ 38.0207,
+ 38.9999,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0501,
+ 39.0502,
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0706,
+ 39.0802,
+ 50.0101,
+ 50.0102,
+ 50.0201,
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0401,
+ 50.0404,
+ 50.0406,
+ 50.0407,
+ 50.0409,
+ 50.041,
+ 50.0501,
+ 50.0502,
+ 50.0504,
+ 50.0505,
+ 50.0506,
+ 50.0507,
+ 50.0509,
+ 50.051,
+ 50.0511,
+ 50.0512,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0605,
+ 50.0607,
+ 50.0607,
+ 50.0699,
+ 50.0701,
+ 50.0702,
+ 50.0703,
+ 50.0705,
+ 50.0706,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0902,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.1001,
+ 50.1002,
+ 50.1003,
+ 50.1004,
+ 50.1099,
+ 50.1101,
+ 50.9999,
+ 51.3201,
+ 51.3205,
+ 52.0501,
+ 52.0599,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "21-2099.00",
+ "title": "Religious Workers, All Other",
+ "cip_codes": [
+ 30.2502,
+ 30.5301,
+ 39.0302,
+ 39.0399,
+ 39.0599,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0704,
+ 39.0705,
+ 39.0706,
+ 39.0799,
+ 39.0802
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "21-1099.00",
+ "title": "Community and Social Service Specialists, All Other",
+ "cip_codes": [
+ 9.0905,
+ 9.0905,
+ 19.071,
+ 19.071,
+ 19.0711,
+ 19.0712,
+ 30.1701,
+ 30.2502,
+ 39.0701,
+ 39.0799,
+ 44,
+ 44,
+ 44.0201,
+ 44.0701,
+ 51.0001,
+ 51.0001,
+ 51.0504,
+ 51.1504,
+ 51.1504,
+ 51.2201,
+ 51.2201,
+ 51.2207,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2209,
+ 51.221,
+ 51.2212,
+ 51.2212,
+ 51.3206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "21-1093.00",
+ "title": "Social and Human Service Assistants",
+ "cip_codes": [
+ 9.0905,
+ 9.0905,
+ 19.071,
+ 19.071,
+ 19.0711,
+ 19.0712,
+ 30.1701,
+ 30.2502,
+ 39.0701,
+ 39.0799,
+ 44,
+ 44,
+ 44.0201,
+ 44.0701,
+ 51.0001,
+ 51.0001,
+ 51.0504,
+ 51.1504,
+ 51.1504,
+ 51.2201,
+ 51.2201,
+ 51.2207,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2209,
+ 51.221,
+ 51.2212,
+ 51.2212,
+ 51.3206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-4061.00",
+ "title": "Eligibility Interviewers, Government Programs",
+ "cip_codes": [
+ 44.0201
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "11-1031.00",
+ "title": "Legislators",
+ "cip_codes": [
+ 44.0401,
+ 44.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9131.00",
+ "title": "Postmasters and Mail Superintendents",
+ "cip_codes": [
+ 44.0401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-1065.00",
+ "title": "Political Science Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 4.0301,
+ 4.1001,
+ 5.0101,
+ 5.0102,
+ 5.0103,
+ 5.0104,
+ 5.0105,
+ 5.0106,
+ 5.0107,
+ 5.0108,
+ 5.0109,
+ 5.011,
+ 5.0111,
+ 5.0112,
+ 5.0113,
+ 5.0114,
+ 5.0115,
+ 5.0116,
+ 5.0117,
+ 5.0118,
+ 5.0119,
+ 5.012,
+ 5.0121,
+ 5.0122,
+ 5.0123,
+ 5.0124,
+ 5.0125,
+ 5.0126,
+ 5.0127,
+ 5.0128,
+ 5.0129,
+ 5.013,
+ 5.0131,
+ 5.0132,
+ 5.0133,
+ 5.0134,
+ 5.0135,
+ 5.0136,
+ 5.0199,
+ 5.02,
+ 5.0201,
+ 5.0202,
+ 5.0203,
+ 5.0206,
+ 5.0207,
+ 5.0208,
+ 5.0209,
+ 5.021,
+ 5.0211,
+ 5.0212,
+ 5.0299,
+ 5.9999,
+ 13.0607,
+ 13.1332,
+ 13.1335,
+ 19.1001,
+ 30.1001,
+ 30.1202,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.3601,
+ 30.3901,
+ 30.4001,
+ 30.4001,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4901,
+ 30.5101,
+ 30.5101,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 38.0205,
+ 38.0206,
+ 38.0208,
+ 38.0209,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1004,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1103,
+ 45.1199,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.1505,
+ 51.2007,
+ 51.3204,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3094.00",
+ "title": "Political Scientists",
+ "cip_codes": [
+ 3.0209,
+ 4.0801,
+ 4.0802,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 16.0199,
+ 19.0702,
+ 30.0501,
+ 30.1001,
+ 30.1101,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1301,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.2701,
+ 30.2901,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4001,
+ 30.4101,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4601,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.5101,
+ 30.5101,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0503,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3205,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-4061.00",
+ "title": "Social Science Research Assistants",
+ "cip_codes": [
+ 3.0204,
+ 30.1701,
+ 30.4601,
+ 42.0101,
+ 42.2708,
+ 44.0501,
+ 44.0502,
+ 44.0503,
+ 44.0504,
+ 45.0101,
+ 45.0103,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.1001,
+ 45.1004,
+ 45.1101,
+ 45.1102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "21-1092.00",
+ "title": "Probation Officers and Correctional Treatment Specialists",
+ "cip_codes": [
+ 9.0905,
+ 9.0905,
+ 19.071,
+ 19.071,
+ 19.0711,
+ 19.0712,
+ 30.1701,
+ 30.2502,
+ 39.0701,
+ 39.0799,
+ 44,
+ 44,
+ 44.0201,
+ 44.0701,
+ 51.0001,
+ 51.0001,
+ 51.0504,
+ 51.1504,
+ 51.1504,
+ 51.2201,
+ 51.2201,
+ 51.2207,
+ 51.2207,
+ 51.2208,
+ 51.2209,
+ 51.2209,
+ 51.221,
+ 51.2212,
+ 51.2212,
+ 51.3206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "27-4012.00",
+ "title": "Broadcast Technicians",
+ "cip_codes": [
+ 1.0802,
+ 10.0105,
+ 10.0105,
+ 10.0201,
+ 10.0201,
+ 10.0202,
+ 10.0202,
+ 10.0203,
+ 10.0203,
+ 10.0299,
+ 15.0307,
+ 50.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "27-3099.00",
+ "title": "Media and Communication Workers, All Other",
+ "cip_codes": [
+ 5.0211,
+ 9.0101,
+ 9.0702,
+ 10.0105,
+ 10.0204,
+ 13.1003,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1603,
+ 16.1699,
+ 16.1801,
+ 16.9999,
+ 22.0303,
+ 22.0304,
+ 22.0304,
+ 22.0305,
+ 30.4001,
+ 30.4501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "27-4015.00",
+ "title": "Lighting Technicians",
+ "cip_codes": [
+ 1.0802,
+ 10.0105,
+ 10.0105,
+ 10.0201,
+ 10.0201,
+ 10.0202,
+ 10.0202,
+ 10.0203,
+ 10.0203,
+ 10.0299,
+ 15.0307,
+ 50.0913
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-5111.00",
+ "title": "Prepress Technicians and Workers",
+ "cip_codes": [
+ 10.0301,
+ 10.0302,
+ 10.0302,
+ 10.0303,
+ 10.0305,
+ 10.0305,
+ 10.0306,
+ 10.0307,
+ 10.0307,
+ 10.0308,
+ 10.0399,
+ 10.0399,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-5112.00",
+ "title": "Printing Press Operators",
+ "cip_codes": [
+ 10.0301,
+ 10.0302,
+ 10.0302,
+ 10.0303,
+ 10.0305,
+ 10.0305,
+ 10.0306,
+ 10.0307,
+ 10.0307,
+ 10.0308,
+ 10.0399,
+ 10.0399,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "43-9031.00",
+ "title": "Desktop Publishers",
+ "cip_codes": [
+ 10.0303,
+ 10.0308
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "51-9194.00",
+ "title": "Etchers and Engravers",
+ "cip_codes": [
+ 10.0399,
+ 99.9999,
+ 99.9999,
+ 99.9999,
+ 99.9999,
+ 99.9999,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "33-3012.00",
+ "title": "Correctional Officers and Jailers",
+ "cip_codes": [
+ 43.01,
+ 43.0102,
+ 43.0107,
+ 43.011,
+ 43.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-1111.00",
+ "title": "Criminal Justice and Law Enforcement Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0208,
+ 22.0101,
+ 22.0201,
+ 22.0203,
+ 22.0204,
+ 22.0205,
+ 22.0206,
+ 22.0207,
+ 22.0208,
+ 22.0209,
+ 22.021,
+ 22.0211,
+ 22.0212,
+ 22.0213,
+ 22.0214,
+ 22.0215,
+ 22.0216,
+ 22.0217,
+ 22.0218,
+ 22.0219,
+ 22.022,
+ 22.0221,
+ 22.0222,
+ 22.0223,
+ 22.0224,
+ 22.0299,
+ 30.1101,
+ 30.2801,
+ 39.0802,
+ 43.01,
+ 43.0102,
+ 43.0103,
+ 43.0104,
+ 43.0107,
+ 43.0109,
+ 43.011,
+ 43.0112,
+ 43.0113,
+ 43.0114,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0121,
+ 43.0122,
+ 43.0123,
+ 43.0199,
+ 43.0304,
+ 43.0399,
+ 43.0401,
+ 43.0402,
+ 43.0403,
+ 43.0404,
+ 43.0405,
+ 43.0406,
+ 43.0407,
+ 43.0408,
+ 43.0499,
+ 44.0701,
+ 44.0703,
+ 44.0799,
+ 45.0401,
+ 51.1503,
+ 52.1002
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "33-3051.04",
+ "title": "Customs and Border Protection Officers",
+ "cip_codes": [
+ 3.0208,
+ 43.01,
+ 43.0107,
+ 43.0109,
+ 43.0114,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0122,
+ 43.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "33-1011.00",
+ "title": "First-Line Supervisors of Correctional Officers",
+ "cip_codes": [
+ 3.0208,
+ 29.0203,
+ 43.01,
+ 43.01,
+ 43.0102,
+ 43.0102,
+ 43.0103,
+ 43.0104,
+ 43.0104,
+ 43.0113,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0122,
+ 43.0123,
+ 43.0301,
+ 43.0302,
+ 43.0303,
+ 43.0304,
+ 43.0401,
+ 43.0404,
+ 43.0407,
+ 43.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "33-3051.00",
+ "title": "Police and Sheriff's Patrol Officers",
+ "cip_codes": [
+ 3.0208,
+ 43.01,
+ 43.0107,
+ 43.0109,
+ 43.0114,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0122,
+ 43.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "33-3011.00",
+ "title": "Bailiffs",
+ "cip_codes": [
+ 43.01,
+ 43.0102,
+ 43.0107,
+ 43.011,
+ 43.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "33-9021.00",
+ "title": "Private Detectives and Investigators",
+ "cip_codes": [
+ 43.0107,
+ 43.0115,
+ 43.012,
+ 43.0122,
+ 43.0123,
+ 43.0403,
+ 43.0405
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "33-1091.00",
+ "title": "First-Line Supervisors of Security Workers",
+ "cip_codes": [
+ 43.0109,
+ 43.0112,
+ 43.0112,
+ 43.0123,
+ 43.0399,
+ 43.0399,
+ 43.0401,
+ 43.0401,
+ 43.0404,
+ 43.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "33-9032.00",
+ "title": "Security Guards",
+ "cip_codes": [
+ 12.0601,
+ 43.0109,
+ 43.0109
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "33-3052.00",
+ "title": "Transit and Railroad Police",
+ "cip_codes": [
+ 3.0208,
+ 43.01,
+ 43.0107,
+ 43.0109,
+ 43.0114,
+ 43.0115,
+ 43.0119,
+ 43.012,
+ 43.0122,
+ 43.0402
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "33-1099.00",
+ "title": "First-Line Supervisors of Protective Service Workers, All Other",
+ "cip_codes": [
+ 43.0109,
+ 43.0112,
+ 43.0112,
+ 43.0123,
+ 43.0399,
+ 43.0399,
+ 43.0401,
+ 43.0401,
+ 43.0404,
+ 43.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "33-2021.00",
+ "title": "Fire Inspectors and Investigators",
+ "cip_codes": [
+ 3.0208,
+ 43.0201,
+ 43.0203,
+ 43.0203,
+ 43.0205,
+ 43.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "33-2011.00",
+ "title": "Firefighters",
+ "cip_codes": [
+ 3.0208,
+ 43.0201,
+ 43.0203,
+ 43.0206,
+ 43.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "33-1021.00",
+ "title": "First-Line Supervisors of Firefighting and Prevention Workers",
+ "cip_codes": [
+ 3.0208,
+ 43.0201,
+ 43.0202,
+ 43.0203,
+ 43.0205,
+ 43.0299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "33-2022.00",
+ "title": "Forest Fire Inspectors and Prevention Specialists",
+ "cip_codes": [
+ 3.0208,
+ 43.0201,
+ 43.0203,
+ 43.0203,
+ 43.0205,
+ 43.0206
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-1064.00",
+ "title": "Geography Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 4.0301,
+ 4.1001,
+ 5.0101,
+ 5.0102,
+ 5.0103,
+ 5.0104,
+ 5.0105,
+ 5.0106,
+ 5.0107,
+ 5.0108,
+ 5.0109,
+ 5.011,
+ 5.0111,
+ 5.0112,
+ 5.0113,
+ 5.0114,
+ 5.0115,
+ 5.0116,
+ 5.0117,
+ 5.0118,
+ 5.0119,
+ 5.012,
+ 5.0121,
+ 5.0122,
+ 5.0123,
+ 5.0124,
+ 5.0125,
+ 5.0126,
+ 5.0127,
+ 5.0128,
+ 5.0129,
+ 5.013,
+ 5.0131,
+ 5.0132,
+ 5.0133,
+ 5.0134,
+ 5.0135,
+ 5.0136,
+ 5.0199,
+ 5.02,
+ 5.0201,
+ 5.0202,
+ 5.0203,
+ 5.0206,
+ 5.0207,
+ 5.0208,
+ 5.0209,
+ 5.021,
+ 5.0211,
+ 5.0212,
+ 5.0299,
+ 5.9999,
+ 13.0607,
+ 13.1332,
+ 13.1335,
+ 19.1001,
+ 30.1001,
+ 30.1202,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.3601,
+ 30.3901,
+ 30.4001,
+ 30.4001,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4901,
+ 30.5101,
+ 30.5101,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 38.0205,
+ 38.0206,
+ 38.0208,
+ 38.0209,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1004,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1103,
+ 45.1199,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.1505,
+ 51.2007,
+ 51.3204,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-3011.00",
+ "title": "Broadcast Announcers and Radio Disc Jockeys",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0402,
+ 9.0701,
+ 9.0906
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-4071.00",
+ "title": "Forest and Conservation Technicians",
+ "cip_codes": [
+ 3.0101,
+ 3.0104,
+ 3.0501,
+ 3.051,
+ 3.0511,
+ 3.0599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-1032.00",
+ "title": "Foresters",
+ "cip_codes": [
+ 1.0308,
+ 1.1106,
+ 3.0101,
+ 3.0101,
+ 3.0201,
+ 3.0201,
+ 3.0205,
+ 3.0206,
+ 3.0501,
+ 3.0501,
+ 3.0502,
+ 3.0502,
+ 3.0506,
+ 3.0506,
+ 3.0508,
+ 3.0509,
+ 3.051,
+ 3.0599,
+ 3.0601,
+ 26.1301,
+ 26.1305,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.4401
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "33-3031.00",
+ "title": "Fish and Game Wardens",
+ "cip_codes": [
+ 3.0208
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "33-9092.00",
+ "title": "Lifeguards, Ski Patrol, and Other Recreational Protective Service Workers",
+ "cip_codes": [
+ 3.0208,
+ 99.9999,
+ 99.9999,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-3099.01",
+ "title": "Transportation Planners",
+ "cip_codes": [
+ 3.0209,
+ 4.0801,
+ 4.0802,
+ 13.0601,
+ 13.0603,
+ 13.0604,
+ 13.0607,
+ 13.0699,
+ 16.0199,
+ 19.0702,
+ 30.0501,
+ 30.1001,
+ 30.1101,
+ 30.1201,
+ 30.1202,
+ 30.1299,
+ 30.1301,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.2701,
+ 30.2901,
+ 30.3301,
+ 30.3401,
+ 30.3501,
+ 30.3801,
+ 30.4001,
+ 30.4101,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4601,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.5101,
+ 30.5101,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0503,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1004,
+ 45.1099,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3204,
+ 51.3205,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "45-3031.00",
+ "title": "Fishing and Hunting Workers",
+ "cip_codes": [
+ 3.0301
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 2,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-1124.00",
+ "title": "Foreign Language and Literature Teachers, Postsecondary",
+ "cip_codes": [
+ 9.01,
+ 9.0101,
+ 9.0102,
+ 9.0401,
+ 9.0402,
+ 9.0405,
+ 9.0406,
+ 9.0407,
+ 9.0499,
+ 9.0701,
+ 9.0702,
+ 9.09,
+ 9.0902,
+ 9.0903,
+ 9.0904,
+ 9.0905,
+ 9.0906,
+ 9.0907,
+ 9.0908,
+ 9.9999,
+ 13.1302,
+ 13.1305,
+ 13.1306,
+ 13.1312,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1328,
+ 13.133,
+ 13.1333,
+ 16.0101,
+ 16.0102,
+ 16.0103,
+ 16.0104,
+ 16.0105,
+ 16.0201,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0304,
+ 16.0399,
+ 16.04,
+ 16.0401,
+ 16.0402,
+ 16.0404,
+ 16.0405,
+ 16.0406,
+ 16.0407,
+ 16.0408,
+ 16.0409,
+ 16.041,
+ 16.0499,
+ 16.05,
+ 16.0501,
+ 16.0502,
+ 16.0503,
+ 16.0504,
+ 16.0505,
+ 16.0506,
+ 16.0599,
+ 16.0601,
+ 16.07,
+ 16.0701,
+ 16.0702,
+ 16.0704,
+ 16.0705,
+ 16.0706,
+ 16.0707,
+ 16.0799,
+ 16.0801,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0904,
+ 16.0905,
+ 16.0906,
+ 16.0907,
+ 16.0908,
+ 16.0999,
+ 16.1001,
+ 16.11,
+ 16.1101,
+ 16.1102,
+ 16.1103,
+ 16.1199,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1301,
+ 16.14,
+ 16.1401,
+ 16.1402,
+ 16.1403,
+ 16.1404,
+ 16.1405,
+ 16.1406,
+ 16.1407,
+ 16.1408,
+ 16.1409,
+ 16.1499,
+ 16.1501,
+ 16.1502,
+ 16.1503,
+ 16.1504,
+ 16.1599,
+ 16.1601,
+ 16.1602,
+ 16.1801,
+ 16.9999,
+ 23.0101,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 23.1399,
+ 23.1401,
+ 23.1402,
+ 23.1403,
+ 23.1404,
+ 23.1405,
+ 23.1499,
+ 23.9999,
+ 30.1301,
+ 30.2101,
+ 30.2201,
+ 30.2202,
+ 30.2299,
+ 30.3601,
+ 30.4001,
+ 30.4501,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4701,
+ 30.4801,
+ 30.5101,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 38.0001,
+ 38.0101,
+ 38.0103,
+ 38.0104,
+ 38.0199,
+ 38.0201,
+ 38.0202,
+ 38.0203,
+ 38.0204,
+ 38.0207,
+ 38.9999,
+ 39.0201,
+ 39.0301,
+ 39.0401,
+ 39.0501,
+ 39.0502,
+ 39.0601,
+ 39.0602,
+ 39.0604,
+ 39.0605,
+ 39.0699,
+ 39.0701,
+ 39.0703,
+ 39.0706,
+ 39.0802,
+ 50.0101,
+ 50.0102,
+ 50.0201,
+ 50.0301,
+ 50.0302,
+ 50.0399,
+ 50.0401,
+ 50.0404,
+ 50.0406,
+ 50.0407,
+ 50.0409,
+ 50.041,
+ 50.0501,
+ 50.0502,
+ 50.0504,
+ 50.0505,
+ 50.0506,
+ 50.0507,
+ 50.0509,
+ 50.051,
+ 50.0511,
+ 50.0512,
+ 50.0599,
+ 50.0601,
+ 50.0602,
+ 50.0605,
+ 50.0607,
+ 50.0607,
+ 50.0699,
+ 50.0701,
+ 50.0702,
+ 50.0703,
+ 50.0705,
+ 50.0706,
+ 50.0708,
+ 50.0709,
+ 50.071,
+ 50.0711,
+ 50.0712,
+ 50.0713,
+ 50.0714,
+ 50.0799,
+ 50.0902,
+ 50.0903,
+ 50.0904,
+ 50.0905,
+ 50.0906,
+ 50.0907,
+ 50.0908,
+ 50.091,
+ 50.0911,
+ 50.0912,
+ 50.0913,
+ 50.0914,
+ 50.0915,
+ 50.0916,
+ 50.0917,
+ 50.0999,
+ 50.1001,
+ 50.1002,
+ 50.1003,
+ 50.1004,
+ 50.1099,
+ 50.1101,
+ 50.9999,
+ 51.3201,
+ 51.3205,
+ 52.0501,
+ 52.0599,
+ 54.0101,
+ 54.0102,
+ 54.0103,
+ 54.0104,
+ 54.0105,
+ 54.0106,
+ 54.0107,
+ 54.0108,
+ 54.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3039.03",
+ "title": "Clinical Neuropsychologists",
+ "cip_codes": [
+ 19.0702,
+ 19.0706,
+ 19.0711,
+ 30.1701,
+ 42.0101,
+ 42.0101,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2806,
+ 42.2807,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.281,
+ 42.2811,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 45.0401,
+ 51.1507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-3039.02",
+ "title": "Neuropsychologists",
+ "cip_codes": [
+ 19.0702,
+ 19.0706,
+ 19.0711,
+ 30.1701,
+ 42.0101,
+ 42.0101,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2806,
+ 42.2807,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.281,
+ 42.2811,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 45.0401,
+ 51.1507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-3039.00",
+ "title": "Psychologists, All Other",
+ "cip_codes": [
+ 19.0702,
+ 19.0706,
+ 19.0711,
+ 30.1701,
+ 42.0101,
+ 42.0101,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2806,
+ 42.2807,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.281,
+ 42.2811,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 45.0401,
+ 51.1507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-2099.00",
+ "title": "Physical Scientists, All Other",
+ "cip_codes": [
+ 30.1801,
+ 30.3201,
+ 40.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "19-2099.01",
+ "title": "Remote Sensing Scientists and Technologists",
+ "cip_codes": [
+ 30.1801,
+ 30.3201,
+ 40.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1192.00",
+ "title": "Family and Consumer Sciences Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0207,
+ 1.0504,
+ 1.0509,
+ 11.0801,
+ 11.0802,
+ 11.0803,
+ 12.0509,
+ 13.1211,
+ 13.1301,
+ 13.1303,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1314,
+ 13.1319,
+ 13.132,
+ 13.1327,
+ 15.1503,
+ 16.1602,
+ 19.0101,
+ 19.0201,
+ 19.0202,
+ 19.0299,
+ 19.0401,
+ 19.0402,
+ 19.0403,
+ 19.0499,
+ 19.0501,
+ 19.0504,
+ 19.0505,
+ 19.0599,
+ 19.0601,
+ 19.0701,
+ 19.0702,
+ 19.0704,
+ 19.0706,
+ 19.0708,
+ 19.0901,
+ 19.0902,
+ 19.0904,
+ 19.1001,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 24.0101,
+ 24.0102,
+ 24.0103,
+ 30.0101,
+ 30.0501,
+ 30.0601,
+ 30.1201,
+ 30.1299,
+ 30.1401,
+ 30.1501,
+ 30.1801,
+ 30.1901,
+ 30.2501,
+ 30.2502,
+ 30.2599,
+ 30.2601,
+ 30.2901,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 31.0101,
+ 31.0501,
+ 31.0504,
+ 31.0508,
+ 40.1099,
+ 40.9999,
+ 43.0202,
+ 43.0304,
+ 49.0205,
+ 50.0411,
+ 51.2706,
+ 51.3204,
+ 51.3299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1061.00",
+ "title": "Anthropology and Archeology Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0103,
+ 3.0204,
+ 4.0301,
+ 4.1001,
+ 5.0101,
+ 5.0102,
+ 5.0103,
+ 5.0104,
+ 5.0105,
+ 5.0106,
+ 5.0107,
+ 5.0108,
+ 5.0109,
+ 5.011,
+ 5.0111,
+ 5.0112,
+ 5.0113,
+ 5.0114,
+ 5.0115,
+ 5.0116,
+ 5.0117,
+ 5.0118,
+ 5.0119,
+ 5.012,
+ 5.0121,
+ 5.0122,
+ 5.0123,
+ 5.0124,
+ 5.0125,
+ 5.0126,
+ 5.0127,
+ 5.0128,
+ 5.0129,
+ 5.013,
+ 5.0131,
+ 5.0132,
+ 5.0133,
+ 5.0134,
+ 5.0135,
+ 5.0136,
+ 5.0199,
+ 5.02,
+ 5.0201,
+ 5.0202,
+ 5.0203,
+ 5.0206,
+ 5.0207,
+ 5.0208,
+ 5.0209,
+ 5.021,
+ 5.0211,
+ 5.0212,
+ 5.0299,
+ 5.9999,
+ 13.0607,
+ 13.1332,
+ 13.1335,
+ 19.1001,
+ 30.1001,
+ 30.1202,
+ 30.1701,
+ 30.2001,
+ 30.2101,
+ 30.2201,
+ 30.2201,
+ 30.2202,
+ 30.2202,
+ 30.2299,
+ 30.2299,
+ 30.2301,
+ 30.2601,
+ 30.2701,
+ 30.3601,
+ 30.3901,
+ 30.4001,
+ 30.4001,
+ 30.4201,
+ 30.4201,
+ 30.4401,
+ 30.4501,
+ 30.4601,
+ 30.4701,
+ 30.4901,
+ 30.5101,
+ 30.5101,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 38.0205,
+ 38.0206,
+ 38.0208,
+ 38.0209,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.271,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 43.0407,
+ 44.0501,
+ 44.0502,
+ 44.0504,
+ 45.0101,
+ 45.0102,
+ 45.0103,
+ 45.0103,
+ 45.0199,
+ 45.0201,
+ 45.0202,
+ 45.0203,
+ 45.0204,
+ 45.0204,
+ 45.0205,
+ 45.0299,
+ 45.0301,
+ 45.0501,
+ 45.0502,
+ 45.0599,
+ 45.0601,
+ 45.0602,
+ 45.0603,
+ 45.0604,
+ 45.0605,
+ 45.0699,
+ 45.0701,
+ 45.0702,
+ 45.0799,
+ 45.0901,
+ 45.0902,
+ 45.0999,
+ 45.1001,
+ 45.1002,
+ 45.1004,
+ 45.1004,
+ 45.1099,
+ 45.1101,
+ 45.1102,
+ 45.1103,
+ 45.1103,
+ 45.1199,
+ 45.1199,
+ 45.1201,
+ 45.1301,
+ 45.1301,
+ 45.1501,
+ 45.1501,
+ 45.9999,
+ 51.1505,
+ 51.2007,
+ 51.3204,
+ 52.0601
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-3021.00",
+ "title": "Self-Enrichment Teachers",
+ "cip_codes": [
+ 13.1201,
+ 13.1211,
+ 30.2502
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "19-2042.00",
+ "title": "Geoscientists, Except Hydrologists and Geographers",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 30.3201,
+ 30.3201,
+ 30.3301,
+ 30.3801,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4101,
+ 30.4201,
+ 30.4301,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0607,
+ 40.0699,
+ 51.2202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2021.00",
+ "title": "Atmospheric and Space Scientists",
+ "cip_codes": [
+ 30.3501,
+ 30.5001,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-1051.00",
+ "title": "Atmospheric, Earth, Marine, and Space Sciences Teachers, Postsecondary",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1316,
+ 13.1323,
+ 13.1329,
+ 13.1337,
+ 26.1307,
+ 26.131,
+ 26.1399,
+ 30.3301,
+ 30.3501,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4301,
+ 30.4401,
+ 30.5001,
+ 40.0201,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0299,
+ 40.0401,
+ 40.0402,
+ 40.0403,
+ 40.0404,
+ 40.0499,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0508,
+ 40.0509,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.0601,
+ 40.0602,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0699,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1002,
+ 40.1101,
+ 40.1101,
+ 51.2004,
+ 51.2205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2043.00",
+ "title": "Hydrologists",
+ "cip_codes": [
+ 3.0103,
+ 3.0104,
+ 26.1004,
+ 26.1005,
+ 26.1006,
+ 30.3201,
+ 30.3201,
+ 30.3301,
+ 30.3801,
+ 30.3801,
+ 30.4101,
+ 30.4101,
+ 30.4101,
+ 30.4201,
+ 30.4301,
+ 30.4401,
+ 40.0509,
+ 40.0601,
+ 40.0601,
+ 40.0602,
+ 40.0603,
+ 40.0604,
+ 40.0605,
+ 40.0606,
+ 40.0607,
+ 40.0607,
+ 40.0699,
+ 51.2202
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "39-9011.00",
+ "title": "Childcare Workers",
+ "cip_codes": [
+ 19.0706,
+ 19.0709,
+ 19.0711
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 2,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "39-9011.01",
+ "title": "Nannies",
+ "cip_codes": [
+ 19.0706,
+ 19.0709,
+ 19.0711
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-2011.00",
+ "title": "Preschool Teachers, Except Special Education",
+ "cip_codes": [
+ 13.0201,
+ 13.0201,
+ 13.1206,
+ 13.1206,
+ 13.1207,
+ 13.1207,
+ 13.1208,
+ 13.1208,
+ 13.1209,
+ 13.1209,
+ 13.121,
+ 13.121,
+ 13.1212,
+ 13.1212,
+ 13.1401,
+ 13.1401,
+ 13.1402,
+ 13.1402,
+ 13.1499,
+ 13.1499,
+ 19.0706,
+ 19.0708
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-9042.00",
+ "title": "Teaching Assistants, Preschool, Elementary, Middle, and Secondary School, Except Special Education",
+ "cip_codes": [
+ 13.0101,
+ 13.0101,
+ 13.1001,
+ 13.121,
+ 13.121,
+ 13.1501,
+ 13.1501,
+ 13.1501,
+ 13.1502,
+ 13.1599,
+ 13.1599,
+ 13.1599,
+ 13.1599,
+ 19.0706,
+ 19.0706,
+ 42.2814
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-9043.00",
+ "title": "Teaching Assistants, Special Education",
+ "cip_codes": [
+ 13.0101,
+ 13.0101,
+ 13.1001,
+ 13.121,
+ 13.121,
+ 13.1501,
+ 13.1501,
+ 13.1501,
+ 13.1502,
+ 13.1599,
+ 13.1599,
+ 13.1599,
+ 13.1599,
+ 19.0706,
+ 19.0706,
+ 42.2814
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "51-6092.00",
+ "title": "Fabric and Apparel Patternmakers",
+ "cip_codes": [
+ 19.0902,
+ 48.0303,
+ 99.9999,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "19-2032.00",
+ "title": "Materials Scientists",
+ "cip_codes": [
+ 19.0904,
+ 40.0501,
+ 40.0502,
+ 40.0503,
+ 40.0504,
+ 40.0506,
+ 40.0507,
+ 40.0508,
+ 40.0509,
+ 40.051,
+ 40.0511,
+ 40.0512,
+ 40.0599,
+ 40.1001,
+ 40.1002,
+ 40.1002,
+ 40.1099,
+ 51.2004
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-2011.00",
+ "title": "Astronomers",
+ "cip_codes": [
+ 14.1201,
+ 40.0201,
+ 40.0202,
+ 40.0202,
+ 40.0203,
+ 40.0299,
+ 40.0801,
+ 40.0802,
+ 40.0804,
+ 40.0805,
+ 40.0806,
+ 40.0807,
+ 40.0808,
+ 40.0809,
+ 40.081,
+ 40.0899,
+ 40.1101,
+ 40.1101,
+ 51.2205
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3032.00",
+ "title": "Industrial-Organizational Psychologists",
+ "cip_codes": [
+ 19.0702,
+ 19.0706,
+ 19.0711,
+ 30.1701,
+ 42.0101,
+ 42.0101,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2806,
+ 42.2807,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.281,
+ 42.2811,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 45.0401,
+ 51.1507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "19-3034.00",
+ "title": "School Psychologists",
+ "cip_codes": [
+ 19.0702,
+ 19.0706,
+ 19.0711,
+ 30.1701,
+ 42.0101,
+ 42.0101,
+ 42.0101,
+ 42.2701,
+ 42.2702,
+ 42.2703,
+ 42.2704,
+ 42.2705,
+ 42.2706,
+ 42.2707,
+ 42.2708,
+ 42.2709,
+ 42.2799,
+ 42.2801,
+ 42.2802,
+ 42.2803,
+ 42.2804,
+ 42.2805,
+ 42.2806,
+ 42.2806,
+ 42.2807,
+ 42.2807,
+ 42.2808,
+ 42.2809,
+ 42.281,
+ 42.281,
+ 42.2811,
+ 42.2811,
+ 42.2812,
+ 42.2813,
+ 42.2814,
+ 42.2814,
+ 42.2815,
+ 42.2816,
+ 42.2817,
+ 42.2899,
+ 42.9999,
+ 45.0401,
+ 51.1507
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "27-2022.00",
+ "title": "Coaches and Scouts",
+ "cip_codes": [
+ 13.1314,
+ 31.0501,
+ 31.0501,
+ 31.0504,
+ 42.2815,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-3011.00",
+ "title": "Adult Basic Education, Adult Secondary Education, and English as a Second Language Instructors",
+ "cip_codes": [
+ 13.0201,
+ 13.0202,
+ 13.0299,
+ 13.1201,
+ 13.1401,
+ 13.1402,
+ 13.1499,
+ 13.1502
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-2021.00",
+ "title": "Elementary School Teachers, Except Special Education",
+ "cip_codes": [
+ 13.0201,
+ 13.0201,
+ 13.1202,
+ 13.1203,
+ 13.1206,
+ 13.1206,
+ 13.1207,
+ 13.1207,
+ 13.1208,
+ 13.1208,
+ 13.121,
+ 13.1211,
+ 13.1211,
+ 13.1212,
+ 13.1212,
+ 13.1213,
+ 13.1213,
+ 13.1301,
+ 13.1302,
+ 13.1303,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1308,
+ 13.1309,
+ 13.1309,
+ 13.131,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1318,
+ 13.1319,
+ 13.132,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1327,
+ 13.1327,
+ 13.1328,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1333,
+ 13.1337,
+ 13.1338,
+ 13.1338,
+ 13.1339,
+ 13.1339,
+ 13.1401,
+ 13.1401,
+ 13.1402,
+ 13.1402,
+ 13.1499,
+ 13.1499,
+ 45.0199,
+ 45.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-2012.00",
+ "title": "Kindergarten Teachers, Except Special Education",
+ "cip_codes": [
+ 13.0201,
+ 13.0201,
+ 13.1206,
+ 13.1206,
+ 13.1207,
+ 13.1207,
+ 13.1208,
+ 13.1208,
+ 13.1209,
+ 13.1209,
+ 13.121,
+ 13.121,
+ 13.1212,
+ 13.1212,
+ 13.1401,
+ 13.1401,
+ 13.1402,
+ 13.1402,
+ 13.1499,
+ 13.1499,
+ 19.0706,
+ 19.0708
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-2022.00",
+ "title": "Middle School Teachers, Except Special and Career/Technical Education",
+ "cip_codes": [
+ 13.0201,
+ 13.0201,
+ 13.1202,
+ 13.1203,
+ 13.1206,
+ 13.1206,
+ 13.1207,
+ 13.1207,
+ 13.1208,
+ 13.1208,
+ 13.121,
+ 13.1211,
+ 13.1211,
+ 13.1212,
+ 13.1212,
+ 13.1213,
+ 13.1213,
+ 13.1301,
+ 13.1302,
+ 13.1303,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1308,
+ 13.1309,
+ 13.1309,
+ 13.131,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1318,
+ 13.1319,
+ 13.132,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1327,
+ 13.1327,
+ 13.1328,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1333,
+ 13.1337,
+ 13.1338,
+ 13.1338,
+ 13.1339,
+ 13.1339,
+ 13.1401,
+ 13.1401,
+ 13.1402,
+ 13.1402,
+ 13.1499,
+ 13.1499,
+ 45.0199,
+ 45.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-3099.00",
+ "title": "Teachers and Instructors, All Other",
+ "cip_codes": [
+ 13.0201,
+ 13.0202,
+ 13.0203,
+ 13.1207,
+ 13.1208,
+ 13.1211,
+ 13.1304,
+ 13.1399,
+ 13.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-9031.00",
+ "title": "Instructional Coordinators",
+ "cip_codes": [
+ 13.0301,
+ 13.0501
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9032.00",
+ "title": "Education Administrators, Kindergarten through Secondary",
+ "cip_codes": [
+ 13.0401,
+ 13.0401,
+ 13.0401,
+ 13.0401,
+ 13.0402,
+ 13.0403,
+ 13.0404,
+ 13.0404,
+ 13.0404,
+ 13.0404,
+ 13.0406,
+ 13.0406,
+ 13.0407,
+ 13.0408,
+ 13.0409,
+ 13.041,
+ 13.0411,
+ 13.0411,
+ 13.0411,
+ 13.0412,
+ 13.0412,
+ 13.0412,
+ 13.0412,
+ 13.0413,
+ 13.0414,
+ 13.0414,
+ 13.0499,
+ 51.0719,
+ 51.3202,
+ 51.3203,
+ 52.0206,
+ 52.0214,
+ 61.0207,
+ 61.0211
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 5,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "11-9031.00",
+ "title": "Education and Childcare Administrators, Preschool and Daycare",
+ "cip_codes": [
+ 13.0401,
+ 13.0401,
+ 13.0401,
+ 13.0401,
+ 13.0402,
+ 13.0403,
+ 13.0404,
+ 13.0404,
+ 13.0404,
+ 13.0404,
+ 13.0406,
+ 13.0406,
+ 13.0407,
+ 13.0408,
+ 13.0409,
+ 13.041,
+ 13.0411,
+ 13.0411,
+ 13.0411,
+ 13.0412,
+ 13.0412,
+ 13.0412,
+ 13.0412,
+ 13.0413,
+ 13.0414,
+ 13.0414,
+ 13.0499,
+ 51.0719,
+ 51.3202,
+ 51.3203,
+ 52.0206,
+ 52.0214,
+ 61.0207,
+ 61.0211
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-9099.00",
+ "title": "Educational Instruction and Library Workers, All Other",
+ "cip_codes": [
+ 13.0607,
+ 13.1599
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-2059.01",
+ "title": "Adapted Physical Education Specialists",
+ "cip_codes": [
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1017,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-2059.00",
+ "title": "Special Education Teachers, All Other",
+ "cip_codes": [
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1017,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-2056.00",
+ "title": "Special Education Teachers, Elementary School",
+ "cip_codes": [
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1017,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-2055.00",
+ "title": "Special Education Teachers, Kindergarten",
+ "cip_codes": [
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1017,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-2057.00",
+ "title": "Special Education Teachers, Middle School",
+ "cip_codes": [
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1017,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-2051.00",
+ "title": "Special Education Teachers, Preschool",
+ "cip_codes": [
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1017,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-2058.00",
+ "title": "Special Education Teachers, Secondary School",
+ "cip_codes": [
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1001,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1003,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1005,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1006,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1007,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1008,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1009,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1011,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1012,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1013,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1014,
+ 13.1015,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1016,
+ 13.1017,
+ 13.1017,
+ 13.1018,
+ 13.1019,
+ 13.1099
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "39-9041.00",
+ "title": "Residential Advisors",
+ "cip_codes": [
+ 13.1102,
+ 13.1199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 2
+ }
+ },
+ {
+ "soc_code": "25-2023.00",
+ "title": "Career/Technical Education Teachers, Middle School",
+ "cip_codes": [
+ 13.0201,
+ 13.0201,
+ 13.1202,
+ 13.1203,
+ 13.1206,
+ 13.1206,
+ 13.1207,
+ 13.1207,
+ 13.1208,
+ 13.1208,
+ 13.121,
+ 13.1211,
+ 13.1211,
+ 13.1212,
+ 13.1212,
+ 13.1213,
+ 13.1213,
+ 13.1301,
+ 13.1302,
+ 13.1303,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1308,
+ 13.1309,
+ 13.1309,
+ 13.131,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1318,
+ 13.1319,
+ 13.132,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1327,
+ 13.1327,
+ 13.1328,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1333,
+ 13.1337,
+ 13.1338,
+ 13.1338,
+ 13.1339,
+ 13.1339,
+ 13.1401,
+ 13.1401,
+ 13.1402,
+ 13.1402,
+ 13.1499,
+ 13.1499,
+ 45.0199,
+ 45.0199
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-2032.00",
+ "title": "Career/Technical Education Teachers, Secondary School",
+ "cip_codes": [
+ 13.0201,
+ 13.1203,
+ 13.1205,
+ 13.1206,
+ 13.1207,
+ 13.1208,
+ 13.1211,
+ 13.1212,
+ 13.1213,
+ 13.1301,
+ 13.1302,
+ 13.1303,
+ 13.1304,
+ 13.1305,
+ 13.1306,
+ 13.1307,
+ 13.1308,
+ 13.1308,
+ 13.1309,
+ 13.1309,
+ 13.131,
+ 13.1311,
+ 13.1312,
+ 13.1314,
+ 13.1315,
+ 13.1316,
+ 13.1317,
+ 13.1318,
+ 13.1319,
+ 13.132,
+ 13.1321,
+ 13.1322,
+ 13.1323,
+ 13.1324,
+ 13.1325,
+ 13.1326,
+ 13.1327,
+ 13.1328,
+ 13.1329,
+ 13.133,
+ 13.1331,
+ 13.1332,
+ 13.1333,
+ 13.1335,
+ 13.1337,
+ 13.1338,
+ 13.1339,
+ 13.1401,
+ 13.1402,
+ 13.1499,
+ 16.0101,
+ 16.03,
+ 16.0301,
+ 16.0302,
+ 16.0303,
+ 16.0399,
+ 16.0402,
+ 16.05,
+ 16.0501,
+ 16.0599,
+ 16.09,
+ 16.0901,
+ 16.0902,
+ 16.0905,
+ 16.0999,
+ 16.1001,
+ 16.1101,
+ 16.1102,
+ 16.12,
+ 16.1202,
+ 16.1203,
+ 16.1299,
+ 16.1409,
+ 16.1499,
+ 16.1601,
+ 16.1602,
+ 16.9999,
+ 19.0101,
+ 23.0101,
+ 26.0101,
+ 27.0101,
+ 30.0101,
+ 30.3601,
+ 30.3801,
+ 30.4101,
+ 30.4501,
+ 40.0101,
+ 40.0501,
+ 40.0801,
+ 45.0101,
+ 45.0199,
+ 45.0601,
+ 45.1001,
+ 45.1002,
+ 45.1003,
+ 45.1099,
+ 50.0701,
+ 50.0901,
+ 54.0101,
+ 54.0102
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "25-1193.00",
+ "title": "Recreation and Fitness Studies Teachers, Postsecondary",
+ "cip_codes": [
+ 1.0207,
+ 1.0504,
+ 1.0509,
+ 11.0801,
+ 11.0802,
+ 11.0803,
+ 12.0509,
+ 13.1211,
+ 13.1301,
+ 13.1303,
+ 13.1308,
+ 13.1309,
+ 13.131,
+ 13.1314,
+ 13.1319,
+ 13.132,
+ 13.1327,
+ 15.1503,
+ 16.1602,
+ 19.0101,
+ 19.0201,
+ 19.0202,
+ 19.0299,
+ 19.0401,
+ 19.0402,
+ 19.0403,
+ 19.0499,
+ 19.0501,
+ 19.0504,
+ 19.0505,
+ 19.0599,
+ 19.0601,
+ 19.0701,
+ 19.0702,
+ 19.0704,
+ 19.0706,
+ 19.0708,
+ 19.0901,
+ 19.0902,
+ 19.0904,
+ 19.1001,
+ 23.1301,
+ 23.1302,
+ 23.1303,
+ 23.1304,
+ 24.0101,
+ 24.0102,
+ 24.0103,
+ 30.0101,
+ 30.0501,
+ 30.0601,
+ 30.1201,
+ 30.1299,
+ 30.1401,
+ 30.1501,
+ 30.1801,
+ 30.1901,
+ 30.2501,
+ 30.2502,
+ 30.2599,
+ 30.2601,
+ 30.2901,
+ 30.3001,
+ 30.3201,
+ 30.3301,
+ 30.3401,
+ 30.5201,
+ 30.5202,
+ 30.5203,
+ 30.5301,
+ 30.7001,
+ 30.7099,
+ 30.7101,
+ 30.7103,
+ 30.7199,
+ 31.0101,
+ 31.0501,
+ 31.0504,
+ 31.0508,
+ 40.1099,
+ 40.9999,
+ 43.0202,
+ 43.0304,
+ 49.0205,
+ 50.0411,
+ 51.2706,
+ 51.3204,
+ 51.3299
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 4,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "25-9049.00",
+ "title": "Teaching Assistants, All Other",
+ "cip_codes": [
+ 13.0101,
+ 13.0101,
+ 13.1001,
+ 13.121,
+ 13.121,
+ 13.1501,
+ 13.1501,
+ 13.1501,
+ 13.1502,
+ 13.1599,
+ 13.1599,
+ 13.1599,
+ 13.1599,
+ 19.0706,
+ 19.0706,
+ 42.2814
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "25-9044.00",
+ "title": "Teaching Assistants, Postsecondary",
+ "cip_codes": [
+ 13.0101,
+ 13.0101,
+ 13.1001,
+ 13.121,
+ 13.121,
+ 13.1501,
+ 13.1501,
+ 13.1501,
+ 13.1502,
+ 13.1599,
+ 13.1599,
+ 13.1599,
+ 13.1599,
+ 19.0706,
+ 19.0706,
+ 42.2814
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 1,
+ "balance": 3,
+ "recognition": 3
+ }
+ },
+ {
+ "soc_code": "27-2021.00",
+ "title": "Athletes and Sports Competitors",
+ "cip_codes": [
+ 13.1314,
+ 31.0501,
+ 31.0501,
+ 31.0504,
+ 42.2815,
+ 99.9999
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 4
+ }
+ },
+ {
+ "soc_code": "39-1014.00",
+ "title": "First-Line Supervisors of Entertainment and Recreation Workers, Except Gambling Services",
+ "cip_codes": [
+ 12.0601,
+ 12.0602,
+ 31.0601,
+ 52.0908
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 1,
+ "recognition": 1
+ }
+ },
+ {
+ "soc_code": "39-9032.00",
+ "title": "Recreation Workers",
+ "cip_codes": [
+ 13.1314,
+ 31.0501,
+ 31.0504,
+ 31.0507,
+ 31.0601,
+ 51.3602
+ ],
+ "limited_data": false,
+ "ratings": {
+ "growth": 5,
+ "balance": 3,
+ "recognition": 2
+ }
+ }
+]
\ No newline at end of file
diff --git a/src/App.js b/src/App.js
index 6977d38..df78632 100644
--- a/src/App.js
+++ b/src/App.js
@@ -16,6 +16,8 @@ import GettingStarted from './components/GettingStarted.js';
import SignIn from './components/SignIn.js';
import SignUp from './components/SignUp.js';
import PlanningLanding from './components/PlanningLanding.js';
+import CareerExplorer from './components/CareerExplorer.js';
+import EducationalPrograms from './components/EducationalPrograms.js';
import PreparingLanding from './components/PreparingLanding.js';
import EnhancingLanding from './components/EnhancingLanding.js';
import RetirementLanding from './components/RetirementLanding.js';
@@ -236,6 +238,8 @@ function App() {
Career | + {priorityKeys.map((priority) => ( +{priority} | + ))} +Match | +Actions | +|||||
---|---|---|---|---|---|---|---|---|
{career.title} | +{interestsRating} | +{meaningRating} | +{stabilityRating} | +{growthRating} | +{balanceRating} | +{recognitionRating} | +{matchScore.toFixed(1)}% | ++ + | +
No careers added to comparison.
} + + +{careerDetails.jobDescription}
+Percentile | +Regional Salary | +National Salary | +
---|---|---|
{s.percentile} | +${s.regionalSalary.toLocaleString()} | +${s.nationalSalary.toLocaleString()} | +
Region | +Current Jobs | +Jobs in 10 yrs | +Growth % | +Annual Openings | +
---|---|---|---|---|
{careerDetails.economicProjections.state.area} | +{careerDetails.economicProjections.state.base.toLocaleString()} | +{careerDetails.economicProjections.state.projection.toLocaleString()} | +{careerDetails.economicProjections.state.percentChange}% | +{careerDetails.economicProjections.state.annualOpenings.toLocaleString()} | +
National | +{careerDetails.economicProjections.national.base.toLocaleString()} | +{careerDetails.economicProjections.national.projection.toLocaleString()} | +{careerDetails.economicProjections.national.percentChange}% | +{careerDetails.economicProjections.national.annualOpenings.toLocaleString()} | +
Discover career options that match your interests, skills, and potential. - AptivaAI helps you find your ideal career path, provides insights into the educational requirements, + AptivaAI helps you find your ideal career path, provides insights into educational requirements, expected salaries, job market trends, and more.
-+ Identify your interests and discover careers aligned with your strengths. +
++ Research detailed career profiles, job descriptions, salaries, and employment outlooks. +
++ Find the right educational programs, degrees, and certifications needed to pursue your chosen career. +
+