Web API: List training programs by keyword

List training programs by keyword

The 'List Training Programs by Keyword' Web API enables developers to input a keyword and get the matching results of training programs and other related information. It works in conjunction with complementary APIs from CareerOneStop.

About this data

The API provides search results for training programs based on keyword entered. This data is found in the Local Training Finder on www.CareerOneStop.org. For more information on the data, go to the tool's help page.

Resource URL

https://api.careeronestop.org/v1/Training/{userId}/{keyword}/{location}/{radius}/{occupation}/{programName}/{programLength}/{state}/{region}/{sortColumns}/{sortDirections}/{startRecord}/{limitRecord}

Example Code

using System;

using System.Net.Http;

using System.Net.Http.Headers;

using System.Threading.Tasks;

namespace CareerOneStopAPISample

{

    class Program

    {

        static void Main(string[] args)

        {

            CreateRequest().Wait();

        }

        private static async Task CreateRequest()

        {

   

            var uri = new UriBuilder(Uri.UriSchemeHttps, "api.careeronestop.org")

            {

                Path = "/v1/Training/{userId}/{keyword}/{location}/{radius}/{occupation}/{programName}/{programLength}/{state}/{region}/{sortColumns}/{sortDirections}/{startRecord}/{limitRecord}"

            };

           

            using (var http = new HttpClient())

            {

                http.DefaultRequestHeaders.Accept.Clear();

                http.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "Your API Token");

                http.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

                var response = await http.GetAsync(uri.Uri).ConfigureAwait(false);

                if (response.IsSuccessStatusCode)

                {

                    var result = await response.Content.ReadAsStringAsync().ConfigureAwait(false);

                }

            }

        }

    }

}
import java.io.IOException;

import java.net.URI;

import java.net.URISyntaxException;

import org.apache.http.HttpEntity;

import org.apache.http.client.methods.CloseableHttpResponse;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.client.utils.URIBuilder;

import org.apache.http.impl.client.CloseableHttpClient;

import org.apache.http.impl.client.HttpClients;

import org.apache.http.util.EntityUtils;

public class CareerOneStopAPISample {

    public static void main(String[] args) throws IOException, URISyntaxException {

    URI uri = new URIBuilder()

        .setScheme("https")

        .setHost("api.careeronestop.org")

        .setPath("/v1/Training/{userId}/{keyword}/{location}/{radius}/{occupation}/{programName}/{programLength}/{state}/{region}/{sortColumns}/{sortDirections}/{startRecord}/{limitRecord}")

        .build();

    CloseableHttpResponse response = null;

    HttpGet httpGet = null;

    try {

        CloseableHttpClient httpClient = HttpClients.createDefault();

        httpGet = new HttpGet(uri);

        httpGet.setHeader("Content-Type","application/json");

        httpGet.setHeader("Authorization", "Bearer Your API Token");

        response = httpClient.execute(httpGet);

        HttpEntity entity = response.getEntity();

        System.out.println(EntityUtils.toString(entity));

    } finally {

        if(httpGet != null) httpGet.releaseConnection();

        if(response != null) response.close();

    }

   }

}

Request Parameters

Refer to the following table for a list of the required and optional request parameters. All parameter names and values are case sensitive. Important: You must provide all required parameters. Submitting an empty request does not return all possible results; an empty request returns an error.

Parameter Name Value Required? Description
API Token
String
Yes This value is the unique API Token provided during the CareerOneStop Web API registration process.
userId
String
Yes This value is the unique UserID provided during the CareerOneStop Web API registration process.
keyword String
Yes This value is the search term.
location
String
Yes This value accepts a city, state (Chicago, IL) or state (IL) or ZIP code (61299). For nationwide results, use location of "0" (zero).
radius
String Yes This value accepts a radius size in miles around a city or a ZIP code.
occupation
String Yes This is a filter to limit the records based on the selected occupation from the initial resultset. The required filter can be obtained from the filterlist values.
programName
String Yes This is a filter to limit the records based on the selected program name from the initial resultset. The required filter can be obtained from the filterlist values.
programLength
String Yes This is a filter to limit the records based on the selected program length from the initial resultset. The required filter can be obtained from the filterlist values.
state
String Yes This is a filter to limit the records based on the selected state from the initial resultset. The required filter can be obtained from the filterlist values.
region
String Yes This is a filter to limit the records based on the selected region from the initial resultset. Regions include US Service schools, New England, Mid East, Great Lakes, Plains, Southeast, Southwest, Rocky Mountains, Far West, Outlying areas. The value to use here can be obtained from the filterlist response parameter. 
sortColumns
String Yes

This value is for sorting the columns. Valid values are School or Program Name and default value is 0 for relevance.

sortDirection
String Yes Use this parameter to set the ordering of the results. Valid values are ASC, DESC and 0. Default value is 0 for relevance.
startRecord
Integer
Yes This value is to set the starting record. Default value 0 is for the first record.
limitRecord
Integer
Yes This value sets the maximum number of records to be returned. Default value is 10.

Response Structure


