Banner: Web API: List training programs by element ID

Web API: List training programs by element ID

List training programs by element ID

The 'List Training Programs by Element ID' Web API enables developers to input an Element ID (skills, knowledge, or ability ID) and get results of Training Programs and other related information. It works in conjunction with complementary APIs from CareerOneStop that identify IDs.

About this data

The API provides search results for a Training Program based on an Element ID entered. This data is found in the Local Training Finder on www.CareerOneStop.org. For more information on the data, go to that tool's help page.

Resource URL

https://api.careeronestop.org/v1/Training/{userId}/skill/{elementId}/{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}/skill/{elementId}/{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}/skill/{elementId}/{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.
elementId String
Yes This value is the skills knowledge or ability ID from the ONET dataset
location
String
Yes This value accepts a city, state (Chicago, IL) or state (IL) or ZIP code (61299). Use 0 for nationwide results.
radius
String Yes This value accepts a radius size in miles around a specified location.
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. The valid values are US Service schools, New England, Mid East, Great Lakes, Plains, Southeast, Southwest, Rocky Mountains, Far West, Outlying areas.
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 limit of the maximum number of records to be returned. Default value is 10.

Response Structure

{

  "SchoolPrograms": [

    {

      "ID": "448628-151303",

      "SchoolName": "Westwood College-Annandale",

      "SchoolUrl": "www.westwood.edu",

      "Address": "7619 Little River Turnpike, 5th Floor",

      "City": "Annandale",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "22003",

      "Phone": "7034626501",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Architectural Drafting and Architectural CAD/CADD",

      "StudentGraduated": "2 years: 11",

      "ElementID": "2.C.3.b||2.C.3.c",

      "ProgramLength": [

        {

          "Name": "2 years",

          "Value": "4294966973"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Architectural and Civil Drafters",

          "Value": "4294966818"

        }

      ]

    },

    {

      "ID": "232450-151302",

      "SchoolName": "John Tyler Community College",

      "SchoolUrl": "www.jtcc.edu",

      "Address": "13101 Jefferson Davis Hwy",

      "City": "Chester",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23831-5316",

      "Phone": "8047964000",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "CAD/CADD Drafting and/or Design Technology/Technician",

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

      "ElementID": "2.C.3.b||2.C.3.c",

      "ProgramLength": [

        {

          "Name": "Less than one year",

          "Value": "4294967245"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Architectural and Civil Drafters",

          "Value": "4294966818"

        },

        {

          "Name": "Drafters, All Other",

          "Value": "4294966821"

        },

        {

          "Name": "Electrical and Electronics Drafters",

          "Value": "4294966819"

        },

        {

          "Name": "Mechanical Drafters",

          "Value": "4294966820"

        }

      ]

    },

    {

      "ID": "234155-143601",

      "SchoolName": "Virginia State University",

      "SchoolUrl": "www.vsu.edu",

      "Address": "1 Hayden Drive",

      "City": "Petersburg",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23806",

      "Phone": "8045245000",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Manufacturing Engineering",

      "StudentGraduated": "4 years: 10",

      "ElementID": "2.C.3.b",

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Architectural and Engineering Managers",

          "Value": "4294967261"

        },

        {

          "Name": "Cost Estimators",

          "Value": "4294967207"

        },

        {

          "Name": "Engineering Teachers, Postsecondary",

          "Value": "4294967215"

        },

        {

          "Name": "Engineers, All Other",

          "Value": "4294967205"

        },

        {

          "Name": "Industrial Engineers",

          "Value": "4294966957"

        }

      ]

    },

    {

      "ID": "234030-141001",

      "SchoolName": "Virginia Commonwealth University",

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

      "Address": "910 W Franklin St",

      "City": "Richmond",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23284-2512",

      "Phone": "8048280100",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Electrical and Electronics Engineering",

      "StudentGraduated": "4 years: 33",

      "ElementID": "2.C.3.b",

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Aerospace Engineers",

          "Value": "4294967210"

        },

        {

          "Name": "Architectural and Engineering Managers",

          "Value": "4294967261"

        },

        {

          "Name": "Electrical Engineers",

          "Value": "4294967211"

        },

        {

          "Name": "Electronics Engineers, Except Computer",

          "Value": "4294967212"

        },

        {

          "Name": "Engineering Teachers, Postsecondary",

          "Value": "4294967215"

        }

      ]

    },

    {

      "ID": "234155-150399",

      "SchoolName": "Virginia State University",

      "SchoolUrl": "www.vsu.edu",

      "Address": "1 Hayden Drive",

      "City": "Petersburg",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23806",

      "Phone": "8045245000",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Electrical and Electronic Engineering Technologies/Technicians, Other",

      "StudentGraduated": "4 years: 7",

      "ElementID": "2.C.3.a||2.C.3.b",

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Electrical and Electronics Engineering Technicians",

          "Value": "4294967201"

        }

      ]

    },

    {

      "ID": "233310-150303",

      "SchoolName": "Rappahannock Community College",

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

      "Address": "12745 College Drive",

      "City": "Glenns",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23149-2616",

      "Phone": "8047586700",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Electrical, Electronic and Communications Engineering Technology/Technician",

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

      "ElementID": "2.C.3.a||2.C.3.b",

      "ProgramLength": [

        {

          "Name": "Less than one year",

          "Value": "4294967245"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Electrical and Electronics Engineering Technicians",

          "Value": "4294967201"

        }

      ]

    },

    {

      "ID": "232937-141001",

      "SchoolName": "Norfolk State University",

      "SchoolUrl": "www.nsu.edu",

      "Address": "700 Park Avenue",

      "City": "Norfolk",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23504-8000",

      "Phone": "7578238600",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Electrical and Electronics Engineering",

      "StudentGraduated": "4 years: 9||More than 4 years: 3",

      "ElementID": "2.C.3.b",

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        },

        {

          "Name": "More than 4 years",

          "Value": "4294967276"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Aerospace Engineers",

          "Value": "4294967210"

        },

        {

          "Name": "Architectural and Engineering Managers",

          "Value": "4294967261"

        },

        {

          "Name": "Electrical Engineers",

          "Value": "4294967211"

        },

        {

          "Name": "Electronics Engineers, Except Computer",

          "Value": "4294967212"

        },

        {

          "Name": "Engineering Teachers, Postsecondary",

          "Value": "4294967215"

        }

      ]

    },

    {

      "ID": "234030-141901",

      "SchoolName": "Virginia Commonwealth University",

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

      "Address": "910 W Franklin St",

      "City": "Richmond",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23284-2512",

      "Phone": "8048280100",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Mechanical Engineering",

      "StudentGraduated": "4 years: 103",

      "ElementID": "2.C.3.b",

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Aerospace Engineers",

          "Value": "4294967210"

        },

        {

          "Name": "Architectural and Engineering Managers",

          "Value": "4294967261"

        },

        {

          "Name": "Cost Estimators",

          "Value": "4294967207"

        },

        {

          "Name": "Engineering Teachers, Postsecondary",

          "Value": "4294967215"

        },

        {

          "Name": "Mechanical Engineers",

          "Value": "4294967208"

        }

      ]

    },

    {

      "ID": "234155-150612",

      "SchoolName": "Virginia State University",

      "SchoolUrl": "www.vsu.edu",

      "Address": "1 Hayden Drive",

      "City": "Petersburg",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23806",

      "Phone": "8045245000",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Industrial Technology/Technician",

      "StudentGraduated": "4 years: 13",

      "ElementID": "2.C.2.a||2.C.3.b",

      "ProgramLength": [

        {

          "Name": "4 years",

          "Value": "4294967283"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Industrial Engineering Technicians",

          "Value": "4294967199"

        }

      ]

    },

    {

      "ID": "233310-150612",

      "SchoolName": "Rappahannock Community College",

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

      "Address": "12745 College Drive",

      "City": "Glenns",

      "StateAbbr": "VA",

      "StateName": "Virginia",

      "Zip": "23149-2616",

      "Phone": "8047586700",

      "Distance": null,

      "Region": "Southeast",

      "RegionCode": "5",

      "TotalEnrollment": null,

      "ProgramName": "Industrial Technology/Technician",

      "StudentGraduated": "2 years: 0",

      "ElementID": "2.C.2.a||2.C.3.b",

      "ProgramLength": [

        {

          "Name": "2 years",

          "Value": "4294966973"

        }

      ],

      "Occupationslist": [

        {

          "Name": "Industrial Engineering Technicians",

          "Value": "4294967199"

        }

      ]

    }

  ],

  "RecordCount": 231,

  "DidYouMean": "",

  "AutoCorrection": "",

  "LocationCountList": {

    "UndoList": [],

    "FilterList": []

  },

  "CityCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Norfolk (22)",

        "Count": 22,

        "Value": "4294964243"

      },

      {

        "Item": "Blacksburg (18)",

        "Count": 18,

        "Value": "4294963423"

      },

      {

        "Item": "Charlottesville (15)",

        "Count": 15,

        "Value": "4294963433"

      },

      {

        "Item": "Richmond (14)",

        "Count": 14,

        "Value": "4294964974"

      },

      {

        "Item": "Lynchburg (13)",

        "Count": 13,

        "Value": "4294963454"

      },

      {

        "Item": "Fairfax (11)",

        "Count": 11,

        "Value": "4294963445"

      },

      {

        "Item": "Annandale (10)",

        "Count": 10,

        "Value": "4294963436"

      },

      {

        "Item": "Hampton (10)",

        "Count": 10,

        "Value": "4294963442"

      },

      {

        "Item": "Roanoke (10)",

        "Count": 10,

        "Value": "4294963458"

      },

      {

        "Item": "Chester (9)",

        "Count": 9,

        "Value": "4294963650"

      },

      {

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

        "Count": 7,

        "Value": "4294963437"

      },

      {

        "Item": "Danville (7)",

        "Count": 7,

        "Value": "4294964956"

      },

      {

        "Item": "Alberta (6)",

        "Count": 6,

        "Value": "4294963428"

      },

      {

        "Item": "Martinsville (6)",

        "Count": 6,

        "Value": "4294963435"

      },

      {

        "Item": "Richlands (6)",

        "Count": 6,

        "Value": "4294963427"

      },

      {

        "Item": "Abingdon (5)",

        "Count": 5,

        "Value": "4294963424"

      },

      {

        "Item": "Glenns (5)",

        "Count": 5,

        "Value": "4294963431"

      },

      {

        "Item": "Lexington (5)",

        "Count": 5,

        "Value": "4294964680"

      },

      {

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

        "Count": 5,

        "Value": "4294963444"

      },

      {

        "Item": "Petersburg (5)",

        "Count": 5,

        "Value": "4294963434"

      },

      {

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

        "Count": 5,

        "Value": "4294963457"

      },

      {

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

        "Count": 5,

        "Value": "4294963456"

      },

      {

        "Item": "Arlington (4)",

        "Count": 4,

        "Value": "4294963565"

      },

      {

        "Item": "Dublin (4)",

        "Count": 4,

        "Value": "4294964002"

      },

      {

        "Item": "Middletown (4)",

        "Count": 4,

        "Value": "4294965254"

      },

      {

        "Item": "Wytheville (4)",

        "Count": 4,

        "Value": "4294963420"

      },

      {

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

        "Count": 3,

        "Value": "4294963450"

      },

      {

        "Item": "Franklin (3)",

        "Count": 3,

        "Value": "4294964856"

      },

      {

        "Item": "Melfa (3)",

        "Count": 3,

        "Value": "4294963447"

      },

      {

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

        "Count": 2,

        "Value": "4294963426"

      },

      {

        "Item": "Ashland (1)",

        "Count": 1,

        "Value": "4294964688"

      },

      {

        "Item": "Chesapeake (1)",

        "Count": 1,

        "Value": "4294963870"

      },

      {

        "Item": "Harrisonburg (1)",

        "Count": 1,

        "Value": "4294963448"

      },

      {

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

        "Count": 1,

        "Value": "4294963453"

      },

      {

        "Item": "Wise (1)",

        "Count": 1,

        "Value": "4294963425"

      }

    ]

  },

  "RegionCountList": {

    "UndoList": [],

    "FilterList": []

  },

  "OccupationCountList": {

    "UndoList": [],

    "FilterList": [

      {

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

        "Count": 95,

        "Value": "4294967261"

      },

      {

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

        "Count": 93,

        "Value": "4294967215"

      },

      {

        "Item": "Industrial Engineering Technicians (42)",

        "Count": 42,

        "Value": "4294967199"

      },

      {

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

        "Count": 38,

        "Value": "4294967205"

      },

      {

        "Item": "Electrical and Electronics Engineering Technicians (31)",

        "Count": 31,

        "Value": "4294967201"

      },

      {

        "Item": "Architectural and Civil Drafters (23)",

        "Count": 23,

        "Value": "4294966818"

      },

      {

        "Item": "Drafters, All Other (21)",

        "Count": 21,

        "Value": "4294966821"

      },

      {

        "Item": "Electrical and Electronics Drafters (21)",

        "Count": 21,

        "Value": "4294966819"

      },

      {

        "Item": "Mechanical Drafters (21)",

        "Count": 21,

        "Value": "4294966820"

      },

      {

        "Item": "Aerospace Engineers (16)",

        "Count": 16,

        "Value": "4294967210"

      },

      {

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

        "Count": 14,

        "Value": "4294967090"

      },

      {

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

        "Count": 14,

        "Value": "4294967091"

      },

      {

        "Item": "Cost Estimators (11)",

        "Count": 11,

        "Value": "4294967207"

      },

      {

        "Item": "Engineering Technicians, Except Drafters, All Other (10)",

        "Count": 10,

        "Value": "4294966824"

      },

      {

        "Item": "Mechanical Engineering Technicians (10)",

        "Count": 10,

        "Value": "4294967197"

      },

      {

        "Item": "Computer Hardware Engineers (9)",

        "Count": 9,

        "Value": "4294967092"

      },

      {

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

        "Count": 9,

        "Value": "4294967253"

      },

      {

        "Item": "Electrical Engineers (9)",

        "Count": 9,

        "Value": "4294967211"

      },

      {

        "Item": "Electronics Engineers, Except Computer (9)",

        "Count": 9,

        "Value": "4294967212"

      },

      {

        "Item": "Civil Engineers (7)",

        "Count": 7,

        "Value": "4294967214"

      },

      {

        "Item": "Chemical Engineers (5)",

        "Count": 5,

        "Value": "4294966959"

      },

      {

        "Item": "Civil Engineering Technicians (5)",

        "Count": 5,

        "Value": "4294967203"

      },

      {

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

        "Count": 5,

        "Value": "4294967135"

      },

      {

        "Item": "Mechanical Engineers (5)",

        "Count": 5,

        "Value": "4294967208"

      },

      {

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

        "Count": 5,

        "Value": "4294967183"

      },

      {

        "Item": "Biomedical Engineers (4)",

        "Count": 4,

        "Value": "4294967094"

      },

      {

        "Item": "Industrial Engineers (4)",

        "Count": 4,

        "Value": "4294966957"

      },

      {

        "Item": "Physicists (4)",

        "Count": 4,

        "Value": "4294967172"

      },

      {

        "Item": "Materials Engineers (3)",

        "Count": 3,

        "Value": "4294967088"

      },

      {

        "Item": "Service Unit Operators, Oil, Gas, and Mining (3)",

        "Count": 3,

        "Value": "4294966313"

      },

      {

        "Item": "Electro-Mechanical Technicians (2)",

        "Count": 2,

        "Value": "4294966384"

      },

      {

        "Item": "Environmental Engineers (2)",

        "Count": 2,

        "Value": "4294966894"

      },

      {

        "Item": "Health and Safety Engineers, Except Mining Safety Engineers and Inspectors (2)",

        "Count": 2,

        "Value": "4294966895"

      },

      {

        "Item": "Heating, Air Conditioning, and Refrigeration Mechanics and Installers (2)",

        "Count": 2,

        "Value": "4294966805"

      },

      {

        "Item": "Agricultural Engineers (1)",

        "Count": 1,

        "Value": "4294966066"

      },

      {

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

        "Count": 1,

        "Value": "4294967195"

      },

      {

        "Item": "Marine Engineers and Naval Architects (1)",

        "Count": 1,

        "Value": "4294966296"

      },

      {

        "Item": "Medical Equipment Repairers (1)",

        "Count": 1,

        "Value": "4294966409"

      },

      {

        "Item": "Mining and Geological Engineers, Including Mining Safety Engineers (1)",

        "Count": 1,

        "Value": "4294966299"

      },

      {

        "Item": "Nuclear Engineers (1)",

        "Count": 1,

        "Value": "4294966138"

      },

      {

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

        "Count": 1,

        "Value": "4294966565"

      },

      {

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

        "Count": 1,

        "Value": "4294966836"

      }

    ]

  },

  "ProgramCountList": {

    "UndoList": [],

    "FilterList": [

      {

        "Item": "Electrical, Electronic and Communications Engineering Technology/Technician (26)",

        "Count": 26,

        "Value": "4294966610"

      },

      {

        "Item": "CAD/CADD Drafting and/or Design Technology/Technician (21)",

        "Count": 21,

        "Value": "4294966289"

      },

      {

        "Item": "Industrial Technology/Technician (20)",

        "Count": 20,

        "Value": "4294967200"

      },

      {

        "Item": "Industrial Production Technologies/Technicians, Other (18)",

        "Count": 18,

        "Value": "4294966446"

      },

      {

        "Item": "Engineering, General (15)",

        "Count": 15,

        "Value": "4294967096"

      },

      {

        "Item": "Engineering Technology, General (11)",

        "Count": 11,

        "Value": "4294966455"

      },

      {

        "Item": "Mechanical Engineering Related Technologies/Technicians, Other (10)",

        "Count": 10,

        "Value": "4294967198"

      },

      {

        "Item": "Surveying Engineering (10)",

        "Count": 10,

        "Value": "4294965160"

      },

      {

        "Item": "Computer Engineering, General (9)",

        "Count": 9,

        "Value": "4294967093"

      },

      {

        "Item": "Electrical and Electronics Engineering (9)",

        "Count": 9,

        "Value": "4294967213"

      },

      {

        "Item": "Chemical Engineering (5)",

        "Count": 5,

        "Value": "4294966960"

      },

      {

        "Item": "Civil Engineering, General (5)",

        "Count": 5,

        "Value": "4294967216"

      },

      {

        "Item": "Computer Software Engineering (5)",

        "Count": 5,

        "Value": "4294965985"

      },

      {

        "Item": "Mechanical Engineering (5)",

        "Count": 5,

        "Value": "4294967209"

      },

      {

        "Item": "Bioengineering and Biomedical Engineering (4)",

        "Count": 4,

        "Value": "4294967095"

      },

      {

        "Item": "Civil Engineering Technology/Technician (4)",

        "Count": 4,

        "Value": "4294967204"

      },

      {

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

        "Count": 4,

        "Value": "4294966064"

      },

      {

        "Item": "Environmental Control Technologies/Technicians, Other (3)",

        "Count": 3,

        "Value": "4294966825"

      },

      {

        "Item": "Industrial Engineering (3)",

        "Count": 3,

        "Value": "4294966958"

      },

      {

        "Item": "Mining Technology/Technician (3)",

        "Count": 3,

        "Value": "4294966314"

      },

      {

        "Item": "Systems Engineering (3)",

        "Count": 3,

        "Value": "4294966063"

      },

      {

        "Item": "Aerospace, Aeronautical and Astronautical/Space Engineering (2)",

        "Count": 2,

        "Value": "4294966961"

      },

      {

        "Item": "Architectural Drafting and Architectural CAD/CADD (2)",

        "Count": 2,

        "Value": "4294966288"

      },

      {

        "Item": "Computer Engineering Technology/Technician (2)",

        "Count": 2,

        "Value": "4294966290"

      },

      {

        "Item": "Computer Technology/Computer Systems Technology (2)",

        "Count": 2,

        "Value": "4294966650"

      },

      {

        "Item": "Construction Engineering (2)",

        "Count": 2,

        "Value": "4294966892"

      },

      {

        "Item": "Engineering/Industrial Management (2)",

        "Count": 2,

        "Value": "4294966135"

      },

      {

        "Item": "Environmental/Environmental Health Engineering (2)",

        "Count": 2,

        "Value": "4294966896"

      },

      {

        "Item": "Heating, Ventilation, Air Conditioning and Refrigeration Engineering Technology/Technician (2)",

        "Count": 2,

        "Value": "4294966609"

      },

      {

        "Item": "Manufacturing Engineering Technology/Technician (2)",

        "Count": 2,

        "Value": "4294966823"

      },

      {

        "Item": "Materials Engineering (2)",

        "Count": 2,

        "Value": "4294967089"

      },

      {

        "Item": "Agricultural Engineering (1)",

        "Count": 1,

        "Value": "4294966067"

      },

      {

        "Item": "Architectural Engineering Technology/Technician (1)",

        "Count": 1,

        "Value": "4294966295"

      },

      {

        "Item": "Automation Engineer Technology/Technician (1)",

        "Count": 1,

        "Value": "4294966005"

      },

      {

        "Item": "Biomedical Technology/Technician (1)",

        "Count": 1,

        "Value": "4294966410"

      },

      {

        "Item": "Construction Engineering Technology/Technician (1)",

        "Count": 1,

        "Value": "4294967196"

      },

      {

        "Item": "Electrical and Electronic Engineering Technologies/Technicians, Other (1)",

        "Count": 1,

        "Value": "4294967202"

      },

      {

        "Item": "Electromechanical Technology/Electromechanical Engineering Technology (1)",

        "Count": 1,

        "Value": "4294965961"

      },

      {

        "Item": "Engineering Mechanics (1)",

        "Count": 1,

        "Value": "4294966897"

      },

      {

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

        "Count": 1,

        "Value": "4294966140"

      },

      {

        "Item": "Engineering Technologies and Engineering-Related Fields, Other (1)",

        "Count": 1,

        "Value": "4294966494"

      },

      {

        "Item": "Manufacturing Engineering (1)",

        "Count": 1,

        "Value": "4294966006"

      },

      {

        "Item": "Mining and Mineral Engineering (1)",

        "Count": 1,

        "Value": "4294966234"

      },

      {

        "Item": "Nanotechnology (1)",

        "Count": 1,

        "Value": "4294966134"

      },

      {

        "Item": "Naval Architecture and Marine Engineering (1)",

        "Count": 1,

        "Value": "4294966297"

      },

      {

        "Item": "Nuclear Engineering (1)",

        "Count": 1,

        "Value": "4294966139"

      },

      {

        "Item": "Nuclear Engineering Technology/Technician (1)",

        "Count": 1,

        "Value": "4294965807"

      },

      {

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

        "Count": 1,

        "Value": "4294965666"

      },

      {

        "Item": "Polymer/Plastics Engineering (1)",

        "Count": 1,

        "Value": "4294966708"

      }

    ]

  },

  "ProgramLengthCountList": {

    "UndoList": [],

    "FilterList": [

      {

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

        "Count": 92,

        "Value": "4294967245"

      },

      {

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

        "Count": 77,

        "Value": "4294966973"

      },

      {

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

        "Count": 75,

        "Value": "4294967283"

      },

      {

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

        "Count": 39,

        "Value": "4294967276"

      },

      {

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

        "Count": 35,

        "Value": "4294967031"

      },

      {

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

        "Count": 1,

        "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>22</Count>

        <Item>Norfolk (22)</Item>

        <Value>4294964243</Value>

      </ItemCount>

      <ItemCount>

        <Count>18</Count>

        <Item>Blacksburg (18)</Item>

        <Value>4294963423</Value>

      </ItemCount>

      <ItemCount>

        <Count>15</Count>

        <Item>Charlottesville (15)</Item>

        <Value>4294963433</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

        <Item>Richmond (14)</Item>

        <Value>4294964974</Value>

      </ItemCount>

      <ItemCount>

        <Count>13</Count>

        <Item>Lynchburg (13)</Item>

        <Value>4294963454</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Fairfax (11)</Item>

        <Value>4294963445</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Annandale (10)</Item>

        <Value>4294963436</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Hampton (10)</Item>

        <Value>4294963442</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Roanoke (10)</Item>

        <Value>4294963458</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Chester (9)</Item>

        <Value>4294963650</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

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

        <Value>4294963437</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Danville (7)</Item>

        <Value>4294964956</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Alberta (6)</Item>

        <Value>4294963428</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Martinsville (6)</Item>

        <Value>4294963435</Value>

      </ItemCount>

      <ItemCount>

        <Count>6</Count>

        <Item>Richlands (6)</Item>

        <Value>4294963427</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Abingdon (5)</Item>

        <Value>4294963424</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Glenns (5)</Item>

        <Value>4294963431</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Lexington (5)</Item>

        <Value>4294964680</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294963444</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Petersburg (5)</Item>

        <Value>4294963434</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294963457</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294963456</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Arlington (4)</Item>

        <Value>4294963565</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Dublin (4)</Item>

        <Value>4294964002</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Middletown (4)</Item>

        <Value>4294965254</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Wytheville (4)</Item>

        <Value>4294963420</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

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

        <Value>4294963450</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Franklin (3)</Item>

        <Value>4294964856</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Melfa (3)</Item>

        <Value>4294963447</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

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

        <Value>4294963426</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Ashland (1)</Item>

        <Value>4294964688</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Chesapeake (1)</Item>

        <Value>4294963870</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Harrisonburg (1)</Item>

        <Value>4294963448</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294963453</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Wise (1)</Item>

        <Value>4294963425</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </CityCountList>

  <DidYouMean/>

  <LocationCountList>

    <FilterList/>

    <UndoList/>

  </LocationCountList>

  <OccupationCountList>

    <FilterList>

      <ItemCount>

        <Count>95</Count>

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

        <Value>4294967261</Value>

      </ItemCount>

      <ItemCount>

        <Count>93</Count>

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

        <Value>4294967215</Value>

      </ItemCount>

      <ItemCount>

        <Count>42</Count>

        <Item>Industrial Engineering Technicians (42)</Item>

        <Value>4294967199</Value>

      </ItemCount>

      <ItemCount>

        <Count>38</Count>

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

        <Value>4294967205</Value>

      </ItemCount>

      <ItemCount>

        <Count>31</Count>

        <Item>Electrical and Electronics Engineering Technicians (31)</Item>

        <Value>4294967201</Value>

      </ItemCount>

      <ItemCount>

        <Count>23</Count>

        <Item>Architectural and Civil Drafters (23)</Item>

        <Value>4294966818</Value>

      </ItemCount>

      <ItemCount>

        <Count>21</Count>

        <Item>Drafters, All Other (21)</Item>

        <Value>4294966821</Value>

      </ItemCount>

      <ItemCount>

        <Count>21</Count>

        <Item>Electrical and Electronics Drafters (21)</Item>

        <Value>4294966819</Value>

      </ItemCount>

      <ItemCount>

        <Count>21</Count>

        <Item>Mechanical Drafters (21)</Item>

        <Value>4294966820</Value>

      </ItemCount>

      <ItemCount>

        <Count>16</Count>

        <Item>Aerospace Engineers (16)</Item>

        <Value>4294967210</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

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

        <Value>4294967090</Value>

      </ItemCount>

      <ItemCount>

        <Count>14</Count>

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

        <Value>4294967091</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Cost Estimators (11)</Item>

        <Value>4294967207</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Engineering Technicians, Except Drafters, All Other (10)</Item>

        <Value>4294966824</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Mechanical Engineering Technicians (10)</Item>

        <Value>4294967197</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Computer Hardware Engineers (9)</Item>

        <Value>4294967092</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

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

        <Value>4294967253</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Electrical Engineers (9)</Item>

        <Value>4294967211</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Electronics Engineers, Except Computer (9)</Item>

        <Value>4294967212</Value>

      </ItemCount>

      <ItemCount>

        <Count>7</Count>

        <Item>Civil Engineers (7)</Item>

        <Value>4294967214</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Chemical Engineers (5)</Item>

        <Value>4294966959</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Civil Engineering Technicians (5)</Item>

        <Value>4294967203</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294967135</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Mechanical Engineers (5)</Item>

        <Value>4294967208</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

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

        <Value>4294967183</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Biomedical Engineers (4)</Item>

        <Value>4294967094</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Industrial Engineers (4)</Item>

        <Value>4294966957</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Physicists (4)</Item>

        <Value>4294967172</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Materials Engineers (3)</Item>

        <Value>4294967088</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Service Unit Operators, Oil, Gas, and Mining (3)</Item>

        <Value>4294966313</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Electro-Mechanical Technicians (2)</Item>

        <Value>4294966384</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Environmental Engineers (2)</Item>

        <Value>4294966894</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Health and Safety Engineers, Except Mining Safety Engineers and Inspectors (2)</Item>

        <Value>4294966895</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Heating, Air Conditioning, and Refrigeration Mechanics and Installers (2)</Item>

        <Value>4294966805</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Agricultural Engineers (1)</Item>

        <Value>4294966066</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294967195</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Marine Engineers and Naval Architects (1)</Item>

        <Value>4294966296</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Medical Equipment Repairers (1)</Item>

        <Value>4294966409</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Mining and Geological Engineers, Including Mining Safety Engineers (1)</Item>

        <Value>4294966299</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Nuclear Engineers (1)</Item>

        <Value>4294966138</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966565</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966836</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </OccupationCountList>

  <ProgramCountList>

    <FilterList>

      <ItemCount>

        <Count>26</Count>

        <Item>Electrical, Electronic and Communications Engineering Technology/Technician (26)</Item>

        <Value>4294966610</Value>

      </ItemCount>

      <ItemCount>

        <Count>21</Count>

        <Item>CAD/CADD Drafting and/or Design Technology/Technician (21)</Item>

        <Value>4294966289</Value>

      </ItemCount>

      <ItemCount>

        <Count>20</Count>

        <Item>Industrial Technology/Technician (20)</Item>

        <Value>4294967200</Value>

      </ItemCount>

      <ItemCount>

        <Count>18</Count>

        <Item>Industrial Production Technologies/Technicians, Other (18)</Item>

        <Value>4294966446</Value>

      </ItemCount>

      <ItemCount>

        <Count>15</Count>

        <Item>Engineering, General (15)</Item>

        <Value>4294967096</Value>

      </ItemCount>

      <ItemCount>

        <Count>11</Count>

        <Item>Engineering Technology, General (11)</Item>

        <Value>4294966455</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Mechanical Engineering Related Technologies/Technicians, Other (10)</Item>

        <Value>4294967198</Value>

      </ItemCount>

      <ItemCount>

        <Count>10</Count>

        <Item>Surveying Engineering (10)</Item>

        <Value>4294965160</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Computer Engineering, General (9)</Item>

        <Value>4294967093</Value>

      </ItemCount>

      <ItemCount>

        <Count>9</Count>

        <Item>Electrical and Electronics Engineering (9)</Item>

        <Value>4294967213</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Chemical Engineering (5)</Item>

        <Value>4294966960</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Civil Engineering, General (5)</Item>

        <Value>4294967216</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Computer Software Engineering (5)</Item>

        <Value>4294965985</Value>

      </ItemCount>

      <ItemCount>

        <Count>5</Count>

        <Item>Mechanical Engineering (5)</Item>

        <Value>4294967209</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Bioengineering and Biomedical Engineering (4)</Item>

        <Value>4294967095</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

        <Item>Civil Engineering Technology/Technician (4)</Item>

        <Value>4294967204</Value>

      </ItemCount>

      <ItemCount>

        <Count>4</Count>

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

        <Value>4294966064</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Environmental Control Technologies/Technicians, Other (3)</Item>

        <Value>4294966825</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Industrial Engineering (3)</Item>

        <Value>4294966958</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Mining Technology/Technician (3)</Item>

        <Value>4294966314</Value>

      </ItemCount>

      <ItemCount>

        <Count>3</Count>

        <Item>Systems Engineering (3)</Item>

        <Value>4294966063</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Aerospace, Aeronautical and Astronautical/Space Engineering (2)</Item>

        <Value>4294966961</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Architectural Drafting and Architectural CAD/CADD (2)</Item>

        <Value>4294966288</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Computer Engineering Technology/Technician (2)</Item>

        <Value>4294966290</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Computer Technology/Computer Systems Technology (2)</Item>

        <Value>4294966650</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Construction Engineering (2)</Item>

        <Value>4294966892</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Engineering/Industrial Management (2)</Item>

        <Value>4294966135</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Environmental/Environmental Health Engineering (2)</Item>

        <Value>4294966896</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Heating, Ventilation, Air Conditioning and Refrigeration Engineering Technology/Technician (2)</Item>

        <Value>4294966609</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Manufacturing Engineering Technology/Technician (2)</Item>

        <Value>4294966823</Value>

      </ItemCount>

      <ItemCount>

        <Count>2</Count>

        <Item>Materials Engineering (2)</Item>

        <Value>4294967089</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Agricultural Engineering (1)</Item>

        <Value>4294966067</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Architectural Engineering Technology/Technician (1)</Item>

        <Value>4294966295</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Automation Engineer Technology/Technician (1)</Item>

        <Value>4294966005</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Biomedical Technology/Technician (1)</Item>

        <Value>4294966410</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Construction Engineering Technology/Technician (1)</Item>

        <Value>4294967196</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Electrical and Electronic Engineering Technologies/Technicians, Other (1)</Item>

        <Value>4294967202</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Electromechanical Technology/Electromechanical Engineering Technology (1)</Item>

        <Value>4294965961</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Engineering Mechanics (1)</Item>

        <Value>4294966897</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294966140</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Engineering Technologies and Engineering-Related Fields, Other (1)</Item>

        <Value>4294966494</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Manufacturing Engineering (1)</Item>

        <Value>4294966006</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Mining and Mineral Engineering (1)</Item>

        <Value>4294966234</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Nanotechnology (1)</Item>

        <Value>4294966134</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Naval Architecture and Marine Engineering (1)</Item>

        <Value>4294966297</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Nuclear Engineering (1)</Item>

        <Value>4294966139</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Nuclear Engineering Technology/Technician (1)</Item>

        <Value>4294965807</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294965666</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

        <Item>Polymer/Plastics Engineering (1)</Item>

        <Value>4294966708</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </ProgramCountList>

  <ProgramLengthCountList>

    <FilterList>

      <ItemCount>

        <Count>92</Count>

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

        <Value>4294967245</Value>

      </ItemCount>

      <ItemCount>

        <Count>77</Count>

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

        <Value>4294966973</Value>

      </ItemCount>

      <ItemCount>

        <Count>75</Count>

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

        <Value>4294967283</Value>

      </ItemCount>

      <ItemCount>

        <Count>39</Count>

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

        <Value>4294967276</Value>

      </ItemCount>

      <ItemCount>

        <Count>35</Count>

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

        <Value>4294967031</Value>

      </ItemCount>

      <ItemCount>

        <Count>1</Count>

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

        <Value>4294967027</Value>

      </ItemCount>

    </FilterList>

    <UndoList/>

  </ProgramLengthCountList>

  <RecordCount>231</RecordCount>

  <RegionCountList>

    <FilterList/>

    <UndoList/>

  </RegionCountList>

  <SchoolOrProgram>P</SchoolOrProgram>

  <SchoolPrograms>

    <SchoolProgramDetails>

      <Address>7619 Little River Turnpike, 5th Floor</Address>

      <City>Annandale</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.3.b||2.C.3.c</ElementID>

      <ID>448628-151303</ID>

      <Occupationslist>

        <Dimension>

          <Name>Architectural and Civil Drafters</Name>

          <Value>4294966818</Value>

        </Dimension>

      </Occupationslist>

      <Phone>7034626501</Phone>

      <ProgramLength>

        <Dimension>

          <Name>2 years</Name>

          <Value>4294966973</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Architectural Drafting and Architectural CAD/CADD</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Westwood College-Annandale</SchoolName>

      <SchoolUrl>www.westwood.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>2 years: 11</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>22003</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>13101 Jefferson Davis Hwy</Address>

      <City>Chester</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.3.b||2.C.3.c</ElementID>

      <ID>232450-151302</ID>

      <Occupationslist>

        <Dimension>

          <Name>Architectural and Civil Drafters</Name>

          <Value>4294966818</Value>

        </Dimension>

        <Dimension>

          <Name>Drafters, All Other</Name>

          <Value>4294966821</Value>

        </Dimension>

        <Dimension>

          <Name>Electrical and Electronics Drafters</Name>

          <Value>4294966819</Value>

        </Dimension>

        <Dimension>

          <Name>Mechanical Drafters</Name>

          <Value>4294966820</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8047964000</Phone>

      <ProgramLength>

        <Dimension>

          <Name>Less than one year</Name>

          <Value>4294967245</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>CAD/CADD Drafting and/or Design Technology/Technician</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>John Tyler Community College</SchoolName>

      <SchoolUrl>www.jtcc.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

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

      <TotalEnrollment i:nil="true"/>

      <Zip>23831-5316</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>1 Hayden Drive</Address>

      <City>Petersburg</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.3.b</ElementID>

      <ID>234155-143601</ID>

      <Occupationslist>

        <Dimension>

          <Name>Architectural and Engineering Managers</Name>

          <Value>4294967261</Value>

        </Dimension>

        <Dimension>

          <Name>Cost Estimators</Name>

          <Value>4294967207</Value>

        </Dimension>

        <Dimension>

          <Name>Engineering Teachers, Postsecondary</Name>

          <Value>4294967215</Value>

        </Dimension>

        <Dimension>

          <Name>Engineers, All Other</Name>

          <Value>4294967205</Value>

        </Dimension>

        <Dimension>

          <Name>Industrial Engineers</Name>

          <Value>4294966957</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8045245000</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Manufacturing Engineering</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Virginia State University</SchoolName>

      <SchoolUrl>www.vsu.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 10</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>23806</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>910 W Franklin St</Address>

      <City>Richmond</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.3.b</ElementID>

      <ID>234030-141001</ID>

      <Occupationslist>

        <Dimension>

          <Name>Aerospace Engineers</Name>

          <Value>4294967210</Value>

        </Dimension>

        <Dimension>

          <Name>Architectural and Engineering Managers</Name>

          <Value>4294967261</Value>

        </Dimension>

        <Dimension>

          <Name>Electrical Engineers</Name>

          <Value>4294967211</Value>

        </Dimension>

        <Dimension>

          <Name>Electronics Engineers, Except Computer</Name>

          <Value>4294967212</Value>

        </Dimension>

        <Dimension>

          <Name>Engineering Teachers, Postsecondary</Name>

          <Value>4294967215</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8048280100</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Electrical and Electronics Engineering</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Virginia Commonwealth University</SchoolName>

      <SchoolUrl>www.vcu.edu/</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 33</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>23284-2512</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>1 Hayden Drive</Address>

      <City>Petersburg</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.3.a||2.C.3.b</ElementID>

      <ID>234155-150399</ID>

      <Occupationslist>

        <Dimension>

          <Name>Electrical and Electronics Engineering Technicians</Name>

          <Value>4294967201</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8045245000</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Electrical and Electronic Engineering Technologies/Technicians, Other</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Virginia State University</SchoolName>

      <SchoolUrl>www.vsu.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 7</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>23806</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>12745 College Drive</Address>

      <City>Glenns</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.3.a||2.C.3.b</ElementID>

      <ID>233310-150303</ID>

      <Occupationslist>

        <Dimension>

          <Name>Electrical and Electronics Engineering Technicians</Name>

          <Value>4294967201</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8047586700</Phone>

      <ProgramLength>

        <Dimension>

          <Name>Less than one year</Name>

          <Value>4294967245</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Electrical, Electronic and Communications Engineering Technology/Technician</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Rappahannock Community College</SchoolName>

      <SchoolUrl>www.rappahannock.edu/</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

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

      <TotalEnrollment i:nil="true"/>

      <Zip>23149-2616</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>700 Park Avenue</Address>

      <City>Norfolk</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.3.b</ElementID>

      <ID>232937-141001</ID>

      <Occupationslist>

        <Dimension>

          <Name>Aerospace Engineers</Name>

          <Value>4294967210</Value>

        </Dimension>

        <Dimension>

          <Name>Architectural and Engineering Managers</Name>

          <Value>4294967261</Value>

        </Dimension>

        <Dimension>

          <Name>Electrical Engineers</Name>

          <Value>4294967211</Value>

        </Dimension>

        <Dimension>

          <Name>Electronics Engineers, Except Computer</Name>

          <Value>4294967212</Value>

        </Dimension>

        <Dimension>

          <Name>Engineering Teachers, Postsecondary</Name>

          <Value>4294967215</Value>

        </Dimension>

      </Occupationslist>

      <Phone>7578238600</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

        <Dimension>

          <Name>More than 4 years</Name>

          <Value>4294967276</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Electrical and Electronics Engineering</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Norfolk State University</SchoolName>

      <SchoolUrl>www.nsu.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 9||More than 4 years: 3</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>23504-8000</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>910 W Franklin St</Address>

      <City>Richmond</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.3.b</ElementID>

      <ID>234030-141901</ID>

      <Occupationslist>

        <Dimension>

          <Name>Aerospace Engineers</Name>

          <Value>4294967210</Value>

        </Dimension>

        <Dimension>

          <Name>Architectural and Engineering Managers</Name>

          <Value>4294967261</Value>

        </Dimension>

        <Dimension>

          <Name>Cost Estimators</Name>

          <Value>4294967207</Value>

        </Dimension>

        <Dimension>

          <Name>Engineering Teachers, Postsecondary</Name>

          <Value>4294967215</Value>

        </Dimension>

        <Dimension>

          <Name>Mechanical Engineers</Name>

          <Value>4294967208</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8048280100</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Mechanical Engineering</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Virginia Commonwealth University</SchoolName>

      <SchoolUrl>www.vcu.edu/</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 103</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>23284-2512</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>1 Hayden Drive</Address>

      <City>Petersburg</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.2.a||2.C.3.b</ElementID>

      <ID>234155-150612</ID>

      <Occupationslist>

        <Dimension>

          <Name>Industrial Engineering Technicians</Name>

          <Value>4294967199</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8045245000</Phone>

      <ProgramLength>

        <Dimension>

          <Name>4 years</Name>

          <Value>4294967283</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Industrial Technology/Technician</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Virginia State University</SchoolName>

      <SchoolUrl>www.vsu.edu</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>4 years: 13</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>23806</Zip>

    </SchoolProgramDetails>

    <SchoolProgramDetails>

      <Address>12745 College Drive</Address>

      <City>Glenns</City>

      <Distance i:nil="true"/>

      <ElementID>2.C.2.a||2.C.3.b</ElementID>

      <ID>233310-150612</ID>

      <Occupationslist>

        <Dimension>

          <Name>Industrial Engineering Technicians</Name>

          <Value>4294967199</Value>

        </Dimension>

      </Occupationslist>

      <Phone>8047586700</Phone>

      <ProgramLength>

        <Dimension>

          <Name>2 years</Name>

          <Value>4294966973</Value>

        </Dimension>

      </ProgramLength>

      <ProgramName>Industrial Technology/Technician</ProgramName>

      <Region>Southeast</Region>

      <RegionCode>5</RegionCode>

      <SchoolName>Rappahannock Community College</SchoolName>

      <SchoolUrl>www.rappahannock.edu/</SchoolUrl>

      <StateAbbr>VA</StateAbbr>

      <StateName>Virginia</StateName>

      <StudentGraduated>2 years: 0</StudentGraduated>

      <TotalEnrollment i:nil="true"/>

      <Zip>23149-2616</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
If location input was a ZIP, distance from that ZIP String
   Region
IPEDS-defined region String
   RegionCode
IPEDS-defined region code String
   TotalEnrollment
Total Enrollment
String
   ProgramName
Program Name
String
   StudentGraduated
Student Graduated
String
   ElementId
Element ID
String
   ProgramLength
List of program lengths offered  Object
     Name
Name
String
     Value
Value
String
   OccupationsList
List of occupations for which this program may prepare a student Object
     Name
Name String
     Value
Value String
RecordCount
Record Count
Number
DidYouMean
Did You mean
String
AutoCorrection
Auto Correction
String
LocationCountList
Can be used to filter subsequent calls by location Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
CityCountList
Can be used to filter subsequent calls by city Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
RegionCountList
Can be used to filter subsequent calls by region Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
OccupationCountList 
Can be used to filter subsequent calls by occupation Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
ProgramCountList
Can be used to filter subsequent calls by program Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
ProgramLengthCountList 
Can be used to filter subsequent calls by program length Object
   UndoList
Undo List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
   FilterList
Filter List
Object
     Item
Item String
     Count
Count Number
     Value
Value String
SchoolOrProgram
Values include school (S), or program (P). Always P for this Web API 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.