Banner: Web API: List training programs by keyword

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": "231688-513999",

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

      "SchoolUrl": "ww2.nps.k12.va.us/education/components/scrapbook/default.php?sectiondetailid=55850&",

      "Address": "1330 N Millitary Hwy",

      "City": "Norfolk",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23502",

      "Phone": "7578923300",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

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

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

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "At least one but less than two years",

          "Value": "4294967031"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966776"

        },

        {

          "Name": "Nursing Assistants",

          "Value": "4294966578"

        }

      ]

    },

    {

      "ID": "431266-513901",

      "SchoolName": "Henrico County-Saint Marys Hospital School of Practical Nursing",

      "SchoolUrl": "blogs.henrico.k12.va.us/adulteducation/licensed-practical-nursing/",

      "Address": "7850 Carousel Lane",

      "City": "Henrico",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23294",

      "Phone": "8045274660124",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Licensed Practical/Vocational Nurse Training",

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

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "At least one but less than two years",

          "Value": "4294967031"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966776"

        }

      ]

    },

    {

      "ID": "377485-513999",

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

      "SchoolUrl": "www.techcenter.vbschools.com",

      "Address": "2925 N Landing Rd",

      "City": "Virginia Beach",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23456-2499",

      "Phone": "75764860500",

      "Distance": null,

      "Region": "Southeast",

      "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": "At least one but less than two years",

          "Value": "4294967031"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966776"

        },

        {

          "Name": "Nursing Assistants",

          "Value": "4294966578"

        }

      ]

    },

    {

      "ID": "460871-513801",

      "SchoolName": "Chamberlain College of Nursing-Virginia",

      "SchoolUrl": "www.chamberlain.edu",

      "Address": "2450 Crystal Drive, Suite 319",

      "City": "Arlington",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22202",

      "Phone": "7034167300",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing/Registered Nurse",

      "StudentGraduated": "4 years: 96",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966993"

        },

        {

          "Name": "Registered Nurses",

          "Value": "4294966994"

        }

      ]

    },

    {

      "ID": "232618-513901",

      "SchoolName": "Centra College of Nursing",

      "SchoolUrl": "centracon.edu",

      "Address": "905 Lakeside Dr., Suite A",

      "City": "Lynchburg",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "24501",

      "Phone": "4342003070",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Licensed Practical/Vocational Nurse Training",

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

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "At least one but less than two years",

          "Value": "4294967031"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966776"

        }

      ]

    },

    {

      "ID": "233356-513801",

      "SchoolName": "Bon Secours Memorial College of Nursing",

      "SchoolUrl": "www.bsmcon.edu",

      "Address": "8550 Magellan Parkway Suite 1100",

      "City": "Richmond",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23227-1149",

      "Phone": "8046275300",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing/Registered Nurse",

      "StudentGraduated": "4 years: 75||At least two but less than four years: 0",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        },

        {

          "Name": "At least two but less than four years",

          "Value": "4294967027"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966993"

        },

        {

          "Name": "Registered Nurses",

          "Value": "4294966994"

        }

      ]

    },

    {

      "ID": "232618-513801",

      "SchoolName": "Centra College of Nursing",

      "SchoolUrl": "centracon.edu",

      "Address": "905 Lakeside Dr., Suite A",

      "City": "Lynchburg",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "24501",

      "Phone": "4342003070",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing/Registered Nurse",

      "StudentGraduated": "2 years: 59",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "2 years",

          "Value": "4294966973"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966993"

        },

        {

          "Name": "Registered Nurses",

          "Value": "4294966994"

        }

      ]

    },

    {

      "ID": "483814-513999",

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

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

      "Address": "1073 West Broad Street. Suite 201",

      "City": "Falls Church",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22046-4612",

      "Phone": "7038911787",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

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

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

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "At least one but less than two years",

          "Value": "4294967031"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966776"

        },

        {

          "Name": "Nursing Assistants",

          "Value": "4294966578"

        }

      ]

    },

    {

      "ID": "483814-513801",

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

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

      "Address": "1073 West Broad Street. Suite 201",

      "City": "Falls Church",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22046-4612",

      "Phone": "7038911787",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing/Registered Nurse",

      "StudentGraduated": "2 years: 21",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "2 years",

          "Value": "4294966973"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966993"

        },

        {

          "Name": "Registered Nurses",

          "Value": "4294966994"

        }

      ]

    },

    {

      "ID": "233277-513801",

      "SchoolName": "Radford University",

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

      "Address": "801 East Main Street",

      "City": "Radford",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "24142",

      "Phone": "5408315000",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Registered Nursing/Registered Nurse",

      "StudentGraduated": "4 years: 99",

      "ElementID": null,

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        }

      ],

      "Occupationslist": [

        {

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

          "Value": "4294966993"

        },

        {

          "Name": "Registered Nurses",

          "Value": "4294966994"

        }

      ]

    }

  ],

  "RecordCount": 501,

  "DidYouMean": "",

  "AutoCorrection": "",

  "LocationCountList": {

    "UndoList": [],

    "FilterList": []

  },

  "CityCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Fairfax (42)",

        "Count": 42,

        "Value": "4294963445"

      },

      {

        "Item": "Norfolk (39)",

        "Count": 39,

        "Value": "4294964243"

      },

      {

        "Item": "Richmond (39)",

        "Count": 39,

        "Value": "4294964974"

      },

      {

        "Item": "Lynchburg (26)",

        "Count": 26,

        "Value": "4294963454"

      },

      {

        "Item": "Charlottesville (23)",

        "Count": 23,

        "Value": "4294963433"

      },

      {

        "Item": "Arlington (21)",

        "Count": 21,

        "Value": "4294963565"

      },

      {

        "Item": "Hampton (20)",

        "Count": 20,

        "Value": "4294963442"

      },

      {

        "Item": "Harrisonburg (19)",

        "Count": 19,

        "Value": "4294963448"

      },

      {

        "Item": "Roanoke (17)",

        "Count": 17,

        "Value": "4294963458"

      },

      {

        "Item": "Blacksburg (15)",

        "Count": 15,

        "Value": "4294963423"

      },

      {

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

        "Count": 13,

        "Value": "4294963457"

      },

      {

        "Item": "Danville (12)",

        "Count": 12,

        "Value": "4294964956"

      },

      {

        "Item": "Lexington (12)",

        "Count": 12,

        "Value": "4294964680"

      },

      {

        "Item": "Winchester (10)",

        "Count": 10,

        "Value": "4294965099"

      },

      {

        "Item": "Fredericksburg (9)",

        "Count": 9,

        "Value": "4294963438"

      },

      {

        "Item": "Williamsburg (9)",

        "Count": 9,

        "Value": "4294964677"

      },

      {

        "Item": "Annandale (8)",

        "Count": 8,

        "Value": "4294963436"

      },

      {

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

        "Count": 8,

        "Value": "4294962771"

      },

      {

        "Item": "Petersburg (8)",

        "Count": 8,

        "Value": "4294963434"

      },

      {

        "Item": "Radford (8)",

        "Count": 8,

        "Value": "4294963432"

      },

      {

        "Item": "Salem (8)",

        "Count": 8,

        "Value": "4294964487"

      },

      {

        "Item": "Staunton (8)",

        "Count": 8,

        "Value": "4294963439"

      },

      {

        "Item": "Ashland (7)",

        "Count": 7,

        "Value": "4294964688"

      },

      {

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

        "Count": 7,

        "Value": "4294963426"

      },

      {

        "Item": "Bridgewater (6)",

        "Count": 6,

        "Value": "4294964533"

      },

      {

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

        "Count": 6,

        "Value": "4294963453"

      },

      {

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

        "Count": 6,

        "Value": "4294963430"

      },

      {

        "Item": "Chester (5)",

        "Count": 5,

        "Value": "4294963650"

      },

      {

        "Item": "Emory (5)",

        "Count": 5,

        "Value": "4294963449"

      },

      {

        "Item": "Farmville (5)",

        "Count": 5,

        "Value": "4294963440"

      },

      {

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

        "Count": 5,

        "Value": "4294963443"

      },

      {

        "Item": "Bluefield (4)",

        "Count": 4,

        "Value": "4294963455"

      },

      {

        "Item": "Glenns (4)",

        "Count": 4,

        "Value": "4294963431"

      },

      {

        "Item": "Martinsville (4)",

        "Count": 4,

        "Value": "4294963435"

      },

      {

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

        "Count": 4,

        "Value": "4294963456"

      },

      {

        "Item": "Wise (4)",

        "Count": 4,

        "Value": "4294963425"

      },

      {

        "Item": "Wytheville (4)",

        "Count": 4,

        "Value": "4294963420"

      },

      {

        "Item": "Abingdon (3)",

        "Count": 3,

        "Value": "4294963424"

      },

      {

        "Item": "Alberta (3)",

        "Count": 3,

        "Value": "4294963428"

      },

      {

        "Item": "Alexandria (3)",

        "Count": 3,

        "Value": "4294964644"

      },

      {

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

        "Count": 3,

        "Value": "4294963437"

      },

      {

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

        "Count": 3,

        "Value": "4294963450"

      },

      {

        "Item": "Dublin (3)",

        "Count": 3,

        "Value": "4294964002"

      },

      {

        "Item": "Ferrum (3)",

        "Count": 3,

        "Value": "4294963446"

      },

      {

        "Item": "Franklin (3)",

        "Count": 3,

        "Value": "4294964856"

      },

      {

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

        "Count": 3,

        "Value": "4294963444"

      },

      {

        "Item": "Middletown (3)",

        "Count": 3,

        "Value": "4294965254"

      },

      {

        "Item": "North Chesterfield (3)",

        "Count": 3,

        "Value": "4294963451"

      },

      {

        "Item": "Richlands (3)",

        "Count": 3,

        "Value": "4294963427"

      },

      {

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

        "Count": 2,

        "Value": "4294963429"

      },

      {

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

        "Count": 2,

        "Value": "4294965189"

      },

      {

        "Item": "Fishersville (2)",

        "Count": 2,

        "Value": "4294963421"

      },

      {

        "Item": "Mclean (2)",

        "Count": 2,

        "Value": "4294963422"

      },

      {

        "Item": "Melfa (2)",

        "Count": 2,

        "Value": "4294963447"

      },

      {

        "Item": "Vienna (2)",

        "Count": 2,

        "Value": "4294963368"

      },

      {

        "Item": "Chesapeake (1)",

        "Count": 1,

        "Value": "4294963870"

      },

      {

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

        "Count": 1,

        "Value": "4294962614"

      },

      {

        "Item": "Henrico (1)",

        "Count": 1,

        "Value": "4294963033"

      }

    ]

  },

  "RegionCountList": {

    "UndoList": [],

    "FilterList": []

  },

  "OccupationCountList": {

    "UndoList": [],

    "FilterList": [

      {

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

        "Count": 245,

        "Value": "4294967183"

      },

      {

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

        "Count": 135,

        "Value": "4294967229"

      },

      {

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

        "Count": 80,

        "Value": "4294966994"

      },

      {

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

        "Count": 76,

        "Value": "4294967186"

      },

      {

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

        "Count": 75,

        "Value": "4294966993"

      },

      {

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

        "Count": 72,

        "Value": "4294967253"

      },

      {

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

        "Count": 72,

        "Value": "4294967250"

      },

      {

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

        "Count": 67,

        "Value": "4294967184"

      },

      {

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

        "Count": 64,

        "Value": "4294967249"

      },

      {

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

        "Count": 64,

        "Value": "4294967248"

      },

      {

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

        "Count": 53,

        "Value": "4294967181"

      },

      {

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

        "Count": 51,

        "Value": "4294967254"

      },

      {

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

        "Count": 50,

        "Value": "4294967255"

      },

      {

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

        "Count": 49,

        "Value": "4294967180"

      },

      {

        "Item": "Mathematicians (49)",

        "Count": 49,

        "Value": "4294967178"

      },

      {

        "Item": "Statisticians (49)",

        "Count": 49,

        "Value": "4294967179"

      },

      {

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

        "Count": 47,

        "Value": "4294967251"

      },

      {

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

        "Count": 47,

        "Value": "4294967029"

      },

      {

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

        "Count": 47,

        "Value": "4294967252"

      },

      {

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

        "Count": 45,

        "Value": "4294967185"

      },

      {

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

        "Count": 35,

        "Value": "4294967176"

      },

      {

        "Item": "Chemists (35)",

        "Count": 35,

        "Value": "4294967175"

      },

      {

        "Item": "Physicists (34)",

        "Count": 34,

        "Value": "4294967172"

      },

      {

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

        "Count": 31,

        "Value": "4294966776"

      },

      {

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

        "Count": 30,

        "Value": "4294967173"

      },

      {

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

        "Count": 24,

        "Value": "4294967082"

      },

      {

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

        "Count": 23,

        "Value": "4294967140"

      },

      {

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

        "Count": 22,

        "Value": "4294967102"

      },

      {

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

        "Count": 18,

        "Value": "4294967007"

      },

      {

        "Item": "Health Educators (18)",

        "Count": 18,

        "Value": "4294967006"

      },

      {

        "Item": "Software Developers, Applications (17)",

        "Count": 17,

        "Value": "4294967090"

      },

      {

        "Item": "Software Developers, Systems Software (17)",

        "Count": 17,

        "Value": "4294967091"

      },

      {

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

        "Count": 16,

        "Value": "4294966944"

      },

      {

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

        "Count": 14,

        "Value": "4294966988"

      },

      {

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

        "Count": 12,

        "Value": "4294967080"

      },

      {

        "Item": "Actuaries (10)",

        "Count": 10,

        "Value": "4294966949"

      },

      {

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

        "Count": 10,

        "Value": "4294966864"

      },

      {

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

        "Count": 10,

        "Value": "4294966578"

      },

      {

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

        "Count": 8,

        "Value": "4294967103"

      },

      {

        "Item": "Hydrologists (8)",

        "Count": 8,

        "Value": "4294966865"

      },

      {

        "Item": "Vocational Education Teachers, Postsecondary (6)",

        "Count": 6,

        "Value": "4294966758"

      },

      {

        "Item": "Career/Technical Education Teachers, Middle School (5)",

        "Count": 5,

        "Value": "4294966759"

      },

      {

        "Item": "Career/Technical Education Teachers, Secondary School (5)",

        "Count": 5,

        "Value": "4294966760"

      },

      {

        "Item": "Education Teachers, Postsecondary (5)",

        "Count": 5,

        "Value": "4294967246"

      },

      {

        "Item": "Mathematical Technicians (5)",

        "Count": 5,

        "Value": "4294966950"

      },

      {

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

        "Count": 5,

        "Value": "4294966453"

      },

      {

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

        "Count": 4,

        "Value": "4294967261"

      },

      {

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

        "Count": 4,

        "Value": "4294967215"

      },

      {

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

        "Count": 4,

        "Value": "4294967205"

      },

      {

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

        "Count": 4,

        "Value": "4294966983"

      },

      {

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

        "Count": 4,

        "Value": "4294966730"

      },

      {

        "Item": "Astronomers (3)",

        "Count": 3,

        "Value": "4294966224"

      },

      {

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

        "Count": 3,

        "Value": "4294966943"

      },

      {

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

        "Count": 3,

        "Value": "4294967138"

      },

      {

        "Item": "Epidemiologists (3)",

        "Count": 3,

        "Value": "4294967078"

      },

      {

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

        "Count": 3,

        "Value": "4294966941"

      },

      {

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

        "Count": 2,

        "Value": "4294967188"

      },

      {

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

        "Count": 2,

        "Value": "4294966258"

      },

      {

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

        "Count": 2,

        "Value": "4294966257"

      },

      {

        "Item": "Bus Drivers, School or Special Client (1)",

        "Count": 1,

        "Value": "4294966435"

      },

      {

        "Item": "Bus Drivers, Transit and Intercity (1)",

        "Count": 1,

        "Value": "4294966434"

      },

      {

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

        "Count": 1,

        "Value": "4294967105"

      },

      {

        "Item": "Heavy and Tractor-Trailer Truck Drivers (1)",

        "Count": 1,

        "Value": "4294966436"

      },

      {

        "Item": "Light Truck or Delivery Services Drivers (1)",

        "Count": 1,

        "Value": "4294966437"

      },

      {

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

        "Count": 1,

        "Value": "4294966991"

      },

      {

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

        "Count": 1,

        "Value": "4294965122"

      },

      {

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

        "Count": 1,

        "Value": "4294966836"

      },

      {

        "Item": "Public Relations Specialists (1)",

        "Count": 1,

        "Value": "4294967108"

      },

      {

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

        "Count": 1,

        "Value": "4294967048"

      }

    ]

  },

  "ProgramCountList": {

    "UndoList": [],

    "FilterList": [

      {

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

        "Count": 59,

        "Value": "4294966995"

      },

      {

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

        "Count": 47,

        "Value": "4294967256"

      },

      {

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

        "Count": 38,

        "Value": "4294967187"

      },

      {

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

        "Count": 37,

        "Value": "4294967182"

      },

      {

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

        "Count": 33,

        "Value": "4294967177"

      },

      {

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

        "Count": 26,

        "Value": "4294966777"

      },

      {

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

        "Count": 25,

        "Value": "4294967174"

      },

      {

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

        "Count": 19,

        "Value": "4294967030"

      },

      {

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

        "Count": 17,

        "Value": "4294966621"

      },

      {

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

        "Count": 14,

        "Value": "4294966948"

      },

      {

        "Item": "Biochemistry (11)",

        "Count": 11,

        "Value": "4294966679"

      },

      {

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

        "Count": 9,

        "Value": "4294967008"

      },

      {

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

        "Count": 7,

        "Value": "4294966866"

      },

      {

        "Item": "Neuroscience (6)",

        "Count": 6,

        "Value": "4294967068"

      },

      {

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

        "Count": 5,

        "Value": "4294966951"

      },

      {

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

        "Count": 5,

        "Value": "4294966527"

      },

      {

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

        "Count": 5,

        "Value": "4294966579"

      },

      {

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

        "Count": 5,

        "Value": "4294966522"

      },

      {

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

        "Count": 5,

        "Value": "4294966454"

      },

      {

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

        "Count": 4,

        "Value": "4294966064"

      },

      {

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

        "Count": 4,

        "Value": "4294966940"

      },

      {

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

        "Count": 4,

        "Value": "4294966678"

      },

      {

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

        "Count": 4,

        "Value": "4294966328"

      },

      {

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

        "Count": 4,

        "Value": "4294966989"

      },

      {

        "Item": "Public Health Education and Promotion (4)",

        "Count": 4,

        "Value": "4294965820"

      },

      {

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

        "Count": 4,

        "Value": "4294966095"

      },

      {

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

        "Count": 4,

        "Value": "4294966701"

      },

      {

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

        "Count": 3,

        "Value": "4294966360"

      },

      {

        "Item": "Business Teacher Education (3)",

        "Count": 3,

        "Value": "4294965982"

      },

      {

        "Item": "Community Health Services/Liaison/Counseling (3)",

        "Count": 3,

        "Value": "4294965877"

      },

      {

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

        "Count": 3,

        "Value": "4294966528"

      },

      {

        "Item": "Ecology (3)",

        "Count": 3,

        "Value": "4294965912"

      },

      {

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

        "Count": 3,

        "Value": "4294967028"

      },

      {

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

        "Count": 3,

        "Value": "4294966189"

      },

      {

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

        "Count": 3,

        "Value": "4294965909"

      },

      {

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

        "Count": 3,

        "Value": "4294967171"

      },

      {

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

        "Count": 3,

        "Value": "4294966947"

      },

      {

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

        "Count": 2,

        "Value": "4294966118"

      },

      {

        "Item": "Astronomy (2)",

        "Count": 2,

        "Value": "4294966048"

      },

      {

        "Item": "Biostatistics (2)",

        "Count": 2,

        "Value": "4294967070"

      },

      {

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

        "Count": 2,

        "Value": "4294966223"

      },

      {

        "Item": "Epidemiology (2)",

        "Count": 2,

        "Value": "4294967069"

      },

      {

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

        "Count": 2,

        "Value": "4294966045"

      },

      {

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

        "Count": 2,

        "Value": "4294966847"

      },

      {

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

        "Count": 2,

        "Value": "4294966872"

      },

      {

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

        "Count": 2,

        "Value": "4294966703"

      },

      {

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

        "Count": 2,

        "Value": "4294966255"

      },

      {

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

        "Count": 2,

        "Value": "4294967072"

      },

      {

        "Item": "Pharmacology (2)",

        "Count": 2,

        "Value": "4294966054"

      },

      {

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

        "Count": 2,

        "Value": "4294966744"

      },

      {

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

        "Count": 2,

        "Value": "4294966942"

      },

      {

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

        "Count": 2,

        "Value": "4294966259"

      },

      {

        "Item": "Trade and Industrial Teacher Education (2)",

        "Count": 2,

        "Value": "4294966757"

      },

      {

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

        "Count": 1,

        "Value": "4294965472"

      },

      {

        "Item": "Anatomy (1)",

        "Count": 1,

        "Value": "4294965840"

      },

      {

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

        "Count": 1,

        "Value": "4294963441"

      },

      {

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

        "Count": 1,

        "Value": "4294966945"

      },

      {

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

        "Count": 1,

        "Value": "4294965380"

      },

      {

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

        "Count": 1,

        "Value": "4294966061"

      },

      {

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

        "Count": 1,

        "Value": "4294965491"

      },

      {

        "Item": "Biophysics (1)",

        "Count": 1,

        "Value": "4294965659"

      },

      {

        "Item": "Biotechnology (1)",

        "Count": 1,

        "Value": "4294966952"

      },

      {

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

        "Count": 1,

        "Value": "4294967079"

      },

      {

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

        "Count": 1,

        "Value": "4294965595"

      },

      {

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

        "Count": 1,

        "Value": "4294965359"

      },

      {

        "Item": "Entomology (1)",

        "Count": 1,

        "Value": "4294966058"

      },

      {

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

        "Count": 1,

        "Value": "4294965809"

      },

      {

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

        "Count": 1,

        "Value": "4294965437"

      },

      {

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

        "Count": 1,

        "Value": "4294966099"

      },

      {

        "Item": "Long Term Care Administration/Management (1)",

        "Count": 1,

        "Value": "4294965357"

      },

      {

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

        "Count": 1,

        "Value": "4294966119"

      },

      {

        "Item": "Meteorology (1)",

        "Count": 1,

        "Value": "4294966357"

      },

      {

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

        "Count": 1,

        "Value": "4294966059"

      },

      {

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

        "Count": 1,

        "Value": "4294966756"

      },

      {

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

        "Count": 1,

        "Value": "4294966992"

      },

      {

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

        "Count": 1,

        "Value": "4294965123"

      },

      {

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

        "Count": 1,

        "Value": "4294966990"

      },

      {

        "Item": "Occupational and Environmental Health Nursing (1)",

        "Count": 1,

        "Value": "4294966096"

      },

      {

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

        "Count": 1,

        "Value": "4294966221"

      },

      {

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

        "Count": 1,

        "Value": "4294965666"

      },

      {

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

        "Count": 1,

        "Value": "4294966047"

      },

      {

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

        "Count": 1,

        "Value": "4294966060"

      },

      {

        "Item": "Pre-Nursing Studies (1)",

        "Count": 1,

        "Value": "4294966210"

      },

      {

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

        "Count": 1,

        "Value": "4294966097"

      },

      {

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

        "Count": 1,

        "Value": "4294966492"

      },

      {

        "Item": "Theoretical and Mathematical Physics (1)",

        "Count": 1,

        "Value": "4294965163"

      },

      {

        "Item": "Truck and Bus Driver/Commercial Vehicle Operator and Instructor (1)",

        "Count": 1,

        "Value": "4294966438"

      }

    ]

  },

  "ProgramLengthCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "4 years (280)",

        "Count": 280,

        "Value": "4294967283"

      },

      {

        "Item": "More than 4 years (149)",

        "Count": 149,

        "Value": "4294967276"

      },

      {

        "Item": "Less than one year (85)",

        "Count": 85,

        "Value": "4294967245"

      },

      {

        "Item": "2 years (77)",

        "Count": 77,

        "Value": "4294966973"

      },

      {

        "Item": "At least one but less than two years (41)",

        "Count": 41,

        "Value": "4294967031"

      },

      {

        "Item": "At least two but less than four years (2)",

        "Count": 2,

        "Value": "4294967027"

      }

    ]

  },

  "SchoolOrProgram": "P"

}
<SchoolProgram xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/XPAND.CareerOneStop.WebApi.ViewModels">

  <AutoCorrection/>

  <CityCountList>

    <FilterList>

      <ItemCount>

        <Count>42</Count>

        <Item>Fairfax (42)</Item>

        <Value>4294963445</Value>

      </ItemCount>

      <ItemCount>

        <Count>39</Count>

        <Item>Norfolk (39)</Item>

        <Value>4294964243</Value>

      </ItemCount>

      <ItemCount>

        <Count>39</Count>

        <Item>Richmond (39)</Item>

        <Value>4294964974</Value>

      </ItemCount>

      <ItemCount>

        <Count>26</Count>

        <Item>Lynchburg (26)</Item>

        <Value>4294963454</Value>

      </ItemCount>

      <ItemCount>

        <Count>23</Count>

        <Item>Charlottesville (23)</Item>

        <Value>4294963433</Value>

      </ItemCount>

      <ItemCount>

        <Count>21</Count>

        <Item>Arlington (21)</Item>

        <Value>4294963565</Value>

      </ItemCount>

      <ItemCount>

        <Count>20</Count>

        <Item>Hampton (20)</Item>

        <Value>4294963442</Value>

      </ItemCount>

      <ItemCount>

        <Count>19</Count>

        <Item>Harrisonburg (19)</Item>

        <Value>4294963448</Value>

      </ItemCount>

      <ItemCount>

        <Count>17</Count>

        <Item>Roanoke (17)</Item>

        <Value>4294963458</Value>

      </ItemCount>

      <ItemCount>

        <Count>15</Count>

        <Item>Blacksburg (15)</Item>

        <Value>4294963423</Value>

      </ItemCount>

      <ItemCount>

        <Count>13</Count>

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

        <Value>4294963457</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>Danville (12)</Item>

        <Value>4294964956</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

        <Item>Lexington (12)</Item>

        <Value>4294964680</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Winchester (10)</Item>

        <Value>4294965099</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Fredericksburg (9)</Item>

        <Value>4294963438</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Williamsburg (9)</Item>

        <Value>4294964677</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Annandale (8)</Item>

        <Value>4294963436</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

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

        <Value>4294962771</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Petersburg (8)</Item>

        <Value>4294963434</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Radford (8)</Item>

        <Value>4294963432</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Salem (8)</Item>

        <Value>4294964487</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Staunton (8)</Item>

        <Value>4294963439</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Ashland (7)</Item>

        <Value>4294964688</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

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

        <Value>4294963426</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Bridgewater (6)</Item>

        <Value>4294964533</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

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

        <Value>4294963453</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

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

        <Value>4294963430</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Chester (5)</Item>

        <Value>4294963650</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Emory (5)</Item>

        <Value>4294963449</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Farmville (5)</Item>

        <Value>4294963440</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294963443</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Bluefield (4)</Item>

        <Value>4294963455</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Glenns (4)</Item>

        <Value>4294963431</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Martinsville (4)</Item>

        <Value>4294963435</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294963456</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Wise (4)</Item>

        <Value>4294963425</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Wytheville (4)</Item>

        <Value>4294963420</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Abingdon (3)</Item>

        <Value>4294963424</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Alberta (3)</Item>

        <Value>4294963428</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Alexandria (3)</Item>

        <Value>4294964644</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294963437</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294963450</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Dublin (3)</Item>

        <Value>4294964002</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Ferrum (3)</Item>

        <Value>4294963446</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Franklin (3)</Item>

        <Value>4294964856</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294963444</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Middletown (3)</Item>

        <Value>4294965254</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>North Chesterfield (3)</Item>

        <Value>4294963451</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Richlands (3)</Item>

        <Value>4294963427</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294963429</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294965189</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Fishersville (2)</Item>

        <Value>4294963421</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Mclean (2)</Item>

        <Value>4294963422</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Melfa (2)</Item>

        <Value>4294963447</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Vienna (2)</Item>

        <Value>4294963368</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Chesapeake (1)</Item>

        <Value>4294963870</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294962614</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Henrico (1)</Item>

        <Value>4294963033</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </CityCountList>

  <DidYouMean/>

  <LocationCountList>

    <FilterList/>

    <UndoList/>

  </LocationCountList>

  <OccupationCountList>

    <FilterList>

      <ItemCount>

        <Count>245</Count>

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

        <Value>4294967183</Value>

      </ItemCount>

      <ItemCount>

        <Count>135</Count>

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

        <Value>4294967229</Value>

      </ItemCount>

      <ItemCount>

        <Count>80</Count>

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

        <Value>4294966994</Value>

      </ItemCount>

      <ItemCount>

        <Count>76</Count>

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

        <Value>4294967186</Value>

      </ItemCount>

      <ItemCount>

        <Count>75</Count>

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

        <Value>4294966993</Value>

      </ItemCount>

      <ItemCount>

        <Count>72</Count>

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

        <Value>4294967253</Value>

      </ItemCount>

      <ItemCount>

        <Count>72</Count>

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

        <Value>4294967250</Value>

      </ItemCount>

      <ItemCount>

        <Count>67</Count>

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

        <Value>4294967184</Value>

      </ItemCount>

      <ItemCount>

        <Count>64</Count>

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

        <Value>4294967249</Value>

      </ItemCount>

      <ItemCount>

        <Count>64</Count>

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

        <Value>4294967248</Value>

      </ItemCount>

      <ItemCount>

        <Count>53</Count>

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

        <Value>4294967181</Value>

      </ItemCount>

      <ItemCount>

        <Count>51</Count>

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

        <Value>4294967254</Value>

      </ItemCount>

      <ItemCount>

        <Count>50</Count>

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

        <Value>4294967255</Value>

      </ItemCount>

      <ItemCount>

        <Count>49</Count>

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

        <Value>4294967180</Value>

      </ItemCount>

      <ItemCount>

        <Count>49</Count>

        <Item>Mathematicians (49)</Item>

        <Value>4294967178</Value>

      </ItemCount>

      <ItemCount>

        <Count>49</Count>

        <Item>Statisticians (49)</Item>

        <Value>4294967179</Value>

      </ItemCount>

      <ItemCount>

        <Count>47</Count>

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

        <Value>4294967251</Value>

      </ItemCount>

      <ItemCount>

        <Count>47</Count>

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

        <Value>4294967029</Value>

      </ItemCount>

      <ItemCount>

        <Count>47</Count>

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

        <Value>4294967252</Value>

      </ItemCount>

      <ItemCount>

        <Count>45</Count>

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

        <Value>4294967185</Value>

      </ItemCount>

      <ItemCount>

        <Count>35</Count>

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

        <Value>4294967176</Value>

      </ItemCount>

      <ItemCount>

        <Count>35</Count>

        <Item>Chemists (35)</Item>

        <Value>4294967175</Value>

      </ItemCount>

      <ItemCount>

        <Count>34</Count>

        <Item>Physicists (34)</Item>

        <Value>4294967172</Value>

      </ItemCount>

      <ItemCount>

        <Count>31</Count>

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

        <Value>4294966776</Value>

      </ItemCount>

      <ItemCount>

        <Count>30</Count>

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

        <Value>4294967173</Value>

      </ItemCount>

      <ItemCount>

        <Count>24</Count>

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

        <Value>4294967082</Value>

      </ItemCount>

      <ItemCount>

        <Count>23</Count>

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

        <Value>4294967140</Value>

      </ItemCount>

      <ItemCount>

        <Count>22</Count>

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

        <Value>4294967102</Value>

      </ItemCount>

      <ItemCount>

        <Count>18</Count>

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

        <Value>4294967007</Value>

      </ItemCount>

      <ItemCount>

        <Count>18</Count>

        <Item>Health Educators (18)</Item>

        <Value>4294967006</Value>

      </ItemCount>

      <ItemCount>

        <Count>17</Count>

        <Item>Software Developers, Applications (17)</Item>

        <Value>4294967090</Value>

      </ItemCount>

      <ItemCount>

        <Count>17</Count>

        <Item>Software Developers, Systems Software (17)</Item>

        <Value>4294967091</Value>

      </ItemCount>

      <ItemCount>

        <Count>16</Count>

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

        <Value>4294966944</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

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

        <Value>4294966988</Value>

      </ItemCount>

      <ItemCount>

        <Count>12</Count>

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

        <Value>4294967080</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Actuaries (10)</Item>

        <Value>4294966949</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

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

        <Value>4294966864</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

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

        <Value>4294966578</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

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

        <Value>4294967103</Value>

      </ItemCount>

      <ItemCount>

        <Count>8</Count>

        <Item>Hydrologists (8)</Item>

        <Value>4294966865</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Vocational Education Teachers, Postsecondary (6)</Item>

        <Value>4294966758</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Career/Technical Education Teachers, Middle School (5)</Item>

        <Value>4294966759</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Career/Technical Education Teachers, Secondary School (5)</Item>

        <Value>4294966760</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Education Teachers, Postsecondary (5)</Item>

        <Value>4294967246</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Mathematical Technicians (5)</Item>

        <Value>4294966950</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294966453</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294967261</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294967215</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294967205</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966983</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966730</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Astronomers (3)</Item>

        <Value>4294966224</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294966943</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294967138</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Epidemiologists (3)</Item>

        <Value>4294967078</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294966941</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294967188</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966258</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966257</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Bus Drivers, School or Special Client (1)</Item>

        <Value>4294966435</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Bus Drivers, Transit and Intercity (1)</Item>

        <Value>4294966434</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294967105</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Heavy and Tractor-Trailer Truck Drivers (1)</Item>

        <Value>4294966436</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Light Truck or Delivery Services Drivers (1)</Item>

        <Value>4294966437</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966991</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965122</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966836</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Public Relations Specialists (1)</Item>

        <Value>4294967108</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294967048</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </OccupationCountList>

  <ProgramCountList>

    <FilterList>

      <ItemCount>

        <Count>59</Count>

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

        <Value>4294966995</Value>

      </ItemCount>

      <ItemCount>

        <Count>47</Count>

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

        <Value>4294967256</Value>

      </ItemCount>

      <ItemCount>

        <Count>38</Count>

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

        <Value>4294967187</Value>

      </ItemCount>

      <ItemCount>

        <Count>37</Count>

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

        <Value>4294967182</Value>

      </ItemCount>

      <ItemCount>

        <Count>33</Count>

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

        <Value>4294967177</Value>

      </ItemCount>

      <ItemCount>

        <Count>26</Count>

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

        <Value>4294966777</Value>

      </ItemCount>

      <ItemCount>

        <Count>25</Count>

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

        <Value>4294967174</Value>

      </ItemCount>

      <ItemCount>

        <Count>19</Count>

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

        <Value>4294967030</Value>

      </ItemCount>

      <ItemCount>

        <Count>17</Count>

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

        <Value>4294966621</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

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

        <Value>4294966948</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Biochemistry (11)</Item>

        <Value>4294966679</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

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

        <Value>4294967008</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

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

        <Value>4294966866</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Neuroscience (6)</Item>

        <Value>4294967068</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294966951</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294966527</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294966579</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294966522</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294966454</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966064</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966940</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966678</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966328</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966989</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Public Health Education and Promotion (4)</Item>

        <Value>4294965820</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966095</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966701</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294966360</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Business Teacher Education (3)</Item>

        <Value>4294965982</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Community Health Services/Liaison/Counseling (3)</Item>

        <Value>4294965877</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294966528</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Ecology (3)</Item>

        <Value>4294965912</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294967028</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294966189</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294965909</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294967171</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294966947</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966118</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Astronomy (2)</Item>

        <Value>4294966048</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Biostatistics (2)</Item>

        <Value>4294967070</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966223</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Epidemiology (2)</Item>

        <Value>4294967069</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966045</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966847</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966872</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966703</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966255</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294967072</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Pharmacology (2)</Item>

        <Value>4294966054</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966744</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966942</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294966259</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Trade and Industrial Teacher Education (2)</Item>

        <Value>4294966757</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965472</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Anatomy (1)</Item>

        <Value>4294965840</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294963441</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966945</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965380</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Biochemistry, Biophysics and Molecular Biology, Other (1)</Item>

        <Value>4294966061</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965491</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Biophysics (1)</Item>

        <Value>4294965659</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Biotechnology (1)</Item>

        <Value>4294966952</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294967079</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965595</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965359</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Entomology (1)</Item>

        <Value>4294966058</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965809</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965437</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966099</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Long Term Care Administration/Management (1)</Item>

        <Value>4294965357</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966119</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Meteorology (1)</Item>

        <Value>4294966357</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966059</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966756</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966992</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965123</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966990</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Occupational and Environmental Health Nursing (1)</Item>

        <Value>4294966096</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966221</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965666</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966047</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966060</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Pre-Nursing Studies (1)</Item>

        <Value>4294966210</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966097</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966492</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Theoretical and Mathematical Physics (1)</Item>

        <Value>4294965163</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Truck and Bus Driver/Commercial Vehicle Operator and Instructor (1)</Item>

        <Value>4294966438</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </ProgramCountList>

  <ProgramLengthCountList>

    <FilterList>

      <ItemCount>

        <Count>280</Count>

        <Item>4 years (280)</Item>

        <Value>4294967283</Value>

      </ItemCount>

      <ItemCount>

        <Count>149</Count>

        <Item>More than 4 years (149)</Item>

        <Value>4294967276</Value>

      </ItemCount>

      <ItemCount>

        <Count>85</Count>

        <Item>Less than one year (85)</Item>

        <Value>4294967245</Value>

      </ItemCount>

      <ItemCount>

        <Count>77</Count>

        <Item>2 years (77)</Item>

        <Value>4294966973</Value>

      </ItemCount>

      <ItemCount>

        <Count>41</Count>

        <Item>At least one but less than two years (41)</Item>

        <Value>4294967031</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>At least two but less than four years (2)</Item>

        <Value>4294967027</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </ProgramLengthCountList>

  <RecordCount>501</RecordCount>

  <RegionCountList>

    <FilterList/>

    <UndoList/>

  </RegionCountList>

  <SchoolOrProgram>P</SchoolOrProgram>

  <SchoolPrograms>

    <SchoolProgramDetails>

      <Address>1330 N Millitary Hwy</Address>

      <City>Norfolk</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>231688-513999</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966776</Value>

        </Dimension>

        <Dimension>

          <Name>Nursing Assistants</Name>

          <Value>4294966578</Value>

        </Dimension>

      </Occupationslist>

      <Phone>7578923300</Phone>

      <ProgramLength>

        <Dimension>

          <Name>At least one but less than two years</Name>

          <Value>4294967031</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>ww2.nps.k12.va.us/education/components/scrapbook/default.php?sectiondetailid=55850&amp;</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

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

      <TotalEnrollment i:nil="true"/>

      <Zip>23502</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>7850 Carousel Lane</Address>

      <City>Henrico</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>431266-513901</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966776</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8045274660124</Phone>

      <ProgramLength>

        <Dimension>

          <Name>At least one but less than two years</Name>

          <Value>4294967031</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Licensed Practical/Vocational Nurse Training</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Henrico County-Saint Marys Hospital School of Practical Nursing</SchoolName>

      <SchoolUrl>blogs.henrico.k12.va.us/adulteducation/licensed-practical-nursing/</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

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

      <TotalEnrollment i:nil="true"/>

      <Zip>23294</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>2925 N Landing Rd</Address>

      <City>Virginia Beach</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>377485-513999</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966776</Value>

        </Dimension>

        <Dimension>

          <Name>Nursing Assistants</Name>

          <Value>4294966578</Value>

        </Dimension>

      </Occupationslist>

      <Phone>75764860500</Phone>

      <ProgramLength>

        <Dimension>

          <Name>At least one but less than two years</Name>

          <Value>4294967031</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>www.techcenter.vbschools.com</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

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

      <TotalEnrollment i:nil="true"/>

      <Zip>23456-2499</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>2450 Crystal Drive, Suite 319</Address>

      <City>Arlington</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>460871-513801</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966993</Value>

        </Dimension>

        <Dimension>

          <Name>Registered Nurses</Name>

          <Value>4294966994</Value>

        </Dimension>

      </Occupationslist>

      <Phone>7034167300</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Registered Nursing/Registered Nurse</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Chamberlain College of Nursing-Virginia</SchoolName>

      <SchoolUrl>www.chamberlain.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 96</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>22202</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>905 Lakeside Dr., Suite A</Address>

      <City>Lynchburg</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>232618-513901</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966776</Value>

        </Dimension>

      </Occupationslist>

      <Phone>4342003070</Phone>

      <ProgramLength>

        <Dimension>

          <Name>At least one but less than two years</Name>

          <Value>4294967031</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Licensed Practical/Vocational Nurse Training</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Centra College of Nursing</SchoolName>

      <SchoolUrl>centracon.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

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

      <TotalEnrollment i:nil="true"/>

      <Zip>24501</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>8550 Magellan Parkway Suite 1100</Address>

      <City>Richmond</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>233356-513801</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966993</Value>

        </Dimension>

        <Dimension>

          <Name>Registered Nurses</Name>

          <Value>4294966994</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8046275300</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

        <Dimension>

          <Name>At least two but less than four years</Name>

          <Value>4294967027</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Registered Nursing/Registered Nurse</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Bon Secours Memorial College of Nursing</SchoolName>

      <SchoolUrl>www.bsmcon.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 75||At least two but less than four years: 0</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>23227-1149</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>905 Lakeside Dr., Suite A</Address>

      <City>Lynchburg</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>232618-513801</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966993</Value>

        </Dimension>

        <Dimension>

          <Name>Registered Nurses</Name>

          <Value>4294966994</Value>

        </Dimension>

      </Occupationslist>

      <Phone>4342003070</Phone>

      <ProgramLength>

        <Dimension>

          <Name>2 years</Name>

          <Value>4294966973</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Registered Nursing/Registered Nurse</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Centra College of Nursing</SchoolName>

      <SchoolUrl>centracon.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>2 years: 59</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>24501</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>1073 West Broad Street. Suite 201</Address>

      <City>Falls Church</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>483814-513999</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966776</Value>

        </Dimension>

        <Dimension>

          <Name>Nursing Assistants</Name>

          <Value>4294966578</Value>

        </Dimension>

      </Occupationslist>

      <Phone>7038911787</Phone>

      <ProgramLength>

        <Dimension>

          <Name>At least one but less than two years</Name>

          <Value>4294967031</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>www.standardcollege.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

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

      <TotalEnrollment i:nil="true"/>

      <Zip>22046-4612</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>1073 West Broad Street. Suite 201</Address>

      <City>Falls Church</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>483814-513801</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966993</Value>

        </Dimension>

        <Dimension>

          <Name>Registered Nurses</Name>

          <Value>4294966994</Value>

        </Dimension>

      </Occupationslist>

      <Phone>7038911787</Phone>

      <ProgramLength>

        <Dimension>

          <Name>2 years</Name>

          <Value>4294966973</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Registered Nursing/Registered Nurse</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Standard Healthcare Services-College of Nursing</SchoolName>

      <SchoolUrl>www.standardcollege.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>2 years: 21</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>22046-4612</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>801 East Main Street</Address>

      <City>Radford</City>

      <Distance i:nil="true"/>

      <ElementID i:nil="true"/>

      <ID>233277-513801</ID>

      <Occupationslist>

        <Dimension>

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

          <Value>4294966993</Value>

        </Dimension>

        <Dimension>

          <Name>Registered Nurses</Name>

          <Value>4294966994</Value>

        </Dimension>

      </Occupationslist>

      <Phone>5408315000</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Registered Nursing/Registered Nurse</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Radford University</SchoolName>

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

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 99</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>24142</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
   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.