{

  "SchoolPrograms": [

    {

      "ID": "513899",

      "SchoolName": "Radford University",

      "SchoolUrl": "https://www.radford.edu/",

      "Address": "801 East Main St.",

      "City": "Radford",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "24142",

      "Phone": "5408315000",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other",

      "StudentGraduated": "More than 4 years: 0",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Beyond bachelor's degree",

          "Value": "Beyond bachelor~F~apos~Q~s degree"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Nurse Practitioners",

          "Value": "Nurse Practitioners"

        },

        {

          "Name": "Nursing Instructors and Teachers, Postsecondary",

          "Value": "Nursing Instructors and Teachers~D~ Postsecondary"

        },

        {

          "Name": "Registered Nurses",

          "Value": "Registered Nurses"

        }

      ]

    },

    {

      "ID": "513899",

      "SchoolName": "University of Virginia-Main Campus",

      "SchoolUrl": "https://www.virginia.edu/",

      "Address": "1827 University Avenue",

      "City": "Charlottesville",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22903-2628",

      "Phone": "4349240311",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other",

      "StudentGraduated": "Less than one year: 0",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Beyond bachelor's degree",

          "Value": "Beyond bachelor~F~apos~Q~s degree"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Nurse Practitioners",

          "Value": "Nurse Practitioners"

        },

        {

          "Name": "Nursing Instructors and Teachers, Postsecondary",

          "Value": "Nursing Instructors and Teachers~D~ Postsecondary"

        },

        {

          "Name": "Registered Nurses",

          "Value": "Registered Nurses"

        }

      ]

    },

    {

      "ID": "513899",

      "SchoolName": "Old Dominion University",

      "SchoolUrl": "www.odu.edu/",

      "Address": "5115 Hampton Blvd",

      "City": "Norfolk",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23529",

      "Phone": "7576833000",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person",

        "Online"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other",

      "StudentGraduated": "More than 4 years: 0||More than 4 years: 49",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Beyond bachelor's degree",

          "Value": "Beyond bachelor~F~apos~Q~s degree"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Nurse Practitioners",

          "Value": "Nurse Practitioners"

        },

        {

          "Name": "Nursing Instructors and Teachers, Postsecondary",

          "Value": "Nursing Instructors and Teachers~D~ Postsecondary"

        },

        {

          "Name": "Registered Nurses",

          "Value": "Registered Nurses"

        }

      ]

    },

    {

      "ID": "513899",

      "SchoolName": "Shenandoah University",

      "SchoolUrl": "www.su.edu/",

      "Address": "1460 University Dr",

      "City": "Winchester",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22601-5195",

      "Phone": "5406654500",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person",

        "Online"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other",

      "StudentGraduated": "Less than one year: 0||More than 4 years: 2||More than 4 years: 21",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Beyond bachelor's degree",

          "Value": "Beyond bachelor~F~apos~Q~s degree"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Nurse Practitioners",

          "Value": "Nurse Practitioners"

        },

        {

          "Name": "Nursing Instructors and Teachers, Postsecondary",

          "Value": "Nursing Instructors and Teachers~D~ Postsecondary"

        },

        {

          "Name": "Registered Nurses",

          "Value": "Registered Nurses"

        }

      ]

    },

    {

      "ID": "513999",

      "SchoolName": "Central School of Practical Nursing",

      "SchoolUrl": "https://www.npsk12.com/domain/980",

      "Address": "1330 N Millitary Hwy",

      "City": "Norfolk",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23502",

      "Phone": "7578923300",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Practical Nursing, Vocational Nursing and Nursing Assistants, Other",

      "StudentGraduated": "At least one but less than two years: 12",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Certificate, 1 year to less than 2 years",

          "Value": "Certificate~D~ 1 year to less than 2 years"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Licensed Practical and Licensed Vocational Nurses",

          "Value": "Licensed Practical and Licensed Vocational Nurses"

        },

        {

          "Name": "Nursing Assistants",

          "Value": "Nursing Assistants"

        }

      ]

    },

    {

      "ID": "513999",

      "SchoolName": "Standard Healthcare Services-College of Nursing",

      "SchoolUrl": "https://www.standardcollege.edu/",

      "Address": "7600 Leesburg Pike, Suite 200 East",

      "City": "Falls Church",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22043",

      "Phone": "7038911787",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Practical Nursing, Vocational Nursing and Nursing Assistants, Other",

      "StudentGraduated": "At least one but less than two years: 278",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Certificate, 1 year to less than 2 years",

          "Value": "Certificate~D~ 1 year to less than 2 years"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Licensed Practical and Licensed Vocational Nurses",

          "Value": "Licensed Practical and Licensed Vocational Nurses"

        },

        {

          "Name": "Nursing Assistants",

          "Value": "Nursing Assistants"

        }

      ]

    },

    {

      "ID": "513999",

      "SchoolName": "Virginia Beach City Public Schools School of Practical Nursing",

      "SchoolUrl": "techcenter.vbschools.com/school/programs-of-study/licensed-practical-nursing",

      "Address": "2925 N Landing Rd",

      "City": "Virginia Beach",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23456-2499",

      "Phone": "75764860500",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Practical Nursing, Vocational Nursing and Nursing Assistants, Other",

      "StudentGraduated": "At least one but less than two years: 14",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Certificate, 1 year to less than 2 years",

          "Value": "Certificate~D~ 1 year to less than 2 years"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Licensed Practical and Licensed Vocational Nurses",

          "Value": "Licensed Practical and Licensed Vocational Nurses"

        },

        {

          "Name": "Nursing Assistants",

          "Value": "Nursing Assistants"

        }

      ]

    },

    {

      "ID": "513821",

      "SchoolName": "Old Dominion University",

      "SchoolUrl": "www.odu.edu/",

      "Address": "5115 Hampton Blvd",

      "City": "Norfolk",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23529",

      "Phone": "7576833000",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person",

        "Online"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Geriatric Nurse/Nursing",

      "StudentGraduated": "Less than one year: 0",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Beyond bachelor's degree",

          "Value": "Beyond bachelor~F~apos~Q~s degree"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Nurse Practitioners",

          "Value": "Nurse Practitioners"

        },

        {

          "Name": "Nursing Instructors and Teachers, Postsecondary",

          "Value": "Nursing Instructors and Teachers~D~ Postsecondary"

        },

        {

          "Name": "Registered Nurses",

          "Value": "Registered Nurses"

        }

      ]

    },

    {

      "ID": "513809",

      "SchoolName": "University of Virginia-Main Campus",

      "SchoolUrl": "https://www.virginia.edu/",

      "Address": "1827 University Avenue",

      "City": "Charlottesville",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22903-2628",

      "Phone": "4349240311",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "In-person"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Pediatric Nurse/Nursing",

      "StudentGraduated": "Less than one year: 0",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Beyond bachelor's degree",

          "Value": "Beyond bachelor~F~apos~Q~s degree"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Nurse Practitioners",

          "Value": "Nurse Practitioners"

        },

        {

          "Name": "Nursing Instructors and Teachers, Postsecondary",

          "Value": "Nursing Instructors and Teachers~D~ Postsecondary"

        },

        {

          "Name": "Registered Nurses",

          "Value": "Registered Nurses"

        }

      ]

    },

    {

      "ID": "513805",

      "SchoolName": "Averett University",

      "SchoolUrl": "https://www.averett.edu/",

      "Address": "420 W Main St",

      "City": "Danville",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "24541",

      "Phone": "4347915600",

      "Distance": null,

      "Region": "Southeast",

      "Format": [

        "Online"

      ],

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Family Practice Nurse/Nursing",

      "StudentGraduated": "Less than one year: 0||More than 4 years: 2",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "Beyond bachelor's degree",

          "Value": "Beyond bachelor~F~apos~Q~s degree"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Nurse Practitioners",

          "Value": "Nurse Practitioners"

        },

        {

          "Name": "Nursing Instructors and Teachers, Postsecondary",

          "Value": "Nursing Instructors and Teachers~D~ Postsecondary"

        },

        {

          "Name": "Registered Nurses",

          "Value": "Registered Nurses"

        }

      ]

    }

  ],

  "RecordCount": 627,

  "DidYouMean": null,

  "AutoCorrection": null,

  "LocationCountList": {

    "UndoList": [],

    "FilterList": []

  },

  "CityCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Richmond (51)",

        "Count": 51,

        "Value": "Richmond"

      },

      {

        "Item": "Norfolk (47)",

        "Count": 47,

        "Value": "Norfolk"

      },

      {

        "Item": "Lynchburg (45)",

        "Count": 45,

        "Value": "Lynchburg"

      },

      {

        "Item": "Fairfax (38)",

        "Count": 38,

        "Value": "Fairfax"

      },

      {

        "Item": "Charlottesville (36)",

        "Count": 36,

        "Value": "Charlottesville"

      },

      {

        "Item": "Virginia Beach (34)",

        "Count": 34,

        "Value": "Virginia Beach"

      },

      {

        "Item": "Arlington (25)",

        "Count": 25,

        "Value": "Arlington"

      },

      {

        "Item": "Blacksburg (25)",

        "Count": 25,

        "Value": "Blacksburg"

      },

      {

        "Item": "Harrisonburg (25)",

        "Count": 25,

        "Value": "Harrisonburg"

      },

      {

        "Item": "Hampton (18)",

        "Count": 18,

        "Value": "Hampton"

      },

      {

        "Item": "Winchester (18)",

        "Count": 18,

        "Value": "Winchester"

      },

      {

        "Item": "Radford (15)",

        "Count": 15,

        "Value": "Radford"

      },

      {

        "Item": "Williamsburg (13)",

        "Count": 13,

        "Value": "Williamsburg"

      },

      {

        "Item": "Danville (12)",

        "Count": 12,

        "Value": "Danville"

      },

      {

        "Item": "Lexington (11)",

        "Count": 11,

        "Value": "Lexington"

      },

      {

        "Item": "Salem (11)",

        "Count": 11,

        "Value": "Salem"

      },

      {

        "Item": "Roanoke (10)",

        "Count": 10,

        "Value": "Roanoke"

      },

      {

        "Item": "Staunton (10)",

        "Count": 10,

        "Value": "Staunton"

      },

      {

        "Item": "Ashland (9)",

        "Count": 9,

        "Value": "Ashland"

      },

      {

        "Item": "Bluefield (9)",

        "Count": 9,

        "Value": "Bluefield"

      },

      {

        "Item": "Fredericksburg (9)",

        "Count": 9,

        "Value": "Fredericksburg"

      },

      {

        "Item": "University Of Richmond (9)",

        "Count": 9,

        "Value": "University Of Richmond"

      },

      {

        "Item": "Bridgewater (8)",

        "Count": 8,

        "Value": "Bridgewater"

      },

      {

        "Item": "Chester (8)",

        "Count": 8,

        "Value": "Chester"

      },

      {

        "Item": "Newport News (8)",

        "Count": 8,

        "Value": "Newport News"

      },

      {

        "Item": "Clifton Forge (7)",

        "Count": 7,

        "Value": "Clifton Forge"

      },

      {

        "Item": "Emory (7)",

        "Count": 7,

        "Value": "Emory"

      },

      {

        "Item": "Hampden-Sydney (7)",

        "Count": 7,

        "Value": "Hampden~B~Sydney"

      },

      {

        "Item": "Annandale (6)",

        "Count": 6,

        "Value": "Annandale"

      },

      {

        "Item": "Chesapeake (5)",

        "Count": 5,

        "Value": "Chesapeake"

      },

      {

        "Item": "Farmville (5)",

        "Count": 5,

        "Value": "Farmville"

      },

      {

        "Item": "Middletown (5)",

        "Count": 5,

        "Value": "Middletown"

      },

      {

        "Item": "Weyers Cave (5)",

        "Count": 5,

        "Value": "Weyers Cave"

      },

      {

        "Item": "Wytheville (5)",

        "Count": 5,

        "Value": "Wytheville"

      },

      {

        "Item": "Abingdon (4)",

        "Count": 4,

        "Value": "Abingdon"

      },

      {

        "Item": "Big Stone Gap (4)",

        "Count": 4,

        "Value": "Big Stone Gap"

      },

      {

        "Item": "Buena Vista (4)",

        "Count": 4,

        "Value": "Buena Vista"

      },

      {

        "Item": "Cedar Bluff (4)",

        "Count": 4,

        "Value": "Cedar Bluff"

      },

      {

        "Item": "Dublin (4)",

        "Count": 4,

        "Value": "Dublin"

      },

      {

        "Item": "Falls Church (4)",

        "Count": 4,

        "Value": "Falls Church"

      },

      {

        "Item": "Ferrum (4)",

        "Count": 4,

        "Value": "Ferrum"

      },

      {

        "Item": "Glen Allen (4)",

        "Count": 4,

        "Value": "Glen Allen"

      },

      {

        "Item": "Glenns (4)",

        "Count": 4,

        "Value": "Glenns"

      },

      {

        "Item": "Locust Grove (4)",

        "Count": 4,

        "Value": "Locust Grove"

      },

      {

        "Item": "Martinsville (4)",

        "Count": 4,

        "Value": "Martinsville"

      },

      {

        "Item": "Petersburg (4)",

        "Count": 4,

        "Value": "Petersburg"

      },

      {

        "Item": "Alberta (3)",

        "Count": 3,

        "Value": "Alberta"

      },

      {

        "Item": "Franklin (3)",

        "Count": 3,

        "Value": "Franklin"

      },

      {

        "Item": "Melfa (3)",

        "Count": 3,

        "Value": "Melfa"

      },

      {

        "Item": "South Prince George (3)",

        "Count": 3,

        "Value": "South Prince George"

      },

      {

        "Item": "Sweet Briar (3)",

        "Count": 3,

        "Value": "Sweet Briar"

      },

      {

        "Item": "Wise (3)",

        "Count": 3,

        "Value": "Wise"

      },

      {

        "Item": "Vienna (2)",

        "Count": 2,

        "Value": "Vienna"

      },

      {

        "Item": "Alexandria (1)",

        "Count": 1,

        "Value": "Alexandria"

      },

      {

        "Item": "Colonial Heights (1)",

        "Count": 1,

        "Value": "Colonial Heights"

      },

      {

        "Item": "Oakwood (1)",

        "Count": 1,

        "Value": "Oakwood"

      }

    ]

  },

  "RegionCountList": {

    "UndoList": [],

    "FilterList": []

  },

  "OccupationCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Natural Sciences Managers (305)",

        "Count": 305,

        "Value": "Natural Sciences Managers"

      },

      {

        "Item": "Secondary School Teachers, Except Special and Career/Technical Education (162)",

        "Count": 162,

        "Value": "Secondary School Teachers~D~ Except Special and Career~I~Technical Education"

      },

      {

        "Item": "Registered Nurses (121)",

        "Count": 121,

        "Value": "Registered Nurses"

      },

      {

        "Item": "Nursing Instructors and Teachers, Postsecondary (119)",

        "Count": 119,

        "Value": "Nursing Instructors and Teachers~D~ Postsecondary"

      },

      {

        "Item": "Biological Science Teachers, Postsecondary (96)",

        "Count": 96,

        "Value": "Biological Science Teachers~D~ Postsecondary"

      },

      {

        "Item": "Medical and Health Services Managers (96)",

        "Count": 96,

        "Value": "Medical and Health Services Managers"

      },

      {

        "Item": "Data Scientists (93)",

        "Count": 93,

        "Value": "Data Scientists"

      },

      {

        "Item": "Food Science Technicians (91)",

        "Count": 91,

        "Value": "Food Science Technicians"

      },

      {

        "Item": "Computer and Information Systems Managers (81)",

        "Count": 81,

        "Value": "Computer and Information Systems Managers"

      },

      {

        "Item": "Biological Scientists, All Other (76)",

        "Count": 76,

        "Value": "Biological Scientists~D~ All Other"

      },

      {

        "Item": "Biological Technicians (74)",

        "Count": 74,

        "Value": "Biological Technicians"

      },

      {

        "Item": "Database Architects (74)",

        "Count": 74,

        "Value": "Database Architects"

      },

      {

        "Item": "Forensic Science Technicians (74)",

        "Count": 74,

        "Value": "Forensic Science Technicians"

      },

      {

        "Item": "Computer and Information Research Scientists (73)",

        "Count": 73,

        "Value": "Computer and Information Research Scientists"

      },

      {

        "Item": "Computer Network Architects (69)",

        "Count": 69,

        "Value": "Computer Network Architects"

      },

      {

        "Item": "Computer Systems Analysts (69)",

        "Count": 69,

        "Value": "Computer Systems Analysts"

      },

      {

        "Item": "Mathematical Science Teachers, Postsecondary (66)",

        "Count": 66,

        "Value": "Mathematical Science Teachers~D~ Postsecondary"

      },

      {

        "Item": "Statisticians (66)",

        "Count": 66,

        "Value": "Statisticians"

      },

      {

        "Item": "Software Quality Assurance Analysts and Testers (65)",

        "Count": 65,

        "Value": "Software Quality Assurance Analysts and Testers"

      },

      {

        "Item": "Mathematical Science Occupations, All Other (59)",

        "Count": 59,

        "Value": "Mathematical Science Occupations~D~ All Other"

      },

      {

        "Item": "Mathematicians (58)",

        "Count": 58,

        "Value": "Mathematicians"

      },

      {

        "Item": "Computer Science Teachers, Postsecondary (57)",

        "Count": 57,

        "Value": "Computer Science Teachers~D~ Postsecondary"

      },

      {

        "Item": "Health Specialties Teachers, Postsecondary (56)",

        "Count": 56,

        "Value": "Health Specialties Teachers~D~ Postsecondary"

      },

      {

        "Item": "Nurse Practitioners (54)",

        "Count": 54,

        "Value": "Nurse Practitioners"

      },

      {

        "Item": "Computer Occupations, All Other (53)",

        "Count": 53,

        "Value": "Computer Occupations~D~ All Other"

      },

      {

        "Item": "Postsecondary Teachers, All Other (52)",

        "Count": 52,

        "Value": "Postsecondary Teachers~D~ All Other"

      },

      {

        "Item": "Database Administrators (46)",

        "Count": 46,

        "Value": "Database Administrators"

      },

      {

        "Item": "Life Scientists, All Other (46)",

        "Count": 46,

        "Value": "Life Scientists~D~ All Other"

      },

      {

        "Item": "Network and Computer Systems Administrators (46)",

        "Count": 46,

        "Value": "Network and Computer Systems Administrators"

      },

      {

        "Item": "Web and Digital Interface Designers (46)",

        "Count": 46,

        "Value": "Web and Digital Interface Designers"

      },

      {

        "Item": "Agricultural Technicians (39)",

        "Count": 39,

        "Value": "Agricultural Technicians"

      },

      {

        "Item": "Chemistry Teachers, Postsecondary (37)",

        "Count": 37,

        "Value": "Chemistry Teachers~D~ Postsecondary"

      },

      {

        "Item": "Chemists (37)",

        "Count": 37,

        "Value": "Chemists"

      },

      {

        "Item": "Chemical Technicians (35)",

        "Count": 35,

        "Value": "Chemical Technicians"

      },

      {

        "Item": "Medical Scientists, Except Epidemiologists (34)",

        "Count": 34,

        "Value": "Medical Scientists~D~ Except Epidemiologists"

      },

      {

        "Item": "Licensed Practical and Licensed Vocational Nurses (33)",

        "Count": 33,

        "Value": "Licensed Practical and Licensed Vocational Nurses"

      },

      {

        "Item": "Physicists (32)",

        "Count": 32,

        "Value": "Physicists"

      },

      {

        "Item": "Software Developers (31)",

        "Count": 31,

        "Value": "Software Developers"

      },

      {

        "Item": "Physics Teachers, Postsecondary (29)",

        "Count": 29,

        "Value": "Physics Teachers~D~ Postsecondary"

      },

      {

        "Item": "Information Security Analysts (22)",

        "Count": 22,

        "Value": "Information Security Analysts"

      },

      {

        "Item": "Biochemists and Biophysicists (19)",

        "Count": 19,

        "Value": "Biochemists and Biophysicists"

      },

      {

        "Item": "Community Health Workers (19)",

        "Count": 19,

        "Value": "Community Health Workers"

      },

      {

        "Item": "Health Education Specialists (18)",

        "Count": 18,

        "Value": "Health Education Specialists"

      },

      {

        "Item": "Actuaries (17)",

        "Count": 17,

        "Value": "Actuaries"

      },

      {

        "Item": "Atmospheric, Earth, Marine, and Space Sciences Teachers, Postsecondary (16)",

        "Count": 16,

        "Value": "Atmospheric~D~ Earth~D~ Marine~D~ and Space Sciences Teachers~D~ Postsecondary"

      },

      {

        "Item": "Financial Specialists, All Other (13)",

        "Count": 13,

        "Value": "Financial Specialists~D~ All Other"

      },

      {

        "Item": "Managers, All Other (13)",

        "Count": 13,

        "Value": "Managers~D~ All Other"

      },

      {

        "Item": "Business Teachers, Postsecondary (12)",

        "Count": 12,

        "Value": "Business Teachers~D~ Postsecondary"

      },

      {

        "Item": "Social Scientists and Related Workers, All Other (12)",

        "Count": 12,

        "Value": "Social Scientists and Related Workers~D~ All Other"

      },

      {

        "Item": "Chief Executives (10)",

        "Count": 10,

        "Value": "Chief Executives"

      },

      {

        "Item": "Conservation Scientists (10)",

        "Count": 10,

        "Value": "Conservation Scientists"

      },

      {

        "Item": "Education Administrators, All Other (10)",

        "Count": 10,

        "Value": "Education Administrators~D~ All Other"

      },

      {

        "Item": "Environmental Scientists and Specialists, Including Health (10)",

        "Count": 10,

        "Value": "Environmental Scientists and Specialists~D~ Including Health"

      },

      {

        "Item": "Fundraising Managers (10)",

        "Count": 10,

        "Value": "Fundraising Managers"

      },

      {

        "Item": "General and Operations Managers (10)",

        "Count": 10,

        "Value": "General and Operations Managers"

      },

      {

        "Item": "Geoscientists, Except Hydrologists and Geographers (10)",

        "Count": 10,

        "Value": "Geoscientists~D~ Except Hydrologists and Geographers"

      },

      {

        "Item": "Social and Community Service Managers (10)",

        "Count": 10,

        "Value": "Social and Community Service Managers"

      },

      {

        "Item": "Surgical Assistants (10)",

        "Count": 10,

        "Value": "Surgical Assistants"

      },

      {

        "Item": "Surgical Technologists (10)",

        "Count": 10,

        "Value": "Surgical Technologists"

      },

      {

        "Item": "Environmental Science Teachers, Postsecondary (9)",

        "Count": 9,

        "Value": "Environmental Science Teachers~D~ Postsecondary"

      },

      {

        "Item": "Environmental Science and Protection Technicians, Including Health (9)",

        "Count": 9,

        "Value": "Environmental Science and Protection Technicians~D~ Including Health"

      },

      {

        "Item": "Hydrologists (8)",

        "Count": 8,

        "Value": "Hydrologists"

      },

      {

        "Item": "Urban and Regional Planners (8)",

        "Count": 8,

        "Value": "Urban and Regional Planners"

      },

      {

        "Item": "Geological Technicians, Except Hydrologic Technicians (7)",

        "Count": 7,

        "Value": "Geological Technicians~D~ Except Hydrologic Technicians"

      },

      {

        "Item": "Survey Researchers (6)",

        "Count": 6,

        "Value": "Survey Researchers"

      },

      {

        "Item": "Computer Network Support Specialists (5)",

        "Count": 5,

        "Value": "Computer Network Support Specialists"

      },

      {

        "Item": "Nursing Assistants (5)",

        "Count": 5,

        "Value": "Nursing Assistants"

      },

      {

        "Item": "Zoologists and Wildlife Biologists (5)",

        "Count": 5,

        "Value": "Zoologists and Wildlife Biologists"

      },

      {

        "Item": "Architectural and Engineering Managers (4)",

        "Count": 4,

        "Value": "Architectural and Engineering Managers"

      },

      {

        "Item": "Education Administrators, Postsecondary (4)",

        "Count": 4,

        "Value": "Education Administrators~D~ Postsecondary"

      },

      {

        "Item": "Engineering Teachers, Postsecondary (4)",

        "Count": 4,

        "Value": "Engineering Teachers~D~ Postsecondary"

      },

      {

        "Item": "Epidemiologists (4)",

        "Count": 4,

        "Value": "Epidemiologists"

      },

      {

        "Item": "Pharmacists (4)",

        "Count": 4,

        "Value": "Pharmacists"

      },

      {

        "Item": "Physical Scientists, All Other (4)",

        "Count": 4,

        "Value": "Physical Scientists~D~ All Other"

      },

      {

        "Item": "Astronomers (3)",

        "Count": 3,

        "Value": "Astronomers"

      },

      {

        "Item": "Atmospheric and Space Scientists (3)",

        "Count": 3,

        "Value": "Atmospheric and Space Scientists"

      },

      {

        "Item": "Economists (3)",

        "Count": 3,

        "Value": "Economists"

      },

      {

        "Item": "Engineers, All Other (3)",

        "Count": 3,

        "Value": "Engineers~D~ All Other"

      },

      {

        "Item": "Financial Risk Specialists (3)",

        "Count": 3,

        "Value": "Financial Risk Specialists"

      },

      {

        "Item": "Financial and Investment Analysts (3)",

        "Count": 3,

        "Value": "Financial and Investment Analysts"

      },

      {

        "Item": "Veterinary Assistants and Laboratory Animal Caretakers (3)",

        "Count": 3,

        "Value": "Veterinary Assistants and Laboratory Animal Caretakers"

      },

      {

        "Item": "Veterinary Technologists and Technicians (3)",

        "Count": 3,

        "Value": "Veterinary Technologists and Technicians"

      },

      {

        "Item": "Health Information Technologists and Medical Registrars (2)",

        "Count": 2,

        "Value": "Health Information Technologists and Medical Registrars"

      },

      {

        "Item": "Industrial Production Managers (2)",

        "Count": 2,

        "Value": "Industrial Production Managers"

      },

      {

        "Item": "Medical Records Specialists (2)",

        "Count": 2,

        "Value": "Medical Records Specialists"

      },

      {

        "Item": "Microbiologists (2)",

        "Count": 2,

        "Value": "Microbiologists"

      },

      {

        "Item": "Psychiatric Aides (2)",

        "Count": 2,

        "Value": "Psychiatric Aides"

      },

      {

        "Item": "Psychiatric Technicians (2)",

        "Count": 2,

        "Value": "Psychiatric Technicians"

      },

      {

        "Item": "Anthropologists and Archeologists (1)",

        "Count": 1,

        "Value": "Anthropologists and Archeologists"

      },

      {

        "Item": "Computer Programmers (1)",

        "Count": 1,

        "Value": "Computer Programmers"

      },

      {

        "Item": "Dietetic Technicians (1)",

        "Count": 1,

        "Value": "Dietetic Technicians"

      },

      {

        "Item": "Dietitians and Nutritionists (1)",

        "Count": 1,

        "Value": "Dietitians and Nutritionists"

      },

      {

        "Item": "Facilities Managers (1)",

        "Count": 1,

        "Value": "Facilities Managers"

      },

      {

        "Item": "Family and Consumer Sciences Teachers, Postsecondary (1)",

        "Count": 1,

        "Value": "Family and Consumer Sciences Teachers~D~ Postsecondary"

      },

      {

        "Item": "Farm and Home Management Educators (1)",

        "Count": 1,

        "Value": "Farm and Home Management Educators"

      },

      {

        "Item": "Forestry and Conservation Science Teachers, Postsecondary (1)",

        "Count": 1,

        "Value": "Forestry and Conservation Science Teachers~D~ Postsecondary"

      },

      {

        "Item": "Geographers (1)",

        "Count": 1,

        "Value": "Geographers"

      },

      {

        "Item": "Geography Teachers, Postsecondary (1)",

        "Count": 1,

        "Value": "Geography Teachers~D~ Postsecondary"

      },

      {

        "Item": "Life, Physical, and Social Science Technicians, All Other (1)",

        "Count": 1,

        "Value": "Life~D~ Physical~D~ and Social Science Technicians~D~ All Other"

      },

      {

        "Item": "Management Analysts (1)",

        "Count": 1,

        "Value": "Management Analysts"

      },

      {

        "Item": "Medical and Clinical Laboratory Technologists (1)",

        "Count": 1,

        "Value": "Medical and Clinical Laboratory Technologists"

      },

      {

        "Item": "Nurse Anesthetists (1)",

        "Count": 1,

        "Value": "Nurse Anesthetists"

      },

      {

        "Item": "Nurse Midwives (1)",

        "Count": 1,

        "Value": "Nurse Midwives"

      },

      {

        "Item": "Occupational Health and Safety Specialists (1)",

        "Count": 1,

        "Value": "Occupational Health and Safety Specialists"

      },

      {

        "Item": "Occupational Health and Safety Technicians (1)",

        "Count": 1,

        "Value": "Occupational Health and Safety Technicians"

      },

      {

        "Item": "Operations Research Analysts (1)",

        "Count": 1,

        "Value": "Operations Research Analysts"

      },

      {

        "Item": "Project Management Specialists (1)",

        "Count": 1,

        "Value": "Project Management Specialists"

      },

      {

        "Item": "Psychology Teachers, Postsecondary (1)",

        "Count": 1,

        "Value": "Psychology Teachers~D~ Postsecondary"

      },

      {

        "Item": "Social Science Research Assistants (1)",

        "Count": 1,

        "Value": "Social Science Research Assistants"

      },

      {

        "Item": "Social Sciences Teachers, Postsecondary, All Other (1)",

        "Count": 1,

        "Value": "Social Sciences Teachers~D~ Postsecondary~D~ All Other"

      },

      {

        "Item": "Soil and Plant Scientists (1)",

        "Count": 1,

        "Value": "Soil and Plant Scientists"

      }

    ]

  },

  "ProgramCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Registered Nursing/Registered Nurse (67)",

        "Count": 67,

        "Value": "Registered Nursing~I~Registered Nurse"

      },

      {

        "Item": "Computer and Information Sciences, General (46)",

        "Count": 46,

        "Value": "Computer and Information Sciences~D~ General"

      },

      {

        "Item": "Biology/Biological Sciences, General (39)",

        "Count": 39,

        "Value": "Biology~I~Biological Sciences~D~ General"

      },

      {

        "Item": "Mathematics, General (37)",

        "Count": 37,

        "Value": "Mathematics~D~ General"

      },

      {

        "Item": "Chemistry, General (35)",

        "Count": 35,

        "Value": "Chemistry~D~ General"

      },

      {

        "Item": "Licensed Practical/Vocational Nurse Training (30)",

        "Count": 30,

        "Value": "Licensed Practical~I~Vocational Nurse Training"

      },

      {

        "Item": "Health/Health Care Administration/Management (25)",

        "Count": 25,

        "Value": "Health~I~Health Care Administration~I~Management"

      },

      {

        "Item": "Physics, General (25)",

        "Count": 25,

        "Value": "Physics~D~ General"

      },

      {

        "Item": "Biological and Physical Sciences (24)",

        "Count": 24,

        "Value": "Biological and Physical Sciences"

      },

      {

        "Item": "Information Technology (18)",

        "Count": 18,

        "Value": "Information Technology"

      },

      {

        "Item": "Biochemistry (16)",

        "Count": 16,

        "Value": "Biochemistry"

      },

      {

        "Item": "Public Health, General (16)",

        "Count": 16,

        "Value": "Public Health~D~ General"

      },

      {

        "Item": "Nursing Practice (12)",

        "Count": 12,

        "Value": "Nursing Practice"

      },

      {

        "Item": "Family Practice Nurse/Nursing (11)",

        "Count": 11,

        "Value": "Family Practice Nurse~I~Nursing"

      },

      {

        "Item": "Non-Profit/Public/Organizational Management (10)",

        "Count": 10,

        "Value": "Non~B~Profit~I~Public~I~Organizational Management"

      },

      {

        "Item": "Surgical Technology/Technologist (10)",

        "Count": 10,

        "Value": "Surgical Technology~I~Technologist"

      },

      {

        "Item": "Neuroscience (9)",

        "Count": 9,

        "Value": "Neuroscience"

      },

      {

        "Item": "Psychiatric/Mental Health Nurse/Nursing (9)",

        "Count": 9,

        "Value": "Psychiatric~I~Mental Health Nurse~I~Nursing"

      },

      {

        "Item": "Applied Mathematics, General (8)",

        "Count": 8,

        "Value": "Applied Mathematics~D~ General"

      },

      {

        "Item": "Data Science, General (8)",

        "Count": 8,

        "Value": "Data Science~D~ General"

      },

      {

        "Item": "Sustainability Studies (8)",

        "Count": 8,

        "Value": "Sustainability Studies"

      },

      {

        "Item": "Geology/Earth Science, General (7)",

        "Count": 7,

        "Value": "Geology~I~Earth Science~D~ General"

      },

      {

        "Item": "Nursing Administration (7)",

        "Count": 7,

        "Value": "Nursing Administration"

      },

      {

        "Item": "Mathematics and Computer Science (5)",

        "Count": 5,

        "Value": "Mathematics and Computer Science"

      },

      {

        "Item": "Public Health, Other (5)",

        "Count": 5,

        "Value": "Public Health~D~ Other"

      },

      {

        "Item": "Statistics, General (5)",

        "Count": 5,

        "Value": "Statistics~D~ General"

      },

      {

        "Item": "Biological and Biomedical Sciences, Other (4)",

        "Count": 4,

        "Value": "Biological and Biomedical Sciences~D~ Other"

      },

      {

        "Item": "Computer Systems Networking and Telecommunications (4)",

        "Count": 4,

        "Value": "Computer Systems Networking and Telecommunications"

      },

      {

        "Item": "Pharmacy (4)",

        "Count": 4,

        "Value": "Pharmacy"

      },

      {

        "Item": "Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other (4)",

        "Count": 4,

        "Value": "Registered Nursing~D~ Nursing Administration~D~ Nursing Research and Clinical Nursing~D~ Other"

      },

      {

        "Item": "Community Health and Preventive Medicine (3)",

        "Count": 3,

        "Value": "Community Health and Preventive Medicine"

      },

      {

        "Item": "Engineering Physics/Applied Physics (3)",

        "Count": 3,

        "Value": "Engineering Physics~I~Applied Physics"

      },

      {

        "Item": "Financial Mathematics (3)",

        "Count": 3,

        "Value": "Financial Mathematics"

      },

      {

        "Item": "Nursing Education (3)",

        "Count": 3,

        "Value": "Nursing Education"

      },

      {

        "Item": "Nursing Science (3)",

        "Count": 3,

        "Value": "Nursing Science"

      },

      {

        "Item": "Physical Sciences, Other (3)",

        "Count": 3,

        "Value": "Physical Sciences~D~ Other"

      },

      {

        "Item": "Physics, Other (3)",

        "Count": 3,

        "Value": "Physics~D~ Other"

      },

      {

        "Item": "Practical Nursing, Vocational Nursing and Nursing Assistants, Other (3)",

        "Count": 3,

        "Value": "Practical Nursing~D~ Vocational Nursing and Nursing Assistants~D~ Other"

      },

      {

        "Item": "Science, Technology and Society (3)",

        "Count": 3,

        "Value": "Science~D~ Technology and Society"

      },

      {

        "Item": "Veterinary/Animal Health Technology/Technician and Veterinary Assistant (3)",

        "Count": 3,

        "Value": "Veterinary~I~Animal Health Technology~I~Technician and Veterinary Assistant"

      },

      {

        "Item": "Anatomy (2)",

        "Count": 2,

        "Value": "Anatomy"

      },

      {

        "Item": "Astronomy (2)",

        "Count": 2,

        "Value": "Astronomy"

      },

      {

        "Item": "Biostatistics (2)",

        "Count": 2,

        "Value": "Biostatistics"

      },

      {

        "Item": "Biotechnology (2)",

        "Count": 2,

        "Value": "Biotechnology"

      },

      {

        "Item": "Chemistry, Other (2)",

        "Count": 2,

        "Value": "Chemistry~D~ Other"

      },

      {

        "Item": "Cognitive Science, General (2)",

        "Count": 2,

        "Value": "Cognitive Science~D~ General"

      },

      {

        "Item": "Computational and Applied Mathematics (2)",

        "Count": 2,

        "Value": "Computational and Applied Mathematics"

      },

      {

        "Item": "Epidemiology (2)",

        "Count": 2,

        "Value": "Epidemiology"

      },

      {

        "Item": "Geological and Earth Sciences/Geosciences, Other (2)",

        "Count": 2,

        "Value": "Geological and Earth Sciences~I~Geosciences~D~ Other"

      },

      {

        "Item": "Health Information/Medical Records Administration/Administrator (2)",

        "Count": 2,

        "Value": "Health Information~I~Medical Records Administration~I~Administrator"

      },

      {

        "Item": "Health Services Administration (2)",

        "Count": 2,

        "Value": "Health Services Administration"

      },

      {

        "Item": "International Public Health/International Health (2)",

        "Count": 2,

        "Value": "International Public Health~I~International Health"

      },

      {

        "Item": "Marine Biology and Biological Oceanography (2)",

        "Count": 2,

        "Value": "Marine Biology and Biological Oceanography"

      },

      {

        "Item": "Medical Microbiology and Bacteriology (2)",

        "Count": 2,

        "Value": "Medical Microbiology and Bacteriology"

      },

      {

        "Item": "Nursing Assistant/Aide and Patient Care Assistant/Aide (2)",

        "Count": 2,

        "Value": "Nursing Assistant~I~Aide and Patient Care Assistant~I~Aide"

      },

      {

        "Item": "Pathology/Experimental Pathology (2)",

        "Count": 2,

        "Value": "Pathology~I~Experimental Pathology"

      },

      {

        "Item": "Pharmacology (2)",

        "Count": 2,

        "Value": "Pharmacology"

      },

      {

        "Item": "Physical Sciences, General (2)",

        "Count": 2,

        "Value": "Physical Sciences~D~ General"

      },

      {

        "Item": "Psychiatric/Mental Health Services Technician (2)",

        "Count": 2,

        "Value": "Psychiatric~I~Mental Health Services Technician"

      },

      {

        "Item": "Adult Health Nurse/Nursing (1)",

        "Count": 1,

        "Value": "Adult Health Nurse~I~Nursing"

      },

      {

        "Item": "Applied Mathematics, Other (1)",

        "Count": 1,

        "Value": "Applied Mathematics~D~ Other"

      },

      {

        "Item": "Applied Statistics, General (1)",

        "Count": 1,

        "Value": "Applied Statistics~D~ General"

      },

      {

        "Item": "Atmospheric Physics and Dynamics (1)",

        "Count": 1,

        "Value": "Atmospheric Physics and Dynamics"

      },

      {

        "Item": "Atmospheric Sciences and Meteorology, General (1)",

        "Count": 1,

        "Value": "Atmospheric Sciences and Meteorology~D~ General"

      },

      {

        "Item": "Atomic/Molecular Physics (1)",

        "Count": 1,

        "Value": "Atomic~I~Molecular Physics"

      },

      {

        "Item": "Biochemistry and Molecular Biology (1)",

        "Count": 1,

        "Value": "Biochemistry and Molecular Biology"

      },

      {

        "Item": "Biometry/Biometrics (1)",

        "Count": 1,

        "Value": "Biometry~I~Biometrics"

      },

      {

        "Item": "Biophysics (1)",

        "Count": 1,

        "Value": "Biophysics"

      },

      {

        "Item": "Biopsychology (1)",

        "Count": 1,

        "Value": "Biopsychology"

      },

      {

        "Item": "Cell/Cellular Biology and Histology (1)",

        "Count": 1,

        "Value": "Cell~I~Cellular Biology and Histology"

      },

      {

        "Item": "Cell/Cellular and Molecular Biology (1)",

        "Count": 1,

        "Value": "Cell~I~Cellular and Molecular Biology"

      },

      {

        "Item": "Clinical Nurse Leader (1)",

        "Count": 1,

        "Value": "Clinical Nurse Leader"

      },

      {

        "Item": "Clinical Nurse Specialist (1)",

        "Count": 1,

        "Value": "Clinical Nurse Specialist"

      },

      {

        "Item": "Clinical Research Coordinator (1)",

        "Count": 1,

        "Value": "Clinical Research Coordinator"

      },

      {

        "Item": "Clinical and Industrial Drug Development (1)",

        "Count": 1,

        "Value": "Clinical and Industrial Drug Development"

      },

      {

        "Item": "Computational Biology (1)",

        "Count": 1,

        "Value": "Computational Biology"

      },

      {

        "Item": "Computational Science (1)",

        "Count": 1,

        "Value": "Computational Science"

      },

      {

        "Item": "Computer Systems Analysis/Analyst (1)",

        "Count": 1,

        "Value": "Computer Systems Analysis~I~Analyst"

      },

      {

        "Item": "Critical Care Nursing (1)",

        "Count": 1,

        "Value": "Critical Care Nursing"

      },

      {

        "Item": "Data Science, Other (1)",

        "Count": 1,

        "Value": "Data Science~D~ Other"

      },

      {

        "Item": "Ecology (1)",

        "Count": 1,

        "Value": "Ecology"

      },

      {

        "Item": "Entomology (1)",

        "Count": 1,

        "Value": "Entomology"

      },

      {

        "Item": "Environmental Health (1)",

        "Count": 1,

        "Value": "Environmental Health"

      },

      {

        "Item": "Geography and Environmental Studies (1)",

        "Count": 1,

        "Value": "Geography and Environmental Studies"

      },

      {

        "Item": "Geriatric Nurse/Nursing (1)",

        "Count": 1,

        "Value": "Geriatric Nurse~I~Nursing"

      },

      {

        "Item": "Health Policy Analysis (1)",

        "Count": 1,

        "Value": "Health Policy Analysis"

      },

      {

        "Item": "Health Professions Education, Ethics, and Humanities, Other (1)",

        "Count": 1,

        "Value": "Health Professions Education~D~ Ethics~D~ and Humanities~D~ Other"

      },

      {

        "Item": "Healthcare Innovation (1)",

        "Count": 1,

        "Value": "Healthcare Innovation"

      },

      {

        "Item": "Hospital and Health Care Facilities Administration/Management (1)",

        "Count": 1,

        "Value": "Hospital and Health Care Facilities Administration~I~Management"

      },

      {

        "Item": "Human Biology (1)",

        "Count": 1,

        "Value": "Human Biology"

      },

      {

        "Item": "Maternal/Child Health and Neonatal Nurse/Nursing (1)",

        "Count": 1,

        "Value": "Maternal~I~Child Health and Neonatal Nurse~I~Nursing"

      },

      {

        "Item": "Mathematics and Statistics (1)",

        "Count": 1,

        "Value": "Mathematics and Statistics"

      },

      {

        "Item": "Mathematics and Statistics, Other (1)",

        "Count": 1,

        "Value": "Mathematics and Statistics~D~ Other"

      },

      {

        "Item": "Meteorology (1)",

        "Count": 1,

        "Value": "Meteorology"

      },

      {

        "Item": "Microbiological Sciences and Immunology, Other (1)",

        "Count": 1,

        "Value": "Microbiological Sciences and Immunology~D~ Other"

      },

      {

        "Item": "Microbiology, General (1)",

        "Count": 1,

        "Value": "Microbiology~D~ General"

      },

      {

        "Item": "Molecular Biochemistry (1)",

        "Count": 1,

        "Value": "Molecular Biochemistry"

      },

      {

        "Item": "Natural Sciences (1)",

        "Count": 1,

        "Value": "Natural Sciences"

      },

      {

        "Item": "Nurse Anesthetist (1)",

        "Count": 1,

        "Value": "Nurse Anesthetist"

      },

      {

        "Item": "Nurse Midwife/Nursing Midwifery (1)",

        "Count": 1,

        "Value": "Nurse Midwife~I~Nursing Midwifery"

      },

      {

        "Item": "Nutrition Sciences (1)",

        "Count": 1,

        "Value": "Nutrition Sciences"

      },

      {

        "Item": "Oceanography, Chemical and Physical (1)",

        "Count": 1,

        "Value": "Oceanography~D~ Chemical and Physical"

      },

      {

        "Item": "Operations Research (1)",

        "Count": 1,

        "Value": "Operations Research"

      },

      {

        "Item": "Pediatric Nurse/Nursing (1)",

        "Count": 1,

        "Value": "Pediatric Nurse~I~Nursing"

      },

      {

        "Item": "Planetary Astronomy and Science (1)",

        "Count": 1,

        "Value": "Planetary Astronomy and Science"

      },

      {

        "Item": "Plant Pathology/Phytopathology (1)",

        "Count": 1,

        "Value": "Plant Pathology~I~Phytopathology"

      },

      {

        "Item": "Public Health/Community Nurse/Nursing (1)",

        "Count": 1,

        "Value": "Public Health~I~Community Nurse~I~Nursing"

      },

      {

        "Item": "Research and Development Management (1)",

        "Count": 1,

        "Value": "Research and Development Management"

      },

      {

        "Item": "Science/Technology Management (1)",

        "Count": 1,

        "Value": "Science~I~Technology Management"

      },

      {

        "Item": "Zoology/Animal Biology (1)",

        "Count": 1,

        "Value": "Zoology~I~Animal Biology"

      }

    ]

  },

  "ProgramLengthCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Bachelor's degree, usually 4 years (313)",

        "Count": 313,

        "Value": "Bachelor~F~apos~Q~s degree~D~ usually 4 years"

      },

      {

        "Item": "Beyond bachelor's degree (257)",

        "Count": 257,

        "Value": "Beyond bachelor~F~apos~Q~s degree"

      },

      {

        "Item": "Associate's degree, usually 2 years (96)",

        "Count": 96,

        "Value": "Associate~F~apos~Q~s degree~D~ usually 2 years"

      },

      {

        "Item": "Certificate, 12 weeks to less than 1 year (71)",

        "Count": 71,

        "Value": "Certificate~D~ 12 weeks to less than 1 year"

      },

      {

        "Item": "Certificate, 1 year to less than 2 years (41)",

        "Count": 41,

        "Value": "Certificate~D~ 1 year to less than 2 years"

      },

      {

        "Item": "Certificate, less than 12 weeks (2)",

        "Count": 2,

        "Value": "Certificate~D~ less than 12 weeks"

      }

    ]

  },

  "SchoolOrProgram": "P"

}

<SchoolProgram

xmlns:i="http://www.w3.org/2001/XMLSchema-instance"

xmlns="http://schemas.datacontract.org/2004/07/XPAND.CareerOneStop.WebApi.ViewModels">

<AutoCorrection i:nil="true"/>

<CityCountList>

<FilterList>

<ItemCount>

<Count>51</Count>

<Item>Richmond (51)</Item>

<Value>Richmond</Value>

</ItemCount>

<ItemCount>

<Count>47</Count>

<Item>Norfolk (47)</Item>

<Value>Norfolk</Value>

</ItemCount>

<ItemCount>

<Count>45</Count>

<Item>Lynchburg (45)</Item>

<Value>Lynchburg</Value>

</ItemCount>

<ItemCount>

<Count>38</Count>

<Item>Fairfax (38)</Item>

<Value>Fairfax</Value>

</ItemCount>

<ItemCount>

<Count>36</Count>

<Item>Charlottesville (36)</Item>

<Value>Charlottesville</Value>

</ItemCount>

<ItemCount>

<Count>34</Count>

<Item>Virginia Beach (34)</Item>

<Value>Virginia Beach</Value>

</ItemCount>

<ItemCount>

<Count>25</Count>

<Item>Arlington (25)</Item>

<Value>Arlington</Value>

</ItemCount>

<ItemCount>

<Count>25</Count>

<Item>Blacksburg (25)</Item>

<Value>Blacksburg</Value>

</ItemCount>

<ItemCount>

<Count>25</Count>

<Item>Harrisonburg (25)</Item>

<Value>Harrisonburg</Value>

</ItemCount>

<ItemCount>

<Count>18</Count>

<Item>Hampton (18)</Item>

<Value>Hampton</Value>

</ItemCount>

<ItemCount>

<Count>18</Count>

<Item>Winchester (18)</Item>

<Value>Winchester</Value>

</ItemCount>

<ItemCount>

<Count>15</Count>

<Item>Radford (15)</Item>

<Value>Radford</Value>

</ItemCount>

<ItemCount>

<Count>13</Count>

<Item>Williamsburg (13)</Item>

<Value>Williamsburg</Value>

</ItemCount>

<ItemCount>

<Count>12</Count>

<Item>Danville (12)</Item>

<Value>Danville</Value>

</ItemCount>

<ItemCount>

<Count>11</Count>

<Item>Lexington (11)</Item>

<Value>Lexington</Value>

</ItemCount>

<ItemCount>

<Count>11</Count>

<Item>Salem (11)</Item>

<Value>Salem</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Roanoke (10)</Item>

<Value>Roanoke</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Staunton (10)</Item>

<Value>Staunton</Value>

</ItemCount>

<ItemCount>

<Count>9</Count>

<Item>Ashland (9)</Item>

<Value>Ashland</Value>

</ItemCount>

<ItemCount>

<Count>9</Count>

<Item>Bluefield (9)</Item>

<Value>Bluefield</Value>

</ItemCount>

<ItemCount>

<Count>9</Count>

<Item>Fredericksburg (9)</Item>

<Value>Fredericksburg</Value>

</ItemCount>

<ItemCount>

<Count>9</Count>

<Item>University Of Richmond (9)</Item>

<Value>University Of Richmond</Value>

</ItemCount>

<ItemCount>

<Count>8</Count>

<Item>Bridgewater (8)</Item>

<Value>Bridgewater</Value>

</ItemCount>

<ItemCount>

<Count>8</Count>

<Item>Chester (8)</Item>

<Value>Chester</Value>

</ItemCount>

<ItemCount>

<Count>8</Count>

<Item>Newport News (8)</Item>

<Value>Newport News</Value>

</ItemCount>

<ItemCount>

<Count>7</Count>

<Item>Clifton Forge (7)</Item>

<Value>Clifton Forge</Value>

</ItemCount>

<ItemCount>

<Count>7</Count>

<Item>Emory (7)</Item>

<Value>Emory</Value>

</ItemCount>

<ItemCount>

<Count>7</Count>

<Item>Hampden-Sydney (7)</Item>

<Value>Hampden~B~Sydney</Value>

</ItemCount>

<ItemCount>

<Count>6</Count>

<Item>Annandale (6)</Item>

<Value>Annandale</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Chesapeake (5)</Item>

<Value>Chesapeake</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Farmville (5)</Item>

<Value>Farmville</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Middletown (5)</Item>

<Value>Middletown</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Weyers Cave (5)</Item>

<Value>Weyers Cave</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Wytheville (5)</Item>

<Value>Wytheville</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Abingdon (4)</Item>

<Value>Abingdon</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Big Stone Gap (4)</Item>

<Value>Big Stone Gap</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Buena Vista (4)</Item>

<Value>Buena Vista</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Cedar Bluff (4)</Item>

<Value>Cedar Bluff</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Dublin (4)</Item>

<Value>Dublin</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Falls Church (4)</Item>

<Value>Falls Church</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Ferrum (4)</Item>

<Value>Ferrum</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Glen Allen (4)</Item>

<Value>Glen Allen</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Glenns (4)</Item>

<Value>Glenns</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Locust Grove (4)</Item>

<Value>Locust Grove</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Martinsville (4)</Item>

<Value>Martinsville</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Petersburg (4)</Item>

<Value>Petersburg</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Alberta (3)</Item>

<Value>Alberta</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Franklin (3)</Item>

<Value>Franklin</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Melfa (3)</Item>

<Value>Melfa</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>South Prince George (3)</Item>

<Value>South Prince George</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Sweet Briar (3)</Item>

<Value>Sweet Briar</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Wise (3)</Item>

<Value>Wise</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Vienna (2)</Item>

<Value>Vienna</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Alexandria (1)</Item>

<Value>Alexandria</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Colonial Heights (1)</Item>

<Value>Colonial Heights</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Oakwood (1)</Item>

<Value>Oakwood</Value>

</ItemCount>

</FilterList>

<UndoList/>

</CityCountList>

<DidYouMean

xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true"/>

<LocationCountList>

<FilterList/>

<UndoList/>

</LocationCountList>

<OccupationCountList>

<FilterList>

<ItemCount>

<Count>305</Count>

<Item>Natural Sciences Managers (305)</Item>

<Value>Natural Sciences Managers</Value>

</ItemCount>

<ItemCount>

<Count>162</Count>

<Item>Secondary School Teachers, Except Special and Career/Technical Education (162)</Item>

<Value>Secondary School Teachers~D~ Except Special and Career~I~Technical Education</Value>

</ItemCount>

<ItemCount>

<Count>121</Count>

<Item>Registered Nurses (121)</Item>

<Value>Registered Nurses</Value>

</ItemCount>

<ItemCount>

<Count>119</Count>

<Item>Nursing Instructors and Teachers, Postsecondary (119)</Item>

<Value>Nursing Instructors and Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>96</Count>

<Item>Biological Science Teachers, Postsecondary (96)</Item>

<Value>Biological Science Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>96</Count>

<Item>Medical and Health Services Managers (96)</Item>

<Value>Medical and Health Services Managers</Value>

</ItemCount>

<ItemCount>

<Count>93</Count>

<Item>Data Scientists (93)</Item>

<Value>Data Scientists</Value>

</ItemCount>

<ItemCount>

<Count>91</Count>

<Item>Food Science Technicians (91)</Item>

<Value>Food Science Technicians</Value>

</ItemCount>

<ItemCount>

<Count>81</Count>

<Item>Computer and Information Systems Managers (81)</Item>

<Value>Computer and Information Systems Managers</Value>

</ItemCount>

<ItemCount>

<Count>76</Count>

<Item>Biological Scientists, All Other (76)</Item>

<Value>Biological Scientists~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>74</Count>

<Item>Biological Technicians (74)</Item>

<Value>Biological Technicians</Value>

</ItemCount>

<ItemCount>

<Count>74</Count>

<Item>Database Architects (74)</Item>

<Value>Database Architects</Value>

</ItemCount>

<ItemCount>

<Count>74</Count>

<Item>Forensic Science Technicians (74)</Item>

<Value>Forensic Science Technicians</Value>

</ItemCount>

<ItemCount>

<Count>73</Count>

<Item>Computer and Information Research Scientists (73)</Item>

<Value>Computer and Information Research Scientists</Value>

</ItemCount>

<ItemCount>

<Count>69</Count>

<Item>Computer Network Architects (69)</Item>

<Value>Computer Network Architects</Value>

</ItemCount>

<ItemCount>

<Count>69</Count>

<Item>Computer Systems Analysts (69)</Item>

<Value>Computer Systems Analysts</Value>

</ItemCount>

<ItemCount>

<Count>66</Count>

<Item>Mathematical Science Teachers, Postsecondary (66)</Item>

<Value>Mathematical Science Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>66</Count>

<Item>Statisticians (66)</Item>

<Value>Statisticians</Value>

</ItemCount>

<ItemCount>

<Count>65</Count>

<Item>Software Quality Assurance Analysts and Testers (65)</Item>

<Value>Software Quality Assurance Analysts and Testers</Value>

</ItemCount>

<ItemCount>

<Count>59</Count>

<Item>Mathematical Science Occupations, All Other (59)</Item>

<Value>Mathematical Science Occupations~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>58</Count>

<Item>Mathematicians (58)</Item>

<Value>Mathematicians</Value>

</ItemCount>

<ItemCount>

<Count>57</Count>

<Item>Computer Science Teachers, Postsecondary (57)</Item>

<Value>Computer Science Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>56</Count>

<Item>Health Specialties Teachers, Postsecondary (56)</Item>

<Value>Health Specialties Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>54</Count>

<Item>Nurse Practitioners (54)</Item>

<Value>Nurse Practitioners</Value>

</ItemCount>

<ItemCount>

<Count>53</Count>

<Item>Computer Occupations, All Other (53)</Item>

<Value>Computer Occupations~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>52</Count>

<Item>Postsecondary Teachers, All Other (52)</Item>

<Value>Postsecondary Teachers~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>46</Count>

<Item>Database Administrators (46)</Item>

<Value>Database Administrators</Value>

</ItemCount>

<ItemCount>

<Count>46</Count>

<Item>Life Scientists, All Other (46)</Item>

<Value>Life Scientists~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>46</Count>

<Item>Network and Computer Systems Administrators (46)</Item>

<Value>Network and Computer Systems Administrators</Value>

</ItemCount>

<ItemCount>

<Count>46</Count>

<Item>Web and Digital Interface Designers (46)</Item>

<Value>Web and Digital Interface Designers</Value>

</ItemCount>

<ItemCount>

<Count>39</Count>

<Item>Agricultural Technicians (39)</Item>

<Value>Agricultural Technicians</Value>

</ItemCount>

<ItemCount>

<Count>37</Count>

<Item>Chemistry Teachers, Postsecondary (37)</Item>

<Value>Chemistry Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>37</Count>

<Item>Chemists (37)</Item>

<Value>Chemists</Value>

</ItemCount>

<ItemCount>

<Count>35</Count>

<Item>Chemical Technicians (35)</Item>

<Value>Chemical Technicians</Value>

</ItemCount>

<ItemCount>

<Count>34</Count>

<Item>Medical Scientists, Except Epidemiologists (34)</Item>

<Value>Medical Scientists~D~ Except Epidemiologists</Value>

</ItemCount>

<ItemCount>

<Count>33</Count>

<Item>Licensed Practical and Licensed Vocational Nurses (33)</Item>

<Value>Licensed Practical and Licensed Vocational Nurses</Value>

</ItemCount>

<ItemCount>

<Count>32</Count>

<Item>Physicists (32)</Item>

<Value>Physicists</Value>

</ItemCount>

<ItemCount>

<Count>31</Count>

<Item>Software Developers (31)</Item>

<Value>Software Developers</Value>

</ItemCount>

<ItemCount>

<Count>29</Count>

<Item>Physics Teachers, Postsecondary (29)</Item>

<Value>Physics Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>22</Count>

<Item>Information Security Analysts (22)</Item>

<Value>Information Security Analysts</Value>

</ItemCount>

<ItemCount>

<Count>19</Count>

<Item>Biochemists and Biophysicists (19)</Item>

<Value>Biochemists and Biophysicists</Value>

</ItemCount>

<ItemCount>

<Count>19</Count>

<Item>Community Health Workers (19)</Item>

<Value>Community Health Workers</Value>

</ItemCount>

<ItemCount>

<Count>18</Count>

<Item>Health Education Specialists (18)</Item>

<Value>Health Education Specialists</Value>

</ItemCount>

<ItemCount>

<Count>17</Count>

<Item>Actuaries (17)</Item>

<Value>Actuaries</Value>

</ItemCount>

<ItemCount>

<Count>16</Count>

<Item>Atmospheric, Earth, Marine, and Space Sciences Teachers, Postsecondary (16)</Item>

<Value>Atmospheric~D~ Earth~D~ Marine~D~ and Space Sciences Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>13</Count>

<Item>Financial Specialists, All Other (13)</Item>

<Value>Financial Specialists~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>13</Count>

<Item>Managers, All Other (13)</Item>

<Value>Managers~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>12</Count>

<Item>Business Teachers, Postsecondary (12)</Item>

<Value>Business Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>12</Count>

<Item>Social Scientists and Related Workers, All Other (12)</Item>

<Value>Social Scientists and Related Workers~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Chief Executives (10)</Item>

<Value>Chief Executives</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Conservation Scientists (10)</Item>

<Value>Conservation Scientists</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Education Administrators, All Other (10)</Item>

<Value>Education Administrators~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Environmental Scientists and Specialists, Including Health (10)</Item>

<Value>Environmental Scientists and Specialists~D~ Including Health</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Fundraising Managers (10)</Item>

<Value>Fundraising Managers</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>General and Operations Managers (10)</Item>

<Value>General and Operations Managers</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Geoscientists, Except Hydrologists and Geographers (10)</Item>

<Value>Geoscientists~D~ Except Hydrologists and Geographers</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Social and Community Service Managers (10)</Item>

<Value>Social and Community Service Managers</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Surgical Assistants (10)</Item>

<Value>Surgical Assistants</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Surgical Technologists (10)</Item>

<Value>Surgical Technologists</Value>

</ItemCount>

<ItemCount>

<Count>9</Count>

<Item>Environmental Science Teachers, Postsecondary (9)</Item>

<Value>Environmental Science Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>9</Count>

<Item>Environmental Science and Protection Technicians, Including Health (9)</Item>

<Value>Environmental Science and Protection Technicians~D~ Including Health</Value>

</ItemCount>

<ItemCount>

<Count>8</Count>

<Item>Hydrologists (8)</Item>

<Value>Hydrologists</Value>

</ItemCount>

<ItemCount>

<Count>8</Count>

<Item>Urban and Regional Planners (8)</Item>

<Value>Urban and Regional Planners</Value>

</ItemCount>

<ItemCount>

<Count>7</Count>

<Item>Geological Technicians, Except Hydrologic Technicians (7)</Item>

<Value>Geological Technicians~D~ Except Hydrologic Technicians</Value>

</ItemCount>

<ItemCount>

<Count>6</Count>

<Item>Survey Researchers (6)</Item>

<Value>Survey Researchers</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Computer Network Support Specialists (5)</Item>

<Value>Computer Network Support Specialists</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Nursing Assistants (5)</Item>

<Value>Nursing Assistants</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Zoologists and Wildlife Biologists (5)</Item>

<Value>Zoologists and Wildlife Biologists</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Architectural and Engineering Managers (4)</Item>

<Value>Architectural and Engineering Managers</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Education Administrators, Postsecondary (4)</Item>

<Value>Education Administrators~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Engineering Teachers, Postsecondary (4)</Item>

<Value>Engineering Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Epidemiologists (4)</Item>

<Value>Epidemiologists</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Pharmacists (4)</Item>

<Value>Pharmacists</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Physical Scientists, All Other (4)</Item>

<Value>Physical Scientists~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Astronomers (3)</Item>

<Value>Astronomers</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Atmospheric and Space Scientists (3)</Item>

<Value>Atmospheric and Space Scientists</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Economists (3)</Item>

<Value>Economists</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Engineers, All Other (3)</Item>

<Value>Engineers~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Financial Risk Specialists (3)</Item>

<Value>Financial Risk Specialists</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Financial and Investment Analysts (3)</Item>

<Value>Financial and Investment Analysts</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Veterinary Assistants and Laboratory Animal Caretakers (3)</Item>

<Value>Veterinary Assistants and Laboratory Animal Caretakers</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Veterinary Technologists and Technicians (3)</Item>

<Value>Veterinary Technologists and Technicians</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Health Information Technologists and Medical Registrars (2)</Item>

<Value>Health Information Technologists and Medical Registrars</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Industrial Production Managers (2)</Item>

<Value>Industrial Production Managers</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Medical Records Specialists (2)</Item>

<Value>Medical Records Specialists</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Microbiologists (2)</Item>

<Value>Microbiologists</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Psychiatric Aides (2)</Item>

<Value>Psychiatric Aides</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Psychiatric Technicians (2)</Item>

<Value>Psychiatric Technicians</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Anthropologists and Archeologists (1)</Item>

<Value>Anthropologists and Archeologists</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Computer Programmers (1)</Item>

<Value>Computer Programmers</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Dietetic Technicians (1)</Item>

<Value>Dietetic Technicians</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Dietitians and Nutritionists (1)</Item>

<Value>Dietitians and Nutritionists</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Facilities Managers (1)</Item>

<Value>Facilities Managers</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Family and Consumer Sciences Teachers, Postsecondary (1)</Item>

<Value>Family and Consumer Sciences Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Farm and Home Management Educators (1)</Item>

<Value>Farm and Home Management Educators</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Forestry and Conservation Science Teachers, Postsecondary (1)</Item>

<Value>Forestry and Conservation Science Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Geographers (1)</Item>

<Value>Geographers</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Geography Teachers, Postsecondary (1)</Item>

<Value>Geography Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Life, Physical, and Social Science Technicians, All Other (1)</Item>

<Value>Life~D~ Physical~D~ and Social Science Technicians~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Management Analysts (1)</Item>

<Value>Management Analysts</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Medical and Clinical Laboratory Technologists (1)</Item>

<Value>Medical and Clinical Laboratory Technologists</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Nurse Anesthetists (1)</Item>

<Value>Nurse Anesthetists</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Nurse Midwives (1)</Item>

<Value>Nurse Midwives</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Occupational Health and Safety Specialists (1)</Item>

<Value>Occupational Health and Safety Specialists</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Occupational Health and Safety Technicians (1)</Item>

<Value>Occupational Health and Safety Technicians</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Operations Research Analysts (1)</Item>

<Value>Operations Research Analysts</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Project Management Specialists (1)</Item>

<Value>Project Management Specialists</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Psychology Teachers, Postsecondary (1)</Item>

<Value>Psychology Teachers~D~ Postsecondary</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Social Science Research Assistants (1)</Item>

<Value>Social Science Research Assistants</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Social Sciences Teachers, Postsecondary, All Other (1)</Item>

<Value>Social Sciences Teachers~D~ Postsecondary~D~ All Other</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Soil and Plant Scientists (1)</Item>

<Value>Soil and Plant Scientists</Value>

</ItemCount>

</FilterList>

<UndoList/>

</OccupationCountList>

<ProgramCountList>

<FilterList>

<ItemCount>

<Count>67</Count>

<Item>Registered Nursing/Registered Nurse (67)</Item>

<Value>Registered Nursing~I~Registered Nurse</Value>

</ItemCount>

<ItemCount>

<Count>46</Count>

<Item>Computer and Information Sciences, General (46)</Item>

<Value>Computer and Information Sciences~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>39</Count>

<Item>Biology/Biological Sciences, General (39)</Item>

<Value>Biology~I~Biological Sciences~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>37</Count>

<Item>Mathematics, General (37)</Item>

<Value>Mathematics~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>35</Count>

<Item>Chemistry, General (35)</Item>

<Value>Chemistry~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>30</Count>

<Item>Licensed Practical/Vocational Nurse Training (30)</Item>

<Value>Licensed Practical~I~Vocational Nurse Training</Value>

</ItemCount>

<ItemCount>

<Count>25</Count>

<Item>Health/Health Care Administration/Management (25)</Item>

<Value>Health~I~Health Care Administration~I~Management</Value>

</ItemCount>

<ItemCount>

<Count>25</Count>

<Item>Physics, General (25)</Item>

<Value>Physics~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>24</Count>

<Item>Biological and Physical Sciences (24)</Item>

<Value>Biological and Physical Sciences</Value>

</ItemCount>

<ItemCount>

<Count>18</Count>

<Item>Information Technology (18)</Item>

<Value>Information Technology</Value>

</ItemCount>

<ItemCount>

<Count>16</Count>

<Item>Biochemistry (16)</Item>

<Value>Biochemistry</Value>

</ItemCount>

<ItemCount>

<Count>16</Count>

<Item>Public Health, General (16)</Item>

<Value>Public Health~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>12</Count>

<Item>Nursing Practice (12)</Item>

<Value>Nursing Practice</Value>

</ItemCount>

<ItemCount>

<Count>11</Count>

<Item>Family Practice Nurse/Nursing (11)</Item>

<Value>Family Practice Nurse~I~Nursing</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Non-Profit/Public/Organizational Management (10)</Item>

<Value>Non~B~Profit~I~Public~I~Organizational Management</Value>

</ItemCount>

<ItemCount>

<Count>10</Count>

<Item>Surgical Technology/Technologist (10)</Item>

<Value>Surgical Technology~I~Technologist</Value>

</ItemCount>

<ItemCount>

<Count>9</Count>

<Item>Neuroscience (9)</Item>

<Value>Neuroscience</Value>

</ItemCount>

<ItemCount>

<Count>9</Count>

<Item>Psychiatric/Mental Health Nurse/Nursing (9)</Item>

<Value>Psychiatric~I~Mental Health Nurse~I~Nursing</Value>

</ItemCount>

<ItemCount>

<Count>8</Count>

<Item>Applied Mathematics, General (8)</Item>

<Value>Applied Mathematics~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>8</Count>

<Item>Data Science, General (8)</Item>

<Value>Data Science~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>8</Count>

<Item>Sustainability Studies (8)</Item>

<Value>Sustainability Studies</Value>

</ItemCount>

<ItemCount>

<Count>7</Count>

<Item>Geology/Earth Science, General (7)</Item>

<Value>Geology~I~Earth Science~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>7</Count>

<Item>Nursing Administration (7)</Item>

<Value>Nursing Administration</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Mathematics and Computer Science (5)</Item>

<Value>Mathematics and Computer Science</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Public Health, Other (5)</Item>

<Value>Public Health~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>5</Count>

<Item>Statistics, General (5)</Item>

<Value>Statistics~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Biological and Biomedical Sciences, Other (4)</Item>

<Value>Biological and Biomedical Sciences~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Computer Systems Networking and Telecommunications (4)</Item>

<Value>Computer Systems Networking and Telecommunications</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Pharmacy (4)</Item>

<Value>Pharmacy</Value>

</ItemCount>

<ItemCount>

<Count>4</Count>

<Item>Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other (4)</Item>

<Value>Registered Nursing~D~ Nursing Administration~D~ Nursing Research and Clinical Nursing~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Community Health and Preventive Medicine (3)</Item>

<Value>Community Health and Preventive Medicine</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Engineering Physics/Applied Physics (3)</Item>

<Value>Engineering Physics~I~Applied Physics</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Financial Mathematics (3)</Item>

<Value>Financial Mathematics</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Nursing Education (3)</Item>

<Value>Nursing Education</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Nursing Science (3)</Item>

<Value>Nursing Science</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Physical Sciences, Other (3)</Item>

<Value>Physical Sciences~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Physics, Other (3)</Item>

<Value>Physics~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Practical Nursing, Vocational Nursing and Nursing Assistants, Other (3)</Item>

<Value>Practical Nursing~D~ Vocational Nursing and Nursing Assistants~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Science, Technology and Society (3)</Item>

<Value>Science~D~ Technology and Society</Value>

</ItemCount>

<ItemCount>

<Count>3</Count>

<Item>Veterinary/Animal Health Technology/Technician and Veterinary Assistant (3)</Item>

<Value>Veterinary~I~Animal Health Technology~I~Technician and Veterinary Assistant</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Anatomy (2)</Item>

<Value>Anatomy</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Astronomy (2)</Item>

<Value>Astronomy</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Biostatistics (2)</Item>

<Value>Biostatistics</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Biotechnology (2)</Item>

<Value>Biotechnology</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Chemistry, Other (2)</Item>

<Value>Chemistry~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Cognitive Science, General (2)</Item>

<Value>Cognitive Science~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Computational and Applied Mathematics (2)</Item>

<Value>Computational and Applied Mathematics</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Epidemiology (2)</Item>

<Value>Epidemiology</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Geological and Earth Sciences/Geosciences, Other (2)</Item>

<Value>Geological and Earth Sciences~I~Geosciences~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Health Information/Medical Records Administration/Administrator (2)</Item>

<Value>Health Information~I~Medical Records Administration~I~Administrator</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Health Services Administration (2)</Item>

<Value>Health Services Administration</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>International Public Health/International Health (2)</Item>

<Value>International Public Health~I~International Health</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Marine Biology and Biological Oceanography (2)</Item>

<Value>Marine Biology and Biological Oceanography</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Medical Microbiology and Bacteriology (2)</Item>

<Value>Medical Microbiology and Bacteriology</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Nursing Assistant/Aide and Patient Care Assistant/Aide (2)</Item>

<Value>Nursing Assistant~I~Aide and Patient Care Assistant~I~Aide</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Pathology/Experimental Pathology (2)</Item>

<Value>Pathology~I~Experimental Pathology</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Pharmacology (2)</Item>

<Value>Pharmacology</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Physical Sciences, General (2)</Item>

<Value>Physical Sciences~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Psychiatric/Mental Health Services Technician (2)</Item>

<Value>Psychiatric~I~Mental Health Services Technician</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Adult Health Nurse/Nursing (1)</Item>

<Value>Adult Health Nurse~I~Nursing</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Applied Mathematics, Other (1)</Item>

<Value>Applied Mathematics~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Applied Statistics, General (1)</Item>

<Value>Applied Statistics~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Atmospheric Physics and Dynamics (1)</Item>

<Value>Atmospheric Physics and Dynamics</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Atmospheric Sciences and Meteorology, General (1)</Item>

<Value>Atmospheric Sciences and Meteorology~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Atomic/Molecular Physics (1)</Item>

<Value>Atomic~I~Molecular Physics</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Biochemistry and Molecular Biology (1)</Item>

<Value>Biochemistry and Molecular Biology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Biometry/Biometrics (1)</Item>

<Value>Biometry~I~Biometrics</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Biophysics (1)</Item>

<Value>Biophysics</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Biopsychology (1)</Item>

<Value>Biopsychology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Cell/Cellular Biology and Histology (1)</Item>

<Value>Cell~I~Cellular Biology and Histology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Cell/Cellular and Molecular Biology (1)</Item>

<Value>Cell~I~Cellular and Molecular Biology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Clinical Nurse Leader (1)</Item>

<Value>Clinical Nurse Leader</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Clinical Nurse Specialist (1)</Item>

<Value>Clinical Nurse Specialist</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Clinical Research Coordinator (1)</Item>

<Value>Clinical Research Coordinator</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Clinical and Industrial Drug Development (1)</Item>

<Value>Clinical and Industrial Drug Development</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Computational Biology (1)</Item>

<Value>Computational Biology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Computational Science (1)</Item>

<Value>Computational Science</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Computer Systems Analysis/Analyst (1)</Item>

<Value>Computer Systems Analysis~I~Analyst</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Critical Care Nursing (1)</Item>

<Value>Critical Care Nursing</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Data Science, Other (1)</Item>

<Value>Data Science~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Ecology (1)</Item>

<Value>Ecology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Entomology (1)</Item>

<Value>Entomology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Environmental Health (1)</Item>

<Value>Environmental Health</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Geography and Environmental Studies (1)</Item>

<Value>Geography and Environmental Studies</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Geriatric Nurse/Nursing (1)</Item>

<Value>Geriatric Nurse~I~Nursing</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Health Policy Analysis (1)</Item>

<Value>Health Policy Analysis</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Health Professions Education, Ethics, and Humanities, Other (1)</Item>

<Value>Health Professions Education~D~ Ethics~D~ and Humanities~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Healthcare Innovation (1)</Item>

<Value>Healthcare Innovation</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Hospital and Health Care Facilities Administration/Management (1)</Item>

<Value>Hospital and Health Care Facilities Administration~I~Management</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Human Biology (1)</Item>

<Value>Human Biology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Maternal/Child Health and Neonatal Nurse/Nursing (1)</Item>

<Value>Maternal~I~Child Health and Neonatal Nurse~I~Nursing</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Mathematics and Statistics (1)</Item>

<Value>Mathematics and Statistics</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Mathematics and Statistics, Other (1)</Item>

<Value>Mathematics and Statistics~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Meteorology (1)</Item>

<Value>Meteorology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Microbiological Sciences and Immunology, Other (1)</Item>

<Value>Microbiological Sciences and Immunology~D~ Other</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Microbiology, General (1)</Item>

<Value>Microbiology~D~ General</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Molecular Biochemistry (1)</Item>

<Value>Molecular Biochemistry</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Natural Sciences (1)</Item>

<Value>Natural Sciences</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Nurse Anesthetist (1)</Item>

<Value>Nurse Anesthetist</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Nurse Midwife/Nursing Midwifery (1)</Item>

<Value>Nurse Midwife~I~Nursing Midwifery</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Nutrition Sciences (1)</Item>

<Value>Nutrition Sciences</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Oceanography, Chemical and Physical (1)</Item>

<Value>Oceanography~D~ Chemical and Physical</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Operations Research (1)</Item>

<Value>Operations Research</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Pediatric Nurse/Nursing (1)</Item>

<Value>Pediatric Nurse~I~Nursing</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Planetary Astronomy and Science (1)</Item>

<Value>Planetary Astronomy and Science</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Plant Pathology/Phytopathology (1)</Item>

<Value>Plant Pathology~I~Phytopathology</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Public Health/Community Nurse/Nursing (1)</Item>

<Value>Public Health~I~Community Nurse~I~Nursing</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Research and Development Management (1)</Item>

<Value>Research and Development Management</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Science/Technology Management (1)</Item>

<Value>Science~I~Technology Management</Value>

</ItemCount>

<ItemCount>

<Count>1</Count>

<Item>Zoology/Animal Biology (1)</Item>

<Value>Zoology~I~Animal Biology</Value>

</ItemCount>

</FilterList>

<UndoList/>

</ProgramCountList>

<ProgramLengthCountList>

<FilterList>

<ItemCount>

<Count>313</Count>

<Item>Bachelor&amp;apos;s degree, usually 4 years (313)</Item>

<Value>Bachelor~F~apos~Q~s degree~D~ usually 4 years</Value>

</ItemCount>

<ItemCount>

<Count>257</Count>

<Item>Beyond bachelor&amp;apos;s degree (257)</Item>

<Value>Beyond bachelor~F~apos~Q~s degree</Value>

</ItemCount>

<ItemCount>

<Count>96</Count>

<Item>Associate&amp;apos;s degree, usually 2 years (96)</Item>

<Value>Associate~F~apos~Q~s degree~D~ usually 2 years</Value>

</ItemCount>

<ItemCount>

<Count>71</Count>

<Item>Certificate, 12 weeks to less than 1 year (71)</Item>

<Value>Certificate~D~ 12 weeks to less than 1 year</Value>

</ItemCount>

<ItemCount>

<Count>41</Count>

<Item>Certificate, 1 year to less than 2 years (41)</Item>

<Value>Certificate~D~ 1 year to less than 2 years</Value>

</ItemCount>

<ItemCount>

<Count>2</Count>

<Item>Certificate, less than 12 weeks (2)</Item>

<Value>Certificate~D~ less than 12 weeks</Value>

</ItemCount>

</FilterList>

<UndoList/>

</ProgramLengthCountList>

<RecordCount>627</RecordCount>

<RegionCountList>

<FilterList/>

<UndoList/>

</RegionCountList>

<SchoolOrProgram>P</SchoolOrProgram>

<SchoolPrograms>

<SchoolProgramDetails>

<Address>801 East Main St.</Address>

<City>Radford</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

</Format>

<ID>513899</ID>

<Occupationslist>

<Dimension>

<Name>Nurse Practitioners</Name>

<Value>Nurse Practitioners</Value>

</Dimension>

<Dimension>

<Name>Nursing Instructors and Teachers, Postsecondary</Name>

<Value>Nursing Instructors and Teachers~D~ Postsecondary</Value>

</Dimension>

<Dimension>

<Name>Registered Nurses</Name>

<Value>Registered Nurses</Value>

</Dimension>

</Occupationslist>

<Phone>5408315000</Phone>

<ProgramLength>

<Dimension>

<Name>Beyond bachelor&amp;apos;s degree</Name>

<Value>Beyond bachelor~F~apos~Q~s degree</Value>

</Dimension>

</ProgramLength>

<ProgramName>Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>Radford University</SchoolName>

<SchoolUrl>https://www.radford.edu/</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>More than 4 years: 0</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>24142</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>1827 University Avenue</Address>

<City>Charlottesville</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

</Format>

<ID>513899</ID>

<Occupationslist>

<Dimension>

<Name>Nurse Practitioners</Name>

<Value>Nurse Practitioners</Value>

</Dimension>

<Dimension>

<Name>Nursing Instructors and Teachers, Postsecondary</Name>

<Value>Nursing Instructors and Teachers~D~ Postsecondary</Value>

</Dimension>

<Dimension>

<Name>Registered Nurses</Name>

<Value>Registered Nurses</Value>

</Dimension>

</Occupationslist>

<Phone>4349240311</Phone>

<ProgramLength>

<Dimension>

<Name>Beyond bachelor&amp;apos;s degree</Name>

<Value>Beyond bachelor~F~apos~Q~s degree</Value>

</Dimension>

</ProgramLength>

<ProgramName>Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>University of Virginia-Main Campus</SchoolName>

<SchoolUrl>https://www.virginia.edu/</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>Less than one year: 0</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>22903-2628</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>5115 Hampton Blvd</Address>

<City>Norfolk</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

<d4p1:string>Online</d4p1:string>

</Format>

<ID>513899</ID>

<Occupationslist>

<Dimension>

<Name>Nurse Practitioners</Name>

<Value>Nurse Practitioners</Value>

</Dimension>

<Dimension>

<Name>Nursing Instructors and Teachers, Postsecondary</Name>

<Value>Nursing Instructors and Teachers~D~ Postsecondary</Value>

</Dimension>

<Dimension>

<Name>Registered Nurses</Name>

<Value>Registered Nurses</Value>

</Dimension>

</Occupationslist>

<Phone>7576833000</Phone>

<ProgramLength>

<Dimension>

<Name>Beyond bachelor&amp;apos;s degree</Name>

<Value>Beyond bachelor~F~apos~Q~s degree</Value>

</Dimension>

</ProgramLength>

<ProgramName>Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>Old Dominion University</SchoolName>

<SchoolUrl>www.odu.edu/</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>More than 4 years: 0||More than 4 years: 49</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>23529</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>1460 University Dr</Address>

<City>Winchester</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

<d4p1:string>Online</d4p1:string>

</Format>

<ID>513899</ID>

<Occupationslist>

<Dimension>

<Name>Nurse Practitioners</Name>

<Value>Nurse Practitioners</Value>

</Dimension>

<Dimension>

<Name>Nursing Instructors and Teachers, Postsecondary</Name>

<Value>Nursing Instructors and Teachers~D~ Postsecondary</Value>

</Dimension>

<Dimension>

<Name>Registered Nurses</Name>

<Value>Registered Nurses</Value>

</Dimension>

</Occupationslist>

<Phone>5406654500</Phone>

<ProgramLength>

<Dimension>

<Name>Beyond bachelor&amp;apos;s degree</Name>

<Value>Beyond bachelor~F~apos~Q~s degree</Value>

</Dimension>

</ProgramLength>

<ProgramName>Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>Shenandoah University</SchoolName>

<SchoolUrl>www.su.edu/</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>Less than one year: 0||More than 4 years: 2||More than 4 years: 21</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>22601-5195</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>1330 N Millitary Hwy</Address>

<City>Norfolk</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

</Format>

<ID>513999</ID>

<Occupationslist>

<Dimension>

<Name>Licensed Practical and Licensed Vocational Nurses</Name>

<Value>Licensed Practical and Licensed Vocational Nurses</Value>

</Dimension>

<Dimension>

<Name>Nursing Assistants</Name>

<Value>Nursing Assistants</Value>

</Dimension>

</Occupationslist>

<Phone>7578923300</Phone>

<ProgramLength>

<Dimension>

<Name>Certificate, 1 year to less than 2 years</Name>

<Value>Certificate~D~ 1 year to less than 2 years</Value>

</Dimension>

</ProgramLength>

<ProgramName>Practical Nursing, Vocational Nursing and Nursing Assistants, Other</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>Central School of Practical Nursing</SchoolName>

<SchoolUrl>https://www.npsk12.com/domain/980</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>At least one but less than two years: 12</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>23502</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>7600 Leesburg Pike, Suite 200 East</Address>

<City>Falls Church</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

</Format>

<ID>513999</ID>

<Occupationslist>

<Dimension>

<Name>Licensed Practical and Licensed Vocational Nurses</Name>

<Value>Licensed Practical and Licensed Vocational Nurses</Value>

</Dimension>

<Dimension>

<Name>Nursing Assistants</Name>

<Value>Nursing Assistants</Value>

</Dimension>

</Occupationslist>

<Phone>7038911787</Phone>

<ProgramLength>

<Dimension>

<Name>Certificate, 1 year to less than 2 years</Name>

<Value>Certificate~D~ 1 year to less than 2 years</Value>

</Dimension>

</ProgramLength>

<ProgramName>Practical Nursing, Vocational Nursing and Nursing Assistants, Other</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>Standard Healthcare Services-College of Nursing</SchoolName>

<SchoolUrl>https://www.standardcollege.edu/</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>At least one but less than two years: 278</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>22043</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>2925 N Landing Rd</Address>

<City>Virginia Beach</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

</Format>

<ID>513999</ID>

<Occupationslist>

<Dimension>

<Name>Licensed Practical and Licensed Vocational Nurses</Name>

<Value>Licensed Practical and Licensed Vocational Nurses</Value>

</Dimension>

<Dimension>

<Name>Nursing Assistants</Name>

<Value>Nursing Assistants</Value>

</Dimension>

</Occupationslist>

<Phone>75764860500</Phone>

<ProgramLength>

<Dimension>

<Name>Certificate, 1 year to less than 2 years</Name>

<Value>Certificate~D~ 1 year to less than 2 years</Value>

</Dimension>

</ProgramLength>

<ProgramName>Practical Nursing, Vocational Nursing and Nursing Assistants, Other</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>Virginia Beach City Public Schools School of Practical Nursing</SchoolName>

<SchoolUrl>techcenter.vbschools.com/school/programs-of-study/licensed-practical-nursing</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>At least one but less than two years: 14</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>23456-2499</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>5115 Hampton Blvd</Address>

<City>Norfolk</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

<d4p1:string>Online</d4p1:string>

</Format>

<ID>513821</ID>

<Occupationslist>

<Dimension>

<Name>Nurse Practitioners</Name>

<Value>Nurse Practitioners</Value>

</Dimension>

<Dimension>

<Name>Nursing Instructors and Teachers, Postsecondary</Name>

<Value>Nursing Instructors and Teachers~D~ Postsecondary</Value>

</Dimension>

<Dimension>

<Name>Registered Nurses</Name>

<Value>Registered Nurses</Value>

</Dimension>

</Occupationslist>

<Phone>7576833000</Phone>

<ProgramLength>

<Dimension>

<Name>Beyond bachelor&amp;apos;s degree</Name>

<Value>Beyond bachelor~F~apos~Q~s degree</Value>

</Dimension>

</ProgramLength>

<ProgramName>Geriatric Nurse/Nursing</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>Old Dominion University</SchoolName>

<SchoolUrl>www.odu.edu/</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>Less than one year: 0</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>23529</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>1827 University Avenue</Address>

<City>Charlottesville</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>In-person</d4p1:string>

</Format>

<ID>513809</ID>

<Occupationslist>

<Dimension>

<Name>Nurse Practitioners</Name>

<Value>Nurse Practitioners</Value>

</Dimension>

<Dimension>

<Name>Nursing Instructors and Teachers, Postsecondary</Name>

<Value>Nursing Instructors and Teachers~D~ Postsecondary</Value>

</Dimension>

<Dimension>

<Name>Registered Nurses</Name>

<Value>Registered Nurses</Value>

</Dimension>

</Occupationslist>

<Phone>4349240311</Phone>

<ProgramLength>

<Dimension>

<Name>Beyond bachelor&amp;apos;s degree</Name>

<Value>Beyond bachelor~F~apos~Q~s degree</Value>

</Dimension>

</ProgramLength>

<ProgramName>Pediatric Nurse/Nursing</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>University of Virginia-Main Campus</SchoolName>

<SchoolUrl>https://www.virginia.edu/</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>Less than one year: 0</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>22903-2628</Zip>

</SchoolProgramDetails>

<SchoolProgramDetails>

<Address>420 W Main St</Address>

<City>Danville</City>

<Distance i:nil="true"/>

<ElementID i:nil="true"/>

<Format

xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">

<d4p1:string>Online</d4p1:string>

</Format>

<ID>513805</ID>

<Occupationslist>

<Dimension>

<Name>Nurse Practitioners</Name>

<Value>Nurse Practitioners</Value>

</Dimension>

<Dimension>

<Name>Nursing Instructors and Teachers, Postsecondary</Name>

<Value>Nursing Instructors and Teachers~D~ Postsecondary</Value>

</Dimension>

<Dimension>

<Name>Registered Nurses</Name>

<Value>Registered Nurses</Value>

</Dimension>

</Occupationslist>

<Phone>4347915600</Phone>

<ProgramLength>

<Dimension>

<Name>Beyond bachelor&amp;apos;s degree</Name>

<Value>Beyond bachelor~F~apos~Q~s degree</Value>

</Dimension>

</ProgramLength>

<ProgramName>Family Practice Nurse/Nursing</ProgramName>

<Region>Southeast</Region>

<RegionCode>5</RegionCode>

<SchoolName>Averett University</SchoolName>

<SchoolUrl>https://www.averett.edu/</SchoolUrl>

<StateAbbr>VA</StateAbbr>

<StateName>Virginia</StateName>

<StudentGraduated>Less than one year: 0||More than 4 years: 2</StudentGraduated>

<TotalEnrollment i:nil="true"/>

<Zip>24541</Zip>

</SchoolProgramDetails>

</SchoolPrograms>

</SchoolProgram>

Response Parameters

Name Description Type
SchoolPrograms
School Programs
Object
   ID
ID
Integer
   SchoolName
School Name
String
   SchoolURL
School URL
String
   Address
Address
String
   City
City
String
   StateAbbr
State Abbreviation
String
   StateName
State Name
String
   Zip
Zip
String
   Phone
Phone
String
   Distance
Distance
String
   Region
Region
String
   Format
Program format online or in-person
Object
   RegionCode
Region code
String
   TotalEnrollment
Total Enrollment
String
   ProgramName
Program name
String
   StudentGraduated
Student Graduated
String
   ElementId
Element ID
String
   ProgramLength
Defined by IPEDS Object
     Name
Name
String
     Value
Value
String
   OccupationsList
Associated SOC occupations Object
     Name
Name String
     Value
Value String
RecordCount
Record Count
Integer
DidYouMean
Did You Mean
String
AutoCorrection
Auto Correction
String
LocationCountList
Can be used to filter results on a subsequent call Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
CityCountList
Can be used to filter results on a subsequent call Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
RegionCountList
Can be used to filter results on a subsequent call Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
OccupationCountList 
Can be used to filter results on a subsequent call Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
ProgramCountList
Can be used to filter results on a subsequent call Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
ProgramLengthCountList 
Can be used to filter results on a subsequent call Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Integer
     Value
Value String
SchoolOrProgram
Values include School and Program; some responses are a list of schools; other responses are a list of programs. String

Errors

Error/Status Code Description
 200
OK / Success. The request went through successfully and there is a response body.
 400
Bad Request (Request was invalid or missing parameters)
 401    
Unauthorized. This error occurs specifically when authentication is required and has failed or has not yet been provided correctly. (ex: Invalid API Token)
 404
This error will be shown in two scenarios 1) Not found - (An error occurred) and 2) Not found - (No data available)
 500
Internal Server Error. This error will occur when there is something critically wrong in the API call.