Skip to content

Instantly share code, notes, and snippets.

@imakecodes
Created September 28, 2023 14:16
Show Gist options
  • Save imakecodes/3a8115191cc5cfe2edde9c4959407dbd to your computer and use it in GitHub Desktop.
Save imakecodes/3a8115191cc5cfe2edde9c4959407dbd to your computer and use it in GitHub Desktop.

NAICs exporter

https://corporatefinanceinstitute.com/resources/commercial-lending/north-american-industry-classification-system-naics/

import json
import requests

Obtaining the sector list

sectors_url = "https://www.census.gov/naics/resources/js/data/naics-sector-descriptions.json"
response = requests.get(sectors_url).json()
sectors = response["naicsRef"][0]["table"]["tableRow"]

for sector in sectors:
    sector["subsectors"] = []
    subsectors_url = f"https://www.census.gov/naics/resources/model/dataHandler.php?input={sector['sectorCode']}&chart=2022&search=Y"
    response = requests.get(subsectors_url).json()
    subsectors = response["result"]
    for subsector in subsectors:
        sector["subsectors"].append(subsector)

total_sectors = 0
for sector in sectors:
    sector["subsectors_count"] = len(sector["subsectors"])
    total_sectors += sector["subsectors_count"]
print("Sectors: ", len(sectors))
print("Total sectors: ", total_sectors)

print(json.dumps(sectors, indent=4))
Sectors:  20
Total sectors:  1216
[
    {
        "sectorCode": "11",
        "sectorDescription": "Agriculture, Forestry, Fishing and Hunting",
        "subsectors": [
            {
                "code": "11",
                "title": "Agriculture, Forestry, Fishing and Hunting<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Agriculture, Forestry, Fishing and Hunting sector comprises establishments primarily engaged in growing crops, raising animals, harvesting timber, and harvesting fish and other animals from a farm, ranch, or their natural habitats.<br><br>The establishments in this sector are often described as farms, ranches, dairies, greenhouses, nurseries, orchards, or hatcheries.  A farm may consist of a single tract of land or a number of separate tracts which may be held under different tenures.  For example, one tract may be owned by the farm operator and another rented.  It may be operated by the operator alone or with the assistance of members of the household or hired employees, or it may be operated by a partnership, corporation, or other type of organization. When a landowner has one or more tenants, renters, croppers, or managers, the land operated by each is considered a farm.<br><br>The sector distinguishes two basic activities: agricultural production and agricultural sup"
            },
            {
                "code": "111",
                "title": "Crop Production<sup>T</sup>",
                "description": "Industries in the Crop Production subsector grow crops mainly for food and fiber.  The subsector comprises establishments, such as farms, orchards, groves, greenhouses, and nurseries, primarily engaged in growing crops, plants, vines, or trees and their seeds.<br><br>The industries in this subsector are grouped by similarity of production activity, including biological and physiological characteristics and economic requirements, the length of growing season, degree of crop rotation, extent of input specialization, labor requirements, and capital demands.  The production process is typically completed when the raw product or commodity grown reaches the \"farm gate\" for market, that is, at the point of first sale or price determination.<br><br>Establishments are classified in the Crop Production subsector when crop production (i.e., value of crops for market) accounts for one-half or more of the establishment's total agricultural production.  Within the subsector, establishments are classified in a s"
            },
            {
                "code": "1111",
                "title": "Oilseed and Grain Farming<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in (1) growing oilseed and/or grain crops and/or (2) producing oilseed and grain seeds.  These crops have an annual life cycle and are typically grown in open fields.<br>"
            },
            {
                "code": "11111",
                "title": "Soybean Farming<sup>T</sup>",
                "description": "See industry description for 111110.<br>"
            },
            {
                "code": "111110",
                "title": "Soybean Farming",
                "description": "This industry comprises establishments primarily engaged in growing soybeans and/or producing soybean seeds.<br><br>Cross-References."
            },
            {
                "code": "11112",
                "title": "Oilseed (except Soybean) Farming<sup>T</sup>",
                "description": "See industry description for 111120.<br>"
            },
            {
                "code": "111120",
                "title": "Oilseed (except Soybean) Farming",
                "description": "This industry comprises establishments primarily engaged in growing fibrous oilseed producing plants and/or producing oilseed seeds, such as sunflower, safflower, flax, rape, canola, and sesame.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "11113",
                "title": "Dry Pea and Bean Farming<sup>T</sup>",
                "description": "See industry description for 111130.<br>"
            },
            {
                "code": "111130",
                "title": "Dry Pea and Bean Farming",
                "description": "This industry comprises establishments primarily engaged in growing dry peas, beans, and/or lentils.<br><br>Cross-References."
            },
            {
                "code": "11114",
                "title": "Wheat Farming<sup>T</sup>",
                "description": "See industry description for 111140.<br>"
            },
            {
                "code": "111140",
                "title": "Wheat Farming",
                "description": "This industry comprises establishments primarily engaged in growing wheat and/or producing wheat seeds.<br><br>Cross-References."
            },
            {
                "code": "11115",
                "title": "Corn Farming<sup>T</sup>",
                "description": "See industry description for 111150.<br>"
            },
            {
                "code": "111150",
                "title": "Corn Farming",
                "description": "This industry comprises establishments primarily engaged in growing corn (except sweet corn) and/or producing corn seeds.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "11116",
                "title": "Rice Farming<sup>T</sup>",
                "description": "See industry description for 111160.<br>"
            },
            {
                "code": "111160",
                "title": "Rice Farming",
                "description": "This industry comprises establishments primarily engaged in growing rice (except wild rice) and/or producing rice seeds.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "11119",
                "title": "Other Grain Farming<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in (1) growing grain(s) and/or producing grain seeds (except wheat, corn, and rice) or (2) growing a combination of grain(s) and oilseed(s) with no one grain (or family of grains) or oilseed (or family of oilseeds) accounting for one-half of the establishment's agricultural production (i.e., value of crops for market).  Combination grain(s) and oilseed(s) establishments may produce oilseed(s) and grain(s) seeds and/or grow oilseed(s) and grain(s).<br><br>Illustrative Examples:<br><br>Barley farming<br>Rye farming<br>Milo farming<br>Sorghum farming<br>Oat farming<br>Wild rice farming<br>Oilseed and grain combination farming<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111191",
                "title": "Oilseed and Grain Combination Farming",
                "description": "This U.S. industry comprises establishments engaged in growing a combination of oilseed(s) and grain(s) with no one oilseed (or family of oilseeds) or grain (or family of grains) accounting for one-half of the establishment's agricultural production (value of crops for market).  These establishments may produce oilseed(s) and grain(s) seeds and/or grow oilseed(s) and grain(s).<br><br>Cross-References."
            },
            {
                "code": "111199",
                "title": "All Other Grain Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing grains and/or producing grain(s) seeds (except wheat, corn, rice, and oilseed(s) and grain(s) combinations).<br><br>Illustrative Examples:<br><br>Barley farming<br>Sorghum farming<br>Oat farming<br>Wild rice farming<br>Rye farming<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1112",
                "title": "Vegetable and Melon Farming<sup>T</sup>",
                "description": null
            },
            {
                "code": "11121",
                "title": "Vegetable and Melon Farming<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) growing vegetable and/or melon crops; (2) producing vegetable and/or melon seeds; and (3) growing vegetable and/or melon bedding plants.  The crops included in this industry have an annual growth cycle and are grown in open fields.  Climate and cultural practices limit producing areas but often permit the growing of a combination of crops in a year.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111211",
                "title": "Potato Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing potatoes and/or producing seed potatoes.<br><br>Cross-References."
            },
            {
                "code": "111219",
                "title": "Other Vegetable (except Potato) and Melon Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in one or more of the following: (1) growing melons and/or vegetables (except potatoes; dry peas; dry beans; field, silage, or seed corn; and sugar beets); (2) producing vegetable and/or melon seeds; and (3) growing vegetable and/or melon bedding plants.<br><br>Illustrative Examples:<br><br>Carrot farming<br>Squash farming<br>Green bean farming<br>Tomato farming<br>Watermelon farming <br>Melon farming (e.g., cantaloupe, casaba, honeydew, watermelon)<br>Vegetable (except potato) farming<br>Pepper farming (e.g., bell, chili, green, red, sweet peppers)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1113",
                "title": "Fruit and Tree Nut Farming<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in growing fruit and/or tree nut crops.  The crops included in this industry group are generally not grown from seeds and have a perennial life cycle.<br>"
            },
            {
                "code": "11131",
                "title": "Orange Groves<sup>T</sup>",
                "description": "See industry description for 111310.<br>"
            },
            {
                "code": "111310",
                "title": "Orange Groves",
                "description": "This industry comprises establishments primarily engaged in growing oranges.<br>"
            },
            {
                "code": "11132",
                "title": "Citrus (except Orange) Groves<sup>T</sup>",
                "description": "See industry description for 111320.<br>"
            },
            {
                "code": "111320",
                "title": "Citrus (except Orange) Groves",
                "description": "This industry comprises establishments primarily engaged in growing citrus fruits (except oranges).<br><br>Illustrative Examples:<br><br>Citrus groves (except oranges)<br>Mandarin groves<br>Grapefruit groves\t<br>Tangelo groves<br>Lemon groves<br>Tangerine groves<br><br><br>Cross-References."
            },
            {
                "code": "11133",
                "title": "Noncitrus Fruit and Tree Nut Farming<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) growing noncitrus fruits (e.g., apples, grapes, berries, peaches); (2) growing tree nuts (e.g., pecans, almonds, pistachios); or (3) growing a combination of fruit(s) and tree nut(s) with no one fruit (or family of fruit) or family of tree nuts accounting for one-half of the establishment's agricultural production (i.e., value of crops for market).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111331",
                "title": "Apple Orchards",
                "description": "This U.S. industry comprises establishments primarily engaged in growing apples.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111332",
                "title": "Grape Vineyards",
                "description": "This U.S. industry comprises establishments primarily engaged in growing grapes and/or growing grapes to sun dry into raisins.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111333",
                "title": "Strawberry Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing strawberries.<br><br>Cross-References."
            },
            {
                "code": "111334",
                "title": "Berry (except Strawberry) Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing berries.<br><br>Illustrative Examples:<br><br>Berry (except strawberries) farming\t<br>Cranberry farming<br>Blackberry farming<br>Currant farming<br>Blueberry farming<br>Raspberry farming<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111335",
                "title": "Tree Nut Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing tree nuts.<br><br>Illustrative Examples:<br><br>Almond farming<br>Pistachio farming<br>Filbert farming<br>Tree nut farming<br>Macadamia farming<br>Walnut farming<br>Pecan farming<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111336",
                "title": "Fruit and Tree Nut Combination Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing a combination of fruit(s) and tree nut(s) with no one fruit (or family of fruit) or family of tree nuts accounting for one-half of the establishment's agricultural production (i.e., value of crops for market).<br><br>Cross-References."
            },
            {
                "code": "111339",
                "title": "Other Noncitrus Fruit Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing noncitrus fruits (except apples, grapes, berries, and fruit(s) and tree nut(s) combinations).<br><br>Illustrative Examples:<br><br>Apricot farming<br>Fig farming<br>Banana farming<br>Noncitrus fruit farming<br>Cherry farming<br>Peach farming<br>Coffee farming<br>Pineapple farming<br>Date farming<br>Prune farming<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1114",
                "title": "Greenhouse, Nursery, and Floriculture Production<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in growing crops of any kind under cover and/or growing nursery stock and flowers.  \"Under cover\" is generally defined as greenhouses, cold frames, cloth houses, and lath houses.  The crops grown are removed at various stages of maturity and have annual and perennial life cycles.  The nursery stock includes short rotation woody crops that have growth cycles of 10 years or less.<br>"
            },
            {
                "code": "11141",
                "title": "Food Crops Grown Under Cover<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in growing food crops (e.g., fruits, melons, tomatoes) under glass or protective cover.<br><br>Cross-References."
            },
            {
                "code": "111411",
                "title": "Mushroom Production",
                "description": "This U.S. industry comprises establishments primarily engaged in growing mushrooms under cover in mines underground, or in other controlled environments.<br>"
            },
            {
                "code": "111419",
                "title": "Other Food Crops Grown Under Cover",
                "description": "This U.S. industry comprises establishments primarily engaged in growing food crops (except mushrooms) under glass or protective cover.<br><br>Illustrative Examples:<br><br>Alfalfa sprout farming, grown under cover<br>Melon farming, grown under cover<br>Vegetable farming, grown under cover<br>Hydroponic crop farming<br>Fruit farming, grown under cover<br><br><br>Cross-References."
            },
            {
                "code": "11142",
                "title": "Nursery and Floriculture Production<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in (1) growing nursery and floriculture products (e.g., nursery stock, shrubbery, cut flowers, flower seeds, foliage plants) under cover or in open fields and/or (2) growing short rotation woody trees with a growing and harvesting cycle of 10 years or less for pulp or tree stock (e.g., cut Christmas trees, cottonwoods).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111421",
                "title": "Nursery and Tree Production",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) growing nursery products, nursery stock, shrubbery, bulbs, fruit stock, sod, and so forth, under cover or in open fields and/or (2) growing short rotation woody trees with a growth and harvest cycle of 10 years or less for pulp or tree stock.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111422",
                "title": "Floriculture Production",
                "description": "This U.S. industry comprises establishments primarily engaged in growing and/or producing floriculture products (e.g., cut flowers and roses, cut cultivated greens, potted flowering and foliage plants, and flower seeds) under cover and in open fields.<br><br>Cross-References."
            },
            {
                "code": "1119",
                "title": "Other Crop Farming<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in (1) growing crops (except oilseed and/or grain; vegetable and/or melon; fruit and tree nut; and greenhouse, nursery, and/or floriculture products), such as tobacco, cotton, sugarcane, hay, sugar beets, peanuts, agave, herbs and spices, and hay and grass seeds, or (2) growing a combination of crops (except a combination of oilseed(s) and grain(s) and a combination of fruit(s) and tree nut(s)).<br>"
            },
            {
                "code": "11191",
                "title": "Tobacco Farming<sup>T</sup>",
                "description": "See industry description for 111910.<br>"
            },
            {
                "code": "111910",
                "title": "Tobacco Farming",
                "description": "This industry comprises establishments primarily engaged in growing tobacco.<br>"
            },
            {
                "code": "11192",
                "title": "Cotton Farming<sup>T</sup>",
                "description": "See industry description for 111920.<br>"
            },
            {
                "code": "111920",
                "title": "Cotton Farming",
                "description": "This industry comprises establishments primarily engaged in growing cotton.<br><br>Cross-References."
            },
            {
                "code": "11193",
                "title": "Sugarcane Farming<sup>T</sup>",
                "description": "See industry description for 111930.<br>"
            },
            {
                "code": "111930",
                "title": "Sugarcane Farming",
                "description": "This industry comprises establishments primarily engaged in growing sugarcane.<br>"
            },
            {
                "code": "11194",
                "title": "Hay Farming<sup>T</sup>",
                "description": "See industry description for 111940.<br>"
            },
            {
                "code": "111940",
                "title": "Hay Farming",
                "description": "This industry comprises establishments primarily engaged in growing hay, alfalfa, clover, and/or mixed hay.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "11199",
                "title": "All Other Crop Farming<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in (1) growing crops (except oilseeds and/or grains; vegetables and/or melons; fruits and/or tree nuts; greenhouse, nursery, and/or floriculture products; tobacco; cotton; sugarcane; or hay) or (2) growing a combination of crops (except a combination of oilseed(s) and grain(s); and a combination of fruit(s) and tree nut(s)) with no one crop or family of crops accounting for one-half of the establishment's agricultural production (i.e., value of crops for market).<br><br>Illustrative Examples:<br><br>Agave farming<br>Spice farming<br>General combination crop farming (except oilseed and grain; vegetables and melons; fruit and nut combinations)<br>Tea farming<br>Hay seed farming<br>Maple sap gathering<br>Peanut farming<br>Sugar beet farming<br>Grass seed farming<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "111991",
                "title": "Sugar Beet Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing sugar beets.<br><br>Cross-References."
            },
            {
                "code": "111992",
                "title": "Peanut Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in growing peanuts.<br>"
            },
            {
                "code": "111998",
                "title": "All Other Miscellaneous Crop Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in one of the following: (1) growing crops (except oilseeds and/or grains; vegetables and/or melons; fruits and/or tree nuts; greenhouse, nursery, and/or floriculture products; tobacco; cotton; sugarcane; hay; sugar beets; or peanuts); (2) growing a combination of crops (except a combination of oilseed(s) and grain(s); and a combination of fruit(s) and tree nut(s)) with no one crop or family of crops accounting for one-half of the establishment's agricultural production (i.e., value of crops for market); or (3) gathering tea or maple sap.<br><br>Illustrative Examples:<br><br>Agave farming<br>Mint farming<br>General combination crop farming (except oilseed and grain; vegetables and melons; fruit and tree nut combinations)<br>Hay seed farming<br>Grass seed farming<br>Hop farming<br>Spice farming<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "112",
                "title": "Animal Production and Aquaculture<sup>T</sup>",
                "description": "Industries in the Animal Production and Aquaculture subsector raise or fatten animals for the sale of animals or animal products and/or raise aquatic plants and animals in controlled or selected aquatic environments for the sale of aquatic plants, animals, or their products.  The subsector includes establishments, such as ranches, farms, and feedlots, primarily engaged in keeping, grazing, breeding, or feeding animals.  These animals are kept for the products they produce or for eventual sale.  The animals are generally raised in various environments, from total confinement or captivity to feeding on an open range pasture.<br><br>The industries in this subsector are grouped by important factors, such as suitable grazing or pasture land, specialized buildings, type of equipment, and the amount and types of labor required.  Establishments are classified in the Animal Production and Aquaculture subsector when animal production (i.e., value of animals for market) accounts for one-half or more of"
            },
            {
                "code": "1121",
                "title": "Cattle Ranching and Farming<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in raising cattle, milking dairy cattle, or feeding cattle for fattening.<br>"
            },
            {
                "code": "11211",
                "title": "Beef Cattle Ranching and Farming, including Feedlots<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in raising cattle (including cattle for dairy herd replacements), or feeding cattle for fattening.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "112111",
                "title": "Beef Cattle Ranching and Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in raising cattle (including cattle for dairy herd replacements).<br><br>Cross-References."
            },
            {
                "code": "112112",
                "title": "Cattle Feedlots",
                "description": "This U.S. industry comprises establishments primarily engaged in feeding cattle for fattening.<br><br>Cross-References."
            },
            {
                "code": "11212",
                "title": "Dairy Cattle and Milk Production<sup>T</sup>",
                "description": "See industry description for 112120.<br>"
            },
            {
                "code": "112120",
                "title": "Dairy Cattle and Milk Production",
                "description": "This industry comprises establishments primarily engaged in milking dairy cattle.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "11213",
                "title": "Dual-Purpose Cattle Ranching and Farming<sup>T</sup>",
                "description": "See industry description for 112130.<br>"
            },
            {
                "code": "112130",
                "title": "Dual-Purpose Cattle Ranching and Farming",
                "description": "This industry comprises establishments primarily engaged in raising cattle for both milking and meat production.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1122",
                "title": "Hog and Pig Farming<sup>T</sup>",
                "description": null
            },
            {
                "code": "11221",
                "title": "Hog and Pig Farming<sup>T</sup>",
                "description": "See industry description for 112210.<br>"
            },
            {
                "code": "112210",
                "title": "Hog and Pig Farming",
                "description": "This industry comprises establishments primarily engaged in raising hogs and pigs.  These establishments may include farming activities, such as breeding, farrowing, and the raising of weanling pigs, feeder pigs, or market size hogs.<br><br>Cross-References."
            },
            {
                "code": "1123",
                "title": "Poultry and Egg Production<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in breeding, hatching, and raising poultry for meat or egg production.<br>"
            },
            {
                "code": "11231",
                "title": "Chicken Egg Production<sup>T</sup>",
                "description": "See industry description for 112310.<br>"
            },
            {
                "code": "112310",
                "title": "Chicken Egg Production",
                "description": "This industry comprises establishments primarily engaged in raising chickens for egg production.  The eggs produced may be for use as table eggs or hatching eggs.<br><br>Cross-References."
            },
            {
                "code": "11232",
                "title": "Broilers and Other Meat Type Chicken Production<sup>T</sup>",
                "description": "See industry description for 112320.<br>"
            },
            {
                "code": "112320",
                "title": "Broilers and Other Meat Type Chicken Production",
                "description": "This industry comprises establishments primarily engaged in raising broilers, fryers, roasters, and other meat type chickens.<br><br>Cross-References."
            },
            {
                "code": "11233",
                "title": "Turkey Production<sup>T</sup>",
                "description": "See industry description for 112330.<br>"
            },
            {
                "code": "112330",
                "title": "Turkey Production",
                "description": "This industry comprises establishments primarily engaged in raising turkeys for meat or egg production.<br>"
            },
            {
                "code": "11234",
                "title": "Poultry Hatcheries<sup>T</sup>",
                "description": "See industry description for 112340.<br>"
            },
            {
                "code": "112340",
                "title": "Poultry Hatcheries",
                "description": "This industry comprises establishments primarily engaged in hatching poultry of any kind.<br>"
            },
            {
                "code": "11239",
                "title": "Other Poultry Production<sup>T</sup>",
                "description": "See industry description for 112390.<br>"
            },
            {
                "code": "112390",
                "title": "Other Poultry Production",
                "description": "This industry comprises establishments primarily engaged in raising poultry (except chickens for meat or egg production and turkeys).<br><br>Illustrative Examples:<br><br>Duck production<br>Ostrich production<br>Emu production<br>Pheasant production<br>Geese production<br>Quail production<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1124",
                "title": "Sheep and Goat Farming<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in raising sheep, lambs, and goats, or feeding lambs for fattening.<br>"
            },
            {
                "code": "11241",
                "title": "Sheep Farming<sup>T</sup>",
                "description": "See industry description for 112410.<br>"
            },
            {
                "code": "112410",
                "title": "Sheep Farming",
                "description": "This industry comprises establishments primarily engaged in raising sheep and lambs, or feeding lambs for fattening.  The sheep or lambs may be raised for sale or wool production.<br><br>Cross-References."
            },
            {
                "code": "11242",
                "title": "Goat Farming<sup>T</sup>",
                "description": "See industry description for 112420.<br>"
            },
            {
                "code": "112420",
                "title": "Goat Farming",
                "description": "This industry comprises establishments primarily engaged in raising goats.<br>"
            },
            {
                "code": "1125",
                "title": "Aquaculture<sup>T</sup>",
                "description": null
            },
            {
                "code": "11251",
                "title": "Aquaculture<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in the farm raising and production of aquatic animals or plants in controlled or selected aquatic environments.  These establishments use some form of intervention in the rearing process to enhance production, such as holding in captivity, regular stocking, feeding, and protecting from predators, pests, and disease.<br><br>Cross-References."
            },
            {
                "code": "112511",
                "title": "Finfish Farming and Fish Hatcheries",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) farm raising finfish (e.g., catfish, trout, goldfish, tropical fish, minnows) and/or (2) hatching fish of any kind.<br><br>Cross-References."
            },
            {
                "code": "112512",
                "title": "Shellfish Farming",
                "description": "This U.S. industry comprises establishments primarily engaged in farm raising shellfish (e.g., crayfish, shrimp, oysters, clams, mollusks).<br><br>Cross-References."
            },
            {
                "code": "112519",
                "title": "Other Aquaculture",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) farm raising of aquatic animals (except finfish and shellfish) and/or (2) farm raising of aquatic plants.  Alligator, algae, frog, seaweed, or turtle production is included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1129",
                "title": "Other Animal Production<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in raising animals and insects (except cattle, hogs and pigs, poultry, sheep and goats, and aquaculture) for sale or product production.  These establishments are primarily engaged in raising one of the following: bees, horses and other equines, rabbits and other fur-bearing animals, and so forth, and producing products, such as honey and other bee products.  Establishments primarily engaged in raising a combination of animals with no one animal or family of animals accounting for one-half of the establishment's agricultural production (i.e., value of animals for market) are included in this industry group.<br>"
            },
            {
                "code": "11291",
                "title": "Apiculture<sup>T</sup>",
                "description": "See industry description for 112910.<br>"
            },
            {
                "code": "112910",
                "title": "Apiculture",
                "description": "This industry comprises establishments primarily engaged in raising bees.  These establishments may collect and gather honey; and/or sell queen bees, packages of bees, royal jelly, bees' wax, propolis, venom, pollen, and/or other bee products.<br>"
            },
            {
                "code": "11292",
                "title": "Horses and Other Equine Production<sup>T</sup>",
                "description": "See industry description for 112920.<br>"
            },
            {
                "code": "112920",
                "title": "Horses and Other Equine Production",
                "description": "This industry comprises establishments primarily engaged in raising horses, mules, donkeys, and other equines.<br><br>Cross-References."
            },
            {
                "code": "11293",
                "title": "Fur-Bearing Animal and Rabbit Production<sup>T</sup>",
                "description": "See industry description for 112930.<br>"
            },
            {
                "code": "112930",
                "title": "Fur-Bearing Animal and Rabbit Production",
                "description": "This industry comprises establishments primarily engaged in raising fur-bearing animals including rabbits.  These animals may be raised for sale or for their pelt production.<br><br>Cross-References."
            },
            {
                "code": "11299",
                "title": "All Other Animal Production<sup>T</sup>",
                "description": "See industry description for 112990.<br>"
            },
            {
                "code": "112990",
                "title": "All Other Animal Production",
                "description": "This industry comprises establishments primarily engaged in (1) raising animals (except cattle, hogs and pigs, poultry, sheep and goats, aquaculture, apiculture, horses and other equines; and fur-bearing animals including rabbits) or (2) raising a combination of animals, with no one animal or family of animals accounting for one-half of the establishment's agricultural production (i.e., value of animals for market).<br><br>Illustrative Examples:<br><br>Bird production (e.g., canaries, parakeets, parrots)<br>Laboratory animal production (e.g., rats, mice, guinea pigs)<br>Deer production<br>Combination animal farming (except dairy, poultry)<br>Companion animals production (e.g., cats, dogs)<br>Worm production<br>Llama production<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "113",
                "title": "Forestry and Logging<sup>T</sup>",
                "description": "Industries in the Forestry and Logging subsector grow and harvest timber on a long production cycle (i.e., of 10 years or more).  Long production cycles use different production processes than short production cycles, which require more horticultural interventions prior to harvest, resulting in processes more similar to those found in the Crop Production subsector.  Consequently, Christmas tree production and other production involving production cycles of less than 10 years, are classified in the Crop Production subsector.<br><br>Industries in this subsector specialize in different stages of the production cycle.  Reforestation requires production of seedlings in specialized nurseries.  Timber production requires natural forest or suitable areas of land that are available for a long duration.  The maturation time for timber depends upon the species of tree, the climatic conditions of the region, and the intended purpose of the timber.  The harvesting of timber (except when done on an extrem"
            },
            {
                "code": "1131",
                "title": "Timber Tract Operations<sup>T</sup>",
                "description": null
            },
            {
                "code": "11311",
                "title": "Timber Tract Operations<sup>T</sup>",
                "description": "See industry description for 113110.<br>"
            },
            {
                "code": "113110",
                "title": "Timber Tract Operations",
                "description": "This industry comprises establishments primarily engaged in the operation of timber tracts for the purpose of selling standing timber.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1132",
                "title": "Forest Nurseries and Gathering of Forest Products<sup>T</sup>",
                "description": null
            },
            {
                "code": "11321",
                "title": "Forest Nurseries and Gathering of Forest Products<sup>T</sup>",
                "description": "See industry description for 113210.<br>"
            },
            {
                "code": "113210",
                "title": "Forest Nurseries and Gathering of Forest Products",
                "description": "This industry comprises establishments primarily engaged in (1) growing trees for reforestation and/or (2) gathering forest products, such as gums, barks, balsam needles, rhizomes, fibers, Spanish moss, ginseng, and truffles.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1133",
                "title": "Logging<sup>T</sup>",
                "description": null
            },
            {
                "code": "11331",
                "title": "Logging<sup>T</sup>",
                "description": "See industry description for 113310.<br>"
            },
            {
                "code": "113310",
                "title": "Logging",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) cutting timber; (2) cutting and transporting timber; and (3) producing wood chips in the field.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "114",
                "title": "Fishing, Hunting and Trapping<sup>T</sup>",
                "description": "Industries in the Fishing, Hunting and Trapping subsector harvest fish and other wild animals from their natural habitats and are dependent upon a continued supply of the natural resource.  The harvesting of fish is the predominant economic activity of this subsector and it usually requires specialized vessels that, by the nature of their size, configuration and equipment, are not suitable for any other type of production, such as transportation. <br><br>Hunting and trapping activities utilize a wide variety of production processes and are classified in the same subsector as fishing because the availability of resources and the constraints imposed, such as conservation requirements and proper habitat maintenance, are similar.<br>"
            },
            {
                "code": "1141",
                "title": "Fishing<sup>T</sup>",
                "description": null
            },
            {
                "code": "11411",
                "title": "Fishing<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in the commercial catching or taking of finfish, shellfish, or miscellaneous marine products from a natural habitat, such as the catching of bluefish, eels, salmon, tuna, clams, crabs, lobsters, mussels, oysters, shrimp, frogs, sea urchins, and turtles.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "114111",
                "title": "Finfish Fishing",
                "description": "This U.S. industry comprises establishments primarily engaged in the commercial catching or taking of finfish (e.g., bluefish, salmon, trout, tuna) from their natural habitat.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "114112",
                "title": "Shellfish Fishing",
                "description": "This U.S. industry comprises establishments primarily engaged in the commercial catching or taking of shellfish (e.g., clams, crabs, lobsters, mussels, oysters, sea urchins, shrimp) from their natural habitat.<br><br>Cross-References."
            },
            {
                "code": "114119",
                "title": "Other Marine Fishing",
                "description": "This U.S. industry comprises establishments primarily engaged in the commercial catching or taking of marine animals (except finfish and shellfish).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "1142",
                "title": "Hunting and Trapping<sup>T</sup>",
                "description": null
            },
            {
                "code": "11421",
                "title": "Hunting and Trapping<sup>T</sup>",
                "description": "See industry description for 114210.<br>"
            },
            {
                "code": "114210",
                "title": "Hunting and Trapping",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) commercial hunting and trapping; (2) operating commercial game preserves, such as game retreats; and (3) operating hunting preserves.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "115",
                "title": "Support Activities for Agriculture and Forestry<sup>T</sup>",
                "description": "Industries in the Support Activities for Agriculture and Forestry subsector provide support services that are an essential part of agricultural and forestry production.  These support activities may be performed by the agriculture or forestry producing establishment or conducted independently as an alternative source of inputs required for the production process for a given crop, animal, or forestry industry.  Establishments that primarily perform these activities independent of the agriculture or forestry producing establishment are in this subsector.<br>"
            },
            {
                "code": "1151",
                "title": "Support Activities for Crop Production<sup>T</sup>",
                "description": null
            },
            {
                "code": "11511",
                "title": "Support Activities for Crop Production<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing support activities for growing crops.<br><br>Illustrative Examples:<br><br>Aerial crop dusting or spraying (i.e., using specialized or dedicated aircraft)<br>Farm management services<br>Cotton ginning<br>Planting crops<br>Cultivating services<br>Vineyard cultivation services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "115111",
                "title": "Cotton Ginning",
                "description": "This U.S. industry comprises establishments primarily engaged in ginning cotton.<br>"
            },
            {
                "code": "115112",
                "title": "Soil Preparation, Planting, and Cultivating",
                "description": "This U.S. industry comprises establishments primarily engaged in performing a soil preparation activity or crop production service, such as plowing, fertilizing, seed bed preparation, planting, cultivating, and crop protecting services.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "115113",
                "title": "Crop Harvesting, Primarily by Machine",
                "description": "This U.S. industry comprises establishments primarily engaged in mechanical harvesting, picking, and combining of crops, and related activities.  The machinery used is provided by the servicing establishment.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "115114",
                "title": "Postharvest Crop Activities (except Cotton Ginning)",
                "description": "This U.S. industry comprises establishments primarily engaged in performing services on crops, subsequent to their harvest, with the intent of preparing them for market or further processing.  These establishments provide postharvest activities, such as crop cleaning, sun drying, shelling, fumigating, curing, sorting, grading, packing, and cooling.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "115115",
                "title": "Farm Labor Contractors and Crew Leaders",
                "description": "This U.S. industry comprises establishments primarily engaged in supplying labor for agricultural production or harvesting.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "115116",
                "title": "Farm Management Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing farm management services on a contract or fee basis usually to citrus groves, orchards, or vineyards.  These establishments always provide management and may arrange or contract for the partial or the complete operations of the farm establishment(s) they manage.  Operational activities may include cultivating, harvesting, and/or other specialized agricultural support activities.<br><br>Cross-References."
            },
            {
                "code": "1152",
                "title": "Support Activities for Animal Production<sup>T</sup>",
                "description": null
            },
            {
                "code": "11521",
                "title": "Support Activities for Animal Production<sup>T</sup>",
                "description": "See industry description for 115210.<br>"
            },
            {
                "code": "115210",
                "title": "Support Activities for Animal Production",
                "description": "This industry comprises establishments primarily engaged in performing support activities related to raising livestock (e.g., cattle, goats, hogs, horses, poultry, sheep).  These establishments may perform one or more of the following: (1) breeding services for animals, including companion animals (e.g., cats, dogs, pet birds); (2) pedigree record services; (3) boarding horses; (4) dairy herd improvement activities; (5) livestock spraying; and (6) sheep dipping and shearing.<br><br>Cross-References."
            },
            {
                "code": "1153",
                "title": "Support Activities for Forestry<sup>T</sup>",
                "description": null
            },
            {
                "code": "11531",
                "title": "Support Activities for Forestry<sup>T</sup>",
                "description": "See industry description for 115310.<br>"
            },
            {
                "code": "115310",
                "title": "Support Activities for Forestry",
                "description": "This industry comprises establishments primarily engaged in performing particular support activities related to timber production, wood technology, forestry economics and marketing, and forest protection.  These establishments may provide support activities for forestry, such as estimating timber, forest firefighting, forest pest control, treating burned forests from the air for reforestation or on an emergency basis, and consulting on wood attributes and reforestation.<br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 131
    },
    {
        "sectorCode": "21",
        "sectorDescription": "Mining, Quarrying, and Oil and Gas Extraction",
        "subsectors": [
            {
                "code": "21",
                "title": "Mining, Quarrying, and Oil and Gas Extraction<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Mining, Quarrying, and Oil and Gas Extraction sector comprises establishments that extract naturally occurring mineral solids, such as coal and ores; liquid minerals, such as crude petroleum; and gases, such as natural gas.  The term \"mining\" is used in the broad sense to include quarrying, well operations, beneficiating (e.g., crushing, screening, washing, and flotation), and other preparation customarily performed at the mine site, or as a part of mining activity.<br><br>The Mining, Quarrying, and Oil and Gas Extraction sector distinguishes two basic activities: mine operation and mining support activities.  Mine operation includes establishments operating mines, quarries, or oil and gas wells on their own account or for others on a contract or fee basis.  Mining support activities include establishments that perform exploration (except geophysical surveying and mapping) on a contract or fee basis and/or other mining services on a contract or fee basis (except mi"
            },
            {
                "code": "211",
                "title": "Oil and Gas Extraction<sup>T</sup>",
                "description": "Industries in the Oil and Gas Extraction subsector operate and/or develop oil and gas field properties.  Operation and development activities include exploration for crude petroleum and natural gas; drilling, completing, and equipping wells; operating separators, emulsion breakers, desilting equipment, and field gathering lines for crude petroleum and natural gas; and all other activities in the preparation of oil and gas up to the point of shipment from the producing property.  This subsector includes the production of crude petroleum, the mining and extraction of oil from oil shale and oil sands, the production of natural gas, sulfur recovery from natural gas, and recovery of hydrocarbon liquids.<br><br>Establishments in this subsector include those that operate oil and gas wells on their own account or for others on a contract or fee basis.  Establishments primarily engaged in providing support services, on a contract or fee basis, required for the drilling or operation of oil and gas wel"
            },
            {
                "code": "2111",
                "title": "Oil and Gas Extraction<sup>T</sup>",
                "description": null
            },
            {
                "code": "21112",
                "title": "Crude Petroleum Extraction",
                "description": "See industry description for 211120.<br>"
            },
            {
                "code": "211120",
                "title": "Crude Petroleum Extraction",
                "description": "This industry comprises establishments primarily engaged in (1) the exploration, development, and/or the production of petroleum from wells in which the hydrocarbons will initially flow or can be produced using normal or enhanced drilling and extraction techniques or (2) the production of crude petroleum from surface shales or tar sands or from reservoirs in which the hydrocarbons are semisolids.  Establishments in this industry operate oil wells on their own account or for others on a contract or fee basis.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "21113",
                "title": "Natural Gas Extraction",
                "description": "See industry description for 211130.<br>"
            },
            {
                "code": "211130",
                "title": "Natural Gas Extraction",
                "description": "This industry comprises establishments primarily engaged in (1) the exploration, development, and/or the production of natural gas from wells in which the hydrocarbons will initially flow or can be produced using normal or enhanced drilling and extraction techniques or (2) the recovery of liquid hydrocarbons from oil and gas field gases.  Establishments primarily engaged in sulfur recovery from natural gas are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "212",
                "title": "Mining (except Oil and Gas)<sup>T</sup>",
                "description": "Industries in the Mining (except Oil and Gas) subsector primarily engage in mining, mine site development, and beneficiating (i.e., preparing) metallic minerals and nonmetallic minerals, including coal.  The term \"mining\" is used in the broad sense to include ore extraction, quarrying, and beneficiating (e.g., crushing, screening, washing, sizing, concentrating, and flotation), customarily done at the mine site.<br><br>Beneficiation is the process whereby the extracted material is reduced to particles which can be separated into mineral and waste, the former suitable for further processing or direct use.  The operations that take place in beneficiation are primarily mechanical, such as grinding, washing, magnetic separation, centrifugal separation, and so on. In contrast, manufacturing operations primarily use chemical and electrochemical processes, such as electrolysis, distillation, and so on.  However, some treatments, such as heat treatments, take place in both stages: the beneficiation "
            },
            {
                "code": "2121",
                "title": "Coal Mining<sup>T</sup>",
                "description": null
            },
            {
                "code": "21211",
                "title": "Coal Mining<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) mining bituminous coal, anthracite coal, and lignite by underground mining, auger mining, strip mining, culm bank mining, and other surface mining; (2) developing coal mine sites; and (3) beneficiating (i.e., preparing) coal (e.g., cleaning, washing, screening, and sizing).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "212114",
                "title": "Surface Coal Mining",
                "description": "This U.S. industry comprises establishments primarily engaged in one or more of the following: (1) surface mining of bituminous coal, lignite, and anthracite coal; (2) developing bituminous coal, lignite, and anthracite coal surface mine sites; (3) surface mining and beneficiating (e.g., cleaning, washing, screening, and sizing) of bituminous coal, lignite, and anthracite coal; or (4) beneficiating (e.g., cleaning, washing, screening, and sizing), but not mining, bituminous coal, lignite, and anthracite coal.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "212115",
                "title": "Underground Coal Mining",
                "description": "This U.S. industry comprises establishments primarily engaged in one or more of the following: (1) underground mining of bituminous and anthracite coal; (2) developing bituminous and anthracite coal underground mine sites; and (3) underground mining and beneficiating (e.g., cleaning, washing, screening, and sizing) of bituminous and anthracite coal.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2122",
                "title": "Metal Ore Mining<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in developing mine sites or mining metallic minerals, and establishments primarily engaged in ore dressing and beneficiating (i.e., preparing) operations, such as crushing, grinding, washing, drying, sintering, concentrating, calcining, and leaching.  Beneficiating may be performed at mills operated in conjunction with the mines served or at mills, such as custom mills, operated separately.<br>"
            },
            {
                "code": "21221",
                "title": "Iron Ore Mining<sup>T</sup>",
                "description": "See industry description for 212210.<br>"
            },
            {
                "code": "212210",
                "title": "Iron Ore Mining",
                "description": "This industry comprises establishments primarily engaged in (1) developing mine sites, mining, and/or beneficiating (i.e., preparing) iron ores and manganiferous ores valued chiefly for their iron content and/or (2) producing sinter iron ore (except iron ore produced in iron and steel mills) and other iron ore agglomerates.<br><br>Cross-References."
            },
            {
                "code": "21222",
                "title": "Gold Ore and Silver Ore Mining<sup>T</sup>",
                "description": "See industry description for 212220.<br>"
            },
            {
                "code": "212220",
                "title": "Gold Ore and Silver Ore Mining",
                "description": "This industry comprises establishments primarily engaged in developing the mine site, mining, and/or beneficiating (i.e., preparing) ores valued chiefly for their gold and/or silver content.  Establishments primarily engaged in the transformation of the gold and silver into bullion or dore bar in combination with mining activities are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "21223",
                "title": "Copper, Nickel, Lead, and Zinc Mining<sup>T</sup>",
                "description": "See industry description for 212230.<br>"
            },
            {
                "code": "212230",
                "title": "Copper, Nickel, Lead, and Zinc Mining",
                "description": "This industry comprises establishments primarily engaged in developing the mine site, mining, and/or beneficiating (i.e., preparing) ores valued chiefly for their copper, nickel, lead, or zinc content.  Beneficiating includes the transformation of ores into concentrates.  Establishments primarily engaged in recovering copper concentrates by the precipitation, leaching, or electrowinning of copper ore are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "21229",
                "title": "Other Metal Ore Mining<sup>T</sup>",
                "description": "See industry description for 212290.<br>"
            },
            {
                "code": "212290",
                "title": "Other Metal Ore Mining",
                "description": "This industry comprises establishments primarily engaged in developing the mine site, mining, and/or beneficiating (i.e., preparing) metal ores (except iron and manganiferous ores valued for their iron content, gold ore, silver ore, copper, nickel, lead, and zinc ore).<br><br>Illustrative Examples:<br><br>Antimony ores mining and/or beneficiating<br>Tantalum ores mining and/or beneficiating<br>Columbite ores mining and/or beneficiating<br>Tungsten ores mining and/or beneficiating<br>Ilmenite ores mining and/or beneficiating<br>Uranium-radium-vanadium ores mining and/or beneficiating<br>Molybdenum ores mining and/or beneficiating<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2123",
                "title": "Nonmetallic Mineral Mining and Quarrying<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in developing mine sites, or in mining or quarrying nonmetallic minerals (except fuels).  Also included are certain well and brine operations, and preparation plants primarily engaged in beneficiating (e.g., crushing, grinding, washing, and concentrating) nonmetallic minerals.<br><br>Beneficiation is the process whereby the extracted material is reduced to particles which can be separated into mineral and waste, the former suitable for further processing or direct use.  The operations that take place in beneficiation are primarily mechanical, such as grinding, washing, magnetic separation, and centrifugal separation.  In contrast, manufacturing operations primarily use chemical and electrochemical processes, such as electrolysis and distillation.  However, some treatments, such as heat treatments, take place in both the beneficiation and the manufacturing (i.e., smelting/refining) stages.  The range of preparation activities vari"
            },
            {
                "code": "21231",
                "title": "Stone Mining and Quarrying<sup>T</sup>",
                "description": "This industry comprises (1) establishments primarily engaged in developing the mine site, mining or quarrying dimension stone (i.e., rough blocks and/or slabs of stone), or mining and quarrying crushed and broken stone and/or (2) preparation plants primarily engaged in beneficiating stone (e.g., crushing, grinding, washing, screening, pulverizing, and sizing).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "212311",
                "title": "Dimension Stone Mining and Quarrying",
                "description": "This U.S. industry comprises establishments primarily engaged in developing the mine site and/or mining or quarrying dimension stone (i.e., rough blocks and/or slabs of stone).<br><br>Cross-References."
            },
            {
                "code": "212312",
                "title": "Crushed and Broken Limestone Mining and Quarrying",
                "description": "This U.S. industry comprises (1) establishments primarily engaged in developing the mine site, mining or quarrying crushed and broken limestone (including related rocks, such as dolomite, cement rock, marl, travertine, and calcareous tufa) and (2) preparation plants primarily engaged in beneficiating limestone (e.g., grinding or pulverizing).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "212313",
                "title": "Crushed and Broken Granite Mining and Quarrying",
                "description": "This U.S. industry comprises (1) establishments primarily engaged in developing the mine site, and/or mining or quarrying crushed and broken granite (including related rocks, such as gneiss, syenite (except nepheline), and diorite) and (2) preparation plants primarily engaged in beneficiating granite (e.g., grinding or pulverizing).<br>"
            },
            {
                "code": "212319",
                "title": "Other Crushed and Broken Stone Mining and Quarrying",
                "description": "This U.S. industry comprises: (1) establishments primarily engaged in developing the mine site and/or mining or quarrying crushed and broken stone (except limestone and granite); (2) preparation plants primarily engaged in beneficiating (e.g., grinding and pulverizing) stone (except limestone and granite); and (3) establishments primarily engaged in mining or quarrying bituminous limestone and bituminous sandstone.<br><br>Illustrative Examples:<br><br>Bituminous limestone mining and/or beneficiating<br>Marble crushed and broken stone mining and/or beneficiating<br>Bituminous sandstone mining and/or beneficiating<br>Sandstone crushed and broken stone mining and/or beneficiating<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "21232",
                "title": "Sand, Gravel, Clay, and Ceramic and Refractory Minerals Mining and Quarrying<sup>T</sup>",
                "description": "This industry comprises (1) establishments primarily engaged in developing the mine site and/or mining, quarrying, dredging for sand and gravel, or mining clay (e.g., china clay, paper clay and slip clay) or ceramic and refractory minerals and (2) preparation plants primarily engaged in beneficiating (e.g., washing, screening, and grinding) sand and gravel, clay, and ceramic and refractory minerals.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "212321",
                "title": "Construction Sand and Gravel Mining",
                "description": "This U.S. industry comprises establishments primarily engaged in one or more of the following: (1) operating commercial grade (i.e., construction) sand and gravel pits; (2) dredging for commercial grade sand and gravel; and (3) washing, screening, or otherwise preparing commercial grade sand and gravel.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "212322",
                "title": "Industrial Sand Mining",
                "description": "This U.S. industry comprises establishments primarily engaged in one or more of the following: (1) operating industrial grade sand pits; (2) dredging for industrial grade sand; and (3) washing, screening, or otherwise preparing industrial grade sand.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "212323",
                "title": "Kaolin, Clay, and Ceramic and Refractory Minerals Mining",
                "description": "This U.S. industry comprises (1) establishments primarily engaged in developing the mine site and/or mining clay (e.g., china clay, paper clay and slip clay) or ceramic and refractory minerals and (2) establishments primarily engaged in beneficiating (i.e., preparing) clay or ceramic and refractory minerals.<br><br>Illustrative Examples:<br><br>Bentonite mining and/or beneficiating<br>Fuller's earth mining and/or beneficiating<br>Common clay mining and/or beneficiating<br>Kaolin mining and/or beneficiating<br>Feldspar mining and/or beneficiating<br>Ball clay mining and/or beneficiating<br>Fire clay mining and/or beneficiating<br>Shale (except oil shale) mining and/or beneficiating<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "21239",
                "title": "Other Nonmetallic Mineral Mining and Quarrying<sup>T</sup>",
                "description": "See industry description for 212390.<br>"
            },
            {
                "code": "212390",
                "title": "Other Nonmetallic Mineral Mining and Quarrying",
                "description": "This industry comprises establishments primarily engaged in developing the mine site, mining, and/or milling or otherwise beneficiating (i.e., preparing) nonmetallic minerals (except coal, stone, sand, gravel, clay, and ceramic and refractory minerals).  Drylake brine operations are included in this industry, as well as establishments engaged in producing the specified minerals from underground and open pit mines.<br><br>Illustrative Examples:<br><br>Barite mining and/or beneficiating<br>Phosphate rock mining and/or beneficiating<br>Borate, natural, mining and/or beneficiating<br>Potash mining and/or beneficiating<br>Peat mining and/or beneficiating<br>Rock salt mining and/or beneficiating<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "213",
                "title": "Support Activities for Mining<sup>T</sup>",
                "description": "Industries in the Support Activities for Mining subsector group establishments primarily providing support services, on a contract or fee basis (except geophysical surveying and mapping, mine site preparation, construction, and transportation activities), required for the mining and quarrying of minerals and for the extraction of oil and gas.  Establishments performing exploration for minerals, on a contract or fee basis, are included in this subsector.  Exploration services include traditional prospecting methods, such as taking core samples and making geological observations at prospective sites.<br><br>The activities performed on a contract or fee basis by establishments in the Support Activities for Mining subsector are also often performed in-house by mining operators.  These activities include taking core samples, making geological observations at prospective sites, excavating slush pits and cellars, and such oil and gas operations as spudding in, drilling in, redrilling, directional d"
            },
            {
                "code": "2131",
                "title": "Support Activities for Mining<sup>T</sup>",
                "description": null
            },
            {
                "code": "21311",
                "title": "Support Activities for Mining<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing support services, on a contract or fee basis (except geophysical surveying and mapping, mine site preparation, construction, and transportation activities), required for the mining and quarrying of minerals and for the extraction of oil and gas.  Drilling, taking core samples, and making geological observations at prospective sites for minerals, on a contract or fee basis, are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "213111",
                "title": "Drilling Oil and Gas Wells",
                "description": "This U.S. industry comprises establishments primarily engaged in drilling oil and gas wells for others on a contract or fee basis.  This industry includes contractors that specialize in spudding in, drilling in, redrilling, and directional drilling.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "213112",
                "title": "Support Activities for Oil and Gas Operations",
                "description": "This U.S. industry comprises establishments primarily engaged in performing support activities, on a contract or fee basis, for oil and gas operations (except geophysical surveying and mapping, site preparation, construction, and transportation activities).  Services included are exploration; excavating slush pits and cellars, well surveying; running, cutting, and pulling casings, tubes, and rods; cementing wells, shooting wells; perforating well casings; acidizing and chemically treating wells; and cleaning out, bailing, and swabbing wells.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "213113",
                "title": "Support Activities for Coal Mining",
                "description": "This U.S. industry comprises establishments primarily engaged in providing support activities for coal mining (except geophysical surveying and mapping, site preparation, construction, and transportation activities) on a contract or fee basis.  Exploration for coal is included in this industry.  Exploration services include traditional prospecting methods, such as taking core samples and making geological observations at prospective sites.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "213114",
                "title": "Support Activities for Metal Mining",
                "description": "This U.S. industry comprises establishments primarily engaged in providing support activities (except geophysical surveying and mapping, site preparation, construction, and transportation activities), on a contract or fee basis, for the mining and quarrying of metallic minerals and for the extraction of metal ores.  Exploration for these minerals is included in this industry.  Exploration services include traditional prospecting methods, such as taking core samples and making geological observations at prospective sites.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "213115",
                "title": "Support Activities for Nonmetallic Minerals (except Fuels) Mining",
                "description": "This U.S. industry comprises establishments primarily engaged in providing support activities, on a contract or fee basis, for the mining and quarrying of nonmetallic minerals (except fuel) and for the extraction of nonmetallic minerals (except geophysical surveying and mapping, site preparation, construction, and transportation activities).  Exploration for these minerals is included in this industry.  Exploration services include traditional prospecting methods, such as taking core samples and making geological observations at prospective sites.<br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 41
    },
    {
        "sectorCode": "22",
        "sectorDescription": "Utilities",
        "subsectors": [
            {
                "code": "22",
                "title": "Utilities<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Utilities sector comprises establishments engaged in the provision of the following utility services: electric power, natural gas, steam supply, water supply, and sewage treatment and disposal.  Within this sector, the specific activities associated with the utility services provided vary by utility: electric power includes generation, transmission, and distribution; natural gas includes distribution; steam supply includes provision and/or distribution; water supply includes treatment and distribution; and sewage removal includes collection, treatment, and disposal of waste through sewer systems and sewage treatment facilities.<br><br>Excluded from this sector are establishments primarily engaged in waste management services classified in Subsector 562, Waste Management and Remediation Services.  These establishments also collect, treat, and dispose of waste materials; however, they do not use sewer systems or sewage treatment facilities.<br>"
            },
            {
                "code": "221",
                "title": "Utilities<sup>T</sup>",
                "description": "Industries in the Utilities subsector provide electric power, natural gas, steam supply, water supply, and sewage treatment and disposal through a permanent infrastructure of lines, mains, and pipes.  Establishments are grouped together based on the utility service provided and the particular system or facilities required to perform the service.<br>"
            },
            {
                "code": "2211",
                "title": "Electric Power Generation, Transmission and Distribution<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in generating, transmitting, and/or distributing electric power.  Establishments in this industry group may perform one or more of the following activities: (1) operate generation facilities that produce electric energy; (2) operate transmission systems that convey the electricity from the generation facility to the distribution system; and (3) operate distribution systems that convey electric power received from the generation facility or the transmission system to the final consumer.<br>"
            },
            {
                "code": "22111",
                "title": "Electric Power Generation<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in operating electric power generation facilities.  These facilities convert other forms of energy, such as water power (i.e., hydroelectric), fossil fuels, nuclear power, and solar power, into electrical energy.  The establishments in this industry produce electric energy and provide electricity to transmission systems or to electric power distribution systems.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "221111",
                "title": "Hydroelectric Power Generation",
                "description": "This U.S. industry comprises establishments primarily engaged in operating hydroelectric power generation facilities.  These facilities use water power to drive a turbine and produce electric energy.  The electric energy produced in these establishments is provided to electric power transmission systems or to electric power distribution systems.<br>"
            },
            {
                "code": "221112",
                "title": "Fossil Fuel Electric Power Generation",
                "description": "This U.S. industry comprises establishments primarily engaged in operating fossil fuel powered electric power generation facilities.  These facilities use fossil fuels, such as coal, oil, or gas, in internal combustion or combustion turbine conventional steam process to produce electric energy.  The electric energy produced in these establishments is provided to electric power transmission systems or to electric power distribution systems.<br>"
            },
            {
                "code": "221113",
                "title": "Nuclear Electric Power Generation",
                "description": "This U.S. industry comprises establishments primarily engaged in operating nuclear electric power generation facilities.  These facilities use nuclear power to produce electric energy.  The electric energy produced in these establishments is provided to electric power transmission systems or to electric power distribution systems.<br>"
            },
            {
                "code": "221114",
                "title": "Solar Electric Power Generation",
                "description": "This U.S. industry comprises establishments primarily engaged in operating solar electric power generation facilities.  These facilities use energy from the sun to produce electric energy.  The electric energy produced in these establishments is provided to electric power transmission systems or to electric power distribution systems.<br><br>Cross-References."
            },
            {
                "code": "221115",
                "title": "Wind Electric Power Generation",
                "description": "This U.S. industry comprises establishments primarily engaged in operating wind electric power generation facilities.  These facilities use wind power to drive a turbine and produce electric energy.  The electric energy produced in these establishments is provided to electric power transmission systems or to electric power distribution systems.<br>"
            },
            {
                "code": "221116",
                "title": "Geothermal Electric Power Generation",
                "description": "This U.S. industry comprises establishments primarily engaged in operating geothermal electric power generation facilities.  These facilities use heat derived from the Earth to produce electric energy.  The electric energy produced in these establishments is provided to electric power transmission systems or to electric power distribution systems.<br>"
            },
            {
                "code": "221117",
                "title": "Biomass Electric Power Generation",
                "description": "This U.S. industry comprises establishments primarily engaged in operating biomass electric power generation facilities.  These facilities use biomass (e.g., wood, waste, alcohol fuels) to produce electric energy.  The electric energy produced in these establishments is provided to electric power transmission systems or to electric power distribution systems.<br><br>Cross-References."
            },
            {
                "code": "221118",
                "title": "Other Electric Power Generation",
                "description": "This U.S. industry comprises establishments primarily engaged in operating electric power generation facilities (except hydroelectric, fossil fuel, nuclear, solar, wind, geothermal, biomass).  These facilities convert other forms of energy, such as tidal power, into electric energy.  The electric energy produced in these establishments is provided to electric power transmission systems or to electric power distribution systems.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "22112",
                "title": "Electric Power Transmission, Control, and Distribution<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in operating electric power transmission systems, controlling (i.e., regulating voltages) the transmission of electricity, and/or distributing electricity.  The transmission system includes lines and transformer stations.  These establishments arrange, facilitate, or coordinate the transmission of electricity from the generating source to the distribution centers, other electric utilities, or final consumers.  The distribution system consists of lines, poles, meters, and wiring that deliver the electricity to final consumers.<br><br>Cross-References."
            },
            {
                "code": "221121",
                "title": "Electric Bulk Power Transmission and Control",
                "description": "This U.S. industry comprises establishments primarily engaged in operating electric power transmission systems and/or controlling (i.e., regulating voltages) the transmission of electricity from the generating source to distribution centers or other electric utilities.  The transmission system includes lines and transformer stations.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "221122",
                "title": "Electric Power Distribution",
                "description": "This U.S. industry comprises electric power establishments primarily engaged in either (1) operating electric power distribution systems (i.e., consisting of lines, poles, meters, and wiring) or (2) operating as electric power brokers or agents that arrange the sale of electricity via power distribution systems operated by others.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2212",
                "title": "Natural Gas Distribution<sup>T</sup>",
                "description": null
            },
            {
                "code": "22121",
                "title": "Natural Gas Distribution<sup>T</sup>",
                "description": "See industry description for 221210.<br>"
            },
            {
                "code": "221210",
                "title": "Natural Gas Distribution",
                "description": "This industry comprises: (1) establishments primarily engaged in operating gas distribution systems (e.g., mains, meters); (2) establishments known as gas marketers that buy gas from the well and sell it to a distribution system; (3) establishments known as gas brokers or agents that arrange the sale of gas over gas distribution systems operated by others; and (4) establishments primarily engaged in transmitting and distributing gas to final consumers.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2213",
                "title": "Water, Sewage and Other Systems<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in: (1) operating water treatment plants and/or water supply systems; (2) operating sewer systems or sewage treatment facilities; or (3) providing steam, heated air, or cooled air.<br>"
            },
            {
                "code": "22131",
                "title": "Water Supply and Irrigation Systems",
                "description": "See industry description for 221310.<br>"
            },
            {
                "code": "221310",
                "title": "Water Supply and Irrigation Systems",
                "description": "This industry comprises establishments primarily engaged in operating water treatment plants and/or operating water supply systems.  The water supply system may include pumping stations, aqueducts, and/or distribution mains.  The water may be used for drinking, irrigation, or other uses.<br><br>Cross-References."
            },
            {
                "code": "22132",
                "title": "Sewage Treatment Facilities",
                "description": "See industry description for 221320.<br>"
            },
            {
                "code": "221320",
                "title": "Sewage Treatment Facilities",
                "description": "This industry comprises establishments primarily engaged in operating sewer systems or sewage treatment facilities that collect, treat, and dispose of waste.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "22133",
                "title": "Steam and Air-Conditioning Supply",
                "description": "See industry description for 221330.<br>"
            },
            {
                "code": "221330",
                "title": "Steam and Air-Conditioning Supply",
                "description": "This industry comprises establishments primarily engaged in providing steam, heated air, or cooled air.  The steam distribution may be through mains.<br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 25
    },
    {
        "sectorCode": "23",
        "sectorDescription": "Construction",
        "subsectors": [
            {
                "code": "23",
                "title": "Construction<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Construction sector comprises establishments primarily engaged in the construction of buildings or engineering projects (e.g., highways and utility systems).  Establishments primarily engaged in the preparation of sites for new construction and establishments primarily engaged in subdividing land for sale as building sites also are included in this sector.<br><br>Construction work done may include new work, additions, alterations, or maintenance and repairs.  Activities of these establishments generally are managed at a fixed place of business, but they usually perform construction activities at multiple project sites.  Production responsibilities for establishments in this sector are usually specified in (1) contracts with the owners of construction projects (prime contracts) or (2) contracts with other construction establishments (subcontracts).<br><br>Establishments primarily engaged in contracts that include responsibility for all aspects of individual construction p"
            },
            {
                "code": "236",
                "title": "Construction of Buildings<sup>T</sup>",
                "description": "The Construction of Buildings subsector comprises establishments primarily responsible for the construction of buildings.  The work performed may include new work, additions, alterations, or maintenance and repairs.  The on-site assembly of precut, panelized, and prefabricated buildings and construction of temporary buildings are included in this subsector.  Part or all of the production work for which the establishments in this subsector have responsibility may be subcontracted to other construction establishments--usually specialty trade contractors.<br><br>Establishments in this subsector are classified based on the types of buildings they construct.  This classification reflects variations in the requirements of the underlying production processes.<br>"
            },
            {
                "code": "2361",
                "title": "Residential Building Construction<sup>T</sup>",
                "description": null
            },
            {
                "code": "23611",
                "title": "Residential Building Construction<sup>T</sup>",
                "description": "This industry comprises establishments primarily responsible for the construction or remodeling and renovation of single-family and multifamily residential buildings.  Included in this industry are residential housing general contractors (i.e., new construction, remodeling, or renovating existing residential structures), for-sale builders and remodelers of residential structures, residential project construction management firms, and residential design-build firms.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "236115",
                "title": "New Single-Family Housing Construction (except For-Sale Builders)",
                "description": "This U.S. industry comprises general contractor establishments primarily responsible for the entire construction of new single-family housing, such as single-family detached houses and town houses or row houses where each housing unit (1) is separated from its neighbors by a ground-to-roof wall and (2) has no housing units constructed above or below.  This industry includes general contractors responsible for the on-site assembly of modular and prefabricated houses.  Single-family housing design-build firms and single-family construction management firms acting as general contractors are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "236116",
                "title": "New Multifamily Housing Construction (except For-Sale Builders)",
                "description": "This U.S. industry comprises general contractor establishments primarily responsible for the construction of new multifamily residential housing units (e.g., high-rise, garden, town house apartments, and condominiums where each unit is not separated from its neighbors by a ground-to-roof wall).  Multifamily design-build firms and multifamily housing construction management firms acting as general contractors are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "236117",
                "title": "New Housing For-Sale Builders",
                "description": "This U.S. industry comprises establishments primarily engaged in building new homes on land that is owned or controlled by the builder rather than the homebuyer or investor.  The land is included with the sale of the home.  Establishments in this industry build single-family and/or multifamily homes.  These establishments are often referred to as merchant builders, but are also known as production or for-sale builders.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "236118",
                "title": "Residential Remodelers",
                "description": "This U.S. industry comprises establishments primarily responsible for the remodeling construction (including additions, alterations, reconstruction, maintenance, and repairs) of houses and other residential buildings, single-family and multifamily.  Included in this industry are remodeling general contractors, for-sale remodelers, remodeling design-build firms, and remodeling project construction management firms.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2362",
                "title": "Nonresidential Building Construction<sup>T</sup>",
                "description": "This industry group comprises establishments primarily responsible for the construction (including new work, additions, alterations, maintenance, and repairs) of nonresidential buildings.  This industry group includes nonresidential general contractors, nonresidential for-sale builders, nonresidential design-build firms, and nonresidential project construction management firms.<br>"
            },
            {
                "code": "23621",
                "title": "Industrial Building Construction<sup>T</sup>",
                "description": "See industry description for 236210.<br>"
            },
            {
                "code": "236210",
                "title": "Industrial Building Construction",
                "description": "This industry comprises establishments primarily responsible for the construction (including new work, additions, alterations, maintenance, and repairs) of industrial buildings (except warehouses).  The construction of selected additional structures, whose production processes are similar to those for industrial buildings (e.g., incinerators, cement plants, blast furnaces, and similar nonbuilding structures), is included in this industry.  Included in this industry are industrial building general contractors, industrial building for-sale builders, industrial building design-build firms, and industrial building construction management firms.<br><br>Illustrative Examples:<br><br>Assembly plant construction<br>Furnace, industrial plant, construction<br>Cannery construction<br>Mine loading and discharging station construction<br>Cement plant construction<br>Paper or pulp mill construction<br>Steel mill construction<br>Chemical plant (except petrochemical) construction<br>Pharmaceutical manufacturing plant construction<br>Factor"
            },
            {
                "code": "23622",
                "title": "Commercial and Institutional Building Construction<sup>T</sup>",
                "description": "See industry description for 236220.<br>"
            },
            {
                "code": "236220",
                "title": "Commercial and Institutional Building Construction",
                "description": "This industry comprises establishments primarily responsible for the construction (including new work, additions, alterations, maintenance, and repairs) of commercial and institutional buildings and related structures, such as stadiums, grain elevators, and indoor swimming facilities.  This industry includes establishments responsible for the on-site assembly of modular or prefabricated commercial and institutional buildings.  Included in this industry are commercial and institutional building general contractors, commercial and institutional building for-sale builders, commercial and institutional building design-build firms, and commercial and institutional building project construction management firms.<br><br>Illustrative Examples:<br><br>Airport building construction<br>Office building construction<br>Arena construction<br>Parking garage construction<br>Barrack construction<br>Prison construction<br>Farm building construction<br>Radio and television broadcast studio construction<br>Fire station construction<br>Grain el"
            },
            {
                "code": "237",
                "title": "Heavy and Civil Engineering Construction<sup>T</sup>",
                "description": "The Heavy and Civil Engineering Construction subsector comprises establishments whose primary activity is the construction of entire engineering projects (e.g., highways and dams), and specialty trade contractors, whose primary activity is the production of a specific component for such projects.  Specialty trade contractors in the Heavy and Civil Engineering Construction subsector generally are performing activities that are specific to heavy and civil engineering construction projects and are not normally performed on buildings.  The work performed may include new work, additions, alterations, or maintenance and repairs. <br><br>Specialty trade activities are classified in this subsector if the skills and equipment present are specific to heavy or civil engineering construction projects.  For example, specialized equipment is needed to paint lines on highways.  This equipment is not normally used in building applications so the activity is classified in this subsector.  Traffic signal inst"
            },
            {
                "code": "2371",
                "title": "Utility System Construction<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in the construction of distribution lines and related buildings and structures for utilities (i.e., water, sewer, petroleum, gas, power, and communication).  All structures (including buildings) that are integral parts of utility systems (e.g., storage tanks, pumping stations, power plants, and refineries) are included in this industry group.<br>"
            },
            {
                "code": "23711",
                "title": "Water and Sewer Line and Related Structures Construction<sup>T</sup>",
                "description": "See industry description for 237110.<br>"
            },
            {
                "code": "237110",
                "title": "Water and Sewer Line and Related Structures Construction",
                "description": "This industry comprises establishments primarily engaged in the construction of water and sewer lines, mains, pumping stations, treatment plants, and storage tanks.  The work performed may include new work, reconstruction, rehabilitation, and repairs.  Specialty trade contractors are included in this industry if they are engaged in activities primarily related to water, sewer line, and related structures construction.  All structures (including buildings) that are integral parts of water and sewer networks (e.g., storage tanks, pumping stations, water treatment plants, and sewage treatment plants) are included in this industry.<br><br>Illustrative Examples:<br><br>Distribution line, sewer and water, construction<br>Sewer main, pipe and connection, construction<br>Fire hydrant installation<br>Storm sewer construction<br>Irrigation systems construction<br>Water main and line construction<br>Sewage disposal plant construction<br>Water treatment plant construction<br>Pumping station, water and sewage system, construction<br>Wat"
            },
            {
                "code": "23712",
                "title": "Oil and Gas Pipeline and Related Structures Construction<sup>T</sup>",
                "description": "See industry description for 237120.<br>"
            },
            {
                "code": "237120",
                "title": "Oil and Gas Pipeline and Related Structures Construction",
                "description": "This industry comprises establishments primarily engaged in the construction of oil and gas lines, mains, refineries, and storage tanks.  The work performed may include new work, reconstruction, rehabilitation, and repairs.  Specialty trade contractors are included in this industry if they are engaged in activities primarily related to oil and gas pipeline and related structures construction.  All structures (including buildings) that are integral parts of oil and gas networks (e.g., storage tanks, pumping stations, and refineries) are included in this industry.<br><br>Illustrative Examples:<br><br>Distribution line, gas and oil, construction<br>Oil refinery construction<br>Gas main construction<br>Petrochemical plant construction<br>Gathering line, gas and oil field, construction<br>Natural gas pipeline construction<br>Pumping station, gas and oil transmission, construction<br>Storage tank, natural gas or oil, tank farm or field, construction<br>Natural gas processing plant construction<br><br><br>Cross-References. Establishment"
            },
            {
                "code": "23713",
                "title": "Power and Communication Line and Related Structures Construction<sup>T</sup>",
                "description": "See industry description for 237130.<br>"
            },
            {
                "code": "237130",
                "title": "Power and Communication Line and Related Structures Construction",
                "description": "This industry comprises establishments primarily engaged in the construction of power lines and towers, power plants, and radio, television, and telecommunications transmitting/receiving towers.  The work performed may include new work, reconstruction, rehabilitation, and repairs.  Specialty trade contractors are included in this industry if they are engaged in activities primarily related to power and communication line and related structures construction.  All structures (including buildings) that are integral parts of power and communication networks (e.g., transmitting towers, substations, and power plants) are included.<br><br>Illustrative Examples:<br><br>Alternative energy (e.g., geothermal, ocean wave, solar, wind) structure construction<br>Power line stringing<br>Cellular phone tower construction<br>Radio transmitting tower construction<br>Co-generation plant construction<br>Satellite receiving station construction<br>Communication tower construction<br>Nuclear power plant construction<br>Telephone line stringin"
            },
            {
                "code": "2372",
                "title": "Land Subdivision<sup>T</sup>",
                "description": null
            },
            {
                "code": "23721",
                "title": "Land Subdivision<sup>T</sup>",
                "description": "See industry description for 237210.<br>"
            },
            {
                "code": "237210",
                "title": "Land Subdivision",
                "description": "This industry comprises establishments primarily engaged in servicing land and subdividing real property into lots, for subsequent sale to builders.  Servicing of land may include excavation work for the installation of roads and utility lines.  The extent of work may vary from project to project.  Land subdivision precedes building activity and the subsequent building is often residential, but may also be commercial tracts and industrial parks.  These establishments may do all the work themselves or subcontract the work to others.  Establishments that perform only the legal subdivision of land are not included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2373",
                "title": "Highway, Street, and Bridge Construction<sup>T</sup>",
                "description": null
            },
            {
                "code": "23731",
                "title": "Highway, Street, and Bridge Construction<sup>T</sup>",
                "description": "See industry description for 237310.<br>"
            },
            {
                "code": "237310",
                "title": "Highway, Street, and Bridge Construction",
                "description": "This industry comprises establishments primarily engaged in the construction of highways (including elevated), streets, roads, airport runways, public sidewalks, or bridges.  The work performed may include new work, reconstruction, rehabilitation, and repairs.  Specialty trade contractors are included in this industry if they are engaged in activities primarily related to highway, street, and bridge construction (e.g., installing guardrails on highways).<br><br>Illustrative Examples:<br><br>Airport runway construction<br>Highway line painting<br>Causeway construction<br>Painting traffic lanes or parking lot lines<br>Culverts, highway, road, and street, construction<br>Pothole filling, highway, road, street, or bridge<br>Elevated highway construction<br>Resurfacing, highway, road, street, or bridge<br>Guardrail construction<br>Sign erection, highway, road, street, or bridge <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2379",
                "title": "Other Heavy and Civil Engineering Construction<sup>T</sup>",
                "description": null
            },
            {
                "code": "23799",
                "title": "Other Heavy and Civil Engineering Construction<sup>T</sup>",
                "description": "See industry description for 237990.<br>"
            },
            {
                "code": "237990",
                "title": "Other Heavy and Civil Engineering Construction",
                "description": "This industry comprises establishments primarily engaged in heavy and civil engineering construction projects (excluding highway, street, bridge, and distribution line construction).  The work performed may include new work, reconstruction, rehabilitation, and repairs.  Specialty trade contractors are included in this industry if they are engaged in activities primarily related to heavy and civil engineering construction projects (excluding highway, street, bridge, distribution line, oil and gas structure, and utilities building and structure construction).  Construction projects involving water resources (e.g., dredging and land drainage), development of marine facilities, and projects involving open space improvement (e.g., parks and trails) are included in this industry.<br><br>Illustrative Examples:<br><br>Channel construction<br>Land drainage contractors<br>Dam construction<br>Marine construction<br>Dock construction<br>Microtunneling contractors<br>Dredging (e.g., canal, channel, ditch, waterway)<br>Nuclear wast"
            },
            {
                "code": "238",
                "title": "Specialty Trade Contractors<sup>T</sup>",
                "description": "The Specialty Trade Contractors subsector comprises establishments whose primary activity is performing specific activities (e.g., pouring concrete, site preparation, plumbing, painting, and electrical work) involved in building construction or other activities that are similar for all types of construction, but that are not responsible for the entire project.  The work performed may include new work, additions, alterations, maintenance, and repairs.  The production work performed by establishments in this subsector is usually subcontracted from establishments of the general contractor type or for-sale builders, but especially in remodeling and repair construction, work also may be done directly for the owner of the property.  Specialty trade contractors usually perform most of their work at the construction site, although they may have shops where they perform prefabrication and other work.  Establishments primarily engaged in preparing sites for new construction are also included in "
            },
            {
                "code": "2381",
                "title": "Foundation, Structure, and Building Exterior Contractors<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in the specialty trades needed to complete the basic structure (i.e., foundation, frame, and shell) of buildings.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br>"
            },
            {
                "code": "23811",
                "title": "Poured Concrete Foundation and Structure Contractors",
                "description": "See industry description for 238110.<br>"
            },
            {
                "code": "238110",
                "title": "Poured Concrete Foundation and Structure Contractors",
                "description": "This industry comprises establishments primarily engaged in pouring and finishing concrete foundations and structural elements.  This industry also includes establishments performing grout and shotcrete work.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Concrete pouring and finishing<br>Gunite contractors<br>Concrete pumping (i.e., placement)<br>Mud-jacking contractors<br>Concrete work (except paving)<br>Shotcrete contractors<br>Footing and foundation concrete contractors<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23812",
                "title": "Structural Steel and Precast Concrete Contractors",
                "description": "See industry description for 238120.<br>"
            },
            {
                "code": "238120",
                "title": "Structural Steel and Precast Concrete Contractors",
                "description": "This industry comprises establishments primarily engaged in (1) erecting and assembling structural parts made from steel or precast concrete (e.g., steel beams, structural steel components, and similar products of precast concrete) and/or (2) assembling and installing other steel construction products (e.g., steel rods, bars, rebar, mesh, and cages) to reinforce poured-in-place concrete.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Concrete product (e.g., structural precast, structural prestressed) installation<br>Rebar contractors<br>Erecting structural steel<br>Reinforcing steel contractors<br>Placing and tying reinforcing rod at a construction site<br>Structural steel contractors<br>Precast concrete panel, slab, or form installation<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23813",
                "title": "Framing Contractors",
                "description": "See industry description for 238130.<br>"
            },
            {
                "code": "238130",
                "title": "Framing Contractors",
                "description": "This industry comprises establishments primarily engaged in structural framing and sheathing using materials other than structural steel or concrete.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Building framing (except structural steel)<br>Post framing contractors<br>Foundation, building, wood, contractors<br>Steel framing contractors<br>Framing contractors<br>Wood frame component (e.g., truss) fabrication on site<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23814",
                "title": "Masonry Contractors",
                "description": "See industry description for 238140.<br>"
            },
            {
                "code": "238140",
                "title": "Masonry Contractors",
                "description": "This industry comprises establishments primarily engaged in masonry work, stone setting, bricklaying, and other stone work. The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Block laying<br>Marble, granite, and slate, exterior, contractors<br>Bricklaying<br>Masonry pointing, cleaning, or caulking<br>Concrete block laying<br>Stucco contractors<br>Foundation (e.g., brick, block, stone), building, contractors<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23815",
                "title": "Glass and Glazing Contractors",
                "description": "See industry description for 238150.<br>"
            },
            {
                "code": "238150",
                "title": "Glass and Glazing Contractors",
                "description": "This industry comprises establishments primarily engaged in installing glass panes in prepared openings (i.e., glazing work) and other glass work for buildings.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Decorative glass and mirror installation<br>Glazing contractors<br>Glass cladding installation<br>Stained glass installation<br>Window pane or sheet installation<br>Glass coating and tinting (except automotive) contractors<br>Glass installation (except automotive) contractors<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23816",
                "title": "Roofing Contractors",
                "description": "See industry description for 238160.<br>"
            },
            {
                "code": "238160",
                "title": "Roofing Contractors",
                "description": "This industry comprises establishments primarily engaged in roofing.  This industry also includes establishments treating roofs (i.e., spraying, painting, or coating) and installing skylights.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Painting, spraying, or coating, roof<br>Sheet metal roofing installation<br>Shake and shingle, roof, installation\t<br>Skylight installation<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23817",
                "title": "Siding Contractors",
                "description": "See industry description for 238170.<br>"
            },
            {
                "code": "238170",
                "title": "Siding Contractors",
                "description": "This industry comprises establishments primarily engaged in installing siding of wood, aluminum, vinyl, or other exterior finish material (except brick, stone, stucco, or curtain wall).  This industry also includes establishments installing gutters and downspouts.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Downspout, gutter, and gutter guard installation<br>Fascia and soffit installation<br>Siding (e.g., vinyl, wood, aluminum) installation<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23819",
                "title": "Other Foundation, Structure, and Building Exterior Contractors",
                "description": "See industry description for 238190.<br>"
            },
            {
                "code": "238190",
                "title": "Other Foundation, Structure, and Building Exterior Contractors",
                "description": "This industry comprises establishments primarily engaged in building foundation and structure trades work (except poured concrete, structural steel, precast concrete, framing, masonry, glass and glazing, roofing, and siding).  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Curtain wall, metal, installation<br>Forms for poured concrete, erecting and dismantling<br>Welding, on-site, contractors<br>Ornamental metal work installation<br>Fire escape installation<br>Decorative steel and wrought iron work installation<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2382",
                "title": "Building Equipment Contractors<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in installing or servicing equipment that forms part of a building mechanical system (e.g., electricity, water, heating, and cooling).  The work performed may include new work, additions, alterations, maintenance, and repairs.  Contractors installing specialized building equipment, such as elevators, escalators, service station equipment, and central vacuum cleaning systems, are also included.<br>"
            },
            {
                "code": "23821",
                "title": "Electrical Contractors and Other Wiring Installation Contractors<sup>T</sup>",
                "description": "See industry description for 238210.<br>"
            },
            {
                "code": "238210",
                "title": "Electrical Contractors and Other Wiring Installation Contractors",
                "description": "This industry comprises establishments primarily engaged in installing and servicing electrical wiring and equipment.  Contractors included in this industry may include both the parts and labor when performing work.  These contractors may perform new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Airport runway lighting contractors<br>Fiber optic cable (except transmission line) contractors<br>Alarm system (e.g., fire, burglar), electric, installation only<br>Highway, street, and bridge lighting and electrical signal installation<br>Audio equipment (except automotive) installation contractors<br>Home automation system installation<br>Lighting system installation<br>Cable television hookup contractors<br>Telecommunications equipment and wiring (except transmission line) installation contractors<br>Computer and network cable installation<br>Traffic signal installation<br>Environmental control system installation<br>Cable splicing, electrical or fiber optic<br><br><br>Cross-References. Establishment"
            },
            {
                "code": "23822",
                "title": "Plumbing, Heating, and Air-Conditioning Contractors<sup>T</sup>",
                "description": "See industry description for 238220.<br>"
            },
            {
                "code": "238220",
                "title": "Plumbing, Heating, and Air-Conditioning Contractors",
                "description": "This industry comprises establishments primarily engaged in installing and servicing plumbing, heating, and air-conditioning equipment.  Contractors in this industry may provide both parts and labor when performing work.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Cooling tower installation<br>Heating, ventilation, and air-conditioning (HVAC) contractors<br>Duct work (e.g., cooling, dust collection, exhaust, heating, ventilation) installation<br>Lawn sprinkler system installation<br>Fire sprinkler system installation<br>Mechanical contractors<br>Fireplace, natural gas, installation<br>Refrigeration system (e.g., commercial, industrial, scientific) installation<br>Furnace installation<br>Sewer hookup and connection, building<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23829",
                "title": "Other Building Equipment Contractors<sup>T</sup>",
                "description": "See industry description for 238290.<br>"
            },
            {
                "code": "238290",
                "title": "Other Building Equipment Contractors",
                "description": "This industry comprises establishments primarily engaged in installing or servicing building equipment (except electrical, plumbing, heating, cooling, or ventilation equipment).  The repair and maintenance of miscellaneous building equipment is included in this industry.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Automated and revolving door installation<br>Lightning protection equipment (e.g., lightning rod) installation<br>Boiler and pipe insulation installation<br>Machine rigging<br>Commercial-type door installation<br>Millwrights<br>Conveyor system installation<br>Revolving door installation<br>Overhead door, commercial- or industrial-type, installation<br>Dismantling large-scale machinery and equipment<br>Elevator installation<br>Satellite dish, household-type, installation<br>Escalator installation<br>Vacuum cleaning system, built-in, installation<br>Gasoline pump, service station, installation<br><br><br>Cross-References. Establishments primarily engaged i"
            },
            {
                "code": "2383",
                "title": "Building Finishing Contractors<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in the specialty trades needed to finish buildings.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br>"
            },
            {
                "code": "23831",
                "title": "Drywall and Insulation Contractors<sup>T</sup>",
                "description": "See industry description for 238310.<br>"
            },
            {
                "code": "238310",
                "title": "Drywall and Insulation Contractors",
                "description": "This industry comprises establishments primarily engaged in drywall, plaster work, and building insulation work.  Plaster work includes applying plain or ornamental plaster, and installation of lath to receive plaster.  The work performed may include new work, additions, alterations, maintenance, and repairs.  Establishments primarily engaged in providing firestop services are included in this industry.<br><br>Illustrative Examples:<br><br>Acoustical ceiling tile and panel installation<br>Lathing contractors<br>Drop ceiling installation<br>Plastering (i.e., ornamental, plain) contractors<br>Drywall contractors<br>Soundproofing contractors<br>Firestop contractors<br>Fresco (i.e., decorative plaster finishing) contractors<br>Taping and finishing drywall<br>Gypsum board installation<br>Wall cavity and attic space insulation installation<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23832",
                "title": "Painting and Wall Covering Contractors<sup>T</sup>",
                "description": "See industry description for 238320.<br>"
            },
            {
                "code": "238320",
                "title": "Painting and Wall Covering Contractors",
                "description": "This industry comprises establishments primarily engaged in interior or exterior painting or interior wall covering.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Bridge painting<br>Paperhanging or removal contractors<br>House painting<br>Ship painting contractors<br>Paint and wallpaper stripping<br>Wallpaper hanging and removal contractors<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23833",
                "title": "Flooring Contractors<sup>T</sup>",
                "description": "See industry description for 238330.<br>"
            },
            {
                "code": "238330",
                "title": "Flooring Contractors",
                "description": "This industry comprises establishments primarily engaged in the installation of resilient floor tile, carpeting, linoleum, and hardwood flooring.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Carpet, installation only<br>Resilient floor tile or sheet (e.g., linoleum, rubber, vinyl), installation only<br>Vinyl flooring contractors<br>Resurfacing hardwood flooring<br>Hardwood flooring, installation only<br>Floor laying, scraping, finishing, and refinishing<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23834",
                "title": "Tile and Terrazzo Contractors<sup>T</sup>",
                "description": "See industry description for 238340.<br>"
            },
            {
                "code": "238340",
                "title": "Tile and Terrazzo Contractors",
                "description": "This industry comprises establishments primarily engaged in setting and installing ceramic tile, stone (interior only), and mosaic and/or mixing marble particles and cement to make terrazzo at the job site.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Ceramic tile installation<br>Mosaic work<br>Mantel, marble or stone, installation<br>Tile (except resilient) laying and setting<br>Stone flooring installation<br>Marble, granite, and slate, interior installation contractors<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23835",
                "title": "Finish Carpentry Contractors<sup>T</sup>",
                "description": "See industry description for 238350.<br>"
            },
            {
                "code": "238350",
                "title": "Finish Carpentry Contractors",
                "description": "This industry comprises establishments primarily engaged in finish carpentry work.  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Built-in wood cabinets constructed on site<br>Molding or trim, wood or plastic, installation<br>Countertop (except ceramic tile or stone), residential-type, installation<br>Paneling installation<br>Door and window frame construction<br>Garage door, residential-type, installation<br>Prefabricated kitchen and bath cabinet, residential-type, installation<br>Ship joinery contractors<br>Millwork installation<br>Window and door, residential-type, of any material, prefabricated, installation<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "23839",
                "title": "Other Building Finishing Contractors<sup>T</sup>",
                "description": "See industry description for 238390.<br>"
            },
            {
                "code": "238390",
                "title": "Other Building Finishing Contractors",
                "description": "This industry comprises establishments primarily engaged in building finishing trade work (except drywall, plaster, and insulation work; painting and wall covering work; flooring work; tile and terrazzo work; and finish carpentry work).  The work performed may include new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Bathtub refinishing, on-site<br>Fabricating metal cabinets or countertops on site<br>Closet organizer system installation<br>Modular furniture system attachment and installation<br>Concrete coating, glazing, or sealing<br>Trade show exhibit installation and dismantling<br>Countertop and cabinet, metal (except residential-type), installation<br>Waterproofing contractors<br>Drapery fixture (e.g., hardware, rods, tracks) installation<br>Window shade and blind installation<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "2389",
                "title": "Other Specialty Trade Contractors<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in site preparation activities and in specialized trades (except foundation, structure, and building exterior contractors; building equipment contractors; and building finishing contractors).  The specialty trade work performed includes new work, additions, alterations, maintenance, and repairs.<br>"
            },
            {
                "code": "23891",
                "title": "Site Preparation Contractors<sup>T</sup>",
                "description": "See industry description for 238910.<br>"
            },
            {
                "code": "238910",
                "title": "Site Preparation Contractors",
                "description": "This industry comprises establishments primarily engaged in site preparation activities, such as excavating and grading, demolition of buildings and other structures, and septic system installation.  Earthmoving and land clearing for all types of sites (e.g., building, nonbuilding, mining) is included in this industry.  Establishments primarily engaged in construction equipment rental with operator (except cranes) are also included.<br><br>Illustrative Examples:<br><br>Blasting, building demolition<br>Building interior gutting and stripping<br>Concrete breaking and cutting for demolition<br>Cutting new rights of way<br>Demolition, building and structure<br>Exterior demolition contractors<br>Foundation digging (i.e., excavation)<br>Foundation drilling contractors<br>Grading construction sites<br>Interior demolition contractors<br>Dewatering contractors<br>Dirt moving for construction<br>Equipment rental (except crane), construction, with operator<br>Excavating, earthmoving, or land clearing contractors<br>Line slashing or cutting (except m"
            },
            {
                "code": "23899",
                "title": "All Other Specialty Trade Contractors<sup>T</sup>",
                "description": "See industry description for 238990.<br>"
            },
            {
                "code": "238990",
                "title": "All Other Specialty Trade Contractors",
                "description": "This industry comprises establishments primarily engaged in specialized trades (except foundation, structure, and building exterior contractors; building equipment contractors; building finishing contractors; and site preparation contractors).  The specialty trade work performed includes new work, additions, alterations, maintenance, and repairs.<br><br>Illustrative Examples:<br><br>Billboard erection<br>Outdoor swimming pool construction<br>Paver, brick (e.g., driveway, patio, sidewalk), installation<br>Crane rental with operator<br>Paving, residential and commercial driveway and parking lot<br>Sandblasting building exteriors<br>Fence installation<br>Scaffold erecting and dismantling<br>Interlocking brick and block installation<br>Steeplejack work<br>Manufactured (mobile) home set up and tie-down work<br>Driveway paving or sealing<br><br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 73
    },
    {
        "sectorCode": "31-33",
        "sectorDescription": "Manufacturing",
        "subsectors": [],
        "subsectors_count": 0
    },
    {
        "sectorCode": "42",
        "sectorDescription": "Wholesale Trade",
        "subsectors": [
            {
                "code": "42",
                "title": "Wholesale Trade<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Wholesale Trade sector comprises establishments engaged in wholesaling merchandise, generally without transformation, and rendering services incidental to the sale of merchandise.  The merchandise described in this sector includes the outputs of agriculture, mining, manufacturing, and certain information industries, such as publishing.<br><br>The wholesaling process is an intermediate step in the distribution of merchandise.  Wholesalers are organized to sell or arrange the purchase or sale of (a) goods for resale (i.e., goods sold to other wholesalers or retailers), (b) capital or durable nonconsumer goods, and (c) raw and intermediate materials and supplies used in production.<br><br>Wholesalers sell merchandise to other businesses and normally operate from a warehouse or office.  These warehouses and offices are characterized by having little or no display of merchandise.  In addition, neither the design nor the location of the premises is intended to solicit walk-in "
            },
            {
                "code": "423",
                "title": "Merchant Wholesalers, Durable Goods",
                "description": "Industries in the Merchant Wholesalers, Durable Goods subsector sell capital or durable goods to other businesses.  Merchant wholesalers generally take title to the goods that they sell; in other words, they buy and sell goods on their own account.  Durable goods are new or used items generally with a normal life expectancy of three years or more.  Durable goods merchant wholesale trade establishments are engaged in wholesaling products, such as motor vehicles, furniture, construction materials, machinery and equipment (including household-type appliances), metals and minerals (except petroleum), sporting goods, toys and hobby goods, recyclable materials, and parts.<br><br>Agents and brokers primarily engaged in wholesaling durable goods, generally on a commission or fee basis, are classified in Subsector 425, Wholesale Trade Agents and Brokers.<br>"
            },
            {
                "code": "4231",
                "title": "Motor Vehicle and Motor Vehicle Parts and Supplies Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of automobiles and other motor vehicles, motor vehicle supplies, tires, and new and used parts.<br>"
            },
            {
                "code": "42311",
                "title": "Automobile and Other Motor Vehicle Merchant Wholesalers",
                "description": "See industry description for 423110.<br>"
            },
            {
                "code": "423110",
                "title": "Automobile and Other Motor Vehicle Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of new and used passenger automobiles, trucks, trailers, and other motor vehicles, such as motorcycles, motor homes, and snowmobiles.<br>"
            },
            {
                "code": "42312",
                "title": "Motor Vehicle Supplies and New Parts Merchant Wholesalers",
                "description": "See industry description for 423120.<br>"
            },
            {
                "code": "423120",
                "title": "Motor Vehicle Supplies and New Parts Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of motor vehicle supplies, accessories, tools, and equipment; and new motor vehicle parts (except new tires and tubes).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42313",
                "title": "Tire and Tube Merchant Wholesalers",
                "description": "See industry description for 423130.<br>"
            },
            {
                "code": "423130",
                "title": "Tire and Tube Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of new and/or used tires and tubes for passenger and commercial vehicles.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42314",
                "title": "Motor Vehicle Parts (Used) Merchant Wholesalers",
                "description": "See industry description for 423140.<br>"
            },
            {
                "code": "423140",
                "title": "Motor Vehicle Parts (Used) Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of used motor vehicle parts (except used tires and tubes) and establishments primarily engaged in dismantling motor vehicles for the purpose of selling the parts.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4232",
                "title": "Furniture and Home Furnishing Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of furniture (except hospital beds, medical furniture, and drafting tables), home furnishings, and/or housewares.<br>"
            },
            {
                "code": "42321",
                "title": "Furniture Merchant Wholesalers",
                "description": "See industry description for 423210.<br>"
            },
            {
                "code": "423210",
                "title": "Furniture Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of furniture (except hospital beds, medical furniture, and drafting tables).<br><br>Illustrative Examples:<br><br>Household-type furniture merchant wholesalers<br>Outdoor furniture merchant wholesalers<br>Mattresses merchant wholesalers<br>Public building furniture merchant wholesalers<br>Office furniture merchant wholesalers<br>Religious furniture merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42322",
                "title": "Home Furnishing Merchant Wholesalers",
                "description": "See industry description for 423220.<br>"
            },
            {
                "code": "423220",
                "title": "Home Furnishing Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of home furnishings and/or housewares.<br><br>Illustrative Examples:<br><br>Carpet merchant wholesalers<br>Floor coverings (except wood flooring) merchant wholesalers<br>Glassware, household-type, merchant wholesalers<br>Chinaware, household-type, merchant wholesalers<br>Lamps (i.e., lighting fixtures) merchant wholesalers<br>Household-type cooking utensils merchant wholesalers<br>Curtains merchant wholesalers<br>Draperies merchant wholesalers<br>Linens (e.g., bath, bed, table) merchant wholesalers<br>Window shades and blinds merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4233",
                "title": "Lumber and Other Construction Materials Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of lumber, plywood, millwork, and wood panels; brick, stone, and related construction materials; roofing, siding, and insulation materials; and other construction materials, including manufactured homes (i.e., mobile homes) and/or prefabricated buildings.<br>"
            },
            {
                "code": "42331",
                "title": "Lumber, Plywood, Millwork, and Wood Panel Merchant Wholesalers",
                "description": "See industry description for 423310.<br>"
            },
            {
                "code": "423310",
                "title": "Lumber, Plywood, Millwork, and Wood Panel Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of lumber; plywood; reconstituted wood fiber products; wood fencing; doors and windows and their frames (all materials); wood roofing and siding; and/or other wood or metal millwork.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42332",
                "title": "Brick, Stone, and Related Construction Material Merchant Wholesalers",
                "description": "See industry description for 423320.<br>"
            },
            {
                "code": "423320",
                "title": "Brick, Stone, and Related Construction Material Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of stone, cement, lime, construction sand, and gravel; brick; asphalt and concrete mixtures; and/or concrete, stone, and structural clay products.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42333",
                "title": "Roofing, Siding, and Insulation Material Merchant Wholesalers",
                "description": "See industry description for 423330.<br>"
            },
            {
                "code": "423330",
                "title": "Roofing, Siding, and Insulation Material Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of nonwood roofing and nonwood siding and insulation materials.<br><br>Cross-References."
            },
            {
                "code": "42339",
                "title": "Other Construction Material Merchant Wholesalers",
                "description": "See industry description for 423390.<br>"
            },
            {
                "code": "423390",
                "title": "Other Construction Material Merchant Wholesalers",
                "description": "This industry comprises (1) establishments primarily engaged in the merchant wholesale distribution of manufactured homes (i.e., mobile homes) and/or prefabricated buildings and (2) establishments primarily engaged in the merchant wholesale distribution of construction materials (except lumber, plywood, millwork, wood panels, brick, stone, roofing, siding, electrical and wiring supplies, and insulation materials).<br><br>Illustrative Examples:<br><br>Flat glass merchant wholesalers<br>Prefabricated buildings (except wood) merchant wholesalers<br>Ornamental ironwork merchant wholesalers<br>Fencing and fencing accessories (except wood) merchant wholesalers<br>Plate glass merchant wholesalers<br>Storage bins merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4234",
                "title": "Professional and Commercial Equipment and Supplies Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of photographic equipment and supplies; office, computer, and computer peripheral equipment; and medical, dental, hospital, ophthalmic, and other commercial and professional equipment and supplies.<br>"
            },
            {
                "code": "42341",
                "title": "Photographic Equipment and Supplies Merchant Wholesalers",
                "description": "See industry description for 423410.<br>"
            },
            {
                "code": "423410",
                "title": "Photographic Equipment and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of photographic equipment and supplies (except office equipment).<br><br>Illustrative Examples:<br><br>Photofinishing equipment merchant wholesalers<br>Television cameras merchant wholesalers<br>Photographic camera equipment and supplies merchant wholesalers<br>Video cameras (except household-type) merchant wholesalers<br>Photographic film and plates merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42342",
                "title": "Office Equipment Merchant Wholesalers",
                "description": "See industry description for 423420.<br>"
            },
            {
                "code": "423420",
                "title": "Office Equipment Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of office machines and related equipment (except computers and computer peripheral equipment).<br><br>Illustrative Examples:<br><br>Automated teller machines (ATM) merchant wholesalers<br>Calculators and calculating machines merchant wholesalers<br>Cash registers merchant wholesalers<br>Security safes merchant wholesalers<br>Copying machines merchant wholesalers<br>Point of sale terminals merchant wholesalers<br>Paper shredders merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42343",
                "title": "Computer and Computer Peripheral Equipment and Software Merchant Wholesalers",
                "description": "See industry description for 423430.<br>"
            },
            {
                "code": "423430",
                "title": "Computer and Computer Peripheral Equipment and Software Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of computers, computer peripheral equipment, loaded computer boards, and/or computer software.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42344",
                "title": "Other Commercial Equipment Merchant Wholesalers",
                "description": "See industry description for 423440.<br>"
            },
            {
                "code": "423440",
                "title": "Other Commercial Equipment Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of commercial and related machines and equipment (except photographic equipment and supplies; office equipment; and computers and computer peripheral equipment and software) generally used in restaurants and stores.<br><br>Illustrative Examples:<br><br>Balances and scales (except laboratory) merchant wholesalers<br>Commercial shelving merchant wholesalers<br>Coin- or card-operated merchandising machine merchant wholesalers<br>Electrical signs merchant wholesalers<br>Commercial chinaware merchant wholesalers<br>Partitions merchant wholesalers<br>Commercial cooking equipment merchant wholesalers<br>Store fixtures (except refrigerated) merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42345",
                "title": "Medical, Dental, and Hospital Equipment and Supplies Merchant Wholesalers",
                "description": "See industry description for 423450.<br>"
            },
            {
                "code": "423450",
                "title": "Medical, Dental, and Hospital Equipment and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of professional medical equipment, instruments, and supplies (except ophthalmic equipment and instruments and goods used by ophthalmologists, optometrists, and opticians).<br><br>Illustrative Examples:<br><br>Dental equipment and supplies merchant wholesalers<br>Surgical dressings merchant wholesalers<br>Electromedical equipment merchant wholesalers<br>Patient monitoring equipment merchant wholesalers<br>Hospital beds merchant wholesalers<br>Prosthetic appliances and supplies merchant wholesalers<br>Hospital furniture merchant wholesalers<br>Surgical instruments and apparatus merchant wholesalers<br>Medical and dental X-ray machines and parts merchant wholesalers<br>First-aid kits (except household) merchant wholesalers<br>Surgical and medical masks merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42346",
                "title": "Ophthalmic Goods Merchant Wholesalers",
                "description": "See industry description for 423460.<br>"
            },
            {
                "code": "423460",
                "title": "Ophthalmic Goods Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of professional equipment, instruments, and/or goods sold, prescribed, or used by ophthalmologists, optometrists, and opticians.<br><br>Illustrative Examples:<br><br>Binoculars merchant wholesalers<br>Optometric equipment and supplies merchant wholesalers<br>Ophthalmic frames merchant wholesalers<br>Sunglasses merchant wholesalers<br>Ophthalmic lenses merchant wholesalers<br><br>"
            },
            {
                "code": "42349",
                "title": "Other Professional Equipment and Supplies Merchant Wholesalers",
                "description": "See industry description for 423490.<br>"
            },
            {
                "code": "423490",
                "title": "Other Professional Equipment and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of professional equipment and supplies (except ophthalmic goods and medical, dental, and hospital equipment and supplies).<br><br>Illustrative Examples:<br><br>Church supplies (except silverware, plated ware) merchant wholesalers<br>School equipment and supplies (except books, furniture) merchant wholesalers<br>Drafting tables and instruments merchant wholesalers<br>Scientific instruments merchant wholesalers<br>Laboratory equipment (except medical, dental) merchant wholesalers<br>Surveying equipment and supplies merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4235",
                "title": "Metal and Mineral (except Petroleum) Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of products of the primary metals industries (including metal service centers) and coal, coke, metal ores, and/or nonmetallic minerals (except precious and semiprecious stones and minerals used in construction).<br>"
            },
            {
                "code": "42351",
                "title": "Metal Service Centers and Other Metal Merchant Wholesalers",
                "description": "See industry description for 423510.<br>"
            },
            {
                "code": "423510",
                "title": "Metal Service Centers and Other Metal Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of products of the primary metals industries.  Service centers maintain inventory and may perform functions, such as sawing, shearing, bending, leveling, cleaning, or edging, on a custom basis as part of sales transactions.<br><br>Illustrative Examples:<br><br>Cast iron pipe merchant wholesalers<br>Metal rods merchant wholesalers<br>Metal bars (except precious) merchant wholesalers<br>Metal sheets merchant wholesalers<br>Metal spikes merchant wholesalers<br>Metal ingots (except precious) merchant wholesalers<br>Metal pipe merchant wholesalers<br>Nails merchant wholesalers<br>Metal plates merchant wholesalers<br>Noninsulated wire merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42352",
                "title": "Coal and Other Mineral and Ore Merchant Wholesalers",
                "description": "See industry description for 423520.<br>"
            },
            {
                "code": "423520",
                "title": "Coal and Other Mineral and Ore Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of coal, coke, metal ores, and/or nonmetallic minerals (except precious and semiprecious stones and minerals used in construction, such as sand and gravel).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4236",
                "title": "Household Appliances and Electrical and Electronic Goods Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of electrical apparatus and equipment, wiring supplies, and related equipment; household appliances, electric housewares, and consumer electronics; and other electronic parts and equipment.<br>"
            },
            {
                "code": "42361",
                "title": "Electrical Apparatus and Equipment, Wiring Supplies, and Related Equipment Merchant Wholesalers",
                "description": "See industry description for 423610.<br>"
            },
            {
                "code": "423610",
                "title": "Electrical Apparatus and Equipment, Wiring Supplies, and Related Equipment Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of electrical construction materials; wiring supplies; electric light fixtures; light bulbs; and/or electrical power equipment for the generation, transmission, distribution, or control of electric energy.<br>"
            },
            {
                "code": "42362",
                "title": "Household Appliances, Electric Housewares, and Consumer Electronics Merchant Wholesalers",
                "description": "See industry description for 423620.<br>"
            },
            {
                "code": "423620",
                "title": "Household Appliances, Electric Housewares, and Consumer Electronics Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of household-type gas and electric appliances (except water heaters and heating stoves (i.e., noncooking)), room air-conditioners, and/or household-type audio or video equipment.<br><br>Illustrative Examples:<br><br>Household-type sewing machines merchant wholesalers<br>Household-type radios (including automotive) merchant wholesalers\t<br>Household-type video cameras merchant wholesalers<br>Household-type refrigerators merchant wholesalers<br>Television sets merchant wholesalers<br>Toothbrushes, electric, merchant wholesalers<br>Curling irons, electric, merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42369",
                "title": "Other Electronic Parts and Equipment Merchant Wholesalers",
                "description": "See industry description for 423690.<br>"
            },
            {
                "code": "423690",
                "title": "Other Electronic Parts and Equipment Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of electronic parts and equipment (except electrical apparatus and equipment, wiring supplies, and construction materials; electrical and electronic appliances; and television sets and radios).<br><br>Illustrative Examples:<br><br>Blank compact discs (CDs) merchant wholesalers<br>Blank digital video discs (DVDs) merchant wholesalers<br>Broadcasting equipment merchant wholesalers<br>Cellular telephones merchant wholesalers<br>Communications equipment merchant wholesalers<br>Modems and routers merchant wholesalers<br>Radar equipment merchant wholesalers<br>Teleconferencing equipment merchant wholesalers<br>Unloaded computer boards merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4237",
                "title": "Hardware, and Plumbing and Heating Equipment and Supplies Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of hardware; plumbing and heating equipment and supplies (hydronics); warm air heating and air-conditioning equipment and supplies; and refrigeration equipment and supplies.<br>"
            },
            {
                "code": "42371",
                "title": "Hardware Merchant Wholesalers",
                "description": "See industry description for 423710.<br>"
            },
            {
                "code": "423710",
                "title": "Hardware Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of hardware, knives, or handtools.<br><br>Illustrative Examples:<br><br>Brads merchant wholesalers<br>Cutlery merchant wholesalers<br>Knives (except disposable plastics) merchant wholesalers<br>Power handtools (e.g., drills, saws, sanders) merchant wholesalers<br>Fasteners (e.g., bolts, nuts, rivets, screws) merchant wholesalers<br>Staples merchant wholesalers<br>Handtools (except motor vehicle, machinists' precision) merchant wholesalers<br>Hardware (except motor vehicle) merchant wholesalers<br>Tacks merchant wholesalers<br>Keys and locks merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42372",
                "title": "Plumbing and Heating Equipment and Supplies (Hydronics) Merchant Wholesalers",
                "description": "See industry description for 423720.<br>"
            },
            {
                "code": "423720",
                "title": "Plumbing and Heating Equipment and Supplies (Hydronics) Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of plumbing equipment, hydronic heating equipment, household-type water heaters, and/or supplies.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42373",
                "title": "Warm Air Heating and Air-Conditioning Equipment and Supplies Merchant Wholesalers",
                "description": "See industry description for 423730.<br>"
            },
            {
                "code": "423730",
                "title": "Warm Air Heating and Air-Conditioning Equipment and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of warm air heating and air-conditioning equipment and supplies.<br><br>Illustrative Examples:<br><br>Air pollution control equipment and supplies merchant wholesalers<br>Nonportable electric baseboard heaters merchant wholesalers<br>Air-conditioning equipment (except room units) merchant wholesalers<br>Warm air central heating equipment merchant wholesalers<br>Automotive air-conditioners merchant wholesalers<br>Ductless heating and air-conditioning system equipment merchant wholesalers <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42374",
                "title": "Refrigeration Equipment and Supplies Merchant Wholesalers",
                "description": "See industry description for 423740.<br>"
            },
            {
                "code": "423740",
                "title": "Refrigeration Equipment and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of refrigeration equipment (except household-type refrigerators, freezers, and air-conditioners).<br><br>Illustrative Examples:<br><br>Cold storage machinery merchant wholesalers<br>Refrigerated display cases merchant wholesalers<br>Commercial refrigerators merchant wholesalers<br>Water coolers merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4238",
                "title": "Machinery, Equipment, and Supplies Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of construction, mining, farm, garden, industrial, service establishment, and transportation machinery, equipment, and supplies.<br>"
            },
            {
                "code": "42381",
                "title": "Construction and Mining (except Oil Well) Machinery and Equipment Merchant Wholesalers",
                "description": "See industry description for 423810.<br>"
            },
            {
                "code": "423810",
                "title": "Construction and Mining (except Oil Well) Machinery and Equipment Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of specialized machinery, equipment, and related parts generally used in construction, mining (except oil well), and logging activities.<br><br>Illustrative Examples:<br><br>Excavating machinery and equipment merchant wholesalers<br>Road construction and maintenance machinery merchant wholesalers<br>Forestry machinery and equipment merchant wholesalers<br>Scaffolding merchant wholesalers<br>Mining cranes merchant wholesalers<br><br><br>Cross-References."
            },
            {
                "code": "42382",
                "title": "Farm and Garden Machinery and Equipment Merchant Wholesalers",
                "description": "See industry description for 423820.<br>"
            },
            {
                "code": "423820",
                "title": "Farm and Garden Machinery and Equipment Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of specialized machinery, equipment, and related parts generally used in agricultural, farm, and lawn and garden activities.<br><br>Illustrative Examples:<br><br>Animal feeders merchant wholesalers<br>Lawnmowers merchant wholesalers<br>Milking machinery and equipment merchant wholesalers<br>Harvesting machinery and equipment merchant wholesalers<br>Planting machinery and equipment merchant wholesalers<br><br>"
            },
            {
                "code": "42383",
                "title": "Industrial Machinery and Equipment Merchant Wholesalers",
                "description": "See industry description for 423830.<br>"
            },
            {
                "code": "423830",
                "title": "Industrial Machinery and Equipment Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of specialized machinery, equipment, and related parts generally used in manufacturing, oil well, and warehousing activities.<br><br>Illustrative Examples:<br><br>Fluid power transmission equipment merchant wholesalers<br>Metalworking machinery and equipment merchant wholesalers<br>Food processing machinery and equipment merchant wholesalers<br>Oil well machinery and equipment merchant wholesalers<br>Material handling machinery and equipment merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42384",
                "title": "Industrial Supplies Merchant Wholesalers",
                "description": "See industry description for 423840.<br>"
            },
            {
                "code": "423840",
                "title": "Industrial Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of supplies for machinery and equipment generally used in manufacturing, oil well, and warehousing activities.<br><br>Illustrative Examples:<br><br>Industrial containers merchant wholesalers<br>Industrial diamonds merchant wholesalers<br>Printing inks merchant wholesalers<br>Industrial sand merchant wholesalers<br>Refractory materials (e.g., brick, blocks, shapes) merchant wholesalers<br>Welding supplies (except welding gases) merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42385",
                "title": "Service Establishment Equipment and Supplies Merchant Wholesalers",
                "description": "See industry description for 423850.<br>"
            },
            {
                "code": "423850",
                "title": "Service Establishment Equipment and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of specialized equipment and supplies of the type used by service establishments (except specialized equipment and supplies used in offices, stores, hotels, restaurants, schools, health and medical facilities, photographic facilities, and specialized equipment used in transportation and construction activities).<br><br>Illustrative Examples:<br><br>Amusement park equipment merchant wholesalers<br>Beauty parlor equipment and supplies merchant wholesalers<br>Car wash equipment and supplies merchant wholesalers<br>Drycleaning equipment and supplies merchant wholesalers<br>Voting machines merchant wholesalers<br>Janitorial equipment and supplies merchant wholesalers<br>Undertakers' equipment and supplies merchant wholesalers<br>Upholsterers' equipment and supplies (except fabrics) merchant wholesalers<br>Water treatment equipment, municipal, merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42386",
                "title": "Transportation Equipment and Supplies (except Motor Vehicle) Merchant Wholesalers",
                "description": "See industry description for 423860.<br>"
            },
            {
                "code": "423860",
                "title": "Transportation Equipment and Supplies (except Motor Vehicle) Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of transportation equipment and supplies (except marine pleasure craft and motor vehicles).<br><br>Illustrative Examples:<br><br>Aircraft merchant wholesalers<br>Railroad cars merchant wholesalers<br>Ships merchant wholesalers<br>Motorized passenger golf carts merchant wholesalers<br>Boats (except pleasure) merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4239",
                "title": "Miscellaneous Durable Goods Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of sporting, recreational, toy, hobby, and jewelry goods and supplies, and precious stones and metals.<br>"
            },
            {
                "code": "42391",
                "title": "Sporting and Recreational Goods and Supplies Merchant Wholesalers",
                "description": "See industry description for 423910.<br>"
            },
            {
                "code": "423910",
                "title": "Sporting and Recreational Goods and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of sporting goods and accessories; billiard and pool supplies; sporting firearms and ammunition; and/or marine pleasure craft, equipment, and supplies.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42392",
                "title": "Toy and Hobby Goods and Supplies Merchant Wholesalers",
                "description": "See industry description for 423920.<br>"
            },
            {
                "code": "423920",
                "title": "Toy and Hobby Goods and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of games, toys, fireworks, playing cards, hobby goods and supplies, and/or related goods.<br>"
            },
            {
                "code": "42393",
                "title": "Recyclable Material Merchant Wholesalers",
                "description": "See industry description for 423930.<br>"
            },
            {
                "code": "423930",
                "title": "Recyclable Material Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of automotive scrap, industrial scrap, and other recyclable materials.  Included in this industry are auto wreckers primarily engaged in dismantling motor vehicles for the purpose of wholesaling scrap.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42394",
                "title": "Jewelry, Watch, Precious Stone, and Precious Metal Merchant Wholesalers",
                "description": "See industry description for 423940.<br>"
            },
            {
                "code": "423940",
                "title": "Jewelry, Watch, Precious Stone, and Precious Metal Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of jewelry, precious and semiprecious stones, precious metals and metal flatware, costume jewelry, watches, clocks, silverware, and/or jewelers' findings.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42399",
                "title": "Other Miscellaneous Durable Goods Merchant Wholesalers",
                "description": "See industry description for 423990.<br>"
            },
            {
                "code": "423990",
                "title": "Other Miscellaneous Durable Goods Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of durable goods (except motor vehicles and motor vehicle parts and supplies; furniture and home furnishings; lumber and other construction materials; professional and commercial equipment and supplies; metals and minerals (except petroleum); electrical goods; hardware, and plumbing and heating equipment and supplies; machinery, equipment, and supplies; sporting and recreational goods and supplies; toy and hobby goods and supplies; recyclable materials; and jewelry, watches, precious stones, and precious metals).<br><br>Illustrative Examples:<br><br>Firearms (except sporting) merchant wholesalers<br>Musical instruments merchant wholesalers<br>Luggage merchant wholesalers<br>Monuments and grave markers merchant wholesalers<br>Prerecorded compact discs (CDs) and digital video discs (DVDs) merchant wholesalers<br>Timber and timber products (except lumber) merchant wholesalers<br>Personal safety devices and supplies (e.g., e"
            },
            {
                "code": "424",
                "title": "Merchant Wholesalers, Nondurable Goods",
                "description": "Industries in the Merchant Wholesalers, Nondurable Goods subsector sell nondurable goods to other businesses.  Nondurable goods are items generally with a normal life expectancy of less than three years.  Nondurable goods merchant wholesale trade establishments are engaged in wholesaling products, such as paper and paper products, chemicals and chemical products, drugs, textiles and textile products, apparel, footwear, groceries, farm products, petroleum and petroleum products, alcoholic beverages, books, magazines, newspapers, flowers and nursery stock, and tobacco products.<br><br>The detailed industries within the subsector are organized in the classification structure based on the products sold.<br><br>Agents and brokers primarily engaged in wholesaling nondurable goods, generally on a commission or fee basis, are classified in Subsector 425, Wholesale Trade Agents and Brokers.<br>"
            },
            {
                "code": "4241",
                "title": "Paper and Paper Product Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of bulk printing and writing paper; stationery and office supplies; and industrial and personal service paper. <br>"
            },
            {
                "code": "42411",
                "title": "Printing and Writing Paper Merchant Wholesalers",
                "description": "See industry description for 424110.<br>"
            },
            {
                "code": "424110",
                "title": "Printing and Writing Paper Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of bulk printing and/or writing paper generally on rolls for further processing.<br><br>Illustrative Examples:<br><br>Bulk envelope paper merchant wholesalers<br>Bulk paper (e.g., fine, printing, writing) merchant wholesalers<br>Bulk groundwood paper merchant wholesalers<br>Newsprint merchant wholesalers <br><br><br>Cross-References."
            },
            {
                "code": "42412",
                "title": "Stationery and Office Supplies Merchant Wholesalers",
                "description": "See industry description for 424120.<br>"
            },
            {
                "code": "424120",
                "title": "Stationery and Office Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of stationery, office supplies, and/or gift wrap.<br><br>Illustrative Examples:<br><br>Photocopy supplies merchant wholesalers<br>Envelopes merchant wholesalers<br>Social stationery merchant wholesalers<br>File cards and folders merchant wholesalers<br>Greeting cards merchant wholesalers<br>Office paper (e.g., printer, copier) merchant wholesalers<br>Writing pens merchant wholesalers<br>Pencils merchant wholesalers<br><br><br>Cross-References."
            },
            {
                "code": "42413",
                "title": "Industrial and Personal Service Paper Merchant Wholesalers",
                "description": "See industry description for 424130.<br>"
            },
            {
                "code": "424130",
                "title": "Industrial and Personal Service Paper Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of kraft wrapping and other coarse paper, paperboard, converted paper (except stationery and office supplies), and/or related disposable plastics products.<br><br>Illustrative Examples:<br><br>Corrugated paper merchant wholesalers<br>Paper and disposable plastics tableware (e.g., utensils, dishes, cups) merchant wholesalers<br>Paper napkins merchant wholesalers<br>Paperboard and disposable plastics boxes and containers merchant wholesalers<br>Plastics bags merchant wholesalers<br>Paper and disposable plastics shipping supplies merchant wholesalers<br>Paper towels merchant wholesalers<br>Paper bags merchant wholesalers<br>Sanitary paper products merchant wholesalers<br>Wrapping paper (except gift wrap) merchant wholesalers<br>Waxed paper merchant wholesalers<br>Plastics foam products, disposable (except packaging, packing), merchant wholesalers <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4242",
                "title": "Drugs and Druggists' Sundries Merchant Wholesalers",
                "description": null
            },
            {
                "code": "42421",
                "title": "Drugs and Druggists' Sundries Merchant Wholesalers",
                "description": "See industry description for 424210.<br>"
            },
            {
                "code": "424210",
                "title": "Drugs and Druggists' Sundries Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of biological and medical products; botanical drugs and herbs; and pharmaceutical products intended for internal and/or external consumption in such forms as ampoules, tablets, capsules, vials, ointments, powders, solutions, and suspensions.<br><br>Illustrative Examples:<br><br>Antibiotics merchant wholesalers<br>Endocrine substances merchant wholesalers<br>Blood derivatives merchant wholesalers<br>In-vitro and in-vivo diagnostics merchant wholesalers<br>Drugs merchant wholesalers<br>Botanicals merchant wholesalers<br>Vaccines merchant wholesalers<br>Cosmetics merchant wholesalers<br>Vitamins merchant wholesalers<br>Veterinarians' medicines merchant wholesalers<br><br><br>Cross-References."
            },
            {
                "code": "4243",
                "title": "Apparel, Piece Goods, and Notions Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of piece goods, notions, and other dry goods; footwear; and clothing and clothing accessories.<br>"
            },
            {
                "code": "42431",
                "title": "Piece Goods, Notions, and Other Dry Goods Merchant Wholesalers",
                "description": "See industry description for 424310.<br>"
            },
            {
                "code": "424310",
                "title": "Piece Goods, Notions, and Other Dry Goods Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of piece goods, fabrics, knitting yarns (except industrial), thread and other notions, and/or hair accessories.<br><br>Cross-References."
            },
            {
                "code": "42434",
                "title": "Footwear Merchant Wholesalers",
                "description": "See industry description for 424340.<br>"
            },
            {
                "code": "424340",
                "title": "Footwear Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of footwear of leather, rubber, and other materials, including athletic footwear (except specialty athletic footwear).<br><br>Cross-References."
            },
            {
                "code": "42435",
                "title": "Clothing and Clothing Accessories Merchant Wholesalers",
                "description": "See industry description for 424350.<br>"
            },
            {
                "code": "424350",
                "title": "Clothing and Clothing Accessories Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of clothing and clothing accessories.<br><br>Illustrative Examples:<br><br>Baby bottles merchant wholesalers<br>Diapers (except disposable) merchant wholesalers<br>Dresses merchant wholesalers<br>Fur clothing merchant wholesalers<br>Handbags merchant wholesalers<br>Hosiery merchant wholesalers<br>Lingerie merchant wholesalers<br>Millinery merchant wholesalers<br>Nightwear merchant wholesalers<br>Outerwear merchant wholesalers<br>Sportswear merchant wholesalers<br>Swimwear merchant wholesalers<br><br><br>Cross-References."
            },
            {
                "code": "4244",
                "title": "Grocery and Related Product Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of (1) a general line of groceries; (2) packaged frozen food; (3) dairy products; (4) poultry and poultry products; (5) confectioneries; (6) fish and seafood; (7) meats and meat products; (8) fresh fruits and vegetables; and (9) other grocery and related products.<br>"
            },
            {
                "code": "42441",
                "title": "General Line Grocery Merchant Wholesalers",
                "description": "See industry description for 424410.<br>"
            },
            {
                "code": "424410",
                "title": "General Line Grocery Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of a general line (wide range) of groceries.<br><br>Cross-References."
            },
            {
                "code": "42442",
                "title": "Packaged Frozen Food Merchant Wholesalers",
                "description": "See industry description for 424420.<br>"
            },
            {
                "code": "424420",
                "title": "Packaged Frozen Food Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of packaged frozen foods (except dairy products).<br><br>Illustrative Examples:<br><br>Frozen bakery products merchant wholesalers<br>Packaged frozen fish merchant wholesalers<br>Frozen juices merchant wholesalers<br>Packaged frozen meats merchant wholesalers<br>Frozen vegetables merchant wholesalers<br>Packaged frozen poultry merchant wholesalers<br><br><br>Cross-References."
            },
            {
                "code": "42443",
                "title": "Dairy Product (except Dried or Canned) Merchant Wholesalers",
                "description": "See industry description for 424430.<br>"
            },
            {
                "code": "424430",
                "title": "Dairy Product (except Dried or Canned) Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of dairy products (except dried or canned).<br><br>Illustrative Examples:<br><br>Butter merchant wholesalers<br>Fluid milk (except canned) merchant wholesalers<br>Cheese merchant wholesalers<br>Ice cream and ices merchant wholesalers<br>Cream merchant wholesalers<br>Yogurt merchant wholesalers <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42444",
                "title": "Poultry and Poultry Product Merchant Wholesalers",
                "description": "See industry description for 424440.<br>"
            },
            {
                "code": "424440",
                "title": "Poultry and Poultry Product Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of poultry and/or poultry products (except canned and packaged frozen).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42445",
                "title": "Confectionery Merchant Wholesalers",
                "description": "See industry description for 424450.<br>"
            },
            {
                "code": "424450",
                "title": "Confectionery Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of confectioneries; salted or roasted nuts; popcorn; potato, corn, and similar chips; and/or fountain fruits and syrups.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42446",
                "title": "Fish and Seafood Merchant Wholesalers",
                "description": "See industry description for 424460.<br>"
            },
            {
                "code": "424460",
                "title": "Fish and Seafood Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of fish and seafood (except canned or packaged frozen).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42447",
                "title": "Meat and Meat Product Merchant Wholesalers",
                "description": "See industry description for 424470.<br>"
            },
            {
                "code": "424470",
                "title": "Meat and Meat Product Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of meats and meat products (except canned and packaged frozen) and/or lard.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42448",
                "title": "Fresh Fruit and Vegetable Merchant Wholesalers",
                "description": "See industry description for 424480.<br>"
            },
            {
                "code": "424480",
                "title": "Fresh Fruit and Vegetable Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of fresh fruits and vegetables.<br>"
            },
            {
                "code": "42449",
                "title": "Other Grocery and Related Products Merchant Wholesalers",
                "description": "See industry description for 424490.<br>"
            },
            {
                "code": "424490",
                "title": "Other Grocery and Related Products Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of groceries and related products (except a general line of groceries; packaged frozen food; dairy products (except dried and canned); poultry products (except canned); confectioneries; fish and seafood (except canned); meat products (except canned); and fresh fruits and vegetables).  Included in this industry are establishments primarily engaged in the bottling and merchant wholesale distribution of spring and mineral waters processed by others.<br><br>Illustrative Examples:<br><br>Bakery products (except frozen) merchant wholesalers<br>Canned seafood merchant wholesalers<br>Canned fish merchant wholesalers<br>Canned vegetables merchant wholesalers<br>Canned fruits merchant wholesalers<br>Dried milk merchant wholesalers<br>Canned meats merchant wholesalers<br>Soft drinks merchant wholesalers<br>Canned milk merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4245",
                "title": "Farm Product Raw Material Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of agricultural products (except raw milk, live poultry, and fresh fruits and vegetables), such as grains, field beans, livestock, and other farm product raw materials (excluding seeds).<br>"
            },
            {
                "code": "42451",
                "title": "Grain and Field Bean Merchant Wholesalers",
                "description": "See industry description for 424510.<br>"
            },
            {
                "code": "424510",
                "title": "Grain and Field Bean Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of grains, such as corn, wheat, oats, barley, and unpolished rice; dry beans; and soybeans and other inedible beans.  Included in this industry are establishments primarily engaged in operating country or terminal grain elevators primarily for the purpose of wholesaling.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42452",
                "title": "Livestock Merchant Wholesalers",
                "description": "See industry description for 424520.<br>"
            },
            {
                "code": "424520",
                "title": "Livestock Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of livestock (except horses and mules).<br><br>Illustrative Examples:<br><br>Cattle merchant wholesalers<br>Hogs merchant wholesalers<br>Goats merchant wholesalers<br>Sheep merchant wholesalers<br><br><br>Cross-References."
            },
            {
                "code": "42459",
                "title": "Other Farm Product Raw Material Merchant Wholesalers",
                "description": "See industry description for 424590.<br>"
            },
            {
                "code": "424590",
                "title": "Other Farm Product Raw Material Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of farm products (except grain and field beans, livestock, raw milk, live poultry, and fresh fruits and vegetables).<br><br>Illustrative Examples:<br><br>Chicks, live, merchant wholesalers<br>Hemp merchant wholesalers<br>Mules merchant wholesalers<br>Hides merchant wholesalers<br>Raw cotton merchant wholesalers<br>Horses merchant wholesalers<br>Nuts, unprocessed or shelled only, merchant wholesalers<br>Raw pelts merchant wholesalers<br>Leaf tobacco merchant wholesalers<br>Sod merchant wholesalers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4246",
                "title": "Chemical and Allied Products Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of chemicals, plastics materials and basic forms and shapes, and allied products.<br>"
            },
            {
                "code": "42461",
                "title": "Plastics Materials and Basic Forms and Shapes Merchant Wholesalers",
                "description": "See industry description for 424610.<br>"
            },
            {
                "code": "424610",
                "title": "Plastics Materials and Basic Forms and Shapes Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of plastics materials and resins, and unsupported plastics film, sheet, sheeting, rod, tube, and other basic forms and shapes.<br>"
            },
            {
                "code": "42469",
                "title": "Other Chemical and Allied Products Merchant Wholesalers",
                "description": "See industry description for 424690.<br>"
            },
            {
                "code": "424690",
                "title": "Other Chemical and Allied Products Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of chemicals and allied products (except agricultural and medicinal chemicals, paints and varnishes, fireworks, and plastics materials and basic forms and shapes).<br><br>Illustrative Examples:<br><br>Acids merchant wholesalers<br>Industrial chemicals merchant wholesalers<br>Automotive chemicals (except lubricating oils and greases) merchant wholesalers<br>Industrial salts merchant wholesalers<br>Dyestuffs merchant wholesalers<br>Rosins merchant wholesalers<br>Explosives (except ammunition and fireworks) merchant wholesalers<br>Turpentine merchant wholesalers <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4247",
                "title": "Petroleum and Petroleum Products Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of petroleum and petroleum products, including liquefied petroleum gas.<br>"
            },
            {
                "code": "42471",
                "title": "Petroleum Bulk Stations and Terminals",
                "description": "See industry description for 424710.<br>"
            },
            {
                "code": "424710",
                "title": "Petroleum Bulk Stations and Terminals",
                "description": "This industry comprises establishments with bulk liquid storage facilities primarily engaged in the merchant wholesale distribution of crude petroleum and petroleum products, including liquefied petroleum gas.<br><br>Cross-References."
            },
            {
                "code": "42472",
                "title": "Petroleum and Petroleum Products Merchant Wholesalers (except Bulk Stations and Terminals)",
                "description": "See industry description for 424720.<br>"
            },
            {
                "code": "424720",
                "title": "Petroleum and Petroleum Products Merchant Wholesalers (except Bulk Stations and Terminals)",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of petroleum and petroleum products (except from bulk liquid storage facilities).<br><br>Illustrative Examples:<br><br>Gasoline merchant wholesalers (except bulk stations, terminals)<br>Lubricating oil and grease merchant wholesalers (except bulk stations, terminals)<br>Bottled liquid petroleum gas merchant wholesalers<br>Fuel oil merchant wholesalers (except bulk stations, terminals)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "4248",
                "title": "Beer, Wine, and Distilled Alcoholic Beverage Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of beer, ale, wine, and/or distilled alcoholic beverages.<br>"
            },
            {
                "code": "42481",
                "title": "Beer and Ale Merchant Wholesalers",
                "description": "See industry description for 424810.<br>"
            },
            {
                "code": "424810",
                "title": "Beer and Ale Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of beer, ale, porter, and other fermented malt beverages.<br>"
            },
            {
                "code": "42482",
                "title": "Wine and Distilled Alcoholic Beverage Merchant Wholesalers",
                "description": "See industry description for 424820.<br>"
            },
            {
                "code": "424820",
                "title": "Wine and Distilled Alcoholic Beverage Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of wine, distilled alcoholic beverages, and/or neutral spirits and ethyl alcohol used in blended wines and distilled liquors.<br>"
            },
            {
                "code": "4249",
                "title": "Miscellaneous Nondurable Goods Merchant Wholesalers",
                "description": "This industry group comprises establishments primarily engaged in the merchant wholesale distribution of nondurable goods, such as farm supplies; books, periodicals, and newspapers; flowers; nursery stock; paints; varnishes; tobacco and tobacco products; and other miscellaneous nondurable goods, such as cut Christmas trees and pet supplies.<br>"
            },
            {
                "code": "42491",
                "title": "Farm Supplies Merchant Wholesalers",
                "description": "See industry description for 424910.<br>"
            },
            {
                "code": "424910",
                "title": "Farm Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of farm supplies, such as animal feeds, fertilizers, agricultural chemicals, pesticides, plant seeds, and plant bulbs.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42492",
                "title": "Book, Periodical, and Newspaper Merchant Wholesalers",
                "description": "See industry description for 424920.<br>"
            },
            {
                "code": "424920",
                "title": "Book, Periodical, and Newspaper Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of books, periodicals, and newspapers.<br>"
            },
            {
                "code": "42493",
                "title": "Flower, Nursery Stock, and Florists' Supplies Merchant Wholesalers",
                "description": "See industry description for 424930.<br>"
            },
            {
                "code": "424930",
                "title": "Flower, Nursery Stock, and Florists' Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of flowers, florists' supplies, and/or nursery stock (except plant seeds and plant bulbs).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42494",
                "title": "Tobacco Product and Electronic Cigarette Merchant Wholesalers",
                "description": "See industry description for 424940.<br>"
            },
            {
                "code": "424940",
                "title": "Tobacco Product and Electronic Cigarette Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of tobacco products, such as cigarettes, snuff, cigars, pipe tobacco, and electronic cigarettes (including related parts and accessories).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "42495",
                "title": "Paint, Varnish, and Supplies Merchant Wholesalers",
                "description": "See industry description for 424950.<br>"
            },
            {
                "code": "424950",
                "title": "Paint, Varnish, and Supplies Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of paints, varnishes, and similar coatings; pigments; wallpaper; and supplies, such as paintbrushes and rollers.<br><br>Cross-References."
            },
            {
                "code": "42499",
                "title": "Other Miscellaneous Nondurable Goods Merchant Wholesalers",
                "description": "See industry description for 424990.<br>"
            },
            {
                "code": "424990",
                "title": "Other Miscellaneous Nondurable Goods Merchant Wholesalers",
                "description": "This industry comprises establishments primarily engaged in the merchant wholesale distribution of nondurable goods (except printing and writing paper; stationery and office supplies; industrial and personal service paper; drugs and druggists' sundries; apparel, piece goods, and notions; grocery and related products; farm product raw materials; chemical and allied products; petroleum and petroleum products; beer, wine, and distilled alcoholic beverages; farm supplies; books, periodicals, and newspapers; flowers, nursery stock, and florists' supplies; tobacco and tobacco products; and paint, varnishes, wallpaper, and supplies).<br><br>Illustrative Examples:<br><br>Artists' supplies merchant wholesalers<br>Pet supplies (except pet food) merchant wholesalers<br>Burlap merchant wholesalers<br>Statuary (except religious) merchant wholesalers<br>Christmas trees (e.g., artificial, cut) merchant wholesalers<br>Textile bags merchant wholesalers<br>Industrial yarns merchant wholesalers<br><br><br>Cross-References. Establishments prim"
            },
            {
                "code": "425",
                "title": "Wholesale Trade Agents and Brokers",
                "description": "The Wholesale Trade Agents and Brokers subsector groups establishments that arrange for the sale of goods owned by others, generally on a fee or commission basis.  They act on behalf of the buyers and sellers of goods to facilitate wholesale trade.<br>"
            },
            {
                "code": "4251",
                "title": "Wholesale Trade Agents and Brokers",
                "description": null
            },
            {
                "code": "42512",
                "title": "Wholesale Trade Agents and Brokers",
                "description": "See industry description for 425120.<br>"
            },
            {
                "code": "425120",
                "title": "Wholesale Trade Agents and Brokers",
                "description": "This industry comprises wholesale trade agents and brokers acting on behalf of buyers or sellers in the wholesale distribution of goods, including those that use the Internet or other electronic means to bring together buyers and sellers.  Agents and brokers do not take title to the goods being sold but rather receive a commission or fee for their service.  Agents and brokers for all durable and nondurable goods are included in this industry.<br><br>Illustrative Examples:<br><br>Independent sales representatives<br>Manufacturers' sales representatives<br>Group purchasing organizations (acting as agents for goods distribution)<br><br><br>Cross-References."
            }
        ],
        "subsectors_count": 161
    },
    {
        "sectorCode": "44-45",
        "sectorDescription": "Retail Trade",
        "subsectors": [],
        "subsectors_count": 0
    },
    {
        "sectorCode": "48-49",
        "sectorDescription": "Transportation and Warehousing",
        "subsectors": [],
        "subsectors_count": 0
    },
    {
        "sectorCode": "51",
        "sectorDescription": "Information",
        "subsectors": [
            {
                "code": "51",
                "title": "Information<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Information sector comprises establishments engaged in the following processes: (a) producing and distributing information and cultural products, (b) providing the means to transmit or distribute these products as well as data or communications, and (c) processing data.<br><br>The main components of this sector are motion picture and sound recording industries; publishing industries, including software publishing; broadcasting and content providers; telecommunications industries; computing infrastructure providers, data processing, Web hosting, and related services; and Web search portals, libraries, archives, and other information services.<br><br>The unique characteristics of information and cultural products, and of the processes involved in their production and distribution, distinguish the Information sector from the goods-producing and service-producing sectors.  Some of these characteristics are:<br><br>1. Unlike traditional goods, an ''information or cultural product,'"
            },
            {
                "code": "512",
                "title": "Motion Picture and Sound Recording Industries<sup>T</sup>",
                "description": "Industries in the Motion Picture and Sound Recording Industries subsector group establishments involved in the production and distribution of motion pictures and sound recordings.  While producers and distributors of motion pictures and sound recordings issue works for sale as traditional publishers do, the processes are sufficiently different to warrant placing establishments engaged in these activities in a separate subsector.  Production is typically a complex process that involves several distinct types of establishments that are engaged in activities, such as contracting with performers, creating the film or sound content, and providing technical postproduction services.  Film distribution is often to exhibitors, such as theaters and broadcasters, rather than through the wholesale and retail distribution chain.  When the product is in a mass-produced form, NAICS treats production and distribution as the major economic activity as it does in the Publishing Industries subsector, rat"
            },
            {
                "code": "5121",
                "title": "Motion Picture and Video Industries<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in the production and/or distribution of motion pictures, videos, television programs, or commercials; in the exhibition of motion pictures; or in the provision of postproduction and related services.<br>"
            },
            {
                "code": "51211",
                "title": "Motion Picture and Video Production<sup>T</sup>",
                "description": "See industry description for 512110.<br>"
            },
            {
                "code": "512110",
                "title": "Motion Picture and Video Production",
                "description": "This industry comprises establishments primarily engaged in producing, or producing and distributing motion pictures, videos, television programs, or television commercials.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "51212",
                "title": "Motion Picture and Video Distribution<sup>T</sup>",
                "description": "See industry description for 512120.<br>"
            },
            {
                "code": "512120",
                "title": "Motion Picture and Video Distribution",
                "description": "This industry comprises establishments primarily engaged in acquiring distribution rights and distributing film and video productions to motion picture theaters, television networks and stations, other media broadcast and streaming outlets, and exhibitors.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "51213",
                "title": "Motion Picture and Video Exhibition<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in operating motion picture theaters and/or exhibiting motion pictures or videos at film festivals, and so forth.<br>"
            },
            {
                "code": "512131",
                "title": "Motion Picture Theaters (except Drive-Ins)",
                "description": "This U.S. industry comprises establishments primarily engaged in operating motion picture theaters (except drive-ins) and/or exhibiting motion pictures or videos at film festivals, and so forth.<br>"
            },
            {
                "code": "512132",
                "title": "Drive-In Motion Picture Theaters",
                "description": "This U.S. industry comprises establishments primarily engaged in operating drive-in motion picture theaters.<br>"
            },
            {
                "code": "51219",
                "title": "Postproduction Services and Other Motion Picture and Video Industries<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing postproduction services and other services to the motion picture industry, including specialized motion picture or video postproduction services, such as editing, film/tape transfers, titling, subtitling, credits, closed captioning, and computer-produced graphics, animation and special effects, as well as developing and processing motion picture film.<br><br>Illustrative Examples:<br><br>Motion picture film laboratories<br>Stock footage film libraries<br>Postproduction facilities<br>Teleproduction services <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "512191",
                "title": "Teleproduction and Other Postproduction Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing specialized motion picture or video postproduction services, such as editing, film/tape transfers, subtitling, credits, closed captioning, and animation and special effects.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "512199",
                "title": "Other Motion Picture and Video Industries",
                "description": "This U.S. industry comprises establishments primarily engaged in providing motion picture and video services (except motion picture and video production, distribution, exhibition, and teleproduction and other postproduction services).<br><br>Illustrative Examples:<br><br>Motion picture film laboratories<br>Stock footage film libraries<br>Film preservation services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5122",
                "title": "Sound Recording Industries<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in producing and distributing musical recordings, publishing music, or providing sound recording and related services.<br>"
            },
            {
                "code": "51223",
                "title": "Music Publishers<sup>T</sup>",
                "description": "See industry description for 512230.<br>"
            },
            {
                "code": "512230",
                "title": "Music Publishers",
                "description": "This industry comprises establishments primarily engaged in acquiring and registering copyrights for musical compositions in accordance with law and promoting and authorizing the use of these compositions in recordings, radio, television, motion pictures, live performances, print, or other media.  Establishments in this industry represent the interests of the songwriter or other owners of musical compositions to produce revenues from the use of such works, generally through licensing agreements.  These establishments may own the copyright or act as administrator of the music copyrights on behalf of copyright owners.  Publishers of music books and sheet music are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "51224",
                "title": "Sound Recording Studios<sup>T</sup>",
                "description": "See industry description for 512240.<br>"
            },
            {
                "code": "512240",
                "title": "Sound Recording Studios",
                "description": "This industry comprises establishments primarily engaged in providing the facilities and technical expertise for sound recording in a studio.  This industry includes establishments that provide audio production and postproduction services to produce master recordings.  These establishments may provide audio services for film, television, and video productions.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "51225",
                "title": "Record Production and Distribution<sup>T</sup>",
                "description": "See industry description for 512250.<br>"
            },
            {
                "code": "512250",
                "title": "Record Production and Distribution",
                "description": "This industry comprises establishments primarily engaged in record production and/or releasing, promoting, and distributing sound recordings to wholesalers, retailers, or directly to the public.  These establishments contract with artists, arrange and finance the production of original master recordings, and/or produce master recordings themselves, such as digital music and compact discs.  Establishments in this industry hold the copyright to the master recording, or obtain reproduction and distribution rights to master recordings produced by others, and derive most of their revenues from the sales, leasing, licensing, or distribution of master recordings.  <br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "51229",
                "title": "Other Sound Recording Industries<sup>T</sup>",
                "description": "See industry description for 512290.<br>"
            },
            {
                "code": "512290",
                "title": "Other Sound Recording Industries",
                "description": "This industry comprises establishments primarily engaged in providing sound recording services (except record production, distribution, music publishing, and sound recording in a studio).  Establishments in this industry provide services, such as the audio recording of meetings and conferences.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "513",
                "title": "Publishing Industries<sup>T</sup>",
                "description": "Industries in the Publishing Industries subsector group establishments engaged in publishing newspapers, magazines, other periodicals, books, directories, and software.  In general, establishments known as publishers issue copies of works for which they usually possess copyright.  Works may be in one or more formats including print form, CD-ROM, proprietary electronic networks, or exclusively on the Internet.  Publishers may publish works originally created by others for which they have obtained the rights and/or works that they have created in-house.  Publishers may publish only and license rights to others to distribute their content, or they may publish and distribute content they create or own.  Software publishing is included here because the activity, creation of a copyrighted product and bringing it to market, is equivalent to the creation process for other types of intellectual products.<br><br>In NAICS, publishing--the reporting, writing, editing, and other processes that are requir"
            },
            {
                "code": "5131",
                "title": "Newspaper, Periodical, Book, and Directory Publishers<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in publishing newspapers, magazines, other periodicals, books, directories and mailing lists, and other works, such as calendars, greeting cards, and maps.  These works are characterized by the intellectual creativity required in their development and are usually protected by copyright.  Publishers distribute or arrange for the distribution of these works.<br><br>Publishing establishments may create the works in-house, or contract for, purchase, or compile works that were originally created by others.  These works may be published in one or more formats, such as print and/or electronic form, including proprietary electronic networks or exclusively on the Internet.  Establishments in this industry may print, reproduce, or offer direct access to the works themselves or may arrange with others to carry out such functions.<br><br>Establishments that both print and publish may fill excess capacity with commercial or job printing.  However, "
            },
            {
                "code": "51311",
                "title": "Newspaper Publishers<sup>T</sup>",
                "description": "See industry description for 513110.<br>"
            },
            {
                "code": "513110",
                "title": "Newspaper Publishers",
                "description": "This industry comprises establishments known as newspaper publishers.  Establishments in this industry carry out operations necessary for producing and distributing newspapers, including gathering news; writing news columns, feature stories, and editorials; and selling and preparing advertisements.  These establishments may publish newspapers in print or electronic form, including exclusively on the Internet.<br><br>Cross-References."
            },
            {
                "code": "51312",
                "title": "Periodical Publishers<sup>T</sup>",
                "description": "See industry description for 513120.<br>"
            },
            {
                "code": "513120",
                "title": "Periodical Publishers",
                "description": "This industry comprises establishments known either as magazine publishers or periodical publishers.  These establishments carry out the operations necessary for producing and distributing magazines and other periodicals, such as gathering, writing, and editing articles, and selling and preparing advertisements.  These establishments may publish magazines and other periodicals in print or electronic form, including exclusively on the Internet.<br><br>Illustrative Examples:<br><br>Comic book publishers<br>Magazine publishers<br>Scholarly journal publishers<br>Newsletter publishers<br>Trade journal publishers<br><br><br>Cross-References."
            },
            {
                "code": "51313",
                "title": "Book Publishers<sup>T</sup>",
                "description": "See industry description for 513130.<br>"
            },
            {
                "code": "513130",
                "title": "Book Publishers",
                "description": "This industry comprises establishments known as book publishers.  Establishments in this industry carry out design, editing, and marketing activities necessary for producing and distributing books.  These establishments may publish books in print, electronic, or audio form, including exclusively on the Internet.<br><br>Illustrative Examples:<br><br>Atlas publishers<br>Religious book publishers<br>Graphic novel publishers<br>School textbook publishers<br>Encyclopedia publishers<br>Technical manual publishers<br>Map publishers <br>Travel guide book publishers<br><br><br>Cross-References."
            },
            {
                "code": "51314",
                "title": "Directory and Mailing List Publishers<sup>T</sup>",
                "description": "See industry description for 513140.<br>"
            },
            {
                "code": "513140",
                "title": "Directory and Mailing List Publishers",
                "description": "This industry comprises establishments primarily engaged in publishing directories, mailing lists, and collections or compilations of fact.  The products are typically protected in their selection, arrangement and/or presentation.  Examples are lists of mailing addresses, telephone directories, directories of businesses, collections or compilations of proprietary drugs or legal case results, compilations of public records, etc.  These establishments may publish directories and mailing lists in print or electronic form, including exclusively on the Internet.<br><br>Illustrative Examples:<br><br>Business directory publishers<br>Mailing list publishers<br>Directory publishers<br>Telephone directory publishers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "51319",
                "title": "Other Publishers<sup>T</sup>",
                "description": "This industry comprises establishments known as publishers (except newspaper, magazine, book, directory, mailing list, music, and software publishers).  These establishments may publish works in print or electronic form, including exclusively on the Internet.<br><br>Illustrative Examples:<br><br>Art publishers<br>Greeting card publishers<br>Calendar publishers<br><br><br>Cross-References."
            },
            {
                "code": "513191",
                "title": "Greeting Card Publishers",
                "description": "This U.S. industry comprises establishments primarily engaged in publishing greeting cards.  These establishments may publish works in print or electronic form, including exclusively on the Internet.<br><br>Cross-References."
            },
            {
                "code": "513199",
                "title": "All Other Publishers",
                "description": "This U.S. industry comprises establishments generally known as publishers (except newspaper, magazine, book, directory, mailing list, music, software, and greeting card publishers).  These establishments may publish works in print or electronic form, including exclusively on the Internet.<br><br>Illustrative Examples:<br><br>Art publishers<br>Calendar publishers<br><br><br>Cross-References."
            },
            {
                "code": "5132",
                "title": "Software Publishers<sup>T</sup>",
                "description": null
            },
            {
                "code": "51321",
                "title": "Software Publishers<sup>T</sup>",
                "description": "See industry description for 513210.<br>"
            },
            {
                "code": "513210",
                "title": "Software Publishers",
                "description": "This industry comprises establishments primarily engaged in software publishing.  Establishments in this industry carry out operations necessary for producing and distributing computer software, such as designing, providing documentation, assisting in installation, and providing support services to software purchasers.  These establishments may design, develop, and publish, or publish only.  These establishments may publish and distribute software through subscriptions and/or downloads. <br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "516",
                "title": "Broadcasting and Content Providers<sup>T</sup>",
                "description": "Industries in the Broadcasting and Content Providers subsector include establishments that create content or acquire the right to distribute content and subsequently broadcast or distribute that content.  The industry groups (Radio and Television Broadcasting Stations and Media Streaming Distribution Services, Social Networks, and Other Media Networks and Content Providers) are based on differences in the methods of communication and the nature of services provided.  The Radio and Television Broadcasting Stations industry group includes establishments that operate radio or television broadcasting stations for the programming and transmission of programs to the public.  Programming may originate in their own studio, from an affiliated network, or from external sources.  The Media Streaming Distribution Services, Social Networks, and Other Media Networks and Content Providers industry group includes establishments providing media streaming distribution services, operating social network "
            },
            {
                "code": "5161",
                "title": "Radio and Television Broadcasting Stations<sup>T</sup>",
                "description": "This industry group comprises establishments operating radio or television broadcasting stations for the programming and transmission of programs to the public.  Programming may originate in their own studio, from an affiliated network, or from external sources.<br>"
            },
            {
                "code": "51611",
                "title": "Radio Broadcasting Stations<sup>T</sup>",
                "description": "See industry description for 516110.<br>"
            },
            {
                "code": "516110",
                "title": "Radio Broadcasting Stations",
                "description": "This industry comprises establishments primarily engaged in broadcasting aural programs by radio to the public.  These establishments operate radio broadcasting studios and facilities for the programming and transmission of programs to the public.  Programming may originate in their own studio, from an affiliated network, or from external sources.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "51612",
                "title": "Television Broadcasting Stations<sup>T</sup>",
                "description": "See industry description for 516120.<br>"
            },
            {
                "code": "516120",
                "title": "Television Broadcasting Stations",
                "description": "This industry comprises establishments primarily engaged in broadcasting images together with sound.  These establishments operate television broadcasting studios and facilities for the programming and transmission of programs to the public.  Programming may originate in their own studio, from an affiliated network, or from external sources.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5162",
                "title": "Media Streaming Distribution Services, Social Networks, and Other Media Networks and Content Providers<sup>T</sup>",
                "description": null
            },
            {
                "code": "51621",
                "title": "Media Streaming Distribution Services, Social Networks, and Other Media Networks and Content Providers<sup>T</sup>",
                "description": "See industry description for 516210.<br>"
            },
            {
                "code": "516210",
                "title": "Media Streaming Distribution Services, Social Networks, and Other Media Networks and Content Providers",
                "description": "This industry comprises establishments primarily providing media streaming distribution services, operating social network sites, operating media broadcasting and cable television networks, and supplying information, such as news reports, articles, pictures, and features, to the news media.  These establishments distribute textual, audio, and/or video content of general or specific interest.<br><br>Illustrative Examples:<br><br>Broadcasting networks, radio<br>Broadcasting networks, television<br>Cable broadcasting networks<br>Cable television networks<br>Internet broadcasting<br>Pay-per-view cable programming<br>Satellite radio networks<br>Satellite television networks<br>Social network sites, Internet<br>Stand-alone streaming services<br>Subscription Video on Demand (SVOD) services<br>Syndicates, news<br>Virtual Multichannel Video Programming Distributors (vMVPDs)<br>Web broadcasting<br>Wiki sites, Internet <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "517",
                "title": "Telecommunications<sup>T</sup>",
                "description": "Industries in the Telecommunications subsector group establishments that provide telecommunications and the services related to that activity (e.g., telephony, including Voice over Internet Protocol (VoIP); cable and satellite television distribution services; Internet access; telecommunications reselling services).  The Telecommunications subsector is primarily engaged in operating and/or providing access to facilities for the transmission of voice, data, text, sound, and video.  Transmission facilities may be based on a single technology or a combination of technologies.<br><br>Establishments primarily engaged as independent contractors in the installation and maintenance of telecommunications systems are classified in Sector 23, Construction.<br>"
            },
            {
                "code": "5171",
                "title": "Wired and Wireless Telecommunications (except Satellite)",
                "description": "This industry group comprises establishments primarily engaged in (1) operating transmission facilities and infrastructure that they own and/or lease, and providing telecommunications services using wired and wireless telecommunications networks; (2) reselling wired and wireless telecommunications services (except satellite); and (3) acting as agents for wireless telecommunications services.<br>"
            },
            {
                "code": "51711",
                "title": "Wired and Wireless Telecommunications Carriers (except Satellite)",
                "description": "This industry comprises establishments primarily engaged in operating, maintaining, and/or providing access to switching and transmission facilities and infrastructure that they own and/or lease for the transmission of voice, data, text, sound, and video using wired and wireless telecommunications networks (except satellite).  Transmission facilities may be based on a single technology or a combination of technologies.  By exception, establishments providing satellite television distribution services using facilities and infrastructure that they operate are included in this industry.<br><br>Illustrative Examples:<br><br>Broadband Internet service providers, wired (e.g., cable, DSL)<br>Cable television distribution services<br>Cellular telephone service carriers<br>Direct-to-home satellite system (DTH) services<br>Satellite television distribution systems<br>Telecommunications carriers, wired and wireless<br>VoIP service providers, using own operated wired telecommunications infrastructure<br>Wireless Internet service "
            },
            {
                "code": "517111",
                "title": "Wired Telecommunications Carriers",
                "description": "This U.S. industry comprises establishments primarily engaged in operating, maintaining, and/or providing access to transmission facilities and infrastructure that they own and/or lease for the transmission of voice, data, text, sound, and video using wired telecommunications networks.  Transmission facilities may be based on a single technology or a combination of technologies.  Establishments in this industry use the wired telecommunications network facilities that they operate to provide a variety of services, such as wired telephony services, including VoIP services; wired (cable) audio and video programming distribution; and wired broadband Internet services.  By exception, establishments providing satellite television distribution services using facilities and infrastructure that they operate are included in this industry.<br><br>Illustrative Examples:<br><br>Broadband Internet service providers, wired (e.g., cable, DSL)<br>Cable television distribution services<br>Closed-circuit television (CCTV)"
            },
            {
                "code": "517112",
                "title": "Wireless Telecommunications Carriers (except Satellite)",
                "description": "This U.S. industry comprises establishments primarily engaged in operating and maintaining switching and transmission facilities to provide communications via the airwaves.  Establishments in this industry have spectrum licenses and provide services using that spectrum, such as cellular phone services, paging services, wireless Internet access, and wireless video services.<br><br>Illustrative Examples:<br><br>Cellular telephone service carriers<br>Wireless Internet service providers, except satellite<br>Paging services, except satellite<br>Wireless telephone communications carriers, except satellite <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "51712",
                "title": "Telecommunications Resellers and Agents for Wireless Telecommunication Services",
                "description": "This industry comprises establishments primarily engaged in (1) purchasing access and network capacity from owners and operators of telecommunications networks and reselling wired and wireless telecommunications services to businesses and households (except satellite telecommunications) or (2) acting as agents for wireless telecommunications carriers and resellers, selling wireless plans on a commission basis.  Establishments in this industry do not operate as telecommunications carriers.  Mobile virtual network operators (MVNOs) are included in this industry.<br><br>Illustrative Examples:<br><br>Agents for wireless telecommunications carriers<br>Cellular telephone stores, selling cellular phone service plans on an agent basis<br>Mobile phone stores, selling mobile phone service plans on an agent basis<br>Wired telecommunications resellers<br>Wireless phone service plan sales agents, selling on behalf of wireless telecommunications carriers<br>Wireless telecommunications resellers (except satellite telecommunica"
            },
            {
                "code": "517121",
                "title": "Telecommunications Resellers",
                "description": "This U.S. industry comprises establishments engaged in purchasing access and network capacity from owners and operators of telecommunications networks and reselling wired and wireless telecommunications services to businesses and households (except satellite telecommunications and agents for wireless telecommunications services).  Establishments in this industry resell telecommunications; they do not operate transmission facilities and infrastructure.<br><br>Illustrative Examples:<br><br>Mobile virtual network operators (MVNOs) (except agents)<br>Pre-paid calling cards, telecommunications resellers<br>Wired telecommunications resellers<br>Wireless telecommunications resellers (except satellite telecommunications and agents) <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "517122",
                "title": "Agents for Wireless Telecommunications Services",
                "description": "This U.S. industry comprises establishments primarily engaged in acting as agents for wireless telecommunications carriers and resellers, selling wireless plans on a commission basis.<br><br>Illustrative Examples:<br><br>Agents for mobile virtual network operators (MVNOs)<br>Agents for wireless telecommunications carriers<br>Cellular telephone stores, selling cellular phone service plans on an agent basis<br>Mobile phone stores, selling mobile phone service plans on an agent basis<br>Wireless phone service plan sales agents, selling on behalf of wireless telecommunications carriers  <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5174",
                "title": "Satellite Telecommunications<sup>T</sup>",
                "description": null
            },
            {
                "code": "51741",
                "title": "Satellite Telecommunications<sup>T</sup>",
                "description": "See industry description for 517410.<br>"
            },
            {
                "code": "517410",
                "title": "Satellite Telecommunications",
                "description": "This industry comprises establishments primarily engaged in providing telecommunications services to other establishments in the telecommunications and broadcasting industries by forwarding and receiving communications signals via a system of satellites or reselling satellite telecommunications.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5178",
                "title": "All Other Telecommunications",
                "description": null
            },
            {
                "code": "51781",
                "title": "All Other Telecommunications",
                "description": "See industry description for 517810.<br>"
            },
            {
                "code": "517810",
                "title": "All Other Telecommunications",
                "description": "This industry comprises establishments primarily engaged in providing specialized telecommunications services, such as satellite tracking, communications telemetry, and radar station operation.  This industry also includes establishments primarily engaged in providing satellite terminal stations and associated facilities connected with one or more terrestrial systems and capable of transmitting telecommunications to, and receiving telecommunications from, satellite systems.  Establishments providing Internet services or Voice over Internet protocol (VoIP) services via client-supplied telecommunications connections are also included in this industry.  Establishments in this industry do not operate as telecommunications carriers.<br><br>Illustrative Examples:<br><br>Dial-up Internet service providers<br>Internet service providers, using client-supplied telecommunications connections (e.g., dial-up ISPs)<br>Satellite tracking stations<br>VoIP service providers, using client-supplied telecommunications connect"
            },
            {
                "code": "518",
                "title": "Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services<sup>T</sup>",
                "description": "The Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services subsector groups establishments that provide computing infrastructure, data processing services, Web hosting services (except software publishing), and related services, including streaming support services (except streaming distribution services).<br>"
            },
            {
                "code": "5182",
                "title": "Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "51821",
                "title": "Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services<sup>T</sup>",
                "description": "See industry description for 518210.<br>"
            },
            {
                "code": "518210",
                "title": "Computing Infrastructure Providers, Data Processing, Web Hosting, and Related Services",
                "description": "This industry comprises establishments primarily engaged in providing computing infrastructure, data processing services, Web hosting services (except software publishing), and related services, including streaming support services (except streaming distribution services).  Data processing establishments provide complete processing and specialized reports from data supplied by clients or provide automated data processing and data entry services.<br><br>Illustrative Examples:<br><br>Application hosting<br>Cloud storage services<br>Computer data storage services<br>Computing platform infrastructure provision<br>Infrastructure as a service (IaaS)<br>Optical scanning services<br>Platform as a service (PaaS)<br>Video and audio technical streaming support services<br>Web hosting<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "519",
                "title": "Web Search Portals, Libraries, Archives, and Other Information Services<sup>T</sup>",
                "description": "Industries in the Web Search Portals, Libraries, Archives, and Other Information Services subsector group establishments supplying information, storing and providing access to information, searching and retrieving information, and operating Web sites that use search engines to allow for searching information on the Internet.  The main components of the subsector are libraries, archives, and Web search portals.<br>"
            },
            {
                "code": "5192",
                "title": "Web Search Portals, Libraries, Archives, and Other Information Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "51921",
                "title": "Libraries and Archives<sup>T</sup>",
                "description": "See industry description for 519210.<br>"
            },
            {
                "code": "519210",
                "title": "Libraries and Archives",
                "description": "This industry comprises establishments primarily engaged in providing library or archive services.  These establishments are engaged in maintaining collections of documents (e.g., books, journals, newspapers, and music) and facilitating the use of such documents (recorded information regardless of its physical form and characteristics) as required to meet the informational, research, educational, or recreational needs of their user.  These establishments may also acquire, research, store, preserve, and generally make accessible to the public historical documents, photographs, maps, audio material, audiovisual material, and other archival material of historical interest.  All or portions of these collections may be accessible electronically.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "51929",
                "title": "Web Search Portals and All Other Information Services<sup>T</sup>",
                "description": "See industry description for 519290.<br>"
            },
            {
                "code": "519290",
                "title": "Web Search Portals and All Other Information Services",
                "description": "This industry comprises establishments primarily engaged in operating Web sites that use a search engine to generate and maintain extensive databases of Internet addresses and content in an easily searchable format (and known as Web search portals) or providing other information services not elsewhere classified.  Establishments known as Web search portals often provide additional Internet services, such as email, connections to other Web sites, auctions, news, and other limited content.<br><br>Illustrative Examples:<br><br>News clipping services<br>Telephone-based recorded information services<br>Stock photo agencies<br>Web search portals <br><br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 71
    },
    {
        "sectorCode": "52",
        "sectorDescription": "Finance and Insurance",
        "subsectors": [
            {
                "code": "52",
                "title": "Finance and Insurance<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Finance and Insurance sector comprises establishments primarily engaged in financial transactions (transactions involving the creation, liquidation, or change in ownership of financial assets) and/or in facilitating financial transactions.  Three principal types of activities are identified:<br><br>1.  Raising funds by taking deposits and/or issuing securities and, in the process, incurring liabilities.  Establishments engaged in this activity use raised funds to acquire financial assets by making loans and/or purchasing securities.  Putting themselves at risk, they channel funds from lenders to borrowers and transform or repackage the funds with respect to maturity, scale, and risk.  This activity is known as financial intermediation.<br><br>2.  Pooling of risk by underwriting insurance and annuities.  Establishments engaged in this activity collect fees, insurance premiums, or annuity considerations; build up reserves; invest those reserves; and make contractual paymen"
            },
            {
                "code": "521",
                "title": "Monetary Authorities-Central Bank<sup>T</sup>",
                "description": "The Monetary Authorities-Central Bank subsector groups establishments that engage in performing central banking functions, such as issuing currency, managing the Nation's money supply and international reserves, holding deposits that represent the reserves of other banks and other central banks, and acting as a fiscal agent for the central government.<br>"
            },
            {
                "code": "5211",
                "title": "Monetary Authorities-Central Bank<sup>T</sup>",
                "description": null
            },
            {
                "code": "52111",
                "title": "Monetary Authorities-Central Bank<sup>T</sup>",
                "description": "See industry description for 521110.<br>"
            },
            {
                "code": "521110",
                "title": "Monetary Authorities-Central Bank",
                "description": "This industry comprises establishments primarily engaged in performing central banking functions, such as issuing currency, managing the Nation's money supply and international reserves, holding deposits that represent the reserves of other banks and other central banks, and acting as a fiscal agent for the central government.<br><br>Cross-References."
            },
            {
                "code": "522",
                "title": "Credit Intermediation and Related Activities<sup>T</sup>",
                "description": "Industries in the Credit Intermediation and Related Activities subsector group establishments that (1) lend funds raised from depositors; (2) lend funds raised from credit market borrowing; or (3) facilitate the lending of funds or issuance of credit by engaging in such activities as mortgage and loan brokerage, clearinghouse and reserve services, and check cashing services.<br>"
            },
            {
                "code": "5221",
                "title": "Depository Credit Intermediation",
                "description": "This industry group comprises establishments primarily engaged in accepting deposits (or share deposits) and in lending funds from these deposits.  Within this group, industries are defined on the basis of differences in the types of deposit liabilities assumed and in the nature of the credit extended.<br>"
            },
            {
                "code": "52211",
                "title": "Commercial Banking",
                "description": "See industry description for 522110.<br>"
            },
            {
                "code": "522110",
                "title": "Commercial Banking",
                "description": "This industry comprises establishments primarily engaged in accepting demand and other deposits and making commercial, industrial, and consumer loans.  Commercial banks and branches of foreign banks are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "52213",
                "title": "Credit Unions",
                "description": "See industry description for 522130.<br>"
            },
            {
                "code": "522130",
                "title": "Credit Unions",
                "description": "This industry comprises establishments primarily engaged in accepting members' share deposits in cooperatives that are organized to offer consumer loans to their members.<br>"
            },
            {
                "code": "52218",
                "title": "Savings Institutions and Other Depository Credit Intermediation",
                "description": "See industry description for 522180.<br>"
            },
            {
                "code": "522180",
                "title": "Savings Institutions and Other Depository Credit Intermediation",
                "description": "This industry comprises establishments primarily engaged in accepting deposits, making mortgage, real estate, and other consumer and commercial loans, and investing in high-grade securities (except commercial banking and credit unions).  Savings and loan associations, savings banks, private banks (i.e., unincorporated banks), and establishments known as industrial banks or Morris Plans and primarily engaged in accepting deposits are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5222",
                "title": "Nondepository Credit Intermediation",
                "description": "This industry group comprises establishments, both public (government-sponsored enterprises) and private, primarily engaged in extending credit or lending funds raised by credit market borrowing, such as issuing commercial paper or other debt instruments or by borrowing from other financial intermediaries.  Within this group, industries are defined on the basis of the type of credit being extended.<br>"
            },
            {
                "code": "52221",
                "title": "Credit Card Issuing",
                "description": "See industry description for 522210.<br>"
            },
            {
                "code": "522210",
                "title": "Credit Card Issuing",
                "description": "This industry comprises establishments primarily engaged in providing credit by issuing credit cards.  Credit card issuance provides the funds required to purchase goods and services in return for payment of the full balance or payments on an installment basis.  Credit card banks are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "52222",
                "title": "Sales Financing",
                "description": "See industry description for 522220.<br>"
            },
            {
                "code": "522220",
                "title": "Sales Financing",
                "description": "This industry comprises establishments primarily engaged in sales financing or sales financing in combination with leasing.  Sales financing establishments are primarily engaged in lending money for the purpose of providing collateralized goods through a contractual installment sales agreement, either directly from or through arrangements with dealers.<br><br>Cross-References."
            },
            {
                "code": "52229",
                "title": "Other Nondepository Credit Intermediation",
                "description": "This industry comprises establishments primarily engaged in making cash loans or extending credit through credit instruments (except credit cards and sales finance agreements).<br><br>Illustrative Examples:<br><br>Consumer finance companies (i.e., unsecured cash loans)<br>Mortgage companies <br>International trade financing<br>Secondary market financing<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "522291",
                "title": "Consumer Lending",
                "description": "This U.S. industry comprises establishments primarily engaged in making unsecured cash loans to consumers.<br><br>Illustrative Examples:<br><br>Finance companies (i.e., unsecured cash loans)<br>Personal credit institutions (i.e., unsecured cash loans)<br>Loan companies (i.e., consumer, personal, student, small)<br>Student loan companies<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "522292",
                "title": "Real Estate Credit",
                "description": "This U.S. industry comprises establishments primarily engaged in lending funds with real estate as collateral.<br><br>Illustrative Examples:<br><br>Home equity credit lending<br>Mortgage companies<br>Reverse mortgage lending<br>Mortgage banking (i.e., nondepository mortgage lending)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "522299",
                "title": "International, Secondary Market, and All Other Nondepository Credit Intermediation",
                "description": "This U.S. industry comprises (1) establishments primarily engaged in providing working capital funds to U.S. exporters, lending funds to foreign buyers of U.S. goods, and/or lending funds to domestic buyers of imported goods; (2) establishments primarily engaged in buying, pooling, and repackaging loans for sale to others on the secondary market; and (3) establishments primarily providing other nondepository credit (except credit card issuing, sales financing, consumer lending, and real estate credit).  Examples of types of lending in this industry are short-term inventory credit, agricultural lending (except real estate and sales financing), and consumer cash lending secured by personal property.<br><br>Illustrative Examples:<br><br>Commodity Credit Corporation<br>Factoring accounts receivable<br>Industrial banks (i.e., known as), nondepository<br>International trade financing<br>Morris Plans (i.e., known as), nondepository<br>Pawnshops<br>Secondary market financing<br><br><br>Cross-References."
            },
            {
                "code": "5223",
                "title": "Activities Related to Credit Intermediation",
                "description": "This industry group comprises establishments primarily engaged in facilitating credit intermediation by performing activities, such as arranging loans by bringing borrowers and lenders together and clearing checks and credit card transactions.<br>"
            },
            {
                "code": "52231",
                "title": "Mortgage and Nonmortgage Loan Brokers",
                "description": "See industry description for 522310.<br>"
            },
            {
                "code": "522310",
                "title": "Mortgage and Nonmortgage Loan Brokers",
                "description": "This industry comprises establishments primarily engaged in arranging loans by bringing borrowers and lenders together on a commission or fee basis.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "52232",
                "title": "Financial Transactions Processing, Reserve, and Clearinghouse Activities",
                "description": "See industry description for 522320.<br>"
            },
            {
                "code": "522320",
                "title": "Financial Transactions Processing, Reserve, and Clearinghouse Activities",
                "description": "This industry comprises establishments primarily engaged in providing one or more of the following: (1) financial transaction processing (except central bank); (2) reserve and liquidity services (except central bank); and/or (3) check or other financial instrument clearinghouse services (except central bank).<br><br>Illustrative Examples:<br><br>Automated clearinghouses, bank or check (except central bank)<br>Credit card processing services<br>Check clearing services (except central bank)<br>Electronic funds transfer services, including peer-to-peer payment services <br><br><br>Cross-References."
            },
            {
                "code": "52239",
                "title": "Other Activities Related to Credit Intermediation",
                "description": "See industry description for 522390.<br>"
            },
            {
                "code": "522390",
                "title": "Other Activities Related to Credit Intermediation",
                "description": "This industry comprises establishments primarily engaged in facilitating credit intermediation (except mortgage and loan brokerage; and financial transactions processing, reserve, and clearinghouse activities).<br><br>Illustrative Examples:<br><br>Check cashing services<br>Money order issuance services<br>Loan servicing<br>Travelers' check issuance services<br>Money transmission services<br>Payday lending services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "523",
                "title": "Securities, Commodity Contracts, and Other Financial Investments and Related Activities<sup>T</sup>",
                "description": "Industries in the Securities, Commodity Contracts, and Other Financial Investments and Related Activities subsector group establishments that are primarily engaged in one of the following: (1) underwriting securities issues and/or making markets for securities and commodities; (2) acting as agents (i.e., brokers) between buyers and sellers of securities and commodities; (3) providing securities and commodity exchange services; and (4) providing other services, such as managing portfolios of assets; providing investment advice; and trust, fiduciary, and custody services.<br>"
            },
            {
                "code": "5231",
                "title": "Securities and Commodity Contracts Intermediation and Brokerage<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in putting capital at risk in the process of underwriting securities issues or in making markets for securities and commodities; and those acting as agents and/or brokers between buyers and sellers of securities and commodities, usually charging a commission.<br>"
            },
            {
                "code": "52315",
                "title": "Investment Banking and Securities Intermediation",
                "description": "See industry description for 523150.<br>"
            },
            {
                "code": "523150",
                "title": "Investment Banking and Securities Intermediation",
                "description": "This industry comprises establishments primarily engaged in underwriting, originating, and/or maintaining markets for issues of securities, or acting as agents (i.e., brokers) between buyers and sellers in buying or selling securities on a commission or transaction fee basis.  Investment bankers act as principals (i.e., investors who buy or sell on their own account) in firm commitment transactions or act as agents in best effort and standby commitments.  This industry also includes establishments acting as principals in buying or selling securities generally on a spread basis, such as securities dealers or stock option dealers.<br><br>Illustrative Examples:<br><br>Bond dealing (i.e., acting as a principal in dealing securities to investors)<br>Mutual fund agencies (i.e., brokerages)<br>Securities brokerages<br>Securities underwriting<br>Stock brokerages<br>Stock options dealing<br><br><br>Cross-References."
            },
            {
                "code": "52316",
                "title": "Commodity Contracts Intermediation",
                "description": "See industry description for 523160.<br>"
            },
            {
                "code": "523160",
                "title": "Commodity Contracts Intermediation",
                "description": "This industry comprises establishments primarily engaged in acting as principals (i.e., investors who buy or sell for their own account) in buying or selling spot or futures commodity contracts or options, such as precious metals, foreign currency, oil, or agricultural products, generally on a spread basis, or acting as agents (i.e., brokers) in buying or selling spot or futures commodity contracts or options on a commission or transaction fee basis.<br><br>Illustrative Examples:<br><br>Commodity contract trading companies<br>Commodity contracts brokerages<br>Commodity futures brokerages<br>Futures commodity contracts dealing (i.e., acting as a principal in dealing commodities to investors)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5232",
                "title": "Securities and Commodity Exchanges<sup>T</sup>",
                "description": null
            },
            {
                "code": "52321",
                "title": "Securities and Commodity Exchanges<sup>T</sup>",
                "description": "See industry description for 523210.<br>"
            },
            {
                "code": "523210",
                "title": "Securities and Commodity Exchanges",
                "description": "This industry comprises establishments primarily engaged in furnishing physical or electronic marketplaces for the purpose of facilitating the buying and selling of stocks, stock options, bonds, or commodity contracts.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5239",
                "title": "Other Financial Investment Activities<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in one of the following: (1) acting as principals in buying or selling financial contracts (except investment bankers, securities dealers, and commodity contracts dealers); (2) acting as agents (i.e., brokers) (except securities brokerages and commodity contracts brokerages) in buying or selling financial contracts; or (3) providing other investment services (except securities and commodity exchanges), such as portfolio management; investment advice; and trust, fiduciary, and custody services.<br>"
            },
            {
                "code": "52391",
                "title": "Miscellaneous Intermediation",
                "description": "See industry description for 523910.<br>"
            },
            {
                "code": "523910",
                "title": "Miscellaneous Intermediation",
                "description": "This industry comprises establishments primarily engaged in acting as principals (except investment bankers, securities dealers, and commodity contracts dealers) in buying or selling financial contracts generally on a spread basis.  Principals are investors that buy or sell for their own account.<br><br>Illustrative Examples:<br><br>Investment clubs<br>Tax liens dealing (i.e., acting as a principal in dealing tax liens to investors)<br>Venture capital companies<br>Mineral royalties or leases dealing (i.e., acting as a principal in dealing royalties or leases to investors)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "52394",
                "title": "Portfolio Management and Investment Advice",
                "description": "See industry description for 523940.<br>"
            },
            {
                "code": "523940",
                "title": "Portfolio Management and Investment Advice",
                "description": "This industry comprises establishments primarily engaged in managing the portfolio assets (i.e., funds) of others on a fee or commission basis and/or providing customized investment advice to clients on a fee basis.  Establishments providing portfolio management have the authority to make investment decisions, and they derive fees based on the size and/or overall performance of the portfolio.  Establishments providing investment advice provide financial planning advice and investment counseling to meet the goals and needs of specific clients, but do not have the authority to execute trades.<br><br>Illustrative Examples:<br><br>Financial planning services, customized, fees paid by client<br>Investment advisory services, customized, fees paid by client<br>Managing trusts<br>Portfolio fund managing<br><br><br>Cross-References."
            },
            {
                "code": "52399",
                "title": "All Other Financial Investment Activities",
                "description": "This industry comprises establishments primarily engaged in acting as agents or brokers (except securities brokerages and commodity contracts brokerages) in buying and selling financial contracts and those providing financial investment services (except securities and commodity exchanges, portfolio management, and investment advice).<br><br>Illustrative Examples:<br><br>Bank trust offices<br>Fiduciary agencies (except real estate)<br>Exchange clearinghouses, commodities or securities<br>Escrow agencies (except real estate)<br>Stock quotation services<br><br><br>Cross-References."
            },
            {
                "code": "523991",
                "title": "Trust, Fiduciary, and Custody Activities",
                "description": "This U.S. industry comprises establishments primarily engaged in providing trust, fiduciary, and custody services to others, as instructed, on a fee or contract basis, such as bank trust offices and escrow agencies (except real estate).<br><br>Cross-References."
            },
            {
                "code": "523999",
                "title": "Miscellaneous Financial Investment Activities",
                "description": "This U.S. industry comprises establishments primarily engaged in acting as agents and/or brokers (except securities brokerages and commodity contracts brokerages) in buying or selling financial contracts and those providing financial investment services (except securities and commodity exchanges; portfolio management; investment advice; and trust, fiduciary, and custody services) on a fee or commission basis.<br><br>Illustrative Examples:<br><br>Exchange clearinghouses, commodities or securities<br>Stock quotation services<br>Gas lease brokers' offices<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "524",
                "title": "Insurance Carriers and Related Activities<sup>T</sup>",
                "description": "Industries in the Insurance Carriers and Related Activities subsector group establishments that are primarily engaged in one of the following: (1) underwriting (assuming the risk, assigning premiums, and so forth) annuities and insurance policies or (2) facilitating such underwriting by selling insurance policies and by providing other insurance and employee benefit related services.<br>"
            },
            {
                "code": "5241",
                "title": "Insurance Carriers<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in underwriting (assuming the risk, assigning premiums, and so forth) annuities and insurance policies and investing premiums to build up a portfolio of financial assets to be used against future claims.  Direct insurance carriers are establishments that are primarily engaged in initially underwriting and assuming the risk of annuities and insurance policies.  Reinsurance carriers are establishments that are primarily engaged in assuming all or part of the risk associated with an existing insurance policy (or set of policies) originally underwritten by another insurance carrier.<br><br>Industries are defined in terms of the type of risk being insured against, such as death, loss of employment because of age or disability, and/or property damage.  Contributions and premiums are set on the basis of actuarial calculations of probable payouts based on risk factors from experience tables and expected investment returns on reserves.<br>"
            },
            {
                "code": "52411",
                "title": "Direct Life, Health, and Medical Insurance Carriers",
                "description": "This industry comprises establishments primarily engaged in initially underwriting (i.e., assuming the risk and assigning premiums) annuities and life insurance policies, disability income insurance policies, accidental death and dismemberment insurance policies, and health and medical insurance policies.<br><br>Cross-References."
            },
            {
                "code": "524113",
                "title": "Direct Life Insurance Carriers",
                "description": "This U.S. industry comprises establishments primarily engaged in initially underwriting (i.e., assuming the risk and assigning premiums) annuities and life insurance policies, disability income insurance policies, and accidental death and dismemberment insurance policies.<br><br>Cross-References."
            },
            {
                "code": "524114",
                "title": "Direct Health and Medical Insurance Carriers",
                "description": "This U.S. industry comprises establishments primarily engaged in initially underwriting (i.e., assuming the risk and assigning premiums) health and medical insurance policies.  Group hospitalization plans and HMO establishments that provide health and medical insurance policies without providing health care services are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "52412",
                "title": "Direct Insurance (except Life, Health, and Medical) Carriers",
                "description": "This industry comprises establishments primarily engaged in initially underwriting (i.e., assuming the risk and assigning premiums) various types of insurance policies (except life, disability income, accidental death and dismemberment, and health and medical insurance policies).<br><br>Illustrative Examples:<br><br>Automobile insurance carriers, direct<br>Property and casualty insurance carriers, direct<br>Bank deposit insurance carriers, direct<br>Title insurance carriers, real estate, direct<br>Mortgage guaranty insurance carriers, direct<br>Warranty insurance carriers (e.g., appliance, automobile, homeowners', product), direct<br><br><br>Cross-References."
            },
            {
                "code": "524126",
                "title": "Direct Property and Casualty Insurance Carriers",
                "description": "This U.S. industry comprises establishments primarily engaged in initially underwriting (i.e., assuming the risk and assigning premiums) insurance policies that protect policyholders against losses that may occur as a result of property damage or liability.<br><br>Illustrative Examples:<br><br>Automobile insurance carriers, direct<br>Malpractice insurance carriers, direct<br>Fidelity insurance carriers, direct<br>Mortgage guaranty insurance carriers, direct<br>Homeowners' insurance carriers, direct<br>Surety insurance carriers, direct<br>Liability insurance carriers, direct<br><br><br>Cross-References."
            },
            {
                "code": "524127",
                "title": "Direct Title Insurance Carriers",
                "description": "This U.S. industry comprises establishments primarily engaged in initially underwriting (i.e., assuming the risk and assigning premiums) insurance policies to protect the owners of real estate or real estate creditors against loss sustained by reason of any title defect to real property.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "524128",
                "title": "Other Direct Insurance (except Life, Health, and Medical) Carriers",
                "description": "This U.S. industry comprises establishments primarily engaged in initially underwriting (e.g., assuming the risk, assigning premiums) insurance policies (except life, disability income, accidental death and dismemberment, health and medical, property and casualty, and title insurance policies).<br><br>Illustrative Examples:<br><br>Bank deposit insurance carriers, direct<br>Product warranty insurance carriers, direct<br>Deposit or share insurance carriers, direct<br>Warranty insurance carriers (e.g., appliance, automobile, homeowners', product), direct<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "52413",
                "title": "Reinsurance Carriers",
                "description": "See industry description for 524130.<br>"
            },
            {
                "code": "524130",
                "title": "Reinsurance Carriers",
                "description": "This industry comprises establishments primarily engaged in assuming all or part of the risk associated with existing insurance policies originally underwritten by other insurance carriers.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5242",
                "title": "Agencies, Brokerages, and Other Insurance Related Activities<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in (1) acting as agents (i.e., brokers) in selling annuities and insurance policies or (2) providing other employee benefits and insurance related services, such as claims adjustment and third party administration.<br>"
            },
            {
                "code": "52421",
                "title": "Insurance Agencies and Brokerages",
                "description": "See industry description for 524210.<br>"
            },
            {
                "code": "524210",
                "title": "Insurance Agencies and Brokerages",
                "description": "This industry comprises establishments primarily engaged in acting as agents (i.e., brokers) in selling annuities and insurance policies.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "52429",
                "title": "Other Insurance Related Activities",
                "description": "This industry comprises establishments primarily engaged in providing services related to insurance (except insurance agencies and brokerages).<br><br>Illustrative Examples:<br><br>Claims adjusting, insurance<br>Insurance plan administrative services, third party<br>Insurance actuarial services<br>Insurance claims adjusting<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "524291",
                "title": "Claims Adjusting",
                "description": "This U.S. industry comprises establishments primarily engaged in investigating, appraising, and settling insurance claims.<br>"
            },
            {
                "code": "524292",
                "title": "Pharmacy Benefit Management and Other Third Party Administration of Insurance and Pension Funds",
                "description": "This U.S. industry comprises establishments primarily engaged in providing pharmacy benefit management (PBM) services and other third party administration services of insurance and pension funds, such as claims processing and other administrative services to insurance carriers, employee benefit plans, and self-insurance funds.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "524298",
                "title": "All Other Insurance Related Activities",
                "description": "This U.S. industry comprises establishments primarily engaged in providing insurance services on a contract or fee basis (except insurance agencies and brokerages, claims adjusting, and third party administration).  Insurance advisory services, insurance actuarial services, and insurance ratemaking services are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "525",
                "title": "Funds, Trusts, and Other Financial Vehicles",
                "description": "Industries in the Funds, Trusts, and Other Financial Vehicles subsector group legal entities (i.e., funds, plans, and/or programs) organized to pool securities or other assets on behalf of shareholders or beneficiaries of employee benefit or other trust funds.  The portfolios are customized to achieve specific investment characteristics, such as diversification, risk, rate of return, and price volatility.  These entities earn interest, dividends, and other investment income, but have little or no employment and no revenue from the sale of services.  Establishments with employees devoted to the management of funds are classified in Industry Group 5239, Other Financial Investment Activities.<br><br>Establishments primarily engaged in holding the securities of (or other equity interests in) other firms are classified in Sector 55, Management of Companies and Enterprises.  Equity real estate investment trusts (REITs) that are primarily engaged in leasing buildings, dwellings, or other real estat"
            },
            {
                "code": "5251",
                "title": "Insurance and Employee Benefit Funds",
                "description": "This industry group comprises legal entities (i.e., funds, plans, and/or programs) organized to provide insurance and employee benefits exclusively for the sponsor, firm, or its employees or members.<br>"
            },
            {
                "code": "52511",
                "title": "Pension Funds",
                "description": "See industry description for 525110.<br>"
            },
            {
                "code": "525110",
                "title": "Pension Funds",
                "description": "This industry comprises legal entities (i.e., funds, plans, and/or programs) organized to provide retirement income benefits exclusively for the sponsor's employees or members.<br><br>Illustrative Examples:<br><br>Employee benefit plans<br>Retirement plans<br>Pension funds and plans<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "52512",
                "title": "Health and Welfare Funds",
                "description": "See industry description for 525120.<br>"
            },
            {
                "code": "525120",
                "title": "Health and Welfare Funds",
                "description": "This industry comprises legal entities (i.e., funds, plans, and/or programs) organized to provide medical, surgical, hospital, vacation, training, and other health- and welfare-related employee benefits exclusively for the sponsor's employees or members.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "52519",
                "title": "Other Insurance Funds",
                "description": "See industry description for 525190.<br>"
            },
            {
                "code": "525190",
                "title": "Other Insurance Funds",
                "description": "This industry comprises legal entities (i.e., funds (except pension, and health- and welfare-related employee benefit funds)) organized to provide insurance exclusively for the sponsor, firm, or its employees or members.  Self-insurance funds (except employee benefit funds) and workers' compensation insurance funds are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "5259",
                "title": "Other Investment Pools and Funds",
                "description": "This industry group comprises legal entities (i.e., investment pools and/or funds) organized to pool securities or other assets (except insurance and employee benefit funds) on behalf of shareholders, unitholders, or beneficiaries.<br>"
            },
            {
                "code": "52591",
                "title": "Open-End Investment Funds",
                "description": "See industry description for 525910.<br>"
            },
            {
                "code": "525910",
                "title": "Open-End Investment Funds",
                "description": "This industry comprises legal entities (i.e., open-end investment funds) organized to pool assets that consist of securities or other financial instruments.  Shares in these pools are offered to the public in an initial offering with additional shares offered continuously and perpetually and redeemed at a specific price determined by the net asset value.<br><br>Illustrative Examples:<br><br>Investment funds, open-ended<br>Money market mutual funds, open-ended<br>"
            },
            {
                "code": "52592",
                "title": "Trusts, Estates, and Agency Accounts",
                "description": "See industry description for 525920.<br>"
            },
            {
                "code": "525920",
                "title": "Trusts, Estates, and Agency Accounts",
                "description": "This industry comprises legal entities, trusts, estates, or agency accounts, administered on behalf of the beneficiaries under the terms of a trust agreement, will, or agency agreement.<br><br>Illustrative Examples:<br><br>Bankruptcy estates<br>Private estates (i.e., administering on behalf of beneficiaries)<br>Personal investment trusts<br>Testamentary trusts<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "52599",
                "title": "Other Financial Vehicles",
                "description": "See industry description for 525990.<br>"
            },
            {
                "code": "525990",
                "title": "Other Financial Vehicles",
                "description": "This industry comprises legal entities (i.e., funds (except insurance and employee benefit funds; open-end investment funds; trusts, estates, and agency accounts)).  Included in this industry are mortgage real estate investment trusts (REITs).<br><br>Illustrative Examples:<br><br>Closed-end investment funds<br>Special purpose financial vehicles<br>Collateralized mortgage obligations (CMOs)<br>Unit investment trust funds<br>Face-amount certificate funds<br>Mortgage real estate investment trusts (REITs)<br>Real estate mortgage investment conduits (REMICs)<br><br><br>Cross-References."
            }
        ],
        "subsectors_count": 79
    },
    {
        "sectorCode": "53",
        "sectorDescription": "Real Estate and Rental and Leasing",
        "subsectors": [
            {
                "code": "53",
                "title": "Real Estate and Rental and Leasing<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Real Estate and Rental and Leasing sector comprises establishments primarily engaged in renting, leasing, or otherwise allowing the use of tangible or intangible assets, and establishments providing related services.  The major portion of this sector comprises establishments that rent, lease, or otherwise allow the use of their own assets by others.  The assets may be tangible, as is the case of real estate and equipment, or intangible, as is the case with patents and trademarks.<br><br>This sector also includes establishments primarily engaged in managing real estate for others, selling, renting, and/or buying real estate for others, and appraising real estate.  These activities are closely related to this sector's main activity, and from a production basis they are included here.  In addition, a substantial proportion of property management is self-performed by lessors.<br><br>The main components of this sector are the real estate lessors industries (including equity r"
            },
            {
                "code": "531",
                "title": "Real Estate<sup>T</sup>",
                "description": "Industries in the Real Estate subsector group establishments primarily engaged in renting or leasing real estate to others; managing real estate for others; selling, buying, or renting real estate for others; and providing other real estate related services, such as appraisal services.<br><br>This subsector includes equity real estate investment trusts (REITs) primarily engaged in leasing buildings, dwellings, or other real estate property to others.  Mortgage REITs are classified in Subsector 525, Funds, Trusts, and Other Financial Vehicles.<br><br>Establishments primarily engaged in subdividing and developing unimproved real estate and constructing buildings for sale are classified in Subsector 236, Construction of Buildings.  Establishments primarily engaged in subdividing and improving raw land for subsequent sale to builders are classified in Subsector 237, Heavy and Civil Engineering Construction.<br>"
            },
            {
                "code": "5311",
                "title": "Lessors of Real Estate<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in acting as lessors of (1) residential buildings and dwellings; (2) nonresidential buildings (except miniwarehouses); (3) miniwarehouses and self-storage units; and (4) other real estate property.  This industry group includes equity real estate investment trusts (REITs) primarily engaged in leasing buildings, dwellings, or other real estate property to others.<br>"
            },
            {
                "code": "53111",
                "title": "Lessors of Residential Buildings and Dwellings",
                "description": "See industry description for 531110.<br>"
            },
            {
                "code": "531110",
                "title": "Lessors of Residential Buildings and Dwellings",
                "description": "This industry comprises establishments primarily engaged in acting as lessors of buildings used as residences or dwellings, such as single-family homes, apartment buildings, and town homes.  Included in this industry are owner-lessors and establishments renting real estate and then acting as lessors in subleasing it to others.  The establishments in this industry may manage the property themselves or have another establishment manage it for them.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "53112",
                "title": "Lessors of Nonresidential Buildings (except Miniwarehouses)",
                "description": "See industry description for 531120.<br>"
            },
            {
                "code": "531120",
                "title": "Lessors of Nonresidential Buildings (except Miniwarehouses)",
                "description": "This industry comprises establishments primarily engaged in acting as lessors of buildings (except miniwarehouses and self-storage units) that are not used as residences or dwellings.  Included in this industry are: (1) owner-lessors of nonresidential buildings; (2) establishments renting real estate and then acting as lessors in subleasing it to others; and (3) establishments providing full service office space, whether on a lease or service contract basis.  The establishments in this industry may manage the property themselves or have another establishment manage it for them.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "53113",
                "title": "Lessors of Miniwarehouses and Self-Storage Units",
                "description": "See industry description for 531130.<br>"
            },
            {
                "code": "531130",
                "title": "Lessors of Miniwarehouses and Self-Storage Units",
                "description": "This industry comprises establishments primarily engaged in renting or leasing space for self-storage.  These establishments provide secure space (i.e., rooms, compartments, lockers, containers, or outdoor space) where clients can store and retrieve their goods.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "53119",
                "title": "Lessors of Other Real Estate Property",
                "description": "See industry description for 531190.<br>"
            },
            {
                "code": "531190",
                "title": "Lessors of Other Real Estate Property",
                "description": "This industry comprises establishments primarily engaged in acting as lessors of real estate (except buildings), such as manufactured home (i.e., mobile home) sites, vacant lots, and grazing land.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5312",
                "title": "Offices of Real Estate Agents and Brokers<sup>T</sup>",
                "description": null
            },
            {
                "code": "53121",
                "title": "Offices of Real Estate Agents and Brokers<sup>T</sup>",
                "description": "See industry description for 531210.<br>"
            },
            {
                "code": "531210",
                "title": "Offices of Real Estate Agents and Brokers",
                "description": "This industry comprises establishments primarily engaged in acting as agents and/or brokers in one or more of the following: (1) selling real estate for others; (2) buying real estate for others; and (3) renting real estate for others.<br>"
            },
            {
                "code": "5313",
                "title": "Activities Related to Real Estate<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in providing real estate services (except lessors of real estate and offices of real estate agents and brokers).  Included in this industry group are establishments primarily engaged in managing real estate for others and appraising real estate.<br>"
            },
            {
                "code": "53131",
                "title": "Real Estate Property Managers",
                "description": "This industry comprises establishments primarily engaged in managing real property for others.  Management includes ensuring that various activities associated with the overall operation of the property are performed, such as collecting rents and overseeing other services (e.g., maintenance, security, trash removal).<br><br>Cross-References."
            },
            {
                "code": "531311",
                "title": "Residential Property Managers",
                "description": "This U.S. industry comprises establishments primarily engaged in managing residential real estate for others.<br><br>Cross-References."
            },
            {
                "code": "531312",
                "title": "Nonresidential Property Managers",
                "description": "This U.S. industry comprises establishments primarily engaged in managing nonresidential real estate for others.<br><br>Cross-References."
            },
            {
                "code": "53132",
                "title": "Offices of Real Estate Appraisers",
                "description": "See industry description for 531320.<br>"
            },
            {
                "code": "531320",
                "title": "Offices of Real Estate Appraisers",
                "description": "This industry comprises establishments primarily engaged in estimating the fair market value of real estate.<br>"
            },
            {
                "code": "53139",
                "title": "Other Activities Related to Real Estate",
                "description": "See industry description for 531390.<br>"
            },
            {
                "code": "531390",
                "title": "Other Activities Related to Real Estate",
                "description": "This industry comprises establishments primarily engaged in performing real estate related services (except lessors of real estate, offices of real estate agents and brokers, real estate property managers, and offices of real estate appraisers).<br><br>Illustrative Examples:<br><br>Real estate escrow agencies<br>Real estate listing services<br>Real estate fiduciaries' offices<br>Landman services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "532",
                "title": "Rental and Leasing Services<sup>T</sup>",
                "description": "Industries in the Rental and Leasing Services subsector include establishments that provide a wide array of tangible goods, such as automobiles, computers, consumer goods, and industrial machinery and equipment, to customers in return for a periodic rental or lease payment.<br><br>The subsector includes two main types of establishments: (1) those that are engaged in renting consumer goods and equipment and (2) those that are engaged in leasing machinery and equipment often used for business operations.  The first type typically operates from a retail-like or storefront facility and maintains inventories of goods that are rented for short periods of time.  The latter type typically does not operate from retail-like locations or maintain inventories, and usually offers longer-term leases.  These establishments work directly with clients to enable them to acquire the use of equipment on a lease basis, or they work with equipment vendors or dealers to support the marketing of equipment to their "
            },
            {
                "code": "5321",
                "title": "Automotive Equipment Rental and Leasing<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in renting or leasing passenger cars and trucks without drivers and utility trailers.  These establishments generally operate from a retail-like facility.  Some establishments offer only short-term rental, others only longer-term leases, and some provide both types of services.<br>"
            },
            {
                "code": "53211",
                "title": "Passenger Car Rental and Leasing<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in renting or leasing passenger cars without drivers.<br><br>Illustrative Examples:<br><br>Passenger car rental or leasing<br>Passenger truck (light duty) rental or leasing<br>Passenger van rental or leasing<br>Sport utility vehicle rental or leasing<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "532111",
                "title": "Passenger Car Rental",
                "description": "This U.S. industry comprises establishments primarily engaged in renting passenger cars without drivers, generally for short periods of time.<br><br>Illustrative Examples:<br><br>Passenger car rental<br>Passenger truck (light duty) rental<br>Passenger van rental<br>Sport utility vehicle rental<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "532112",
                "title": "Passenger Car Leasing",
                "description": "This U.S. industry comprises establishments primarily engaged in leasing passenger cars without drivers, generally for long periods of time.<br><br>Illustrative Examples:<br><br>Passenger car leasing<br>Passenger truck (light duty) leasing<br>Passenger van leasing<br>Sport utility vehicle leasing<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "53212",
                "title": "Truck, Utility Trailer, and RV (Recreational Vehicle) Rental and Leasing<sup>T</sup>",
                "description": "See industry description for 532120.<br>"
            },
            {
                "code": "532120",
                "title": "Truck, Utility Trailer, and RV (Recreational Vehicle) Rental and Leasing",
                "description": "This industry comprises establishments primarily engaged in renting or leasing, without drivers, one or more of the following: trucks, truck tractors, buses, semi-trailers, utility trailers, or RVs (recreational vehicles).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5322",
                "title": "Consumer Goods Rental<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in renting personal and household-type goods.  Establishments classified in this industry group generally provide short-term rental although in some instances, the goods may be leased for longer periods of time.  These establishments often operate from a retail-like or storefront facility.<br>"
            },
            {
                "code": "53221",
                "title": "Consumer Electronics and Appliances Rental<sup>T</sup>",
                "description": "See industry description for 532210.<br>"
            },
            {
                "code": "532210",
                "title": "Consumer Electronics and Appliances Rental",
                "description": "This industry comprises establishments primarily engaged in renting consumer electronics equipment and appliances, such as televisions, stereos, and refrigerators.  Included in this industry are appliance rental centers.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "53228",
                "title": "Other Consumer Goods Rental<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in renting consumer goods (except consumer electronics and appliances).<br><br>Illustrative Examples:<br><br>Costume rental<br>Formal wear rental<br>Furniture (i.e., residential) rental centers<br>Hospital bed rental and leasing (i.e., home use)<br>Party rental supply centers<br>Sporting goods rental<br>Video disc rental for home electronic equipment (e.g., DVD) <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "532281",
                "title": "Formal Wear and Costume Rental",
                "description": "This U.S. industry comprises establishments primarily engaged in renting clothing, such as formal wear, costumes (e.g., theatrical), or other clothing (except laundered uniforms and work apparel).<br><br>Cross-References."
            },
            {
                "code": "532282",
                "title": "Video Tape and Disc Rental",
                "description": "This U.S. industry comprises establishments primarily engaged in renting prerecorded video tapes and discs for home electronic equipment, including renting through vending machines.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "532283",
                "title": "Home Health Equipment Rental",
                "description": "This U.S. industry comprises establishments primarily engaged in renting home-type health and invalid equipment, such as wheelchairs, hospital beds, oxygen tanks, walkers, and crutches.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "532284",
                "title": "Recreational Goods Rental",
                "description": "This U.S. industry comprises establishments primarily engaged in renting recreational goods, such as bicycles, canoes, motorcycles, skis, sailboats, beach chairs, and beach umbrellas.<br>"
            },
            {
                "code": "532289",
                "title": "All Other Consumer Goods Rental",
                "description": "This U.S. industry comprises establishments primarily engaged in renting consumer goods and products (except consumer electronics and appliances; formal wear and costumes; prerecorded video tapes and discs for home electronic equipment; home health furniture and equipment; and recreational goods).  Included in this industry are furniture rental centers and party rental supply centers.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5323",
                "title": "General Rental Centers<sup>T</sup>",
                "description": null
            },
            {
                "code": "53231",
                "title": "General Rental Centers<sup>T</sup>",
                "description": "See industry description for 532310.<br>"
            },
            {
                "code": "532310",
                "title": "General Rental Centers",
                "description": "This industry comprises establishments primarily engaged in renting a range of consumer, commercial, and industrial equipment.  Establishments in this industry typically operate from conveniently located facilities where they maintain inventories of goods and equipment that they rent for short periods of time.  The type of equipment that establishments in this industry provide often includes, but is not limited to: audio visual equipment, contractors' and builders' tools and equipment, home repair tools, lawn and garden equipment, moving equipment and supplies, and party and banquet equipment and supplies.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5324",
                "title": "Commercial and Industrial Machinery and Equipment Rental and Leasing<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in renting or leasing commercial-type and industrial-type machinery and equipment.  Establishments included in this industry group are generally involved in providing capital or investment-type equipment that clients use in their business operations.  These establishments typically cater to a business clientele and do not generally operate a retail-like or storefront facility.<br>"
            },
            {
                "code": "53241",
                "title": "Construction, Transportation, Mining, and Forestry Machinery and Equipment Rental and Leasing<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in renting or leasing one or more of the following without operators: heavy construction, off-highway transportation, mining, and forestry machinery and equipment.  Establishments in this industry may rent or lease products, such as aircraft, railroad cars, steamships, tugboats, bulldozers, earthmoving equipment, well drilling machinery and equipment, or cranes.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "532411",
                "title": "Commercial Air, Rail, and Water Transportation Equipment Rental and Leasing",
                "description": "This U.S. industry comprises establishments primarily engaged in renting or leasing off-highway transportation equipment without operators, such as aircraft, railroad cars, steamships, or tugboats.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "532412",
                "title": "Construction, Mining, and Forestry Machinery and Equipment Rental and Leasing",
                "description": "This U.S. industry comprises establishments primarily engaged in renting or leasing heavy equipment without operators that may be used for construction, mining, or forestry, such as bulldozers, earthmoving equipment, well drilling machinery and equipment, or cranes.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "53242",
                "title": "Office Machinery and Equipment Rental and Leasing<sup>T</sup>",
                "description": "See industry description for 532420.<br>"
            },
            {
                "code": "532420",
                "title": "Office Machinery and Equipment Rental and Leasing",
                "description": "This industry comprises establishments primarily engaged in renting or leasing office machinery and equipment, such as computers, office furniture, duplicating machines (i.e., copiers), or facsimile machines.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "53249",
                "title": "Other Commercial and Industrial Machinery and Equipment Rental and Leasing<sup>T</sup>",
                "description": "See industry description for 532490.<br>"
            },
            {
                "code": "532490",
                "title": "Other Commercial and Industrial Machinery and Equipment Rental and Leasing",
                "description": "This industry comprises establishments primarily engaged in renting or leasing nonconsumer-type machinery and equipment (except heavy construction, transportation, mining, and forestry machinery and equipment without operators; and office machinery and equipment).  Establishments in this industry rent or lease products, such as manufacturing equipment; metalworking, telecommunications, motion picture, theatrical machinery and equipment, or service industry machinery; institutional (i.e., public building) furniture, such as furniture for schools, theaters, or buildings; or agricultural equipment without operators.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "533",
                "title": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)<sup>T</sup>",
                "description": "Industries in the Lessors of Nonfinancial Intangible Assets (except Copyrighted Works) subsector include establishments primarily engaged in assigning rights to assets, such as patents, trademarks, brand names, and/or franchise agreements, for which a royalty payment or licensing fee is paid to the asset holder.  Establishments in this subsector own the patents, trademarks, and/or franchise agreements that they allow others to use or reproduce for a fee and may or may not have created those assets.<br><br>Establishments that allow franchisees the use of the franchise name, contingent on the franchisee buying products or services from the franchisor, are classified elsewhere.<br><br>Excluded from this subsector are establishments primarily engaged in leasing real property and establishments primarily engaged in leasing tangible assets, such as automobiles, computers, consumer goods, and industrial machinery and equipment.  These establishments are classified in Subsector 531, Real Estate, and Subse"
            },
            {
                "code": "5331",
                "title": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)<sup>T</sup>",
                "description": null
            },
            {
                "code": "53311",
                "title": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)<sup>T</sup>",
                "description": "See industry description for 533110.<br>"
            },
            {
                "code": "533110",
                "title": "Lessors of Nonfinancial Intangible Assets (except Copyrighted Works)",
                "description": "This industry comprises establishments primarily engaged in assigning rights to assets, such as patents, trademarks, brand names, and/or franchise agreements, for which a royalty payment or licensing fee is paid to the asset holder.<br><br>Cross-References."
            }
        ],
        "subsectors_count": 53
    },
    {
        "sectorCode": "54",
        "sectorDescription": "Professional, Scientific, and Technical Services",
        "subsectors": [
            {
                "code": "54",
                "title": "Professional, Scientific, and Technical Services<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Professional, Scientific, and Technical Services sector comprises establishments that specialize in performing professional, scientific, and technical activities for others.  These activities require a high degree of expertise and training.  The establishments in this sector specialize according to expertise and provide these services to clients in a variety of industries and, in some cases, to households.  Activities performed include: legal advice and representation; accounting, bookkeeping, and payroll services; architectural, engineering, and specialized design services; computer services; consulting services; research services; advertising services; photographic services; translation and interpretation services; veterinary services; and other professional, scientific, and technical services.<br><br>This sector excludes establishments primarily engaged in providing a range of day-to-day office administrative services, such as financial planning, billing and rec"
            },
            {
                "code": "541",
                "title": "Professional, Scientific, and Technical Services<sup>T</sup>",
                "description": "Industries in the Professional, Scientific, and Technical Services subsector group establishments engaged in processes where human capital is the major input.  These establishments make available the knowledge and skills of their employees, often on an assignment basis, where an individual or team is responsible for the delivery of services to the client.  The individual industries of this subsector are defined on the basis of the particular expertise and training of the services provider.<br><br>The distinguishing feature of the Professional, Scientific, and Technical Services subsector is the fact that most of the industries grouped in it have production processes that are almost wholly dependent on worker skills.  Thus, the establishments classified in this subsector sell expertise.  Much of the expertise requires degrees, though not in every case.<br>"
            },
            {
                "code": "5411",
                "title": "Legal Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in offering legal services, such as those offered by offices of lawyers, offices of notaries, and title abstract and settlement offices, and paralegal services. <br>"
            },
            {
                "code": "54111",
                "title": "Offices of Lawyers<sup>T</sup>",
                "description": "See industry description for 541110.<br>"
            },
            {
                "code": "541110",
                "title": "Offices of Lawyers",
                "description": "This industry comprises offices of legal practitioners known as lawyers or attorneys (i.e., counselors-at-law) primarily engaged in the practice of law.  Establishments in this industry may provide expertise in a range or in specific areas of law, such as criminal law, corporate law, family and estate law, patent law, real estate law, or tax law.<br><br>Cross-References."
            },
            {
                "code": "54112",
                "title": "Offices of Notaries<sup>T</sup>",
                "description": "See industry description for 541120.<br>"
            },
            {
                "code": "541120",
                "title": "Offices of Notaries",
                "description": "This industry comprises establishments (except offices of lawyers and attorneys) primarily engaged in drafting, approving, and executing legal documents, such as real estate transactions, wills, and contracts; and in receiving, indexing, and storing such documents.<br><br>Cross-References."
            },
            {
                "code": "54119",
                "title": "Other Legal Services<sup>T</sup>",
                "description": "This industry comprises establishments of legal practitioners (except lawyers and attorneys) primarily engaged in providing specialized legal or paralegal services.<br><br>Illustrative Examples:<br><br>Notary public services<br>Process serving services<br>Paralegal services\t<br>Real estate settlement offices<br>Patent agent services (i.e., patent filing and searching services)<br>Real estate title abstract companies<br><br><br>Cross-References."
            },
            {
                "code": "541191",
                "title": "Title Abstract and Settlement Offices",
                "description": "This U.S. industry comprises establishments (except offices of lawyers and attorneys) primarily engaged in one or more of the following activities: (1) researching public land records to gather information relating to real estate titles; (2) preparing documents necessary for the transfer of the title, financing, and settlement; (3) conducting final real estate settlements and closings; and (4) filing legal and other documents relating to the sale of real estate.  Real estate settlement offices, title abstract companies, and title search companies are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "541199",
                "title": "All Other Legal Services",
                "description": "This U.S. industry comprises establishments of legal practitioners (except offices of lawyers and attorneys, settlement offices, and title abstract offices).  These establishments are primarily engaged in providing specialized legal or paralegal services.<br><br>Illustrative Examples:<br><br>Notary public services<br>Patent agent services (i.e., patent filing and searching services)<br>Paralegal services\t<br>Process serving services<br><br><br>Cross-References."
            },
            {
                "code": "5412",
                "title": "Accounting, Tax Preparation, Bookkeeping, and Payroll Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "54121",
                "title": "Accounting, Tax Preparation, Bookkeeping, and Payroll Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing services, such as auditing of accounting records, designing accounting systems, preparing financial statements, developing budgets, preparing tax returns, processing payrolls, bookkeeping, and billing.<br><br>Illustrative Examples:<br><br>Accountants' offices<br>Payroll processing services<br>Bookkeeping services<br>Tax return preparation services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541211",
                "title": "Offices of Certified Public Accountants",
                "description": "This U.S. industry comprises establishments of accountants that are certified to audit the accounting records of public and private organizations and to attest to compliance with generally accepted accounting practices.  Offices of certified public accountants (CPAs) may provide one or more of the following accounting services: (1) auditing financial statements; (2) designing accounting systems; (3) preparing financial statements; (4) developing budgets; and (5) providing advice on matters related to accounting.  These establishments may also provide related services, such as bookkeeping, tax return preparation, and payroll processing.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541213",
                "title": "Tax Preparation Services",
                "description": "This U.S. industry comprises establishments (except offices of CPAs) engaged in providing tax return preparation services without also providing accounting, bookkeeping, billing, or payroll processing services.  Basic knowledge of tax law and filing requirements is required.<br><br>Cross-References."
            },
            {
                "code": "541214",
                "title": "Payroll Services",
                "description": "This U.S. industry comprises establishments (except offices of CPAs) engaged in the following without also providing accounting, bookkeeping, or billing services: (1) collecting information on hours worked, pay rates, deductions, and other payroll-related data from their clients and (2) using that information to generate paychecks, payroll reports, and tax filings.  These establishments may use data processing and tabulating techniques as part of providing their services.<br><br>Cross-References."
            },
            {
                "code": "541219",
                "title": "Other Accounting Services",
                "description": "This U.S. industry comprises establishments (except offices of CPAs) engaged in providing accounting services (except tax return preparation services only or payroll services only).  These establishments may also provide tax return preparation or payroll services.  Accountant (except CPA) offices, bookkeeper offices, and billing offices are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "5413",
                "title": "Architectural, Engineering, and Related Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in architectural, engineering, and related services, such as drafting services, building inspection services, geophysical surveying and mapping services, surveying and mapping (except geophysical) services, and testing services.<br>"
            },
            {
                "code": "54131",
                "title": "Architectural Services<sup>T</sup>",
                "description": "See industry description for 541310.<br>"
            },
            {
                "code": "541310",
                "title": "Architectural Services",
                "description": "This industry comprises establishments primarily engaged in planning and designing residential, institutional, leisure, commercial, and industrial buildings and structures by applying knowledge of design, construction procedures, zoning regulations, building codes, and building materials.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54132",
                "title": "Landscape Architectural Services<sup>T</sup>",
                "description": "See industry description for 541320.<br>"
            },
            {
                "code": "541320",
                "title": "Landscape Architectural Services",
                "description": "This industry comprises establishments primarily engaged in planning and designing the development of land areas for projects, such as parks and other recreational areas; airports; highways; hospitals; schools; land subdivisions; and commercial, industrial, and residential areas, by applying knowledge of land characteristics, location of buildings and structures, use of land areas, and design of landscape projects.<br><br>Illustrative Examples:<br><br>Garden planning services<br>Landscape architects' offices<br>Golf course or ski area design services<br>Landscape consulting services<br>Industrial land use planning services<br>Landscape design services<br><br><br>Cross-References."
            },
            {
                "code": "54133",
                "title": "Engineering Services<sup>T</sup>",
                "description": "See industry description for 541330.<br>"
            },
            {
                "code": "541330",
                "title": "Engineering Services",
                "description": "This industry comprises establishments primarily engaged in applying physical laws and principles of engineering in the design, development, and utilization of machines, materials, instruments, structures, processes, and systems.  The assignments undertaken by these establishments may involve any of the following activities: provision of advice, preparation of feasibility studies, preparation of preliminary and final plans and designs, provision of technical services during the construction or installation phase, inspection and evaluation of engineering projects, and related services.<br><br>Illustrative Examples:<br><br>Civil engineering services<br>Environmental engineering services<br>Construction engineering services<br>Mechanical engineering services<br>Engineers' offices<br>Robotics automation engineering services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54134",
                "title": "Drafting Services<sup>T</sup>",
                "description": "See industry description for 541340.<br>"
            },
            {
                "code": "541340",
                "title": "Drafting Services",
                "description": "This industry comprises establishments primarily engaged in drawing detailed layouts, plans, and illustrations of buildings, structures, systems, or components from engineering and architectural specifications.<br>"
            },
            {
                "code": "54135",
                "title": "Building Inspection Services<sup>T</sup>",
                "description": "See industry description for 541350.<br>"
            },
            {
                "code": "541350",
                "title": "Building Inspection Services",
                "description": "This industry comprises establishments primarily engaged in providing building inspection services.  These establishments typically evaluate all aspects of the building structure and component systems and prepare a report on the physical condition of the property, generally for buyers or others involved in real estate transactions.  Building inspection bureaus and establishments providing home inspection services are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54136",
                "title": "Geophysical Surveying and Mapping Services<sup>T</sup>",
                "description": "See industry description for 541360.<br>"
            },
            {
                "code": "541360",
                "title": "Geophysical Surveying and Mapping Services",
                "description": "This industry comprises establishments primarily engaged in gathering, interpreting, and mapping geophysical data.  Establishments in this industry often specialize in locating and measuring the extent of subsurface resources, such as oil, gas, and minerals, but they may also conduct surveys for engineering purposes.  Establishments in this industry use a variety of surveying techniques depending on the purpose of the survey, including magnetic surveys, gravity surveys, seismic surveys, or electrical and electromagnetic surveys.<br><br>Cross-References."
            },
            {
                "code": "54137",
                "title": "Surveying and Mapping (except Geophysical) Services<sup>T</sup>",
                "description": "See industry description for 541370.<br>"
            },
            {
                "code": "541370",
                "title": "Surveying and Mapping (except Geophysical) Services",
                "description": "This industry comprises establishments primarily engaged in performing surveying and mapping services of the surface of the earth, including the sea floor.  These services may include surveying and mapping of areas above or below the surface of the earth, such as the creation of view easements or segregating rights in parcels of land by creating underground utility easements.<br><br>Illustrative Examples:<br><br>Cadastral surveying services<br>Mapping (except geophysical) services<br>Cartographic surveying services<br>Topographic surveying services<br>Geodetic surveying services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54138",
                "title": "Testing Laboratories and Services<sup>T</sup>",
                "description": "See industry description for 541380.<br>"
            },
            {
                "code": "541380",
                "title": "Testing Laboratories and Services",
                "description": "This industry comprises establishments primarily engaged in performing physical, chemical, and other analytical testing services, such as acoustics or vibration testing, assaying, biological testing (except medical and veterinary), calibration testing, electrical and electronic testing, geotechnical testing, mechanical testing, nondestructive testing, or thermal testing.  The testing may occur in a laboratory or on-site.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5414",
                "title": "Specialized Design Services<sup>T</sup>",
                "description": "This industry group comprises establishments providing specialized design services (except architectural, engineering, and computer systems design).<br>"
            },
            {
                "code": "54141",
                "title": "Interior Design Services<sup>T</sup>",
                "description": "See industry description for 541410.<br>"
            },
            {
                "code": "541410",
                "title": "Interior Design Services",
                "description": "This industry comprises establishments primarily engaged in planning, designing, and administering projects in interior spaces to meet the physical and aesthetic needs of people using them, taking into consideration building codes, health and safety regulations, traffic patterns and floor planning, mechanical and electrical needs, and interior fittings and furniture.  Interior designers and interior design consultants work in areas, such as hospitality design, health care design, institutional design, commercial and corporate design, and residential design.  This industry also includes interior decorating consultants engaged exclusively in providing aesthetic services associated with interior spaces.<br>"
            },
            {
                "code": "54142",
                "title": "Industrial Design Services<sup>T</sup>",
                "description": "See industry description for 541420.<br>"
            },
            {
                "code": "541420",
                "title": "Industrial Design Services",
                "description": "This industry comprises establishments primarily engaged in creating and developing designs and specifications that optimize the use, value, and appearance of products.  These services can include the determination of the materials, construction, mechanisms, shape, color, and surface finishes of the product, taking into consideration human characteristics and needs, safety, market appeal, and efficiency in production, distribution, use, and maintenance.  Establishments providing automobile or furniture industrial design services or industrial design consulting services are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54143",
                "title": "Graphic Design Services<sup>T</sup>",
                "description": "See industry description for 541430.<br>"
            },
            {
                "code": "541430",
                "title": "Graphic Design Services",
                "description": "This industry comprises establishments primarily engaged in planning, designing, and managing the production of visual communication in order to convey specific messages or concepts, clarify complex information, or project visual identities.  These services can include the design of printed materials, packaging, advertising, signage systems, and corporate identification (logos).  This industry also includes commercial artists engaged exclusively in generating drawings and illustrations requiring technical accuracy or interpretative skills.<br><br>Illustrative Examples:<br><br>Commercial art studios<br>Corporate identification (i.e., logo) design services<br>Independent commercial or graphic artists<br>Medical art or illustration services<br>Graphic design consulting services<br><br><br>Cross-References."
            },
            {
                "code": "54149",
                "title": "Other Specialized Design Services<sup>T</sup>",
                "description": "See industry description for 541490.<br>"
            },
            {
                "code": "541490",
                "title": "Other Specialized Design Services",
                "description": "This industry comprises establishments primarily engaged in providing professional design services (except architectural, landscape architecture, engineering, interior, industrial, graphic, and computer systems design).<br><br>Illustrative Examples:<br><br>Costume design services (except independent theatrical costume designers)<br>Jewelry design services<br>Fashion design services<br>Float design services<br>Shoe design services<br>Lighting design services<br>Textile design services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5415",
                "title": "Computer Systems Design and Related Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "54151",
                "title": "Computer Systems Design and Related Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing expertise in the field of information technologies through one or more of the following activities: (1) writing, modifying, testing, and supporting software to meet the needs of a particular customer; (2) planning and designing computer systems that integrate computer hardware, software, and communication technologies; (3) on-site management and operation of clients' computer systems and/or data processing facilities; and (4) other professional and technical computer related advice and services.<br><br>Illustrative Examples:<br><br>Computer facilities management services<br>Custom computer programming services<br>Computer systems integration design services<br>Computer hardware or software consulting services<br>Software installation services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541511",
                "title": "Custom Computer Programming Services",
                "description": "This U.S. industry comprises establishments primarily engaged in writing, modifying, testing, and supporting software to meet the needs of a particular customer.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541512",
                "title": "Computer Systems Design Services",
                "description": "This U.S. industry comprises establishments primarily engaged in planning and designing computer systems that integrate computer hardware, software, and communication technologies.  The hardware and software components of the system may be provided by this establishment or company as part of integrated services or may be provided by third parties or vendors.  These establishments often install the system and train and support users of the system.<br><br>Illustrative Examples:<br><br>Computer systems integration design consulting services<br>Local area network (LAN) computer systems integration design services<br>Information management computer systems integration design services<br>Office automation computer systems integration design services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541513",
                "title": "Computer Facilities Management Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing on-site management and operation of clients' computer systems and/or data processing facilities.  Establishments providing computer systems or data processing facilities support services are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "541519",
                "title": "Other Computer Related Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing computer related services (except custom programming, systems integration design, and facilities management services). Establishments providing computer disaster recovery services or software installation services are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5416",
                "title": "Management, Scientific, and Technical Consulting Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in providing advice and assistance to businesses and other organizations on management, environmental, scientific, and technical issues.<br>"
            },
            {
                "code": "54161",
                "title": "Management Consulting Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing advice and assistance to businesses and other organizations on management issues, such as strategic and organizational planning; financial planning and budgeting; marketing objectives and policies; human resource policies, practices, and planning; production scheduling; and control planning.<br><br>Illustrative Examples:<br><br>Actuarial, benefit, and compensation consulting services<br>Human resources consulting services<br>Marketing consulting services<br>Administrative and general management consulting services<br>Process, physical distribution, and logistics consulting services<br><br><br>Cross-References."
            },
            {
                "code": "541611",
                "title": "Administrative Management and General Management Consulting Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing operating advice and assistance to businesses and other organizations on administrative management issues, such as financial planning and budgeting, equity and asset management, records management, office planning, strategic and organizational planning, site selection, new business start-up, and business process improvement.  This industry also includes establishments of general management consultants that provide a full range of administrative, human resource, marketing, process, physical distribution, logistics, or other management consulting services to clients.<br><br>Illustrative Examples:<br><br>Administrative management consulting services<br>Financial management (except investment advice) consulting services<br>General management consulting services<br>Site selection consulting services<br>Strategic planning consulting services<br><br><br>Cross-References."
            },
            {
                "code": "541612",
                "title": "Human Resources Consulting Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing advice and assistance to businesses and other organizations in one or more of the following areas: (1) human resource and personnel policies, practices, and procedures; (2) employee benefits planning, communication, and administration; (3) compensation systems planning; and (4) wage and salary administration.<br><br>Illustrative Examples:<br><br>Benefit or compensation consulting services<br>Employee assessment consulting services<br>Personnel management consulting services<br>Human resources consulting services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541613",
                "title": "Marketing Consulting Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing operating advice and assistance to businesses and other organizations on marketing issues, such as developing marketing objectives and policies, sales forecasting, new product developing and pricing, licensing and franchise planning, and marketing planning and strategy.<br><br>Illustrative Examples:<br><br>Customer services management consulting services<br>New product development consulting services<br>Marketing management consulting services<br>Sales management consulting services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541614",
                "title": "Process, Physical Distribution, and Logistics Consulting Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing operating advice and assistance to businesses and other organizations in: (1) manufacturing operations improvement; (2) productivity improvement; (3) production planning and control; (4) quality assurance and quality control; (5) inventory management; (6) distribution networks; (7) warehouse use, operations, and utilization; (8) transportation and shipment of goods and materials; and (9) materials management and handling.<br><br>Illustrative Examples:<br><br>Freight rate or tariff rate consulting services<br>Productivity improvement consulting services<br>Manufacturing management consulting services<br>Inventory planning and control management consulting services<br>Transportation management consulting services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541618",
                "title": "Other Management Consulting Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing management consulting services (except administrative and general management consulting; human resources consulting; marketing consulting; or process, physical distribution, and logistics consulting).  Establishments providing telecommunications or utilities management consulting services are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54162",
                "title": "Environmental Consulting Services<sup>T</sup>",
                "description": "See industry description for 541620.<br>"
            },
            {
                "code": "541620",
                "title": "Environmental Consulting Services",
                "description": "This industry comprises establishments primarily engaged in providing advice and assistance to businesses and other organizations on environmental issues, such as the control of environmental contamination from pollutants, toxic substances, and hazardous materials.  These establishments identify problems (e.g., inspect buildings for hazardous materials), measure and evaluate risks, and recommend solutions.  They employ a multidisciplined staff of scientists, engineers, and other technicians with expertise in areas, such as air and water quality, asbestos contamination, remediation, ecological restoration, and environmental law.  Establishments providing sanitation or site remediation consulting services are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "54169",
                "title": "Other Scientific and Technical Consulting Services<sup>T</sup>",
                "description": "See industry description for 541690.<br>"
            },
            {
                "code": "541690",
                "title": "Other Scientific and Technical Consulting Services",
                "description": "This industry comprises establishments primarily engaged in providing advice and assistance to businesses and other organizations on scientific and technical issues (except environmental).<br><br>Illustrative Examples:<br><br>Agricultural consulting services<br>Motion picture consulting services<br>Biological consulting services<br>Physics consulting services<br>Chemical consulting services<br>Radio consulting services<br>Economic consulting services<br>Safety consulting services<br>Energy consulting services\t<br>Security consulting services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5417",
                "title": "Scientific Research and Development Services<sup>T</sup>",
                "description": "This industry group comprises establishments engaged in conducting original investigation undertaken on a systematic basis to gain new knowledge (research) and/or the application of research findings or other scientific knowledge for the creation of new or significantly improved products or processes (experimental development).  Techniques may include modeling and simulation.  The industries within this industry group are defined on the basis of the domain of research; that is, on the scientific expertise of the establishment.<br>"
            },
            {
                "code": "54171",
                "title": "Research and Development in the Physical, Engineering, and Life Sciences<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in conducting research and experimental development in the physical, engineering, and life sciences, such as agriculture, electronics, environmental, biology, botany, biotechnology, computers, chemistry, food, fisheries, forests, geology, health, mathematics, medicine, nanotechnology, oceanography, pharmacy, physics, veterinary, and other allied subjects.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541713",
                "title": "Research and Development in Nanotechnology",
                "description": "This U.S. industry comprises establishments primarily engaged in conducting nanotechnology research and experimental development.  Nanotechnology research and experimental development involves the study of matter at the nanoscale (i.e., a scale of about 1 to 100 nanometers).  This research and development in nanotechnology may result in development of new nanotechnology processes or in prototypes of new or altered materials and/or products that may be reproduced, utilized, or implemented by various industries.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541714",
                "title": "Research and Development in Biotechnology (except Nanobiotechnology)",
                "description": "This U.S. industry comprises establishments primarily engaged in conducting biotechnology (except nanobiotechnology) research and experimental development.  Biotechnology (except nanobiotechnology) research and experimental development involves the study of the use of microorganisms and cellular and biomolecular processes to develop or alter living or non-living materials.  This research and development in biotechnology (except nanobiotechnology) may result in development of new biotechnology (except nanobiotechnology) processes or in prototypes of new or genetically-altered products that may be reproduced, utilized, or implemented by various industries.<br><br>Illustrative Examples:<br><br>Cloning research and experimental development laboratories <br>DNA technologies (e.g., microarrays) research and experimental development laboratories<br>Nucleic acid chemistry research and experimental development laboratories<br>Protein engineering research and experimental development laboratories<br>Recombinant DNA res"
            },
            {
                "code": "541715",
                "title": "Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology)",
                "description": "This U.S. industry comprises establishments primarily engaged in conducting research and experimental development (except nanotechnology and biotechnology research and experimental development) in the physical, engineering, and life sciences, such as agriculture, electronics, environmental, biology, botany, computers, chemistry, food, fisheries, forests, geology, health, mathematics, medicine, oceanography, pharmacy, physics, veterinary, and other allied subjects.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54172",
                "title": "Research and Development in the Social Sciences and Humanities<sup>T</sup>",
                "description": "See industry description for 541720.<br>"
            },
            {
                "code": "541720",
                "title": "Research and Development in the Social Sciences and Humanities",
                "description": "This industry comprises establishments primarily engaged in conducting research and analyses in cognitive development, sociology, psychology, language, behavior, economic, and other social science and humanities research.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5418",
                "title": "Advertising, Public Relations, and Related Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in advertising, public relations, and related services, such as media buying, independent media representation, indoor and outdoor display advertising, direct mail advertising, advertising material distribution services, and other services related to advertising.<br>"
            },
            {
                "code": "54181",
                "title": "Advertising Agencies<sup>T</sup>",
                "description": "See industry description for 541810.<br>"
            },
            {
                "code": "541810",
                "title": "Advertising Agencies",
                "description": "This industry comprises establishments primarily engaged in creating advertising campaigns and placing such advertising in print and digital periodicals, newspapers, radio and television, or other media.  These establishments are organized to provide a full range of services (i.e., through in-house capabilities or subcontracting), including advice, creative services, account management, production of advertising content, media planning, and buying (i.e., placing advertising).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54182",
                "title": "Public Relations Agencies<sup>T</sup>",
                "description": "See industry description for 541820.<br>"
            },
            {
                "code": "541820",
                "title": "Public Relations Agencies",
                "description": "This industry comprises establishments primarily engaged in designing and implementing public relations campaigns.  These campaigns are designed to promote the interests and image of their clients.  Establishments providing lobbying, political consulting, or public relations consulting are included in this industry.<br>"
            },
            {
                "code": "54183",
                "title": "Media Buying Agencies<sup>T</sup>",
                "description": "See industry description for 541830.<br>"
            },
            {
                "code": "541830",
                "title": "Media Buying Agencies",
                "description": "This industry comprises establishments primarily engaged in purchasing advertising time or space from media outlets and reselling it to advertising agencies or individual companies directly.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54184",
                "title": "Media Representatives<sup>T</sup>",
                "description": "See industry description for 541840.<br>"
            },
            {
                "code": "541840",
                "title": "Media Representatives",
                "description": "This industry comprises establishments of independent representatives primarily engaged in selling media time or space for media owners.<br><br>Illustrative Examples:<br><br>Newspaper advertising representatives (i.e., independent of media owners)<br>Radio advertising representatives (i.e., independent of media owners)<br>Publishers' advertising representatives (i.e., independent of media owners)<br>Television advertising representatives (i.e., independent of media owners)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54185",
                "title": "Indoor and Outdoor Display Advertising<sup>T</sup>",
                "description": "See industry description for 541850.<br>"
            },
            {
                "code": "541850",
                "title": "Indoor and Outdoor Display Advertising",
                "description": "This industry comprises establishments primarily engaged in creating and designing public display advertising campaign materials, such as printed, painted, or electronic displays; and/or placing such displays on indoor or outdoor billboards and panels, or on or within transit vehicles or facilities, shopping malls, retail (in-store) displays, and other display structures or sites.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54186",
                "title": "Direct Mail Advertising<sup>T</sup>",
                "description": "See industry description for 541860.<br>"
            },
            {
                "code": "541860",
                "title": "Direct Mail Advertising",
                "description": "This industry comprises establishments primarily engaged in (1) creating and designing advertising campaigns for the purpose of distributing advertising materials (e.g., coupons, flyers, samples) or specialties (e.g., keychains, magnets, pens with customized messages imprinted) by mail or other direct distribution and/or (2) preparing such advertising materials or specialties for mailing or other direct distribution.  These establishments may also compile, maintain, sell, and rent mailing lists.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54187",
                "title": "Advertising Material Distribution Services<sup>T</sup>",
                "description": "See industry description for 541870.<br>"
            },
            {
                "code": "541870",
                "title": "Advertising Material Distribution Services",
                "description": "This industry comprises establishments primarily engaged in the direct distribution or delivery of advertisements (e.g., circulars, coupons, handbills) or samples.  Establishments in this industry use methods, such as delivering advertisements or samples door-to-door, placing flyers or coupons on car windshields in parking lots, or handing out samples in retail stores.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54189",
                "title": "Other Services Related to Advertising<sup>T</sup>",
                "description": "See industry description for 541890.<br>"
            },
            {
                "code": "541890",
                "title": "Other Services Related to Advertising",
                "description": "This industry comprises establishments primarily engaged in providing advertising services (except advertising agency services, public relations agency services, media buying agency services, media representative services, display advertising services, direct mail advertising services, advertising material distribution services, and marketing consulting services).<br><br>Illustrative Examples:<br><br>Advertising specialties (e.g., keychains, magnets, pens) distribution services (except direct mail)<br>Sign lettering and painting services<br>Display lettering services<br>Store window dressing or trimming services<br>Mannequin decorating services<br>Welcoming services (i.e., advertising services)<br>Merchandise demonstration services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5419",
                "title": "Other Professional, Scientific, and Technical Services<sup>T</sup>",
                "description": "This industry group comprises establishments engaged in professional, scientific, and technical services (except legal services; accounting, tax preparation, bookkeeping, and related services; architectural, engineering, and related services; specialized design services; computer systems design and related services; management, scientific, and technical consulting services; scientific research and development services; and advertising, public relations, and related services).<br>"
            },
            {
                "code": "54191",
                "title": "Marketing Research and Public Opinion Polling<sup>T</sup>",
                "description": "See industry description for 541910.<br>"
            },
            {
                "code": "541910",
                "title": "Marketing Research and Public Opinion Polling",
                "description": "This industry comprises establishments primarily engaged in systematically gathering, recording, tabulating, and presenting marketing and public opinion data.<br><br>Illustrative Examples:<br><br>Broadcast media rating services<br>Political opinion polling services<br>Marketing analysis or research services<br>Statistical sampling services<br>Opinion research services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54192",
                "title": "Photographic Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing still, video, or digital photography services.  These establishments may specialize in a particular field of photography, such as commercial and industrial photography, portrait photography, and special events photography.  Commercial or portrait photography studios are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541921",
                "title": "Photography Studios, Portrait",
                "description": "This U.S. industry comprises establishments known as portrait studios primarily engaged in providing still, video, or digital portrait photography services.<br><br>Illustrative Examples:<br><br>Home photography services<br>School photography services<br>Passport photography services<br>Videotaping services for special events (e.g., weddings)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "541922",
                "title": "Commercial Photography",
                "description": "This U.S. industry comprises establishments primarily engaged in providing commercial photography services, generally for advertising agencies, publishers, and other business and industrial users.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54193",
                "title": "Translation and Interpretation Services<sup>T</sup>",
                "description": "See industry description for 541930.<br>"
            },
            {
                "code": "541930",
                "title": "Translation and Interpretation Services",
                "description": "This industry comprises establishments primarily engaged in translating written material and interpreting speech from one language to another and establishments primarily engaged in providing sign language services.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54194",
                "title": "Veterinary Services<sup>T</sup>",
                "description": "See industry description for 541940.<br>"
            },
            {
                "code": "541940",
                "title": "Veterinary Services",
                "description": "This industry comprises establishments of licensed veterinary practitioners primarily engaged in the practice of veterinary medicine, dentistry, or surgery for animals; and establishments primarily engaged in providing testing services for licensed veterinary practitioners.<br><br>Illustrative Examples:<br><br>Animal hospitals<br>Veterinary clinics<br>Veterinarians' offices<br>Veterinary testing laboratories<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "54199",
                "title": "All Other Professional, Scientific, and Technical Services<sup>T</sup>",
                "description": "See industry description for 541990.<br>"
            },
            {
                "code": "541990",
                "title": "All Other Professional, Scientific, and Technical Services",
                "description": "This industry comprises establishments primarily engaged in the provision of professional, scientific, or technical services (except legal services; accounting, tax preparation, bookkeeping, and related services; architectural, engineering, and related services; specialized design services; computer systems design and related services; management, scientific, and technical consulting services; scientific research and development services; advertising, public relations, and related services; market research and public opinion polling; photographic services; translation and interpretation services; and veterinary services).<br><br>Illustrative Examples:<br><br>Appraisal (except real estate) services<br>Marine surveyor (i.e., appraiser) services<br>Arbitration and conciliation services (except by lawyer, attorney, or paralegal offices)<br>Patent broker services (i.e., patent marketing services)<br>Commodity inspector services<br>Pipeline or power line inspection (i.e., visual) services<br>Consumer credit counseling se"
            }
        ],
        "subsectors_count": 95
    },
    {
        "sectorCode": "55",
        "sectorDescription": "Management of Companies and Enterprises",
        "subsectors": [
            {
                "code": "55",
                "title": "Management of Companies and Enterprises<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Management of Companies and Enterprises sector comprises (1) establishments that hold the securities of (or other equity interests in) companies and enterprises for the purpose of owning a controlling interest or influencing management decisions or (2) establishments (except government establishments) that administer, oversee, and manage establishments of the company or enterprise and that normally undertake the strategic or organizational planning and decision-making role of the company or enterprise.  Establishments that administer, oversee, and manage may hold the securities of the company or enterprise.<br><br>Establishments in this sector perform essential activities that are often undertaken in-house by establishments in many sectors of the economy.  By consolidating the performance of these activities of the enterprise at one establishment, economies of scale are achieved.<br><br>Government establishments primarily engaged in administering, overseeing, and managin"
            },
            {
                "code": "551",
                "title": "Management of Companies and Enterprises<sup>T</sup>",
                "description": "Industries in the Management of Companies and Enterprises subsector include three main types of establishments: (1) those that hold the securities of (or other equity interests in) companies and enterprises; (2) those (except government establishments) that administer, oversee, and manage other establishments of the company or enterprise but do not hold the securities of these establishments; and (3) those that both administer, oversee, and manage other establishments of the company or enterprise and hold the securities of (or other equity interests in) these establishments.  Those establishments that administer, oversee, and manage normally undertake the strategic or organizational planning and decision-making role of the company or enterprise.<br>"
            },
            {
                "code": "5511",
                "title": "Management of Companies and Enterprises<sup>T</sup>",
                "description": null
            },
            {
                "code": "55111",
                "title": "Management of Companies and Enterprises<sup>T</sup>",
                "description": "This industry comprises (1) establishments primarily engaged in holding the securities of (or other equity interests in) companies and enterprises for the purpose of owning a controlling interest or influencing management decisions or (2) establishments (except government establishments) that administer, oversee, and manage other establishments of the company or enterprise and that normally undertake the strategic or organizational planning and decision-making role of the company or enterprise.  Establishments that administer, oversee, and manage may hold the securities of the company or enterprise.<br><br>Cross-References."
            },
            {
                "code": "551111",
                "title": "Offices of Bank Holding Companies",
                "description": "This U.S. industry comprises legal entities known as bank holding companies primarily engaged in holding the securities of (or other equity interests in) companies and enterprises for the purpose of owning a controlling interest or influencing the management decisions of these firms.  The holding companies in this industry do not administer, oversee, and manage other establishments of the company or enterprise whose securities they hold.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "551112",
                "title": "Offices of Other Holding Companies",
                "description": "This U.S. industry comprises legal entities known as holding companies (except bank holding) primarily engaged in holding the securities of (or other equity interests in) companies and enterprises for the purpose of owning a controlling interest or influencing the management decisions of these firms.  The holding companies in this industry do not administer, oversee, and manage other establishments of the company or enterprise whose securities they hold.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "551114",
                "title": "Corporate, Subsidiary, and Regional Managing Offices",
                "description": "This U.S. industry comprises establishments (except government establishments) primarily engaged in administering, overseeing, and managing other establishments of the company or enterprise.  These establishments normally undertake the strategic or organizational planning and decision-making role of the company or enterprise.  Establishments in this industry may hold the securities of the company or enterprise.<br><br>Illustrative Examples:<br><br>Centralized administrative offices<br>Head offices<br>Corporate offices<br>Holding companies that manage<br>District and regional offices<br>Subsidiary management offices<br><br><br>Cross-References."
            }
        ],
        "subsectors_count": 7
    },
    {
        "sectorCode": "56",
        "sectorDescription": "Administrative and Support and Waste Management and Remediation Services",
        "subsectors": [
            {
                "code": "56",
                "title": "Administrative and Support and Waste Management and Remediation Services<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Administrative and Support and Waste Management and Remediation Services sector comprises establishments performing routine support activities for the day-to-day operations of other organizations.  These essential activities are often undertaken in-house by establishments in many sectors of the economy.  The establishments in this sector specialize in one or more of these support activities and provide these services to clients in a variety of industries and, in some cases, to households.  Activities performed include: office administration, hiring and placing of personnel, document preparation and similar clerical services, solicitation, collection, security and surveillance services, cleaning, and waste disposal services.<br><br>The administrative and management activities performed by establishments in this sector are typically on a contract or fee basis.  These activities may also be performed by establishments that are part of the company or enterprise.  Howev"
            },
            {
                "code": "561",
                "title": "Administrative and Support Services<sup>T</sup>",
                "description": "Industries in the Administrative and Support Services subsector group establishments engaged in activities that support the day-to-day operations of other organizations.  The processes employed in this sector (e.g., general management, personnel administration, clerical activities, cleaning activities) are often integral parts of the activities of establishments found in all sectors of the economy.  The establishments classified in this subsector have specialization in one or more of these activities and can, therefore, provide services to clients in a variety of industries and, in some cases, to households.  The individual industries of this subsector are defined on the basis of the particular process that they are engaged in and the particular services they provide.<br><br>Many of the activities in this subsector are ongoing routine support functions that businesses and organizations perform in-house.  However, it is common to contract or purchase services from businesses that specialize i"
            },
            {
                "code": "5611",
                "title": "Office Administrative Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "56111",
                "title": "Office Administrative Services<sup>T</sup>",
                "description": "See industry description for 561110.<br>"
            },
            {
                "code": "561110",
                "title": "Office Administrative Services",
                "description": "This industry comprises establishments primarily engaged in providing a range of day-to-day office administrative services, such as financial planning; billing and recordkeeping; personnel; and physical distribution and logistics, for others on a contract or fee basis.  These establishments do not provide operating staff to carry out the complete operations of a business.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5612",
                "title": "Facilities Support Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "56121",
                "title": "Facilities Support Services<sup>T</sup>",
                "description": "See industry description for 561210.<br>"
            },
            {
                "code": "561210",
                "title": "Facilities Support Services",
                "description": "This industry comprises establishments primarily engaged in providing operating staff to perform a combination of support services within a client's facilities.  Establishments in this industry typically provide a combination of services, such as janitorial, maintenance, trash disposal, guard and security, mail routing, reception, laundry, and related services to support operations within facilities.  These establishments provide operating staff to carry out these support activities, but are not involved with or responsible for the core business or activities of the client.  Establishments providing facilities (except computer and/or data processing) operation support services and establishments providing private jail services or operating correctional facilities (i.e., jails) on a contract or fee basis are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "5613",
                "title": "Employment Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in one of the following: (1) listing employment vacancies and referring or placing applicants for employment; (2) providing executive search, recruitment, and placement services; (3) supplying workers to clients' businesses for limited periods of time to supplement the working force of the client; or (4) providing human resources and human resource management services to client businesses and households.<br>"
            },
            {
                "code": "56131",
                "title": "Employment Placement Agencies and Executive Search Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in one of the following: (1) listing employment vacancies and referring or placing applicants for employment; or (2) providing executive search, recruitment, and placement services.<br><br>Illustrative Examples:<br><br>Employment agencies<br>Executive placement agencies or services<br>Executive search services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561311",
                "title": "Employment Placement Agencies",
                "description": "This U.S. industry comprises establishments primarily engaged in listing employment vacancies and in recruiting, referring, or placing applicants for employment.  The individuals referred or placed are not employees of the employment agencies.<br><br>Illustrative Examples:<br><br>Babysitting bureaus (i.e., registries)<br>Employment registries<br>Model registries<br>Casting agencies or bureaus (i.e., motion picture, theatrical, video)<br>Employment agencies<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561312",
                "title": "Executive Search Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing executive search, recruitment, and placement services for clients with specific executive and senior management position requirements.  The range of services provided by these establishments may include developing a search strategy and position specification based on the culture and needs of the client; researching, identifying, screening, and interviewing candidates; verifying candidate qualifications; and assisting in final offer negotiations and assimilation of the selected candidate.  The individuals identified, recruited, or placed are not employees of the executive search services establishments.<br><br>Illustrative Examples:<br><br>Senior executive search services<br>Executive placement services<br>Executive search services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56132",
                "title": "Temporary Help Services<sup>T</sup>",
                "description": "See industry description for 561320.<br>"
            },
            {
                "code": "561320",
                "title": "Temporary Help Services",
                "description": "This industry comprises establishments primarily engaged in supplying workers to clients' businesses for limited periods of time to supplement the working force of the client.  The individuals provided are employees of the temporary help services establishment.  However, these establishments do not provide direct supervision of their employees at the clients' work sites.<br><br>Illustrative Examples:<br><br>Help supply services<br>Model supply services<br>Labor (except farm) contractors (i.e., personnel suppliers)<br>Temporary employment or temporary staffing services<br>Manpower pools<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56133",
                "title": "Professional Employer Organizations<sup>T</sup>",
                "description": "See industry description for 561330.<br>"
            },
            {
                "code": "561330",
                "title": "Professional Employer Organizations",
                "description": "This industry comprises establishments primarily engaged in providing human resources and human resource management services to client businesses and households.  Establishments in this industry operate in a co-employment relationship with client businesses or organizations and are specialized in performing a wide range of human resource and personnel management duties, such as payroll, payroll tax, benefits administration, workers' compensation, unemployment, and human resource administration.  Professional employer organizations (PEOs) are responsible for payroll, including withholding and remitting employment-related taxes, for some or all of the employees of their clients, and also serve as the employer of those employees for benefits and related purposes.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5614",
                "title": "Business Support Services<sup>T</sup>",
                "description": "This industry group comprises establishments engaged in performing activities that are ongoing routine business support functions for clients on a contract or fee basis, or serving other establishments of the same enterprise.<br>"
            },
            {
                "code": "56141",
                "title": "Document Preparation Services<sup>T</sup>",
                "description": "See industry description for 561410.<br>"
            },
            {
                "code": "561410",
                "title": "Document Preparation Services",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) letter or resume writing; (2) document editing or proofreading; (3) typing, word processing, or desktop publishing; and (4) stenography (except court reporting or stenotype recording), transcription, and other secretarial services.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56142",
                "title": "Telephone Call Centers<sup>T</sup>",
                "description": "This industry comprises (1) establishments primarily engaged in answering telephone calls and relaying messages and (2) establishments primarily engaged in providing telemarketing services, such as promoting products or services by telephone; taking orders by telephone, facsimile, email, or other communication modes; and soliciting contributions or providing information by telephone.  Telephone call centers provide these services on behalf of clients and do not own the products or provide the services that they are representing, or they serve other establishments of the same enterprise.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561421",
                "title": "Telephone Answering Services",
                "description": "This U.S. industry comprises establishments primarily engaged in answering telephone calls and relaying messages on behalf of clients or for other establishments of the same enterprise.<br><br>Cross-References."
            },
            {
                "code": "561422",
                "title": "Telemarketing Bureaus and Other Contact Centers",
                "description": "This U.S. industry comprises establishments primarily engaged in operating call centers that initiate or receive communications via telephone, facsimile, email, or other communication modes for purposes such as: (1) promoting products or services, (2) taking orders, (3) soliciting contributions, and (4) providing information or assistance regarding products or services.  Telemarketing bureaus and other contact centers provide these services on behalf of clients and do not own the products or provide the services that they are representing, or they serve other establishments of the same enterprise.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56143",
                "title": "Business Service Centers<sup>T</sup>",
                "description": "This industry comprises (1) establishments primarily engaged in providing mailbox rental and other postal and mailing services (except direct mail advertising); (2) establishments, generally known as copy centers or shops, primarily engaged in providing photocopying, duplicating, blueprinting, and other document copying services without also providing printing services (i.e., offset printing, quick printing, digital printing, prepress services); and (3) establishments that provide a range of office support services (except printing services), such as mailing services, document copying services, facsimile services, word processing services, on-site PC rental services, and office product sales.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561431",
                "title": "Private Mail Centers",
                "description": "This U.S. industry comprises (1) establishments primarily engaged in providing mailbox rental and other postal and mailing (except direct mail advertising) services or (2) establishments engaged in providing these mailing services along with one or more other office support services, such as facsimile services, word processing services, on-site PC rental services, and office product sales.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561439",
                "title": "Other Business Service Centers (including Copy Shops)",
                "description": "This U.S. industry comprises (1) establishments generally known as copy centers or shops primarily engaged in providing photocopying, duplicating, blueprinting, and other document copying services, without also providing printing services (e.g., offset printing, quick printing, digital printing, prepress services) and (2) establishments (except private mail centers) engaged in providing a range of office support services (except printing services), such as document copying services, facsimile services, word processing services, on-site PC rental services, and office product sales.<br><br>Cross-References."
            },
            {
                "code": "56144",
                "title": "Collection Agencies<sup>T</sup>",
                "description": "See industry description for 561440.<br>"
            },
            {
                "code": "561440",
                "title": "Collection Agencies",
                "description": "This industry comprises establishments primarily engaged in collecting payments for claims and remitting payments collected to their clients.<br><br>Illustrative Examples:<br><br>Account or delinquent account collection services<br>Tax collection services on a contract or fee basis<br>Bill or debt collection services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56145",
                "title": "Credit Bureaus<sup>T</sup>",
                "description": "See industry description for 561450.<br>"
            },
            {
                "code": "561450",
                "title": "Credit Bureaus",
                "description": "This industry comprises establishments primarily engaged in compiling information, such as credit and employment histories, and providing the information to financial institutions, retailers, and others who have a need to evaluate the creditworthiness of individuals and businesses.<br><br>Illustrative Examples:<br><br>Credit agencies<br>Credit rating services<br>Credit investigation services<br>Credit reporting bureaus<br>"
            },
            {
                "code": "56149",
                "title": "Other Business Support Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing business support services (except secretarial and other document preparation services; telephone answering or telemarketing services; private mail services or document copying services conducted as separate activities or in conjunction with other office support services; monetary debt collection services; and credit reporting services).<br><br>Illustrative Examples:<br><br>Address bar coding services<br>Mail presorting services<br>Bar code imprinting services<br>Court reporting services<br>Repossession services<br>Real-time (i.e., simultaneous) closed captioning of live television performances, meetings, conferences<br>Charitable fundraising campaign organization services on a contract or fee basis<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561491",
                "title": "Repossession Services",
                "description": "This U.S. industry comprises establishments primarily engaged in repossessing tangible assets (e.g., automobiles, boats, equipment, planes, furniture, appliances) for the creditor as a result of delinquent debts.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561492",
                "title": "Court Reporting and Stenotype Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing verbatim reporting and stenotype recording of live legal proceedings and transcribing subsequent recorded materials.<br><br>Illustrative Examples:<br><br>Real-time (i.e., simultaneous) closed captioning of live television performances, meetings, conferences<br>Court reporting or stenotype recording services<br>Public stenography services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561499",
                "title": "All Other Business Support Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing business support services (except secretarial and other document preparation services; telephone answering and telemarketing services; private mail services or document copying services conducted as separate activities or in conjunction with other office support services; monetary debt collection services; credit reporting services; repossession services; and court reporting and stenotype recording services).<br><br>Illustrative Examples:<br><br>Address bar coding services<br>Charitable fundraising campaign organization services on a contract or fee basis<br>Bar code imprinting services<br>Mail presorting services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5615",
                "title": "Travel Arrangement and Reservation Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in one of the following: (1) travel agency services; (2) arranging and assembling tours; or (3) other travel arrangement and reservation services.<br>"
            },
            {
                "code": "56151",
                "title": "Travel Agencies<sup>T</sup>",
                "description": "See industry description for 561510.<br>"
            },
            {
                "code": "561510",
                "title": "Travel Agencies",
                "description": "This industry comprises establishments primarily engaged in acting as agents in selling travel, tour, and accommodation services to the general public and commercial clients.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56152",
                "title": "Tour Operators<sup>T</sup>",
                "description": "See industry description for 561520.<br>"
            },
            {
                "code": "561520",
                "title": "Tour Operators",
                "description": "This industry comprises establishments primarily engaged in arranging and assembling tours.  The tours are sold through travel agencies or tour operators.  Travel or wholesale tour operators are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56159",
                "title": "Other Travel Arrangement and Reservation Services<sup>T</sup>",
                "description": "This industry comprises establishments (except travel agencies and tour operators) primarily engaged in providing travel arrangement and reservation services.<br><br>Illustrative Examples:<br><br>Condominium time-share exchange services<br>Road and travel services automobile clubs<br>Convention or visitors bureaus<br>Ticket (e.g., amusement, sports, theatrical) agencies<br>Ticket (e.g., airline, bus, cruise ship, sports, theatrical) offices<br>Reservation (e.g., airline, car rental, hotel, restaurant) services<br><br><br>Cross-References."
            },
            {
                "code": "561591",
                "title": "Convention and Visitors Bureaus",
                "description": "This U.S. industry comprises establishments primarily engaged in marketing and promoting communities and facilities to businesses and leisure travelers through a range of activities, such as assisting organizations in locating meeting and convention sites; providing travel information on area attractions, lodging accommodations, restaurants; providing maps; and organizing group tours of local historical, recreational, and cultural attractions.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561599",
                "title": "All Other Travel Arrangement and Reservation Services",
                "description": "This U.S. industry comprises establishments (except travel agencies, tour operators, and convention and visitors bureaus) primarily engaged in providing travel arrangement and reservation services.<br><br>Illustrative Examples:<br><br>Condominium time-share exchange services<br>Ticket (e.g., airline, bus, cruise ship, sports, theatrical) offices<br>Road and travel services automobile clubs<br>Reservation (e.g., airline, car rental, hotel, restaurant) services<br>Ticket (e.g., amusement, sports, theatrical) agencies<br><br><br>Cross-References."
            },
            {
                "code": "5616",
                "title": "Investigation and Security Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in one of the following: (1) investigation, guard, and armored car services; (2) selling security systems, such as burglar and fire alarms and locking devices, along with installation, repair, or monitoring services; or (3) remote monitoring of electronic security alarm systems.<br>"
            },
            {
                "code": "56161",
                "title": "Investigation, Guard, and Armored Car Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing one or more of the following: (1) investigation, detective, and personal background check services; (2) guard and patrol services; and (3) picking up and delivering money, receipts, or other valuable items with personnel and equipment to protect such properties while in transit.<br><br>Illustrative Examples:<br><br>Armored car services<br>Private detective services<br>Bodyguard services<br>Security guard services<br>Polygraph services<br><br><br>Cross-References."
            },
            {
                "code": "561611",
                "title": "Investigation and Personal Background Check Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing investigation, detective, and personal background check services.<br><br>Illustrative Examples:<br><br>Fingerprint services<br>Private detective services<br>Polygraph services<br>Private investigative services (except credit)<br><br><br>Cross-References."
            },
            {
                "code": "561612",
                "title": "Security Guards and Patrol Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing guard and patrol services, such as bodyguard, guard dog, and parking security services.<br><br>Cross-References."
            },
            {
                "code": "561613",
                "title": "Armored Car Services",
                "description": "This U.S. industry comprises establishments primarily engaged in picking up and delivering money, receipts, or other valuable items.  These establishments maintain personnel and equipment to protect such properties while in transit.<br>"
            },
            {
                "code": "56162",
                "title": "Security Systems Services<sup>T</sup>",
                "description": "This industry comprises establishments engaged in (1) selling security systems, such as burglar and fire alarms and locking devices, along with installation, repair, or monitoring services or (2) remote monitoring of electronic security alarm systems.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561621",
                "title": "Security Systems Services (except Locksmiths)",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) selling security alarm systems, such as burglar and fire alarms, along with installation, repair, or monitoring services or (2) remote monitoring of electronic security alarm systems.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "561622",
                "title": "Locksmiths",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) selling mechanical or electronic locking devices, safes, and security vaults, along with installation, repair, rebuilding, or adjusting services or (2) installing, repairing, rebuilding, and adjusting mechanical or electronic locking devices, safes, and security vaults.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5617",
                "title": "Services to Buildings and Dwellings<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in one of the following: (1) exterminating and pest control services; (2) janitorial services; (3) landscaping services; (4) carpet and upholstery cleaning services; or (5) other services to buildings and dwellings.<br>"
            },
            {
                "code": "56171",
                "title": "Exterminating and Pest Control Services<sup>T</sup>",
                "description": "See industry description for 561710.<br>"
            },
            {
                "code": "561710",
                "title": "Exterminating and Pest Control Services",
                "description": "This industry comprises establishments primarily engaged in exterminating and controlling birds, mosquitoes, rodents, termites, and other insects and pests (except for crop production and forestry production).  Establishments providing fumigation services are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "56172",
                "title": "Janitorial Services<sup>T</sup>",
                "description": "See industry description for 561720.<br>"
            },
            {
                "code": "561720",
                "title": "Janitorial Services",
                "description": "This industry comprises establishments primarily engaged in cleaning building interiors, interiors of transportation equipment (e.g., aircraft, rail cars, ships), and/or windows.<br><br>Illustrative Examples:<br><br>Custodial services<br>Service station cleaning and degreasing services<br>Housekeeping (i.e., cleaning) services<br>Washroom sanitation services<br>Maid (i.e., cleaning) services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56173",
                "title": "Landscaping Services<sup>T</sup>",
                "description": "See industry description for 561730.<br>"
            },
            {
                "code": "561730",
                "title": "Landscaping Services",
                "description": "This industry comprises (1) establishments primarily engaged in providing landscape care and maintenance services and/or installing trees, shrubs, plants, lawns, or gardens and (2) establishments primarily engaged in providing these services along with the design of landscape plans and/or the construction (i.e., installation) of walkways, retaining walls, decks, fences, ponds, and similar structures.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56174",
                "title": "Carpet and Upholstery Cleaning Services<sup>T</sup>",
                "description": "See industry description for 561740.<br>"
            },
            {
                "code": "561740",
                "title": "Carpet and Upholstery Cleaning Services",
                "description": "This industry comprises establishments primarily engaged in cleaning and dyeing used rugs, carpets, and upholstery.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56179",
                "title": "Other Services to Buildings and Dwellings<sup>T</sup>",
                "description": "See industry description for 561790.<br>"
            },
            {
                "code": "561790",
                "title": "Other Services to Buildings and Dwellings",
                "description": "This industry comprises establishments primarily engaged in providing services to buildings and dwellings (except exterminating and pest control; janitorial; landscaping care and maintenance; and carpet and upholstery cleaning).<br><br>Illustrative Examples:<br><br>Building exterior cleaning services (except sandblasting, window cleaning)<br>Swimming pool cleaning and maintenance services<br>Chimney cleaning services<br>Ventilation duct cleaning services<br>Drain or gutter cleaning services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5619",
                "title": "Other Support Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in providing day-to-day business and other organizational support services (except office administrative services; facilities support services; employment services; business support services; travel arrangement and reservation services; security and investigation services; and services to buildings and dwellings).<br>"
            },
            {
                "code": "56191",
                "title": "Packaging and Labeling Services<sup>T</sup>",
                "description": "See industry description for 561910.<br>"
            },
            {
                "code": "561910",
                "title": "Packaging and Labeling Services",
                "description": "This industry comprises establishments primarily engaged in packaging client-owned materials.  The services may include labeling and/or imprinting the package.<br><br>Illustrative Examples:<br><br>Apparel and textile folding and packaging services<br>Kit assembling and packaging services<br>Blister packaging services<br>Shrink wrapping services<br>Gift wrapping services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56192",
                "title": "Convention and Trade Show Organizers<sup>T</sup>",
                "description": "See industry description for 561920.<br>"
            },
            {
                "code": "561920",
                "title": "Convention and Trade Show Organizers",
                "description": "This industry comprises establishments primarily engaged in organizing, promoting, and/or managing events, such as business and trade shows, conventions, conferences, and meetings (whether or not they manage and provide the staff to operate the facilities in which these events take place).<br><br>Cross-References."
            },
            {
                "code": "56199",
                "title": "All Other Support Services<sup>T</sup>",
                "description": "See industry description for 561990.<br>"
            },
            {
                "code": "561990",
                "title": "All Other Support Services",
                "description": "This industry comprises establishments primarily engaged in providing day-to-day business and other organizational support services (except office administrative services, facilities support services, employment services, business support services, travel arrangement and reservation services, security and investigation services, services to buildings and other structures, packaging and labeling services, and convention and trade show organizing services).<br><br>Illustrative Examples:<br><br>Bartering services<br>Flagging (i.e., traffic control) services<br>Bottle exchanges<br>Float decorating services<br>Inventory taking services<br>Contract meter reading services<br>Lumber grading services<br>Diving services on a contract or fee basis<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562",
                "title": "Waste Management and Remediation Services<sup>T</sup>",
                "description": "Industries in the Waste Management and Remediation Services subsector group establishments engaged in the collection, treatment, and disposal of waste materials.  This includes establishments engaged in local hauling of waste materials; operating materials recovery facilities (i.e., those that sort recyclable materials from the trash stream); providing remediation services (i.e., those that provide for the cleanup of contaminated buildings, mine sites, soil, or ground water); and providing septic pumping and other miscellaneous waste management services.  There are three industry groups within the subsector that separate these activities into waste collection, waste treatment and disposal, and remediation and other waste management.<br><br>Excluded from this subsector are establishments primarily engaged in collecting, treating, and disposing waste through sewer systems or sewage treatment facilities that are classified in Industry 22132, Sewage Treatment Facilities, and establishments prima"
            },
            {
                "code": "5621",
                "title": "Waste Collection",
                "description": null
            },
            {
                "code": "56211",
                "title": "Waste Collection",
                "description": "This industry comprises establishments primarily engaged in (1) collecting and/or hauling hazardous waste, nonhazardous waste, and/or recyclable materials within a local area and/or (2) operating hazardous or nonhazardous waste transfer stations.  Hazardous waste collection establishments may be responsible for the identification, treatment, packaging, and labeling of waste for the purposes of transport.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562111",
                "title": "Solid Waste Collection",
                "description": "This U.S. industry comprises establishments primarily engaged in one or more of the following: (1) collecting and/or hauling nonhazardous solid waste (i.e., garbage) within a local area; (2) operating nonhazardous solid waste transfer stations; and (3) collecting and/or hauling mixed recyclable materials within a local area.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562112",
                "title": "Hazardous Waste Collection",
                "description": "This U.S. industry comprises establishments primarily engaged in collecting and/or hauling hazardous waste within a local area and/or operating hazardous waste transfer stations.  Hazardous waste collection establishments may be responsible for the identification, treatment, packaging, and labeling of waste for the purposes of transport.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562119",
                "title": "Other Waste Collection",
                "description": "This U.S. industry comprises establishments primarily engaged in collecting and/or hauling waste (except nonhazardous solid waste and hazardous waste) within a local area.  Establishments engaged in brush or rubble removal services are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5622",
                "title": "Waste Treatment and Disposal",
                "description": null
            },
            {
                "code": "56221",
                "title": "Waste Treatment and Disposal",
                "description": "This industry comprises establishments primarily engaged in (1) operating waste treatment or disposal facilities (except sewer systems or sewage treatment facilities) or (2) the combined activity of collecting and/or hauling of waste materials within a local area and operating waste treatment or disposal facilities.  Waste combustors or incinerators (including those that may produce byproducts, such as electricity), solid waste landfills, and compost dumps are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562211",
                "title": "Hazardous Waste Treatment and Disposal",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) operating treatment and/or disposal facilities for hazardous waste or (2) the combined activity of collecting and/or hauling of hazardous waste materials within a local area and operating treatment or disposal facilities for hazardous waste.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562212",
                "title": "Solid Waste Landfill",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) operating landfills for the disposal of nonhazardous solid waste or (2) the combined activity of collecting and/or hauling nonhazardous waste materials within a local area and operating landfills for the disposal of nonhazardous solid waste.  These establishments may produce byproducts, such as methane.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562213",
                "title": "Solid Waste Combustors and Incinerators",
                "description": "This U.S. industry comprises establishments primarily engaged in operating combustors and incinerators for the disposal of nonhazardous solid waste.  These establishments may produce byproducts, such as electricity and steam.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562219",
                "title": "Other Nonhazardous Waste Treatment and Disposal",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) operating nonhazardous waste treatment and disposal facilities (except landfills, combustors, incinerators, and sewer systems or sewage treatment facilities) or (2) the combined activity of collecting and/or hauling of nonhazardous waste materials within a local area and operating waste treatment or disposal facilities (except landfills, combustors, incinerators, and sewer systems or sewage treatment facilities).  Compost dumps are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "5629",
                "title": "Remediation and Other Waste Management Services",
                "description": "This industry group comprises establishments primarily engaged in remediation and other waste management services (except waste collection, waste treatment and disposal, and waste management consulting services).<br>"
            },
            {
                "code": "56291",
                "title": "Remediation Services",
                "description": "See industry description for 562910.<br>"
            },
            {
                "code": "562910",
                "title": "Remediation Services",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) remediation and cleanup of contaminated buildings, mine sites, soil, or ground water; (2) integrated mine reclamation activities, including demolition, soil remediation, waste water treatment, hazardous material removal, contouring land, and revegetation; and (3) asbestos, lead paint, and other toxic material abatement.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "56292",
                "title": "Materials Recovery Facilities",
                "description": "See industry description for 562920.<br>"
            },
            {
                "code": "562920",
                "title": "Materials Recovery Facilities",
                "description": "This industry comprises establishments primarily engaged in (1) operating facilities for separating and sorting recyclable materials from nonhazardous waste streams (i.e., garbage) and/or (2) operating facilities where commingled recyclable materials, such as paper, plastics, used beverage cans, and metals, are sorted into distinct categories.<br><br>Cross-References."
            },
            {
                "code": "56299",
                "title": "All Other Waste Management Services",
                "description": "This industry comprises establishments primarily engaged in waste management services (except waste collection, waste treatment and disposal, remediation, operation of materials recovery facilities, and waste management consulting services).<br><br>Illustrative Examples:<br><br>Beach cleaning and maintenance services<br>Pumping (i.e., cleaning) cesspools, portable toilets, or septic tanks<br>Cesspool cleaning services<br>Sewer cleaning and rodding services<br>Portable toilet renting and/or servicing<br>Sewer or storm basin cleanout services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562991",
                "title": "Septic Tank and Related Services",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) pumping (i.e., cleaning) septic tanks and cesspools and/or (2) renting and/or servicing portable toilets.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "562998",
                "title": "All Other Miscellaneous Waste Management Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing waste management services (except waste collection, waste treatment and disposal, remediation, operation of materials recovery facilities, septic tank pumping and related services, and waste management consulting services).<br><br>Illustrative Examples:<br><br>Beach cleaning and maintenance services<br>Sewer or storm basin cleanout services<br>Catch basin cleaning services<br>Tank cleaning and disposal services, commercial or industrial<br>Sewer cleaning and rodding services<br><br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 87
    },
    {
        "sectorCode": "61",
        "sectorDescription": "Educational Services",
        "subsectors": [
            {
                "code": "61",
                "title": "Educational Services<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Educational Services sector comprises establishments that provide instruction and training in a wide variety of subjects.  This instruction and training is provided by specialized establishments, such as schools, colleges, universities, and training centers.  These establishments may be privately owned and operated for profit or not for profit, or they may be publicly owned and operated.  They may also offer food and/or accommodation services to their students.<br><br>Educational services are usually delivered by teachers or instructors that explain, tell, demonstrate, supervise, and direct learning.  Instruction is imparted in diverse settings, such as educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.  It can be adapted to the part"
            },
            {
                "code": "611",
                "title": "Educational Services<sup>T</sup>",
                "description": "Industries in the Educational Services subsector provide instruction and training in a wide variety of subjects.  The instruction and training is provided by specialized establishments, such as schools, colleges, universities, and training centers.<br><br>The subsector is structured according to level and type of educational services.  Elementary and secondary schools, junior colleges, and colleges, universities, and professional schools correspond to a recognized series of formal levels of education designated by diplomas, associate degrees (including equivalent certificates), and degrees.  The remaining industry groups are based more on the type of instruction or training offered, and the levels are not always as formally defined.  The establishments are often highly specialized, many offering instruction in a very limited subject matter, for example ski lessons or one specific computer software application.  Within the subsector, the level and types of training that are required of the in"
            },
            {
                "code": "6111",
                "title": "Elementary and Secondary Schools<sup>T</sup>",
                "description": null
            },
            {
                "code": "61111",
                "title": "Elementary and Secondary Schools",
                "description": "See industry description for 611110.<br>"
            },
            {
                "code": "611110",
                "title": "Elementary and Secondary Schools",
                "description": "This industry comprises establishments primarily engaged in furnishing academic courses and associated course work that comprise a basic preparatory education.  A basic preparatory education ordinarily constitutes kindergarten through 12th grade.  This industry includes school boards and school districts.<br><br>Illustrative Examples:<br><br>Elementary schools<br>Parochial schools, elementary or secondary<br>High schools<br>Primary schools<br>Charter schools<br>Kindergartens<br>Military academies, elementary or secondary<br>Schools for the physically disabled, elementary or secondary<br><br><br>Cross-References."
            },
            {
                "code": "6112",
                "title": "Junior Colleges<sup>T</sup>",
                "description": null
            },
            {
                "code": "61121",
                "title": "Junior Colleges<sup>T</sup>",
                "description": "See industry description for 611210.<br>"
            },
            {
                "code": "611210",
                "title": "Junior Colleges",
                "description": "This industry comprises establishments primarily engaged in furnishing academic, or academic and technical, courses and granting associate degrees, certificates, or diplomas below the baccalaureate level.  The requirement for admission to an associate or equivalent degree program is at least a high school diploma or equivalent general academic training.  Instruction may be provided in diverse settings, such as the establishment's or client's training facilities, educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.<br><br>Cross-References."
            },
            {
                "code": "6113",
                "title": "Colleges, Universities, and Professional Schools<sup>T</sup>",
                "description": null
            },
            {
                "code": "61131",
                "title": "Colleges, Universities, and Professional Schools<sup>T</sup>",
                "description": "See industry description for 611310.<br>"
            },
            {
                "code": "611310",
                "title": "Colleges, Universities, and Professional Schools",
                "description": "This industry comprises establishments primarily engaged in furnishing academic courses and granting degrees at baccalaureate or graduate levels.  The requirement for admission is at least a high school diploma or equivalent general academic training.  Instruction may be provided in diverse settings, such as the establishment's or client's training facilities, educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.<br><br>Illustrative Examples:<br><br>Colleges (except junior colleges)<br>Theological seminaries offering baccalaureate or graduate degrees<br>Military academies, college-level<br>Universities<br>Professional schools (e.g., business administration, dental, law, medical)<br><br><br>Cross-References."
            },
            {
                "code": "6114",
                "title": "Business Schools and Computer and Management Training<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in one of the following: (1) offering courses in office procedures and secretarial and stenographic skills and may offer courses in basic office skills, such as word processing; (2) conducting computer training (except computer repair); or (3) offering an array of short duration courses and seminars for management and professional development.  Instruction may be provided in diverse settings, such as the establishment's or client's training facilities, educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.<br>"
            },
            {
                "code": "61141",
                "title": "Business and Secretarial Schools<sup>T</sup>",
                "description": "See industry description for 611410.<br>"
            },
            {
                "code": "611410",
                "title": "Business and Secretarial Schools",
                "description": "This industry comprises establishments primarily engaged in offering courses in office procedures and secretarial and stenographic skills and may offer courses in basic office skills, such as word processing.  In addition, these establishments may offer such classes as office machine operation, reception, communications, and other skills designed for individuals pursuing a clerical or secretarial career.  Instruction may be provided in diverse settings, such as the establishment's or client's training facilities, educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "61142",
                "title": "Computer Training<sup>T</sup>",
                "description": "See industry description for 611420.<br>"
            },
            {
                "code": "611420",
                "title": "Computer Training",
                "description": "This industry comprises establishments primarily engaged in conducting computer training (except computer repair), such as instruction in computer programming, software applications, computerized business systems, computer electronics technology, computer operations, and local area network management.  Instruction may be provided in diverse settings, such as the establishment's or client's training facilities, educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "61143",
                "title": "Professional and Management Development Training<sup>T</sup>",
                "description": "See industry description for 611430.<br>"
            },
            {
                "code": "611430",
                "title": "Professional and Management Development Training",
                "description": "This industry comprises establishments primarily engaged in offering an array of short duration courses and seminars for management and professional development.  Training for career development may be provided directly to individuals or through employers' training programs, and courses may be customized or modified to meet the special needs of customers.  Instruction may be provided in diverse settings, such as the establishment's or client's training facilities, educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "6115",
                "title": "Technical and Trade Schools<sup>T</sup>",
                "description": null
            },
            {
                "code": "61151",
                "title": "Technical and Trade Schools<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in offering vocational and technical training in a variety of technical subjects and trades.  The training often leads to job-specific certification.  Instruction may be provided in diverse settings, such as the establishment's or client's training facilities, educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.<br><br>Illustrative Examples:<br><br>Apprenticeship training programs<br>Graphic arts schools<br>Aviation and flight training schools<br>Modeling schools<br>Computer repair training<br>Nursing schools (except academic)<br>Cosmetology schools<br>Real estate schools<br>Electronic equipment repair training<br>Truck driving schools <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "611511",
                "title": "Cosmetology and Barber Schools",
                "description": "This U.S. industry comprises establishments primarily engaged in offering training in barbering, hair styling, or the cosmetic arts, such as makeup or skin care.  These schools provide job-specific certification.<br>"
            },
            {
                "code": "611512",
                "title": "Flight Training",
                "description": "This U.S. industry comprises establishments primarily engaged in offering aviation and flight training.  These establishments may offer vocational training, recreational training, or both.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "611513",
                "title": "Apprenticeship Training",
                "description": "This U.S. industry comprises establishments primarily engaged in offering apprenticeship training programs.  These programs involve applied training as well as course work.<br><br>Cross-References."
            },
            {
                "code": "611519",
                "title": "Other Technical and Trade Schools",
                "description": "This U.S. industry comprises establishments primarily engaged in offering job or career vocational or technical courses (except cosmetology and barber training, aviation and flight training, and apprenticeship training).  The curriculums offered by these schools are highly structured and specialized and lead to job-specific certification.<br><br>Illustrative Examples:<br><br>Bartending schools<br>Modeling schools<br>Broadcasting schools<br>Real estate schools<br>Computer repair training<br>Truck driving schools<br>Graphic arts schools<br>Specialized military training (except flight instruction, academies, and basic training)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "6116",
                "title": "Other Schools and Instruction<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in offering or providing instruction (except academic schools, colleges, and universities; business, computer, and management instruction; and technical and trade instruction).  Instruction may be provided in diverse settings, such as the establishment's or client's training facilities, educational institutions, the workplace, or the home, and through diverse means, such as correspondence, television, the Internet, or other electronic and distance-learning methods.  The training provided by these establishments may include the use of simulators and simulation methods.<br>"
            },
            {
                "code": "61161",
                "title": "Fine Arts Schools<sup>T</sup>",
                "description": "See industry description for 611610.<br>"
            },
            {
                "code": "611610",
                "title": "Fine Arts Schools",
                "description": "This industry comprises establishments primarily engaged in offering instruction in the arts, including dance, art, drama, and music.<br><br>Illustrative Examples:<br><br>Art (except commercial and graphic) instruction<br>Music instruction (e.g., piano, guitar)<br>Dance instruction<br>Music schools (except academic)<br>Dance studios<br>Performing arts schools (except academic)<br>Drama schools (except academic)<br>Photography schools (except commercial photography)<br>Fine arts schools (except academic)<br><br><br>Cross-References."
            },
            {
                "code": "61162",
                "title": "Sports and Recreation Instruction<sup>T</sup>",
                "description": "See industry description for 611620.<br>"
            },
            {
                "code": "611620",
                "title": "Sports and Recreation Instruction",
                "description": "This industry comprises establishments, such as camps and schools, primarily engaged in offering instruction in athletic activities.  Overnight and day sports instruction camps are included in this industry.<br><br>Illustrative Examples:<br><br>Camps, sports instruction<br>Professional sports instructors (i.e., not participating in sporting events)<br>Cheerleading instruction<br>Riding instruction academies or schools<br>Gymnastics instruction<br>Sports (e.g., baseball, basketball, football, golf) instruction<br>Martial arts instruction, camps or schools<br>Swimming instruction<br><br><br>Cross-References."
            },
            {
                "code": "61163",
                "title": "Language Schools<sup>T</sup>",
                "description": "See industry description for 611630.<br>"
            },
            {
                "code": "611630",
                "title": "Language Schools",
                "description": "This industry comprises establishments primarily engaged in offering foreign language instruction (including sign language).  These establishments are designed to offer language instruction ranging from conversational skills for personal enrichment to intensive training courses for career or educational opportunities.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "61169",
                "title": "All Other Schools and Instruction<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in offering instruction (except academic schools, colleges, and universities; business, computer, and management instruction; technical and trade instruction; and fine arts, sports, recreation, and language instruction).<br><br>Illustrative Examples:<br><br>Academic tutoring services<br>Public speaking training<br>Automobile driving schools<br>Speed reading instruction<br>Exam preparation services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "611691",
                "title": "Exam Preparation and Tutoring",
                "description": "This U.S. industry comprises establishments primarily engaged in offering preparation for standardized examinations and/or academic tutoring services.<br><br>Illustrative Examples:<br><br>Academic tutoring services<br>Learning centers offering remedial courses<br>College board preparation centers<br>Professional examination review instruction<br>"
            },
            {
                "code": "611692",
                "title": "Automobile Driving Schools",
                "description": "This U.S. industry comprises establishments primarily engaged in offering automobile driving instruction.<br><br>Cross-References."
            },
            {
                "code": "611699",
                "title": "All Other Miscellaneous Schools and Instruction",
                "description": "This U.S. industry comprises establishments primarily engaged in offering instruction (except academic schools, colleges, and universities; business, computer, and management instruction; technical and trade instruction; and fine arts, sports, recreation, language, exam preparation, tutoring, and automobile driving instruction).<br><br>Illustrative Examples:<br><br>Public speaking training<br>Survival training<br>Speed reading instruction<br>Yoga instruction, camps or schools<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "6117",
                "title": "Educational Support Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "61171",
                "title": "Educational Support Services<sup>T</sup>",
                "description": "See industry description for 611710.<br>"
            },
            {
                "code": "611710",
                "title": "Educational Support Services",
                "description": "This industry comprises establishments primarily engaged in providing non-instructional services that support educational processes or systems.<br><br>Illustrative Examples:<br><br>Educational consultants<br>Educational testing services<br>Educational guidance counseling services<br>Student exchange programs<br>Educational testing evaluation services<br><br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 38
    },
    {
        "sectorCode": "62",
        "sectorDescription": "Health Care and Social Assistance",
        "subsectors": [
            {
                "code": "62",
                "title": "Health Care and Social Assistance<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Health Care and Social Assistance sector comprises establishments providing health care and social assistance for individuals.  The sector includes both health care and social assistance because it is sometimes difficult to distinguish between the boundaries of these two activities.  The industries in this sector are arranged on a continuum starting with establishments providing medical care exclusively, continuing with those providing health care and social assistance, and finally finishing with those providing only social assistance.  Establishments in this sector deliver services by trained professionals.  All industries in the sector share this commonality of process, namely, labor inputs of health practitioners or social workers with the requisite expertise.  Many of the industries in the sector are defined based on the educational degree held by the practitioners included in the industry.<br><br>Excluded from this sector are yoga and aerobics instruction in S"
            },
            {
                "code": "621",
                "title": "Ambulatory Health Care Services<sup>T</sup>",
                "description": "Industries in the Ambulatory Health Care Services subsector provide health care services directly or indirectly to ambulatory patients and do not usually provide inpatient services.  Health practitioners in this subsector provide outpatient services, with the facilities and equipment not usually being the most significant part of the production process.<br>"
            },
            {
                "code": "6211",
                "title": "Offices of Physicians<sup>T</sup>",
                "description": null
            },
            {
                "code": "62111",
                "title": "Offices of Physicians<sup>T</sup>",
                "description": "This industry comprises establishments of health practitioners having the degree of M.D. (Doctor of Medicine) or D.O. (Doctor of Osteopathic Medicine) primarily engaged in the independent practice of general or specialized medicine (e.g., anesthesiology, oncology, ophthalmology, psychiatry) or surgery.  These practitioners operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br><br>Cross-References."
            },
            {
                "code": "621111",
                "title": "Offices of Physicians (except Mental Health Specialists)",
                "description": "This U.S. industry comprises establishments of health practitioners having the degree of M.D. (Doctor of Medicine) or D.O. (Doctor of Osteopathic Medicine) primarily engaged in the independent practice of general or specialized medicine (except psychiatry or psychoanalysis) or surgery.  These practitioners operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br><br>Cross-References."
            },
            {
                "code": "621112",
                "title": "Offices of Physicians, Mental Health Specialists",
                "description": "This U.S. industry comprises establishments of health practitioners having the degree of M.D. (Doctor of Medicine) or D.O. (Doctor of Osteopathic Medicine) primarily engaged in the independent practice of psychiatry or psychoanalysis.  These practitioners operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br><br>Cross-References."
            },
            {
                "code": "6212",
                "title": "Offices of Dentists<sup>T</sup>",
                "description": null
            },
            {
                "code": "62121",
                "title": "Offices of Dentists<sup>T</sup>",
                "description": "See industry description for 621210.<br>"
            },
            {
                "code": "621210",
                "title": "Offices of Dentists",
                "description": "This industry comprises establishments of health practitioners having the degree of D.M.D. (Doctor of Dental Medicine), D.D.S. (Doctor of Dental Surgery), or D.D.Sc. (Doctor of Dental Science) primarily engaged in the independent practice of general or specialized dentistry or dental surgery.  These practitioners operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.  They can provide either comprehensive preventive, cosmetic, or emergency care, or specialize in a single field of dentistry.<br><br>Cross-References."
            },
            {
                "code": "6213",
                "title": "Offices of Other Health Practitioners<sup>T</sup>",
                "description": "This industry group comprises establishments of independent health practitioners (except physicians and dentists).<br>"
            },
            {
                "code": "62131",
                "title": "Offices of Chiropractors<sup>T</sup>",
                "description": "See industry description for 621310.<br>"
            },
            {
                "code": "621310",
                "title": "Offices of Chiropractors",
                "description": "This industry comprises establishments of health practitioners having the degree of D.C. (Doctor of Chiropractic) primarily engaged in the independent practice of chiropractic.  These practitioners provide diagnostic and therapeutic treatment of neuromusculoskeletal and related disorders through the manipulation and adjustment of the spinal column and extremities, and operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br>"
            },
            {
                "code": "62132",
                "title": "Offices of Optometrists<sup>T</sup>",
                "description": "See industry description for 621320.<br>"
            },
            {
                "code": "621320",
                "title": "Offices of Optometrists",
                "description": "This industry comprises establishments of health practitioners having the degree of O.D. (Doctor of Optometry) primarily engaged in the independent practice of optometry.  These practitioners examine, diagnose, treat, and manage diseases and disorders of the visual system, the eye, and associated structures as well as diagnose related systemic conditions.  Offices of optometrists prescribe and/or provide eyeglasses, contact lenses, low vision aids, and vision therapy.  They operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers, and may also provide the same services as opticians, such as selling and fitting prescription eyeglasses and contact lenses.<br><br>Cross-References."
            },
            {
                "code": "62133",
                "title": "Offices of Mental Health Practitioners (except Physicians)<sup>T</sup>",
                "description": "See industry description for 621330.<br>"
            },
            {
                "code": "621330",
                "title": "Offices of Mental Health Practitioners (except Physicians)",
                "description": "This industry comprises establishments of independent mental health practitioners (except physicians) primarily engaged in (1) the diagnosis and treatment of mental, emotional, and behavioral disorders and/or (2) the diagnosis and treatment of individual or group social dysfunction brought about by such causes as mental illness, alcohol and substance abuse, physical and emotional trauma, or stress.  These practitioners operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br><br>Cross-References."
            },
            {
                "code": "62134",
                "title": "Offices of Physical, Occupational and Speech Therapists, and Audiologists<sup>T</sup>",
                "description": "See industry description for 621340.<br>"
            },
            {
                "code": "621340",
                "title": "Offices of Physical, Occupational and Speech Therapists, and Audiologists",
                "description": "This industry comprises establishments of independent health practitioners primarily engaged in one of the following: (1) providing physical therapy services to patients who have impairments, functional limitations, disabilities, or changes in physical functions and health status resulting from injury, disease or other causes, or who require prevention, wellness or fitness services; (2) planning and administering educational, recreational, and social activities designed to help patients or individuals with disabilities regain physical or mental functioning or adapt to their disabilities; and (3) diagnosing and treating speech, language, or hearing problems.  These practitioners operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br><br>Illustrative Examples:<br><br>Audiologists' offices<br>Recreational (e.g., art, dance, music) therapists' offices <br>Industrial therapists' offices<br>Speech pathologists'"
            },
            {
                "code": "62139",
                "title": "Offices of All Other Health Practitioners<sup>T</sup>",
                "description": "This industry comprises establishments of independent health practitioners (except physicians; dentists; chiropractors; optometrists; mental health specialists; physical, occupational, and speech therapists; and audiologists).  These practitioners operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br><br>Illustrative Examples:<br><br>Acupuncturists' (except MDs or DOs) offices<br>Inhalation or respiratory therapists' offices<br>Dental hygienists' offices<br>Midwives' offices<br>Denturists' offices<br>Naturopaths' offices<br>Dietitians' offices\t<br>Podiatrists' offices<br>Homeopaths' offices<br>Registered or licensed practical nurses' offices<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "621391",
                "title": "Offices of Podiatrists",
                "description": "This U.S. industry comprises establishments of health practitioners having the degree of D.P.M. (Doctor of Podiatric Medicine) primarily engaged in the independent practice of podiatry.  These practitioners diagnose and treat diseases and deformities of the foot and operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br><br>Cross-References."
            },
            {
                "code": "621399",
                "title": "Offices of All Other Miscellaneous Health Practitioners",
                "description": "This U.S. industry comprises establishments of independent health practitioners (except physicians; dentists; chiropractors; optometrists; mental health specialists; physical, occupational, and speech therapists; audiologists; and podiatrists).  These practitioners operate private or group practices in their own offices (e.g., centers, clinics) or in the facilities of others, such as hospitals or HMO medical centers.<br><br>Illustrative Examples:<br><br>Acupuncturists' (except MDs or DOs) offices<br>Hypnotherapists' offices<br>Dental hygienists' offices<br>Inhalation or respiratory therapists' offices<br>Denturists' offices<br>Midwives' offices<br>Dietitians' offices<br>Naturopaths' offices<br>Homeopaths' offices<br>Registered or licensed practical nurses' offices<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "6214",
                "title": "Outpatient Care Centers<sup>T</sup>",
                "description": "This industry group comprises establishments with medical staff primarily engaged in providing a range of outpatient services, such as family planning, diagnosis and treatment of mental health disorders and alcohol and other substance abuse, and other general or specialized outpatient care.  <br>"
            },
            {
                "code": "62141",
                "title": "Family Planning Centers<sup>T</sup>",
                "description": "See industry description for 621410.<br>"
            },
            {
                "code": "621410",
                "title": "Family Planning Centers",
                "description": "This industry comprises establishments with medical staff primarily engaged in providing a range of family planning services on an outpatient basis, such as contraceptive services, genetic and prenatal counseling, voluntary sterilization, and therapeutic and medically induced termination of pregnancy.<br><br>Illustrative Examples:<br><br>Birth control clinics<br>Fertility clinics<br>Childbirth preparation classes<br>Pregnancy counseling centers<br>"
            },
            {
                "code": "62142",
                "title": "Outpatient Mental Health and Substance Abuse Centers<sup>T</sup>",
                "description": "See industry description for 621420.<br>"
            },
            {
                "code": "621420",
                "title": "Outpatient Mental Health and Substance Abuse Centers",
                "description": "This industry comprises establishments with medical staff primarily engaged in providing outpatient services related to the diagnosis and treatment of mental health disorders and alcohol and other substance abuse.  These establishments generally treat patients who do not require inpatient treatment.  They may provide a counseling staff and information regarding a wide range of mental health and substance abuse issues and/or refer patients to more extensive treatment programs, if necessary.<br><br>Illustrative Examples:<br><br>Outpatient alcoholism treatment centers and clinics (except hospitals)<br>Outpatient mental health centers and clinics (except hospitals)<br>Outpatient detoxification centers and clinics (except hospitals)<br>Outpatient substance abuse treatment centers and clinics (except hospitals)<br>Outpatient drug addiction treatment centers and clinics (except hospitals)<br><br><br>Cross-References."
            },
            {
                "code": "62149",
                "title": "Other Outpatient Care Centers<sup>T</sup>",
                "description": "This industry comprises establishments with medical staff primarily engaged in providing general or specialized outpatient care (except family planning centers and outpatient mental health and substance abuse centers).  Centers or clinics of health practitioners with different degrees from more than one industry practicing within the same establishment (e.g., Doctor of Medicine and Doctor of Dental Medicine) are included in this industry.<br><br>Illustrative Examples:<br><br>Dialysis centers and clinics<br>Outpatient biofeedback centers and clinics<br>Freestanding ambulatory surgical centers and clinics<br>Outpatient community health centers and clinics<br>Freestanding emergency medical centers and clinics<br>Outpatient sleep disorder centers and clinics<br>Health maintenance organization (HMO) medical centers and clinics<br><br><br>Cross-References."
            },
            {
                "code": "621491",
                "title": "HMO Medical Centers",
                "description": "This U.S. industry comprises establishments with physicians and other medical staff primarily engaged in providing a range of outpatient medical services to the health maintenance organization (HMO) subscribers with a focus generally on primary health care.  These establishments are owned by the HMO.  Included in this industry are HMO establishments that both provide health care services and underwrite health and medical insurance policies.<br><br>Cross-References."
            },
            {
                "code": "621492",
                "title": "Kidney Dialysis Centers",
                "description": "This U.S. industry comprises establishments with medical staff primarily engaged in providing outpatient kidney or renal dialysis services.<br>"
            },
            {
                "code": "621493",
                "title": "Freestanding Ambulatory Surgical and Emergency Centers",
                "description": "This U.S. industry comprises establishments with physicians and other medical staff primarily engaged in (1) providing surgical services (e.g., orthoscopic and cataract surgery) on an outpatient basis or (2) providing emergency care services (e.g., setting broken bones, treating lacerations, or tending to patients suffering injuries as a result of accidents, trauma, or medical conditions necessitating immediate medical care) on an outpatient basis.  Outpatient surgical establishments have specialized facilities, such as operating and recovery rooms, and specialized equipment, such as anesthetic or X-ray equipment.<br><br>Illustrative Examples:<br><br>Freestanding ambulatory surgical centers and clinics<br>Freestanding emergency medical centers and clinics<br>Freestanding trauma centers (except hospitals)<br>Urgent medical care centers and clinics (except hospitals)<br><br><br>Cross-References."
            },
            {
                "code": "621498",
                "title": "All Other Outpatient Care Centers",
                "description": "This U.S. industry comprises establishments with medical staff primarily engaged in providing general or specialized outpatient care (except family planning centers, outpatient mental health and substance abuse centers, HMO medical centers, kidney dialysis centers, and freestanding ambulatory surgical and emergency centers).  Centers or clinics of health practitioners with different degrees from more than one industry practicing within the same establishment (e.g., Doctor of Medicine and Doctor of Dental Medicine) are included in this industry.<br><br>Illustrative Examples:<br><br>Outpatient biofeedback centers and clinics<br>Outpatient pain therapy centers and clinics<br>Outpatient community health centers and clinics<br>Outpatient sleep disorder centers and clinics<br><br><br>Cross-References."
            },
            {
                "code": "6215",
                "title": "Medical and Diagnostic Laboratories<sup>T</sup>",
                "description": null
            },
            {
                "code": "62151",
                "title": "Medical and Diagnostic Laboratories<sup>T</sup>",
                "description": "This industry comprises establishments known as medical and diagnostic laboratories primarily engaged in providing analytic or diagnostic services, including body fluid analysis and diagnostic imaging, generally to the medical profession or to the patient on referral from a health practitioner.<br><br>Illustrative Examples:<br><br>Dental or medical X-ray laboratories<br>Medical pathology laboratories<br>Diagnostic imaging centers<br>Medical testing laboratories<br>Medical forensic laboratories<br><br><br>Cross-References."
            },
            {
                "code": "621511",
                "title": "Medical Laboratories",
                "description": "This U.S. industry comprises establishments known as medical laboratories primarily engaged in providing analytic or diagnostic services, including body fluid analysis, generally to the medical profession or to the patient on referral from a health practitioner.<br><br>Illustrative Examples:<br><br>Blood analysis laboratories<br>Medical pathology laboratories<br>Medical bacteriological laboratories<br>Medical testing laboratories<br>Medical forensic laboratories<br><br><br>Cross-References."
            },
            {
                "code": "621512",
                "title": "Diagnostic Imaging Centers",
                "description": "This U.S. industry comprises establishments known as diagnostic imaging centers primarily engaged in producing images of the patient generally on referral from a health practitioner.<br><br>Illustrative Examples:<br><br>Computer tomography (CT-scan) centers<br>Medical radiological laboratories<br>Dental or medical X-ray laboratories<br>Ultrasound imaging centers<br>Magnetic resonance imaging (MRI) centers<br>"
            },
            {
                "code": "6216",
                "title": "Home Health Care Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "62161",
                "title": "Home Health Care Services<sup>T</sup>",
                "description": "See industry description for 621610.<br>"
            },
            {
                "code": "621610",
                "title": "Home Health Care Services",
                "description": "This industry comprises establishments primarily engaged in providing skilled nursing services in the home, along with a range of the following: personal care services; homemaker and companion services; physical therapy; medical social services; medications; medical equipment and supplies; counseling; 24-hour home care; occupation and vocational therapy; dietary and nutritional services; speech therapy; audiology; and high-tech care, such as intravenous therapy.<br><br>Illustrative Examples:<br><br>Home health care agencies<br>Visiting nurse associations<br>Home infusion therapy services<br>In-home hospice care services<br><br><br>Cross-References."
            },
            {
                "code": "6219",
                "title": "Other Ambulatory Health Care Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in providing ambulatory health care services (except offices of physicians, dentists, and other health practitioners; outpatient care centers; medical laboratories and diagnostic imaging centers; and home health care providers).<br>"
            },
            {
                "code": "62191",
                "title": "Ambulance Services<sup>T</sup>",
                "description": "See industry description for 621910.<br>"
            },
            {
                "code": "621910",
                "title": "Ambulance Services",
                "description": "This industry comprises establishments primarily engaged in providing transportation of patients by ground or air, along with medical care.  These services are often provided during a medical emergency but are not restricted to emergencies.  The vehicles are equipped with lifesaving equipment operated by medically trained personnel.<br><br>Cross-References."
            },
            {
                "code": "62199",
                "title": "All Other Ambulatory Health Care Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing ambulatory health care services (except offices of physicians, dentists, and other health practitioners; outpatient care centers; medical and diagnostic laboratories; home health care providers; and ambulances).<br><br>Illustrative Examples:<br><br>Blood donor stations<br>Pacemaker monitoring services<br>Blood or body organ banks<br>Physical fitness evaluation services (except by offices of health practitioners)<br>Health screening services (except by offices of health practitioners)<br>Smoking cessation programs<br>Hearing testing services (except by offices of audiologists) <br><br><br>Cross-References."
            },
            {
                "code": "621991",
                "title": "Blood and Organ Banks",
                "description": "This U.S. industry comprises establishments primarily engaged in collecting, storing, and distributing blood and blood products and storing and distributing body organs.<br><br>Cross-References."
            },
            {
                "code": "621999",
                "title": "All Other Miscellaneous Ambulatory Health Care Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing ambulatory health care services (except offices of physicians, dentists, and other health practitioners; outpatient care centers; medical and diagnostic laboratories; home health care providers; ambulances; and blood and organ banks).<br><br>Illustrative Examples:<br><br>Health screening services (except by offices of health practitioners)<br>Physical fitness evaluation services (except by offices of health practitioners)<br>Hearing testing services (except by offices of audiologists)<br>Smoking cessation programs<br>Pacemaker monitoring services<br><br><br>Cross-References."
            },
            {
                "code": "622",
                "title": "Hospitals<sup>T</sup>",
                "description": "Industries in the Hospitals subsector provide medical, diagnostic, and treatment services that include physician, nursing, and other health services to inpatients and the specialized accommodation services required by inpatients.  Hospitals may also provide outpatient services as a secondary activity.  Establishments in the Hospitals subsector provide inpatient health services, many of which can only be provided using the specialized facilities and equipment that form a significant and integral part of the production process.<br>"
            },
            {
                "code": "6221",
                "title": "General Medical and Surgical Hospitals<sup>T</sup>",
                "description": null
            },
            {
                "code": "62211",
                "title": "General Medical and Surgical Hospitals<sup>T</sup>",
                "description": "See industry description for 622110.<br>"
            },
            {
                "code": "622110",
                "title": "General Medical and Surgical Hospitals",
                "description": "This industry comprises establishments known and licensed as general medical and surgical hospitals primarily engaged in providing diagnostic and medical treatment (both surgical and nonsurgical) to inpatients with any of a wide variety of medical conditions.  These establishments maintain inpatient beds and provide patients with food services that meet their nutritional requirements.  These hospitals have an organized staff of physicians and other medical staff to provide patient care services.  These establishments usually provide other services, such as outpatient services, anatomical pathology services, diagnostic X-ray services, clinical laboratory services, operating room services for a variety of procedures, and pharmacy services.<br>"
            },
            {
                "code": "6222",
                "title": "Psychiatric and Substance Abuse Hospitals<sup>T</sup>",
                "description": null
            },
            {
                "code": "62221",
                "title": "Psychiatric and Substance Abuse Hospitals<sup>T</sup>",
                "description": "See industry description for 622210.<br>"
            },
            {
                "code": "622210",
                "title": "Psychiatric and Substance Abuse Hospitals",
                "description": "This industry comprises establishments known and licensed as psychiatric and substance abuse hospitals primarily engaged in providing diagnostic, medical treatment, and monitoring services for inpatients who suffer from mental illness or substance abuse disorders.  The treatment often requires an extended stay in the hospital.  These establishments maintain inpatient beds and provide patients with food services that meet their nutritional requirements.  They have an organized staff of physicians and other medical staff to provide patient care services.  Psychiatric, psychological, and social work services are available at the facility.  These hospitals usually provide other services, such as outpatient services, clinical laboratory services, diagnostic X-ray services, and electroencephalograph services.<br><br>Cross-References."
            },
            {
                "code": "6223",
                "title": "Specialty (except Psychiatric and Substance Abuse) Hospitals<sup>T</sup>",
                "description": null
            },
            {
                "code": "62231",
                "title": "Specialty (except Psychiatric and Substance Abuse) Hospitals<sup>T</sup>",
                "description": "See industry description for 622310.<br>"
            },
            {
                "code": "622310",
                "title": "Specialty (except Psychiatric and Substance Abuse) Hospitals",
                "description": "This industry comprises establishments known and licensed as specialty hospitals primarily engaged in providing diagnostic and medical treatment to inpatients with a specific type of disease or medical condition (except psychiatric or substance abuse).  Hospitals providing long-term care for the chronically ill and hospitals providing rehabilitation, restorative, and adjustive services to physically challenged or disabled people are included in this industry.  These establishments maintain inpatient beds and provide patients with food services that meet their nutritional requirements.  They have an organized staff of physicians and other medical staff to provide patient care services.  These hospitals may provide other services, such as outpatient services, diagnostic X-ray services, clinical laboratory services, operating room services, physical therapy services, educational and vocational services, and psychological and social work services.<br><br>Cross-References."
            },
            {
                "code": "623",
                "title": "Nursing and Residential Care Facilities<sup>T</sup>",
                "description": "Industries in the Nursing and Residential Care Facilities subsector provide residential care combined with either nursing, supervisory, or other types of care as required by the residents.  In this subsector, the facilities are a significant part of the production process, and the care provided is a mix of health and social services with the health services being largely some level of nursing services.<br>"
            },
            {
                "code": "6231",
                "title": "Nursing Care Facilities (Skilled Nursing Facilities)<sup>T</sup>",
                "description": null
            },
            {
                "code": "62311",
                "title": "Nursing Care Facilities (Skilled Nursing Facilities)<sup>T</sup>",
                "description": "See industry description for 623110.<br>"
            },
            {
                "code": "623110",
                "title": "Nursing Care Facilities (Skilled Nursing Facilities)",
                "description": "This industry comprises establishments primarily engaged in providing inpatient nursing and rehabilitative services.  The care is generally provided for an extended period of time to individuals requiring nursing care.  These establishments have a permanent core staff of registered or licensed practical nurses who, along with other staff, provide nursing and continuous personal care services.<br><br>Illustrative Examples:<br><br>Convalescent homes or convalescent hospitals (except psychiatric)<br>Nursing homes<br>Rest homes with nursing care<br>Assisted living facilities (without nursing facilities) for the elderly with nursing care<br>Inpatient care hospices<br><br><br>Cross-References."
            },
            {
                "code": "6232",
                "title": "Residential Intellectual and Developmental Disability, Mental Health, and Substance Abuse Facilities<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in providing residential care (but not licensed hospital care) to people with intellectual and developmental disabilities, mental illness, or substance abuse problems.<br>"
            },
            {
                "code": "62321",
                "title": "Residential Intellectual and Developmental Disability Facilities<sup>T</sup>",
                "description": "See industry description for 623210.<br>"
            },
            {
                "code": "623210",
                "title": "Residential Intellectual and Developmental Disability Facilities",
                "description": "This industry comprises establishments (e.g., group homes, hospitals, intermediate care facilities) primarily engaged in providing residential care services for persons with intellectual and developmental disabilities.  These facilities may provide some health care, though the focus is room, board, protective supervision, and counseling.<br><br>Cross-References."
            },
            {
                "code": "62322",
                "title": "Residential Mental Health and Substance Abuse Facilities<sup>T</sup>",
                "description": "See industry description for 623220.<br>"
            },
            {
                "code": "623220",
                "title": "Residential Mental Health and Substance Abuse Facilities",
                "description": "This industry comprises establishments primarily engaged in providing residential care and treatment for patients with mental health and substance abuse illnesses.  These establishments provide room, board, supervision, and counseling services.  Although medical services may be available at these establishments, they are incidental to the counseling, mental rehabilitation, and support services offered.  These establishments generally provide a wide range of social services in addition to counseling.<br><br>Illustrative Examples:<br><br>Alcoholism or drug addiction rehabilitation <br>facilities (except licensed hospitals) <br>Psychiatric convalescent homes or hospitals<br>Mental health halfway houses<br>Residential group homes for the emotionally disturbed<br><br><br>Cross-References."
            },
            {
                "code": "6233",
                "title": "Continuing Care Retirement Communities and Assisted Living Facilities for the Elderly<sup>T</sup>",
                "description": null
            },
            {
                "code": "62331",
                "title": "Continuing Care Retirement Communities and Assisted Living Facilities for the Elderly<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing residential and personal care services for (1) the elderly and other persons who are unable to fully care for themselves and/or (2) the elderly and other persons who do not desire to live independently.  The care typically includes room, board, supervision, and assistance in daily living, such as housekeeping services.  In some instances, these establishments provide skilled nursing care for residents in separate on-site facilities.<br><br>Illustrative Examples:<br><br>Assisted living facilities with on-site nursing care facilities<br>Assisted living facilities for the elderly without nursing care<br>Continuing care retirement communities<br>Rest homes without nursing care<br><br><br>Cross-References."
            },
            {
                "code": "623311",
                "title": "Continuing Care Retirement Communities",
                "description": "This U.S. industry comprises establishments primarily engaged in providing a range of residential and personal care services with on-site nursing care facilities for (1) the elderly and other persons who are unable to fully care for themselves and/or (2) the elderly and other persons who do not desire to live independently.  Individuals live in a variety of residential settings with meals, housekeeping, social, leisure, and other services available to assist residents in daily living.  Assisted living facilities with on-site nursing care facilities are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "623312",
                "title": "Assisted Living Facilities for the Elderly",
                "description": "This U.S. industry comprises establishments primarily engaged in providing residential and personal care services without nursing care for (1) the elderly or other persons who are unable to fully care for themselves and/or (2) the elderly or other persons who do not desire to live independently.  The care typically includes room, board, supervision, and assistance in daily living, such as housekeeping services.<br><br>Illustrative Examples:<br><br>Assisted living facilities for the elderly without nursing care<br>Rest homes without nursing care <br><br><br>Cross-References."
            },
            {
                "code": "6239",
                "title": "Other Residential Care Facilities<sup>T</sup>",
                "description": null
            },
            {
                "code": "62399",
                "title": "Other Residential Care Facilities<sup>T</sup>",
                "description": "See industry description for 623990.<br>"
            },
            {
                "code": "623990",
                "title": "Other Residential Care Facilities",
                "description": "This industry comprises establishments primarily engaged in providing residential care (except residential intellectual and developmental disability facilities, residential mental health and substance abuse facilities, continuing care retirement communities, and assisted living facilities for the elderly).  These establishments also provide supervision and personal care services.<br><br>Illustrative Examples:<br><br>Boot or disciplinary camps (except correctional) for delinquent youth<br>Group homes for the hearing or visually impaired<br>Child group foster homes<br>Delinquent youth halfway group homes<br>Halfway group homes for delinquents or ex-offenders<br>Homes for unwed mothers<br>Group homes for the disabled without nursing care<br>Orphanages<br><br><br>Cross-References."
            },
            {
                "code": "624",
                "title": "Social Assistance<sup>T</sup>",
                "description": "Industries in the Social Assistance subsector provide a wide variety of social assistance services directly to their clients.  These services do not include residential or accommodation services, except on a short-stay basis.<br>"
            },
            {
                "code": "6241",
                "title": "Individual and Family Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in providing nonresidential social assistance to children and youth, the elderly, persons with disabilities, and all other individuals and families.<br>"
            },
            {
                "code": "62411",
                "title": "Child and Youth Services<sup>T</sup>",
                "description": "See industry description for 624110.<br>"
            },
            {
                "code": "624110",
                "title": "Child and Youth Services",
                "description": "This industry comprises establishments primarily engaged in providing nonresidential social assistance services for children and youth.  These establishments provide for the welfare of children in such areas as adoption and foster care, drug prevention, life skills training, and positive social development.<br><br>Illustrative Examples:<br><br>Adoption agencies<br>Youth centers (except recreational only)<br>Child guidance organizations<br>Youth self-help organizations<br>Foster care placement services<br><br><br>Cross-References."
            },
            {
                "code": "62412",
                "title": "Services for the Elderly and Persons with Disabilities<sup>T</sup>",
                "description": "See industry description for 624120.<br>"
            },
            {
                "code": "624120",
                "title": "Services for the Elderly and Persons with Disabilities",
                "description": "This industry comprises establishments primarily engaged in providing nonresidential social assistance services to improve the quality of life for the elderly or persons with intellectual and/or developmental disabilities.  These establishments provide for the welfare of these individuals in such areas as day care, non-medical home care or homemaker services, social activities, group support, and companionship.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "62419",
                "title": "Other Individual and Family Services<sup>T</sup>",
                "description": "See industry description for 624190.<br>"
            },
            {
                "code": "624190",
                "title": "Other Individual and Family Services",
                "description": "This industry comprises establishments primarily engaged in providing nonresidential individual and family social assistance services (except those specifically directed toward children, the elderly, or persons with intellectual and/or developmental disabilities).<br><br>Illustrative Examples:<br><br>Community action services agencies<br>Marriage counseling services (except by offices of mental health practitioners)<br>Crisis intervention centers<br>Multi-purpose social services centers<br>Family social services agencies<br>Family welfare services<br>Self-help organizations (except for disabled persons, the elderly)<br>Suicide crisis centers<br>Hotline centers<br>Telephone counseling services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "6242",
                "title": "Community Food and Housing, and Emergency and Other Relief Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in one of the following: (1) collecting, preparing, and delivering food for the needy; (2) providing short-term emergency shelter, temporary residential shelter, transitional housing, volunteer construction or repair of low-cost housing, and/or repair of homes for individuals or families in need; or (3) providing food, shelter, clothing, medical relief, resettlement, and counseling to victims of domestic or international disasters or conflicts (e.g., wars).<br>"
            },
            {
                "code": "62421",
                "title": "Community Food Services<sup>T</sup>",
                "description": "See industry description for 624210.<br>"
            },
            {
                "code": "624210",
                "title": "Community Food Services",
                "description": "This industry comprises establishments primarily engaged in the collection, preparation, and delivery of food for the needy.  Establishments in this industry may also distribute clothing and blankets to the poor.  These establishments may prepare and deliver meals to persons who by reason of age, disability, or illness are unable to prepare meals for themselves; collect and distribute salvageable or donated food; or prepare and provide meals at fixed or mobile locations.  Food banks, meal delivery programs, and soup kitchens are included in this industry.<br>"
            },
            {
                "code": "62422",
                "title": "Community Housing Services<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing one or more of the following community housing services: (1) short-term emergency shelter for victims of domestic violence, sexual assault, or child abuse; (2) temporary residential shelter for the homeless, runaway youths, and patients and families caught in medical crises; (3) transitional housing for low-income individuals and families; (4) volunteer construction or repair of low-cost housing, in partnership with the homeowner who may assist in construction or repair work; and (5) repair of homes for elderly or disabled homeowners.  These establishments may operate their own shelter, they may subsidize housing using existing homes, apartments, hotels, or motels, or they may require a low-cost mortgage or work (sweat) equity.<br><br>Cross-References."
            },
            {
                "code": "624221",
                "title": "Temporary Shelters",
                "description": "This U.S. industry comprises establishments primarily engaged in providing (1) short-term emergency shelter for victims of domestic violence, sexual assault, or child abuse and/or (2) temporary residential shelter for homeless individuals or families, runaway youth, and patients and families caught in medical crises.  These establishments may operate their own shelters or may subsidize housing using existing homes, apartments, hotels, or motels.<br><br>Cross-References."
            },
            {
                "code": "624229",
                "title": "Other Community Housing Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing one or more of the following community housing services: (1) transitional housing to low-income individuals and families; (2) volunteer construction or repair of low-cost housing, in partnership with the homeowner who may assist in the construction or repair work; and (3) the repair of homes for elderly or disabled homeowners.  These establishments may subsidize housing using existing homes, apartments, hotels, or motels or may require a low-cost mortgage or sweat equity.  These establishments may also provide low-income families with furniture and household supplies.<br><br>Cross-References."
            },
            {
                "code": "62423",
                "title": "Emergency and Other Relief Services<sup>T</sup>",
                "description": "See industry description for 624230.<br>"
            },
            {
                "code": "624230",
                "title": "Emergency and Other Relief Services",
                "description": "This industry comprises establishments primarily engaged in providing food, shelter, clothing, medical relief, resettlement, and counseling to victims of domestic or international disasters or conflicts (e.g., wars).<br>"
            },
            {
                "code": "6243",
                "title": "Vocational Rehabilitation Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "62431",
                "title": "Vocational Rehabilitation Services<sup>T</sup>",
                "description": "See industry description for 624310.<br>"
            },
            {
                "code": "624310",
                "title": "Vocational Rehabilitation Services",
                "description": "This industry comprises (1) establishments primarily engaged in providing vocational rehabilitation or habilitation services, such as job counseling, job training, and work experience, to unemployed and underemployed persons, persons with disabilities, and persons who have a job market disadvantage because of lack of education, job skill, or experience and (2) establishments primarily engaged in providing training and employment to persons with disabilities.  Vocational rehabilitation job training facilities (except schools) and sheltered workshops (i.e., work experience centers) are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "6244",
                "title": "Child Care Services<sup>T</sup>",
                "description": null
            },
            {
                "code": "62441",
                "title": "Child Care Services<sup>T</sup>",
                "description": "See industry description for 624410.<br>"
            },
            {
                "code": "624410",
                "title": "Child Care Services",
                "description": "This industry comprises establishments primarily engaged in providing care and early learning opportunities for infants and children.  These establishments generally care for children from birth through school age and may also offer pre-kindergarten, kindergarten, and/or before- or after-school educational programs.  The care and early learning provided by these establishments may include opportunities for development in health, social and emotional learning, and family engagement.<br><br>Illustrative Examples:<br><br>Before-school and after-school educational programs, separate from schools<br>Child care babysitting services<br>Child or infant care centers<br>Head Start and Early Head Start programs, separate from schools<br>Nursery schools<br>Preschool centers<br><br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 92
    },
    {
        "sectorCode": "71",
        "sectorDescription": "Arts, Entertainment, and Recreation",
        "subsectors": [
            {
                "code": "71",
                "title": "Arts, Entertainment, and Recreation<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Arts, Entertainment, and Recreation sector includes a wide range of establishments that operate facilities or provide services to meet varied cultural, entertainment, and recreational interests of their patrons.  This sector comprises (1) establishments that are involved in producing, promoting, or participating in live performances, events, or exhibits intended for public viewing; (2) establishments that preserve and exhibit objects and sites of historical, cultural, or educational interest; and (3) establishments that operate facilities or provide services that enable patrons to participate in recreational activities or pursue amusement, hobby, and leisure-time interests.<br><br>Some establishments that provide cultural, entertainment, or recreational facilities and services are classified in other sectors.  Excluded from this sector are: (1) establishments that provide both accommodations and recreational facilities, such as hunting and fishing camps and resort "
            },
            {
                "code": "711",
                "title": "Performing Arts, Spectator Sports, and Related Industries<sup>T</sup>",
                "description": "Industries in the Performing Arts, Spectator Sports, and Related Industries subsector group establishments that produce or organize and promote live presentations involving the performances of actors and actresses, singers, dancers, musical groups and artists, athletes, and other entertainers, including independent (i.e., freelance) entertainers and the establishments that manage their careers.  The classification recognizes four basic processes: (1) producing (i.e., presenting) events; (2) organizing, managing, and/or promoting events; (3) managing and representing entertainers; and (4) providing the artistic, creative, and technical skills necessary to the production of these live events.  Also, this subsector contains four industries for performing arts companies.  Each is defined on the basis of the particular skills of the entertainers involved in the presentations.<br><br>The industry structure for this subsector makes a clear distinction between performing arts companies and performin"
            },
            {
                "code": "7111",
                "title": "Performing Arts Companies<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in producing live presentations involving the performances of actors and actresses, singers, dancers, musical groups and artists, and other performing artists.<br>"
            },
            {
                "code": "71111",
                "title": "Theater Companies and Dinner Theaters<sup>T</sup>",
                "description": "See industry description for 711110.<br>"
            },
            {
                "code": "711110",
                "title": "Theater Companies and Dinner Theaters",
                "description": "This industry comprises (1) companies, groups, or theaters primarily engaged in producing the following live theatrical presentations: musicals; operas; plays; and comedy, improvisational, mime, and puppet shows and (2) establishments, commonly known as dinner theaters, engaged in producing live theatrical productions and in providing food and beverages for consumption on the premises.  Theater groups or companies may or may not operate their own theater or other facility for staging their shows.<br><br>Illustrative Examples:<br><br>Comedy troupes<br>Opera companies<br>Live theatrical productions (except dance)<br>Theatrical stock or repertory companies<br>Musical theater companies<br><br><br>Cross-References."
            },
            {
                "code": "71112",
                "title": "Dance Companies<sup>T</sup>",
                "description": "See industry description for 711120.<br>"
            },
            {
                "code": "711120",
                "title": "Dance Companies",
                "description": "This industry comprises companies, groups, or theaters primarily engaged in producing all types of live theatrical dance (e.g., ballet, contemporary dance, folk dance) presentations.  Dance companies or groups may or may not operate their own theater or other facility for staging their shows.<br><br>Cross-References."
            },
            {
                "code": "71113",
                "title": "Musical Groups and Artists<sup>T</sup>",
                "description": "See industry description for 711130.<br>"
            },
            {
                "code": "711130",
                "title": "Musical Groups and Artists",
                "description": "This industry comprises (1) groups primarily engaged in producing live musical entertainment (except theatrical musical or opera productions) and (2) independent (i.e., freelance) artists primarily engaged in providing live musical entertainment.  Musical groups and artists may perform in front of a live audience or in a studio, and may or may not operate their own facilities for staging their shows.<br><br>Illustrative Examples:<br><br>Bands<br>Musical groups (except theatrical musical groups)<br>Drum and bugle corps (i.e., drill teams)<br>Orchestras<br>Independent musicians or vocalists<br><br><br>Cross-References."
            },
            {
                "code": "71119",
                "title": "Other Performing Arts Companies<sup>T</sup>",
                "description": "See industry description for 711190.<br>"
            },
            {
                "code": "711190",
                "title": "Other Performing Arts Companies",
                "description": "This industry comprises companies or groups (except theater companies, dance companies, and musical groups and artists) primarily engaged in producing live theatrical presentations.<br><br>Illustrative Examples:<br><br>Carnival traveling shows<br>Ice skating companies<br>Circuses<br>Magic shows<br><br><br>Cross-References."
            },
            {
                "code": "7112",
                "title": "Spectator Sports<sup>T</sup>",
                "description": null
            },
            {
                "code": "71121",
                "title": "Spectator Sports<sup>T</sup>",
                "description": "This industry comprises (1) sports teams or clubs primarily participating in live sporting events before a paying audience; (2) establishments primarily engaged in operating racetracks without casinos; (3) independent athletes engaged in participating in live sporting or racing events before a paying audience; (4) owners of racing participants, such as cars, dogs, and horses, primarily engaged in entering them in racing events or other spectator sports events; and (5) establishments, such as sports trainers, primarily engaged in providing specialized services to support participants in sports events or competitions.  The sports teams and clubs included in this industry may or may not operate their own arena, stadium, or other facility for presenting their games or other spectator sports events.<br><br>Cross-References."
            },
            {
                "code": "711211",
                "title": "Sports Teams and Clubs",
                "description": "This U.S. industry comprises professional or semiprofessional sports teams or clubs primarily engaged in participating in live sporting events, such as baseball, basketball, football, hockey, soccer, and jai alai games, before a paying audience.  These establishments may or may not operate their own arena, stadium, or other facility for presenting these events.<br><br>Cross-References."
            },
            {
                "code": "711212",
                "title": "Racetracks",
                "description": "This U.S. industry comprises establishments primarily engaged in operating racetracks without casinos.  These establishments may also present and/or promote the events, such as auto, dog, and horse races, held in these facilities.<br><br>Cross-References."
            },
            {
                "code": "711219",
                "title": "Other Spectator Sports",
                "description": "This U.S. industry comprises (1) independent athletes, such as professional or semiprofessional golfers, boxers, and race car drivers, primarily engaged in participating in live sporting or racing events before a paying audience; (2) owners of racing participants, such as cars, dogs, and horses, primarily engaged in entering them in racing events or other spectator events; and (3) establishments, such as sports trainers, primarily engaged in providing specialized services required to support participants in sports events or competitions.<br><br>Cross-References."
            },
            {
                "code": "7113",
                "title": "Promoters of Performing Arts, Sports, and Similar Events<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in organizing, promoting, and/or managing live performing arts productions, sports events, and similar events, held in facilities that they manage and operate or in facilities that are managed and operated by others.<br>"
            },
            {
                "code": "71131",
                "title": "Promoters of Performing Arts, Sports, and Similar Events with Facilities<sup>T</sup>",
                "description": "See industry description for 711310. <br>"
            },
            {
                "code": "711310",
                "title": "Promoters of Performing Arts, Sports, and Similar Events with Facilities",
                "description": "This industry comprises establishments primarily engaged in (1) organizing, promoting, and/or managing live performing arts productions, sports events, and similar events, such as state fairs, county fairs, agricultural fairs, concerts, and festivals, held in facilities that they manage and operate and/or (2) managing and providing the staff to operate arenas, stadiums, theaters, or other related facilities for rent to other promoters.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "71132",
                "title": "Promoters of Performing Arts, Sports, and Similar Events without Facilities<sup>T</sup>",
                "description": "See industry description for 711320.<br>"
            },
            {
                "code": "711320",
                "title": "Promoters of Performing Arts, Sports, and Similar Events without Facilities",
                "description": "This industry comprises promoters primarily engaged in organizing, promoting, and/or managing live performing arts productions, sports events, and similar events, such as state fairs, county fairs, agricultural fairs, concerts, and festivals, in facilities that are managed and operated by others.  Theatrical (except motion picture) booking agencies are included in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "7114",
                "title": "Agents and Managers for Artists, Athletes, Entertainers, and Other Public Figures<sup>T</sup>",
                "description": null
            },
            {
                "code": "71141",
                "title": "Agents and Managers for Artists, Athletes, Entertainers, and Other Public Figures<sup>T</sup>",
                "description": "See industry description for 711410.<br>"
            },
            {
                "code": "711410",
                "title": "Agents and Managers for Artists, Athletes, Entertainers, and Other Public Figures",
                "description": "This industry comprises establishments of agents and managers primarily engaged in representing and/or managing creative and performing artists, sports figures, entertainers, and other public figures.  The representation and management includes activities, such as representing clients in contract negotiations; managing or organizing clients' financial affairs; and generally promoting the careers of their clients.<br><br>Illustrative Examples:<br><br>Celebrities' agents or managers<br>Sports figures' agents or managers<br>Literary agents<br>Talent agents<br>Modeling agents<br><br><br>Cross-References."
            },
            {
                "code": "7115",
                "title": "Independent Artists, Writers, and Performers<sup>T</sup>",
                "description": null
            },
            {
                "code": "71151",
                "title": "Independent Artists, Writers, and Performers<sup>T</sup>",
                "description": "See industry description for 711510.<br>"
            },
            {
                "code": "711510",
                "title": "Independent Artists, Writers, and Performers",
                "description": "This industry comprises independent (i.e., freelance) individuals primarily engaged in performing in artistic productions, in creating artistic and cultural works or productions, or in providing technical expertise necessary for these productions.  This industry also includes athletes and other celebrities exclusively engaged in endorsing products and making speeches or public appearances for which they receive a fee.<br><br>Illustrative Examples:<br><br>Independent actors or actresses<br>Independent producers<br>Independent art restorers<br>Independent recording technicians<br>Independent artists (except musical, commercial, medical)<br>Independent speakers <br>Independent cartoonists<br>Independent theatrical costume designers<br>Independent dancers<br>Independent theatrical lighting technicians<br>Independent journalists<br>Independent technical writers<br><br><br>Cross-References."
            },
            {
                "code": "712",
                "title": "Museums, Historical Sites, and Similar Institutions<sup>T</sup>",
                "description": "Industries in the Museums, Historical Sites, and Similar Institutions subsector engage in the preservation and exhibition of objects, sites, and natural wonders of historical, cultural, and/or educational value.<br>"
            },
            {
                "code": "7121",
                "title": "Museums, Historical Sites, and Similar Institutions<sup>T</sup>",
                "description": null
            },
            {
                "code": "71211",
                "title": "Museums<sup>T</sup>",
                "description": "See industry description for 712110.<br>"
            },
            {
                "code": "712110",
                "title": "Museums",
                "description": "This industry comprises establishments primarily engaged in the preservation and exhibition of objects of historical, cultural, and/or educational value.<br><br>Illustrative Examples:<br><br>Art galleries (except retail)<br>Planetariums<br>Art museums<br>Science or technology museums<br>Halls of fame<br>Wax museums<br><br><br>Cross-References."
            },
            {
                "code": "71212",
                "title": "Historical Sites<sup>T</sup>",
                "description": "See industry description for 712120.<br>"
            },
            {
                "code": "712120",
                "title": "Historical Sites",
                "description": "This industry comprises establishments primarily engaged in the preservation and exhibition of sites, buildings, forts, or communities that describe events or persons of particular historical interest.  Archeological sites, battlefields, historical ships, and pioneer villages are included in this industry.<br>"
            },
            {
                "code": "71213",
                "title": "Zoos and Botanical Gardens<sup>T</sup>",
                "description": "See industry description for 712130.<br>"
            },
            {
                "code": "712130",
                "title": "Zoos and Botanical Gardens",
                "description": "This industry comprises establishments primarily engaged in the preservation and exhibition of live plant and animal life displays.<br><br>Illustrative Examples:<br><br>Aquariums<br>Wild animal parks<br>Arboreta<br>Zoological gardens<br>Aviaries<br><br><br>Cross-References."
            },
            {
                "code": "71219",
                "title": "Nature Parks and Other Similar Institutions<sup>T</sup>",
                "description": "See industry description for 712190.<br>"
            },
            {
                "code": "712190",
                "title": "Nature Parks and Other Similar Institutions",
                "description": "This industry comprises establishments primarily engaged in the preservation and exhibition of natural areas or settings.<br><br>Illustrative Examples:<br><br>Bird or wildlife sanctuaries<br>Natural wonder tourist attractions (e.g., caverns, waterfalls)<br>Conservation areas<br>Nature centers or preserves<br>National parks<br><br><br>Cross-References."
            },
            {
                "code": "713",
                "title": "Amusement, Gambling, and Recreation Industries<sup>T</sup>",
                "description": "Industries in the Amusement, Gambling, and Recreation Industries subsector (1) operate facilities where patrons can primarily engage in sports, recreation, amusement, or gambling activities and/or (2) provide other amusement and recreation services, such as supplying and servicing amusement devices in places of business operated by others; operating sports teams, clubs, or leagues engaged in playing games for recreational purposes; and guiding tours without using transportation equipment.<br><br>This subsector does not cover all establishments providing recreational services.  Other sectors of NAICS also provide recreational services.  Providers of recreational services are often engaged in processes classified in other sectors of NAICS.  For example, operators of resorts and hunting and fishing camps provide both accommodation and recreational facilities and services.  These establishments are classified in Subsector 721, Accommodation, partly to reflect the significant costs associated wit"
            },
            {
                "code": "7131",
                "title": "Amusement Parks and Arcades<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in operating amusement parks and amusement arcades and parlors.<br>"
            },
            {
                "code": "71311",
                "title": "Amusement and Theme Parks<sup>T</sup>",
                "description": "See industry description for 713110.<br>"
            },
            {
                "code": "713110",
                "title": "Amusement and Theme Parks",
                "description": "This industry comprises establishments, known as amusement or theme parks, primarily engaged in operating a variety of attractions, such as mechanical rides, water rides, games, shows, theme exhibits, refreshment stands, and picnic grounds.  These establishments may lease space to others on a concession basis.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "71312",
                "title": "Amusement Arcades<sup>T</sup>",
                "description": "See industry description for 713120.<br>"
            },
            {
                "code": "713120",
                "title": "Amusement Arcades",
                "description": "This industry comprises establishments primarily engaged in operating amusement (except gambling, billiard, or pool) arcades and parlors.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "7132",
                "title": "Gambling Industries<sup>T</sup>",
                "description": "This industry group comprises establishments (except casino hotels) primarily engaged in operating gambling facilities, such as casinos, bingo halls, and video gaming terminals, or in the provision of gambling services, such as lotteries and off-track betting.  Casino hotels are classified in Industry 72112, Casino Hotels.<br>"
            },
            {
                "code": "71321",
                "title": "Casinos (except Casino Hotels)<sup>T</sup>",
                "description": "See industry description for 713210.<br>"
            },
            {
                "code": "713210",
                "title": "Casinos (except Casino Hotels)",
                "description": "This industry comprises establishments primarily engaged in operating gambling facilities that offer table wagering games along with other gambling activities, such as slot machines and sports betting.  These establishments often provide food and beverage services.  Included in this industry are floating casinos (i.e., gambling cruises, riverboat casinos) and casinos with racetracks.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "71329",
                "title": "Other Gambling Industries<sup>T</sup>",
                "description": "See industry description for 713290.<br>"
            },
            {
                "code": "713290",
                "title": "Other Gambling Industries",
                "description": "This industry comprises establishments primarily engaged in operating gambling facilities (except casinos or casino hotels) or providing gambling services.<br><br>Illustrative Examples:<br><br>Bingo, off-track betting, or slot machine parlors<br>Coin- or card-operated gambling device concession operators (i.e., supplying and servicing in others' facilities)<br>Bookmakers<br>Lottery ticket sales agents (except retail stores)<br>Card rooms (e.g., poker rooms)<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "7139",
                "title": "Other Amusement and Recreation Industries<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in operating golf courses and country clubs; skiing facilities; marinas; fitness and recreational sports centers; bowling centers; and providing other amusement and recreation services.<br>"
            },
            {
                "code": "71391",
                "title": "Golf Courses and Country Clubs<sup>T</sup>",
                "description": "See industry description for 713910.<br>"
            },
            {
                "code": "713910",
                "title": "Golf Courses and Country Clubs",
                "description": "This industry comprises (1) establishments primarily engaged in operating golf courses (except miniature) and (2) establishments primarily engaged in operating golf courses, along with dining facilities and other recreational facilities that are known as country clubs.  These establishments often provide food and beverage services, equipment rental services, and golf instruction services.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "71392",
                "title": "Skiing Facilities<sup>T</sup>",
                "description": "See industry description for 713920.<br>"
            },
            {
                "code": "713920",
                "title": "Skiing Facilities",
                "description": "This industry comprises establishments engaged in (1) operating downhill, cross country, or related skiing areas and/or (2) operating equipment, such as ski lifts and tows.  These establishments often provide food and beverage services, equipment rental services, and ski instruction services.  Four season resorts without accommodations are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "71393",
                "title": "Marinas<sup>T</sup>",
                "description": "See industry description for 713930.<br>"
            },
            {
                "code": "713930",
                "title": "Marinas",
                "description": "This industry comprises establishments, commonly known as marinas, engaged in operating docking and/or storage facilities for pleasure craft owners, with or without one or more related activities, such as retailing fuel and marine supplies; and repairing, maintaining, or renting pleasure boats.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "71394",
                "title": "Fitness and Recreational Sports Centers<sup>T</sup>",
                "description": "See industry description for 713940.<br>"
            },
            {
                "code": "713940",
                "title": "Fitness and Recreational Sports Centers",
                "description": "This industry comprises establishments primarily engaged in operating fitness and recreational sports facilities featuring exercise and other active physical fitness conditioning or recreational sports activities, such as swimming, skating, or racquet sports.<br><br>Illustrative Examples:<br><br>Aerobic dance or exercise centers<br>Ice or roller skating rinks<br>Gymnasiums<br>Physical fitness centers<br>Handball, racquetball, or tennis club facilities<br>Swimming or wave pools<br><br><br>Cross-References."
            },
            {
                "code": "71395",
                "title": "Bowling Centers<sup>T</sup>",
                "description": "See industry description for 713950.<br>"
            },
            {
                "code": "713950",
                "title": "Bowling Centers",
                "description": "This industry comprises establishments engaged in operating bowling centers.  These establishments often provide food and beverage services.<br>"
            },
            {
                "code": "71399",
                "title": "All Other Amusement and Recreation Industries<sup>T</sup>",
                "description": "See industry description for 713990.<br>"
            },
            {
                "code": "713990",
                "title": "All Other Amusement and Recreation Industries",
                "description": "This industry comprises establishments (except amusement parks and arcades; gambling industries; golf courses and country clubs; skiing facilities; marinas; fitness and recreational sports centers; and bowling centers) primarily engaged in providing recreational and amusement services.<br><br>Illustrative Examples:<br><br>Amusement ride or coin- or card-operated nongambling amusement device concession operators (i.e., supplying and servicing in others' facilities)<br>Outdoor adventure operations (e.g., white water rafting) without accommodations<br>Miniature golf courses<br>Golf driving ranges<br>Archery or shooting ranges<br>Recreational day camps (except instructional)<br>Billiard or pool parlors<br>Recreational chess or bridge clubs<br>Boating clubs (without marinas)<br>Recreational or youth sports clubs (i.e., sports teams) not operating sports facilities<br>Escape rooms<br>Riding stables (except boarding horses) <br><br><br>Cross-References."
            }
        ],
        "subsectors_count": 61
    },
    {
        "sectorCode": "72",
        "sectorDescription": "Accommodation and Food Services",
        "subsectors": [
            {
                "code": "72",
                "title": "Accommodation and Food Services<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Accommodation and Food Services sector comprises establishments providing customers with lodging and/or preparing meals, snacks, and beverages for immediate consumption.  The sector includes both accommodation and food services establishments because the two activities are often combined at the same establishment.<br><br>Some establishments that provide food and beverage services are classified in other sectors.  Excluded from this sector are civic and social organizations.  These establishments are classified in Sector 81, Other Services (except Public Administration).  Amusement and recreation parks, dinner theaters, and other recreation or entertainment facilities are classified in Sector 71, Arts, Entertainment, and Recreation.  Motion picture theaters are classified in Sector 51, Information.<br>"
            },
            {
                "code": "721",
                "title": "Accommodation<sup>T</sup>",
                "description": "Industries in the Accommodation subsector provide lodging or short-term accommodations for travelers, vacationers, and others.  There is a wide range of establishments in these industries.  Some provide lodging only, while others provide meals, laundry services, and recreational facilities, as well as lodging.  Lodging establishments are classified in this subsector even if the provision of complementary services generates more revenue.  The types of complementary services provided vary from establishment to establishment.<br><br>The subsector is organized into three groups: (1) traveler accommodation, (2) recreational accommodation, and (3) rooming and boarding houses, dormitories, and workers' camps.  The Traveler Accommodation industry group includes establishments that primarily provide traditional types of lodging services.  This group includes hotels, motels, and bed-and-breakfast inns.  In addition to lodging, these establishments may provide a range of other services to their guests."
            },
            {
                "code": "7211",
                "title": "Traveler Accommodation<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in providing short-term lodging in facilities, such as hotels, motels, casino hotels, and bed-and-breakfast inns.  In addition to lodging, these establishments may provide a range of other services to their guests.<br>"
            },
            {
                "code": "72111",
                "title": "Hotels (except Casino Hotels) and Motels<sup>T</sup>",
                "description": "See industry description for 721110.<br>"
            },
            {
                "code": "721110",
                "title": "Hotels (except Casino Hotels) and Motels",
                "description": "This industry comprises establishments primarily engaged in providing short-term lodging in facilities known as hotels, motor hotels, resort hotels, and motels.  The establishments in this industry may offer food and beverage services, recreational services, conference rooms, convention services, laundry services, parking, and other services.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "72112",
                "title": "Casino Hotels<sup>T</sup>",
                "description": "See industry description for 721120.<br>"
            },
            {
                "code": "721120",
                "title": "Casino Hotels",
                "description": "This industry comprises establishments primarily engaged in providing short-term lodging in hotel facilities with a casino on the premises.  The casino on premises includes table wagering games and may include other gambling activities, such as slot machines and sports betting.  These establishments generally offer a range of services and amenities, such as food and beverage services, entertainment, valet parking, swimming pools, and conference and convention facilities.  Included in this industry are casino hotels with racetracks.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "72119",
                "title": "Other Traveler Accommodation<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing short-term lodging (except hotels, motels, and casino hotels).<br><br>Illustrative Examples:<br><br>Bed-and-breakfast inns<br>Tourist homes<br>Guest houses<br>Hostels<br>Housekeeping cabins and cottages<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "721191",
                "title": "Bed-and-Breakfast Inns",
                "description": "This U.S. industry comprises establishments primarily engaged in providing short-term lodging in facilities known as bed-and-breakfast inns.  These establishments provide short-term lodging in private homes or small buildings converted for this purpose.  Bed-and-breakfast inns are characterized by a highly personalized service and inclusion of a full breakfast in the room rate.<br>"
            },
            {
                "code": "721199",
                "title": "All Other Traveler Accommodation",
                "description": "This U.S. industry comprises establishments primarily engaged in providing short-term lodging (except hotels, motels, casino hotels, and bed-and-breakfast inns).<br><br>Illustrative Examples:<br><br>Guest houses<br>Tourist homes<br>Housekeeping cabins and cottages<br>Hostels<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "7212",
                "title": "RV (Recreational Vehicle) Parks and Recreational Camps<sup>T</sup>",
                "description": null
            },
            {
                "code": "72121",
                "title": "RV (Recreational Vehicle) Parks and Recreational Camps<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in operating recreational vehicle parks and campgrounds and recreational and vacation camps.  These establishments cater to outdoor enthusiasts and are characterized by the type of accommodation and by the nature and the range of recreational facilities and activities provided to their clients.<br><br>Illustrative Examples:<br><br>Campgrounds<br>Fishing and hunting camps<br>Travel trailer campsites<br>Outdoor adventure retreats<br>Vacation camps (except instructional, day)<br>Recreational vehicle parks<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "721211",
                "title": "RV (Recreational Vehicle) Parks and Campgrounds",
                "description": "This U.S. industry comprises establishments primarily engaged in operating sites to accommodate campers and their equipment, including tents, tent trailers, travel trailers, and RVs (recreational vehicles).  These establishments may provide access to facilities, such as washrooms, laundry rooms, recreation halls, playgrounds, stores, and snack bars.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "721214",
                "title": "Recreational and Vacation Camps (except Campgrounds)",
                "description": "This U.S. industry comprises establishments primarily engaged in operating overnight recreational camps, such as children's camps, family vacation camps, hunting and fishing camps, and outdoor adventure retreats, that offer trail riding, white water rafting, hiking, and similar activities.  These establishments provide accommodation facilities, such as cabins and fixed campsites, and other amenities, such as food services, recreational facilities and equipment, and organized recreational activities.<br><br>Illustrative Examples:<br><br>Fishing camps with accommodation facilities<br>Dude ranches<br>Vacation camps (except campgrounds, day, instructional)<br>Hunting camps with accommodation facilities<br>Wilderness camps<br>Outdoor adventure retreats with accommodation facilities <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "7213",
                "title": "Rooming and Boarding Houses, Dormitories, and Workers' Camps<sup>T</sup>",
                "description": null
            },
            {
                "code": "72131",
                "title": "Rooming and Boarding Houses, Dormitories, and Workers' Camps<sup>T</sup>",
                "description": "See industry description for 721310.<br>"
            },
            {
                "code": "721310",
                "title": "Rooming and Boarding Houses, Dormitories, and Workers' Camps",
                "description": "This industry comprises establishments primarily engaged in operating rooming and boarding houses and similar facilities, such as fraternity houses, sorority houses, off campus dormitories, residential clubs, and workers' camps.  These establishments provide temporary or longer-term accommodations, which, for the period of occupancy, may serve as a principal residence.  These establishments also may provide complementary services, such as housekeeping, meals, and laundry services.<br><br>Illustrative Examples:<br><br>Dormitories (off campus)<br>Sorority houses<br>Fraternity houses<br>Workers' camps<br>Rooming houses<br>"
            },
            {
                "code": "722",
                "title": "Food Services and Drinking Places<sup>T</sup>",
                "description": "Industries in the Food Services and Drinking Places subsector prepare meals, snacks, and beverages to customer order for immediate on-premises and off-premises consumption.  There is a wide range of establishments in these industries.  Some provide food and drink only, while others provide various combinations of seating space, waiter/waitress services, and incidental amenities, such as limited entertainment.  The industries in the subsector are grouped based on the type and level of services provided.  The industry groups are Special Food Services, such as food service contractors, caterers, and mobile food services; Drinking Places (Alcoholic Beverages); and Restaurants and Other Eating Places.<br><br>Food and beverage services at hotels and motels, amusement parks, theaters, casinos, country clubs, similar recreational facilities, and civic and social organizations are included in this subsector only if these services are provided by a separate establishment primarily engaged in providing"
            },
            {
                "code": "7223",
                "title": "Special Food Services<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in providing food services at one or more of the following locations: (1) the customer's location; (2) a location designated by the customer; or (3) from motorized vehicles or nonmotorized carts.<br>"
            },
            {
                "code": "72231",
                "title": "Food Service Contractors<sup>T</sup>",
                "description": "See industry description for 722310.<br>"
            },
            {
                "code": "722310",
                "title": "Food Service Contractors",
                "description": "This industry comprises establishments primarily engaged in providing food services at institutional, governmental, commercial, or industrial locations of others based on contractual arrangements with these types of organizations for a specified period of time.  The establishments of this industry provide food services for the convenience of the contracting organization or the contracting organization's customers.  The contractual arrangement of these establishments with contracting organizations may vary by type of facility operated (e.g., cafeteria, restaurant, fast-food eating place), revenue sharing, cost structure, and personnel provided.  Management staff is always provided by food service contractors.<br><br>Illustrative Examples:<br><br>Airline food service contractors<br>Food concession contractors (e.g., at sporting, entertainment, convention facilities)<br>Cafeteria food service contractors (e.g., at schools, hospitals, government offices)<br><br><br>Cross-References. Establishments primarily engaged "
            },
            {
                "code": "72232",
                "title": "Caterers<sup>T</sup>",
                "description": "See industry description for 722320.<br>"
            },
            {
                "code": "722320",
                "title": "Caterers",
                "description": "This industry comprises establishments primarily engaged in providing single event-based food services.  These establishments generally have equipment and vehicles to transport meals and snacks to events and/or prepare food at an off-premise site.  Banquet halls with catering staff are included in this industry.  Examples of events catered by establishments in this industry are graduation parties, wedding receptions, business or retirement luncheons, and trade shows.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "72233",
                "title": "Mobile Food Services<sup>T</sup>",
                "description": "See industry description for 722330.<br>"
            },
            {
                "code": "722330",
                "title": "Mobile Food Services",
                "description": "This industry comprises establishments primarily engaged in preparing and serving meals and snacks for immediate consumption from motorized vehicles or nonmotorized carts.  The establishment is the central location from which the caterer route is serviced, not each vehicle or cart.  Included in this industry are establishments primarily engaged in providing food services from vehicles, such as hot dog carts and ice cream trucks.<br><br>Illustrative Examples:<br><br>Ice cream truck vendors<br>Mobile food concession stands<br>Mobile canteens<br>Mobile refreshment stands<br>Mobile food carts and trucks<br>Mobile snack stands<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "7224",
                "title": "Drinking Places (Alcoholic Beverages)<sup>T</sup>",
                "description": null
            },
            {
                "code": "72241",
                "title": "Drinking Places (Alcoholic Beverages)<sup>T</sup>",
                "description": "See industry description for 722410.<br>"
            },
            {
                "code": "722410",
                "title": "Drinking Places (Alcoholic Beverages)",
                "description": "This industry comprises establishments known as bars, taverns, nightclubs, or drinking places primarily engaged in preparing and serving alcoholic beverages for immediate consumption.  These establishments may also provide limited food services.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "7225",
                "title": "Restaurants and Other Eating Places<sup>T</sup>",
                "description": null
            },
            {
                "code": "72251",
                "title": "Restaurants and Other Eating Places<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in one of the following: (1) providing food services to patrons who order and are served while seated (i.e., waiter/waitress service) and pay after eating; (2) providing food services to patrons who generally order or select items (e.g., at a counter, in a buffet line) and pay before eating; or (3) preparing and/or serving a specialty snack (e.g., ice cream, frozen yogurt, cookies) and/or nonalcoholic beverages (e.g., coffee, juices, sodas) for consumption on or near the premises.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "722511",
                "title": "Full-Service Restaurants",
                "description": "This U.S. industry comprises establishments primarily engaged in providing food services to patrons who order and are served while seated (i.e., waiter/waitress service) and pay after eating.  These establishments may provide this type of food service to patrons in combination with selling alcoholic beverages, providing carryout services, or presenting live nontheatrical entertainment.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "722513",
                "title": "Limited-Service Restaurants",
                "description": "This U.S. industry comprises establishments primarily engaged in providing food services (except snack and nonalcoholic beverage bars) where patrons generally order or select items and pay before eating.  Food and drink may be consumed on premises, taken out, or delivered to the customer's location.  Some establishments in this industry may provide these food services in combination with selling alcoholic beverages.<br><br>Illustrative Examples:<br><br>Delicatessen restaurants<br>Pizza delivery shops<br>Family restaurants, limited-service<br>Takeout eating places<br>Fast-food restaurants<br>Fast casual restaurants<br>Takeout sandwich shops<br>Limited-service pizza parlors<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "722514",
                "title": "Cafeterias, Grill Buffets, and Buffets",
                "description": "This U.S. industry comprises establishments, known as cafeterias, grill buffets, or buffets, primarily engaged in preparing and serving meals for immediate consumption using cafeteria-style or buffet serving equipment, such as steam tables, refrigerated areas, display grills, and self-service nonalcoholic beverage dispensing equipment.  Patrons select from food and drink items on display in a continuous cafeteria line or from buffet stations.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "722515",
                "title": "Snack and Nonalcoholic Beverage Bars",
                "description": "This U.S. industry comprises establishments primarily engaged in (1) preparing and/or serving a specialty snack, such as ice cream, frozen yogurt, cookies, or popcorn, or (2) serving nonalcoholic beverages, such as coffee, juices, or sodas for consumption on or near the premises.  These establishments may carry and sell a combination of snack, nonalcoholic beverage, and other related products (e.g., coffee beans, mugs, coffee makers) but generally promote and sell a unique snack or nonalcoholic beverage.<br><br>Illustrative Examples:<br><br>Beverage bars, nonalcoholic, fixed location<br>Doughnut shops, on premise baking and carryout service<br>Bagel shops, on premise baking and carryout service<br>Pretzel shops, on premise baking and carryout service<br>Cookie shops, on premise baking and carryout service<br>Coffee shops, on premise brewing<br>Ice cream parlors<br>Juice bars, nonalcoholic, fixed location<br><br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 34
    },
    {
        "sectorCode": "81",
        "sectorDescription": "Other Services (except Public Administration)",
        "subsectors": [
            {
                "code": "81",
                "title": "Other Services (except Public Administration)<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Other Services (except Public Administration) sector comprises establishments engaged in providing services not specifically provided for elsewhere in the classification system.  Establishments in this sector are primarily engaged in activities such as equipment and machinery repairing, promoting or administering religious activities, grantmaking, advocacy, and providing drycleaning and laundry services, personal care services, death care services, pet care (except veterinary) services, photofinishing services, temporary parking services, and dating services.<br><br>Private households that engage in employing workers on or about the premises in activities primarily concerned with the operation of the household are included in this sector.<br><br>Excluded from this sector are establishments primarily engaged in retailing new equipment and also performing repairs and general maintenance on equipment.  These establishments are classified in Sector 44-45, Retail Trade.<br>"
            },
            {
                "code": "811",
                "title": "Repair and Maintenance<sup>T</sup>",
                "description": "Industries in the Repair and Maintenance subsector restore machinery, equipment, and other products to working order.  These establishments also typically provide general or routine maintenance (i.e., servicing) on such products to ensure they work efficiently and to prevent breakdown and unnecessary repairs.<br><br>The NAICS structure for this subsector brings together most types of repair and maintenance establishments and categorizes them based on production processes (i.e., on the type of repair and maintenance activity performed, and the necessary skills, expertise, and processes that are found in different repair and maintenance establishments).  This NAICS classification does not delineate between repair services provided to businesses versus those that serve households.  Although some industries primarily serve either businesses or households, separation by class of customer is limited by the fact that many establishments serve both.  Establishments repairing computers and consumer e"
            },
            {
                "code": "8111",
                "title": "Automotive Repair and Maintenance<sup>T</sup>",
                "description": "This industry group comprises establishments involved in providing repair and maintenance services for automotive vehicles, such as passenger cars, trucks, and vans, and all trailers.  Establishments in this industry group employ mechanics with specialized technical skills to diagnose and repair the mechanical and electrical systems for automotive vehicles, repair automotive interiors, and paint or repair automotive exteriors.<br>"
            },
            {
                "code": "81111",
                "title": "Automotive Mechanical and Electrical Repair and Maintenance<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing mechanical or electrical repair and maintenance services for automotive vehicles, such as passenger cars, trucks, and vans, and all trailers.  These establishments may specialize in a single service or may provide a wide range of these services.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "811111",
                "title": "General Automotive Repair",
                "description": "This U.S. industry comprises establishments primarily engaged in providing (1) a wide range of mechanical and electrical repair and maintenance services for automotive vehicles, such as passenger cars, trucks, and vans, and all trailers or (2) engine repair and replacement.<br><br>Illustrative Examples:<br><br>Automobile repair garages (except gasoline service stations)<br>General automotive repair shops<br>Automotive engine repair and replacement shops<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "811114",
                "title": "Specialized Automotive Repair",
                "description": "This U.S. industry comprises establishments primarily engaged in providing specialized mechanical or electrical repair and maintenance services (except engine repair and replacement) for automotive vehicles, such as passenger cars, trucks, and vans, and all trailers.<br><br>Illustrative Examples:<br><br>Automotive brake repair shops<br>Automotive suspension repair shops<br>Automotive exhaust system replacement and repair shops<br>Automotive electrical repair shops<br>Automotive transmission repair shops<br>Automotive tune-up shops<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "81112",
                "title": "Automotive Body, Paint, Interior, and Glass Repair<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing one or more of the following: (1) repairing or customizing automotive vehicle and trailer bodies and interiors; (2) painting automotive vehicle and trailer bodies; (3) replacing, repairing, and/or tinting automotive vehicle glass; and (4) customizing automobile, truck, and van interiors for the physically disabled or other customers with special requirements.<br><br>Illustrative Examples:<br><br>Automotive body shops<br>Automotive paint shops<br>Automotive glass shops<br>Restoration shops, antique and classic automotive <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "811121",
                "title": "Automotive Body, Paint, and Interior Repair and Maintenance",
                "description": "This U.S. industry comprises establishments primarily engaged in repairing or customizing automotive vehicle and trailer bodies and interiors; and/or painting automotive vehicles and trailer bodies.<br><br>Illustrative Examples:<br><br>Automotive body shops<br>Automotive body conversion services<br>Restoration shops, antique and classic automotive<br>Automotive paint shops <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "811122",
                "title": "Automotive Glass Replacement Shops",
                "description": "This U.S. industry comprises establishments primarily engaged in replacing, repairing, and/or tinting automotive vehicle glass, such as passenger car, truck, and van glass.<br><br>Cross-References."
            },
            {
                "code": "81119",
                "title": "Other Automotive Repair and Maintenance<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in providing automotive repair and maintenance services (except mechanical and electrical repair and maintenance and body, paint, interior, and glass repair) for automotive vehicles, such as passenger cars, trucks, and vans, and all trailers.<br><br>Illustrative Examples:<br><br>Automotive air-conditioning repair shops<br>Automotive tire repair (except retreading) shops<br>Automotive oil change and lubrication shops<br>Car washes<br>Automotive rustproofing and undercoating shops <br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "811191",
                "title": "Automotive Oil Change and Lubrication Shops",
                "description": "This U.S. industry comprises establishments primarily engaged in changing motor oil and lubricating the chassis of automotive vehicles, such as passenger cars, trucks, and vans.<br><br>Cross-References."
            },
            {
                "code": "811192",
                "title": "Car Washes",
                "description": "This U.S. industry comprises establishments primarily engaged in cleaning, washing, and/or waxing automotive vehicles, such as passenger cars, trucks, and vans, and trailers.<br><br>Illustrative Examples:<br><br>Automotive detail shops<br>Mobile car and truck washes<br>Car washes<br>Self-service car washes<br>"
            },
            {
                "code": "811198",
                "title": "All Other Automotive Repair and Maintenance",
                "description": "This U.S. industry comprises establishments primarily engaged in providing automotive repair and maintenance services (except mechanical and electrical repair and maintenance; body, paint, interior, and glass repair; motor oil change and lubrication; and car washing) for automotive vehicles, such as passenger cars, trucks, and vans, and all trailers.<br><br>Illustrative Examples:<br><br>Automotive air-conditioning repair shops<br>Automotive tire repair (except retreading) shops<br>Automotive rustproofing and undercoating shops<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "8112",
                "title": "Electronic and Precision Equipment Repair and Maintenance<sup>T</sup>",
                "description": null
            },
            {
                "code": "81121",
                "title": "Electronic and Precision Equipment Repair and Maintenance<sup>T</sup>",
                "description": "See industry description for 811210.<br>"
            },
            {
                "code": "811210",
                "title": "Electronic and Precision Equipment Repair and Maintenance",
                "description": "This industry comprises establishments primarily engaged in repairing and maintaining one or more of the following: (1) consumer electronic equipment; (2) computers; (3) office machines; (4) communication equipment; and (5) other electronic and precision equipment and instruments, without retailing these products as new.  Establishments in this industry repair items, such as microscopes, radar and sonar equipment, televisions, stereos, video recorders, computers, fax machines, photocopying machines, two-way radios, cellular telephones, and other communications equipment, scientific instruments, and medical equipment.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "8113",
                "title": "Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance<sup>T</sup>",
                "description": null
            },
            {
                "code": "81131",
                "title": "Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance<sup>T</sup>",
                "description": "See industry description for 811310.<br>"
            },
            {
                "code": "811310",
                "title": "Commercial and Industrial Machinery and Equipment (except Automotive and Electronic) Repair and Maintenance",
                "description": "This industry comprises establishments primarily engaged in the repair and maintenance of commercial and industrial machinery and equipment.  Establishments in this industry either sharpen/install commercial and industrial machinery blades and saws or provide welding (e.g., automotive, general) repair services; or repair agricultural and other heavy and industrial machinery and equipment (e.g., forklifts and other material handling equipment, machine tools, commercial refrigeration equipment, construction equipment, and mining machinery).<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "8114",
                "title": "Personal and Household Goods Repair and Maintenance<sup>T</sup>",
                "description": "This industry group comprises establishments primarily engaged in home and garden equipment and appliance repair and maintenance; reupholstery and furniture repair; footwear and leather goods repair; and other personal and household goods repair and maintenance.<br>"
            },
            {
                "code": "81141",
                "title": "Home and Garden Equipment and Appliance Repair and Maintenance<sup>T</sup>",
                "description": "This industry comprises establishments primarily engaged in repairing and servicing home and garden equipment and/or household-type appliances without retailing new equipment or appliances.  Establishments in this industry repair and maintain items, such as lawnmowers, edgers, snowblowers, leaf blowers, washing machines, clothes dryers, and refrigerators.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "811411",
                "title": "Home and Garden Equipment Repair and Maintenance",
                "description": "This U.S. industry comprises establishments primarily engaged in repairing and servicing home and garden equipment without retailing new home and garden equipment, such as lawnmowers, handheld power tools, edgers, snowblowers, leaf blowers, and trimmers.<br><br>Cross-References."
            },
            {
                "code": "811412",
                "title": "Appliance Repair and Maintenance",
                "description": "This U.S. industry comprises establishments primarily engaged in repairing and servicing household appliances without retailing new appliances, such as refrigerators, stoves, washing machines, clothes dryers, and room air-conditioners.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "81142",
                "title": "Reupholstery and Furniture Repair<sup>T</sup>",
                "description": "See industry description for 811420.<br>"
            },
            {
                "code": "811420",
                "title": "Reupholstery and Furniture Repair",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) reupholstering furniture; (2) refinishing furniture; (3) repairing furniture; and (4) repairing and restoring furniture.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "81143",
                "title": "Footwear and Leather Goods Repair<sup>T</sup>",
                "description": "See industry description for 811430.<br>"
            },
            {
                "code": "811430",
                "title": "Footwear and Leather Goods Repair",
                "description": "This industry comprises establishments primarily engaged in repairing footwear and/or repairing other leather or leather-like goods without retailing new footwear and leather or leather-like goods, such as handbags and briefcases.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "81149",
                "title": "Other Personal and Household Goods Repair and Maintenance<sup>T</sup>",
                "description": "See industry description for 811490.<br>"
            },
            {
                "code": "811490",
                "title": "Other Personal and Household Goods Repair and Maintenance",
                "description": "This industry comprises establishments primarily engaged in repairing and servicing personal or household-type goods without retailing new personal or household-type goods (except home and garden equipment, appliances, furniture, and footwear and leather goods).  Establishments in this industry repair items, such as garments; watches; jewelry; musical instruments; bicycles and motorcycles; and motorboats, canoes, sailboats, and other recreational boats.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "812",
                "title": "Personal and Laundry Services<sup>T</sup>",
                "description": "Industries in the Personal and Laundry Services subsector group establishments that provide personal and laundry services to individuals, households, and businesses.  Services performed include: personal care services; death care services; laundry and drycleaning services; and a wide range of other personal services, such as pet care (except veterinary) services, photofinishing services, temporary parking services, and dating services.<br><br>The Personal and Laundry Services subsector is by no means all-inclusive of the services that could be termed personal services (i.e., those provided to individuals rather than businesses).  There are many other subsectors, as well as sectors, that provide services to persons.  Establishments providing legal, accounting, tax preparation, architectural, portrait photography, and similar professional services are classified in Sector 54, Professional, Scientific, and Technical Services; those providing job placement, travel arrangement, home security, int"
            },
            {
                "code": "8121",
                "title": "Personal Care Services",
                "description": "This industry group comprises establishments, such as barber and beauty shops, that provide appearance care services to individual consumers.<br>"
            },
            {
                "code": "81211",
                "title": "Hair, Nail, and Skin Care Services",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) providing hair care services; (2) providing nail care services; and (3) providing facials or applying makeup (except permanent makeup).<br><br>Illustrative Examples:<br><br>Barber shops<br>Hair stylist shops<br>Beauty salons<br>Nail salons<br>Cosmetology salons<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "812111",
                "title": "Barber Shops",
                "description": "This U.S. industry comprises establishments known as barber shops or men's hair stylist shops primarily engaged in cutting, trimming, and styling men's and boys' hair; and/or shaving and trimming men's beards.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "812112",
                "title": "Beauty Salons",
                "description": "This U.S. industry comprises establishments (except those known as barber shops or men's hair stylist shops) primarily engaged in one or more of the following: (1) cutting, trimming, shampooing, coloring, waving, or styling hair; (2) providing facials; and (3) applying makeup (except permanent makeup).<br><br>Illustrative Examples:<br><br>Beauty parlors or shops<br>Facial salons or shops<br>Combined beauty and barber shops<br>Hairdressing salons or shops<br>Cosmetology salons or shops<br>Unisex or women's hair stylist shops<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "812113",
                "title": "Nail Salons",
                "description": "This U.S. industry comprises establishments primarily engaged in providing nail care services, such as manicures, pedicures, and nail extensions.<br>"
            },
            {
                "code": "81219",
                "title": "Other Personal Care Services",
                "description": "This industry comprises establishments primarily engaged in providing personal care services (except hair, nail, facial, or nonpermanent makeup services).<br><br>Illustrative Examples:<br><br>Day spas<br>Depilatory or electrolysis (i.e., hair removal) salons<br>Permanent makeup salons<br>Ear piercing services<br>Steam baths<br>Hair replacement (except by offices of physicians) or weaving services<br>Tanning salons<br>Tattoo parlors<br>Non-medical diet and weight reducing centers<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "812191",
                "title": "Diet and Weight Reducing Centers",
                "description": "This U.S. industry comprises establishments primarily engaged in providing non-medical services to assist clients in attaining or maintaining a desired weight.  The sale of weight reduction products, such as food supplements, may be an integral component of the program.  These services typically include individual or group counseling, menu and exercise planning, and weight and body measurement monitoring.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "812199",
                "title": "Other Personal Care Services",
                "description": "This U.S. industry comprises establishments primarily engaged in providing personal care services (except hair, nail, facial, nonpermanent makeup, or non-medical diet and weight reducing services).<br><br>Illustrative Examples:<br><br>Day spas<br>Depilatory or electrolysis (i.e., hair removal) salons<br>Saunas<br>Ear piercing services<br>Steam baths<br>Hair replacement (except by offices of physicians) or weaving services<br>Tanning salons<br>Tattoo parlors<br>Permanent makeup salons<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "8122",
                "title": "Death Care Services",
                "description": "This industry group comprises establishments primarily engaged in preparing the dead for burial or interment, conducting funerals, operating sites or structures reserved for the interment of human or animals remains, and/or cremating the dead.<br>"
            },
            {
                "code": "81221",
                "title": "Funeral Homes and Funeral Services",
                "description": "See industry description for 812210.<br>"
            },
            {
                "code": "812210",
                "title": "Funeral Homes and Funeral Services",
                "description": "This industry comprises establishments primarily engaged in preparing the dead for burial or interment and conducting funerals (i.e., providing facilities for wakes, arranging transportation for the dead, selling caskets and related merchandise).  Funeral homes combined with crematories are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "81222",
                "title": "Cemeteries and Crematories",
                "description": "See industry description for 812220.<br>"
            },
            {
                "code": "812220",
                "title": "Cemeteries and Crematories",
                "description": "This industry comprises establishments primarily engaged in operating sites or structures reserved for the interment of human or animal remains and/or cremating the dead.<br><br>Illustrative Examples:<br><br>Cemetery associations (i.e., operators of cemeteries)<br>Memorial gardens (i.e., burial places)<br>Pet cemeteries<br>Crematories (except combined with funeral homes)<br>Mausoleums <br><br><br>Cross-References."
            },
            {
                "code": "8123",
                "title": "Drycleaning and Laundry Services",
                "description": "This industry group comprises establishments primarily engaged in operating coin- or card-operated or similar self-service laundries and drycleaners; providing drycleaning and laundry services (except coin- or card-operated); and supplying, on a rental or contract basis, laundered items (e.g., uniforms, gowns, shop towels, etc.).  Included in this industry group are establishments primarily engaged in supplying and servicing coin- or card-operated laundry and drycleaning equipment in places of business operated by others, such as apartments and dormitories.<br>"
            },
            {
                "code": "81231",
                "title": "Coin-Operated Laundries and Drycleaners",
                "description": "See industry description for 812310.<br>"
            },
            {
                "code": "812310",
                "title": "Coin-Operated Laundries and Drycleaners",
                "description": "This industry comprises establishments primarily engaged in (1) operating facilities with coin- or card-operated or similar self-service laundry and drycleaning equipment for customer use on the premises and/or (2) supplying and servicing coin- or card-operated or similar self-service laundry and drycleaning equipment for customer use in places of business operated by others, such as apartments and dormitories.<br>"
            },
            {
                "code": "81232",
                "title": "Drycleaning and Laundry Services (except Coin-Operated)",
                "description": "See industry description for 812320.<br>"
            },
            {
                "code": "812320",
                "title": "Drycleaning and Laundry Services (except Coin-Operated)",
                "description": "This industry comprises establishments primarily engaged in one or more of the following: (1) providing drycleaning services (except coin- or card-operated); (2) providing laundering services (except linen and uniform supply or coin- or card-operated); (3) providing drop-off and pick-up sites for laundries and/or drycleaners; and (4) providing specialty cleaning services for specific types of garments and other textile items (except carpets and upholstery), such as fur, leather, or suede garments; wedding gowns; hats; draperies; and pillows.  These establishments may provide all, a combination of, or none of the cleaning services on the premises.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "81233",
                "title": "Linen and Uniform Supply",
                "description": "This industry comprises establishments primarily engaged in supplying, on a rental or contract basis, laundered items, such as uniforms, gowns and coats, table linens, bed linens, towels, clean room apparel, and treated mops or shop towels.<br>"
            },
            {
                "code": "812331",
                "title": "Linen Supply",
                "description": "This U.S. industry comprises establishments primarily engaged in supplying, on a rental or contract basis, laundered items, such as table and bed linens; towels; diapers; and uniforms, gowns, or coats of the type used by doctors, nurses, barbers, beauticians, and waitresses.<br><br>Cross-References."
            },
            {
                "code": "812332",
                "title": "Industrial Launderers",
                "description": "This U.S. industry comprises establishments primarily engaged in supplying, on a rental or contract basis, laundered industrial work uniforms and related work clothing, such as protective apparel (flame and heat resistant) and clean room apparel; dust control items, such as treated mops, rugs, mats, dust tool covers, cloths, and shop or wiping towels.<br><br>Cross-References."
            },
            {
                "code": "8129",
                "title": "Other Personal Services",
                "description": "This industry group comprises establishments primarily engaged in providing personal services (except personal care services, death care services, or drycleaning and laundry services).<br>"
            },
            {
                "code": "81291",
                "title": "Pet Care (except Veterinary) Services",
                "description": "See industry description for 812910.<br>"
            },
            {
                "code": "812910",
                "title": "Pet Care (except Veterinary) Services",
                "description": "This industry comprises establishments primarily engaged in providing pet care services (except veterinary), such as boarding, grooming, sitting, walking, and training pets.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "81292",
                "title": "Photofinishing",
                "description": "This industry comprises establishments primarily engaged in developing film and/or making photographic slides, prints, and enlargements.<br><br>Cross-References."
            },
            {
                "code": "812921",
                "title": "Photofinishing Laboratories (except One-Hour)",
                "description": "This U.S. industry comprises establishments (except those known as \"one-hour\" photofinishing labs) primarily engaged in developing film and/or making photographic slides, prints, and enlargements.<br><br>Cross-References."
            },
            {
                "code": "812922",
                "title": "One-Hour Photofinishing",
                "description": "This U.S. industry comprises establishments known as \"one-hour\" photofinishing labs primarily engaged in developing film and/or making photographic slides, prints, and enlargements on a short turnaround or while-you-wait basis.<br><br>Cross-References."
            },
            {
                "code": "81293",
                "title": "Parking Lots and Garages",
                "description": "See industry description for 812930.<br>"
            },
            {
                "code": "812930",
                "title": "Parking Lots and Garages",
                "description": "This industry comprises establishments primarily engaged in providing parking space for motor vehicles, usually on an hourly, daily, or monthly basis and/or valet parking services.<br><br>Cross-References."
            },
            {
                "code": "81299",
                "title": "All Other Personal Services",
                "description": "See industry description for 812990.<br>"
            },
            {
                "code": "812990",
                "title": "All Other Personal Services",
                "description": "This industry comprises establishments primarily engaged in providing personal services (except personal care services, death care services, drycleaning and laundry services, pet care services, photofinishing services, or parking space and/or valet parking services).<br><br>Illustrative Examples:<br><br>Bail bonding or bondsperson services<br>Shoeshine services<br>Coin- or card-operated personal services machine (e.g., blood pressure, locker, photographic, scale, shoeshine) concession operators<br>Social escort services<br>Consumer buying services<br>Wedding planning services<br>Dating services<br>Personal fitness training services<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "813",
                "title": "Religious, Grantmaking, Civic, Professional, and Similar Organizations<sup>T</sup>",
                "description": "Industries in the Religious, Grantmaking, Civic, Professional, and Similar Organizations subsector group establishments that organize and promote religious activities; support various causes through grantmaking; advocate various social and political causes; and promote and defend the interests of their members.<br><br>The industry groups within the subsector are defined in terms of their activities, such as establishments that provide funding for specific causes or for a variety of charitable causes; establishments that advocate and actively promote causes and beliefs for the public good; and establishments that have an active membership structure to promote causes and represent the interests of their members.  Establishments in this subsector may publish newsletters, books, and periodicals for distribution to their members.<br>"
            },
            {
                "code": "8131",
                "title": "Religious Organizations",
                "description": null
            },
            {
                "code": "81311",
                "title": "Religious Organizations",
                "description": "See industry description for 813110.<br>"
            },
            {
                "code": "813110",
                "title": "Religious Organizations",
                "description": "This industry comprises (1) establishments primarily engaged in operating religious organizations, such as churches, religious temples, mosques, and monasteries, and/or (2) establishments primarily engaged in administering an organized religion or promoting religious activities.<br><br>Illustrative Examples:<br><br>Churches<br>Shrines, religious<br>Monasteries (except schools)<br>Synagogues<br>Mosques, religious<br>Temples, religious<br><br><br>Cross-References."
            },
            {
                "code": "8132",
                "title": "Grantmaking and Giving Services",
                "description": null
            },
            {
                "code": "81321",
                "title": "Grantmaking and Giving Services",
                "description": "This industry comprises (1) establishments known as grantmaking foundations or charitable trusts and (2) establishments primarily engaged in raising funds for a wide range of social welfare activities, such as health, educational, scientific, and cultural activities.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "813211",
                "title": "Grantmaking Foundations",
                "description": "This U.S. industry comprises establishments known as grantmaking foundations or charitable trusts.  Establishments in this industry award grants from trust funds based on a competitive selection process or the preferences of the foundation managers and grantors; or fund a single entity, such as a museum or university.<br><br>Illustrative Examples:<br><br>Community foundations<br>Philanthropic trusts<br>Corporate foundations, awarding grants<br>Scholarship trusts<br>Grantmaking foundations<br><br><br>Cross-References."
            },
            {
                "code": "813212",
                "title": "Voluntary Health Organizations",
                "description": "This U.S. industry comprises establishments primarily engaged in raising funds for health related research, such as disease (e.g., heart, cancer, diabetes) prevention, health education, and patient services.<br><br>Illustrative Examples:<br><br>Disease awareness fundraising organizations<br>Health research fundraising organizations<br>Voluntary health organizations<br>Disease research (e.g., heart, cancer) fundraising organizations<br><br><br>Cross-References."
            },
            {
                "code": "813219",
                "title": "Other Grantmaking and Giving Services",
                "description": "This U.S. industry comprises establishments (except voluntary health organizations) primarily engaged in raising funds for a wide range of social welfare activities, such as educational, scientific, cultural, and health.<br><br>Illustrative Examples:<br><br>Community chest fundraising organizations<br>United fund councils<br>Federated charities<br>United funds for colleges<br><br><br>Cross-References."
            },
            {
                "code": "8133",
                "title": "Social Advocacy Organizations",
                "description": null
            },
            {
                "code": "81331",
                "title": "Social Advocacy Organizations",
                "description": "This industry comprises establishments primarily engaged in promoting a particular cause or working for the realization of a specific social or political goal to benefit a broad or specific constituency.  These organizations may solicit contributions and offer memberships to support these goals.<br><br>Illustrative Examples:<br><br>Community action advocacy organizations<br>Firearms advocacy organizations<br>Conservation advocacy organizations<br>Human rights advocacy organizations<br>Environmental advocacy organizations<br>Wildlife preservation organizations<br><br><br>Cross-References."
            },
            {
                "code": "813311",
                "title": "Human Rights Organizations",
                "description": "This U.S. industry comprises establishments primarily engaged in promoting causes associated with human rights either for a broad or specific constituency.  Establishments in this industry address issues, such as protecting and promoting the broad constitutional rights and civil liberties of individuals and those suffering from neglect, abuse, or exploitation; promoting the interests of specific groups, such as children, women, senior citizens, or persons with disabilities; improving relations between racial, ethnic, and cultural groups; and promoting voter education and registration.  These organizations may solicit contributions and offer memberships to support these causes.<br><br>Illustrative Examples:<br><br>Civil liberties organizations<br>Senior citizens' advocacy organizations<br>Human rights advocacy organizations<br>Veterans' rights organizations<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "813312",
                "title": "Environment, Conservation and Wildlife Organizations",
                "description": "This U.S. industry comprises establishments primarily engaged in promoting the preservation and protection of the environment and wildlife.  Establishments in this industry address issues, such as clean air and water; global warming; conserving and developing natural resources, including land, plant, water, and energy resources; and protecting and preserving wildlife and endangered species.  These organizations may solicit contributions and offer memberships to support these causes.<br><br>Illustrative Examples:<br><br>Animal rights organizations<br>Natural resource preservation organizations<br>Conservation advocacy organizations<br>Wildlife preservation organizations<br>Humane societies without animal shelters<br><br><br>Cross-References."
            },
            {
                "code": "813319",
                "title": "Other Social Advocacy Organizations",
                "description": "This U.S. industry comprises establishments primarily engaged in social advocacy (except human rights and environmental protection, conservation, and wildlife preservation).  Establishments in this industry address issues, such as peace and international understanding; community action (excluding civic organizations); or advancing social causes, such as firearms safety, drunk driving prevention, or drug abuse awareness.  These organizations may solicit contributions and offer memberships to support these causes.<br><br>Illustrative Examples:<br><br>Community action advocacy organizations<br>Substance abuse prevention advocacy organizations<br>Firearms advocacy organizations<br>Taxpayers' advocacy organizations<br>Peace advocacy organizations<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "8134",
                "title": "Civic and Social Organizations",
                "description": null
            },
            {
                "code": "81341",
                "title": "Civic and Social Organizations",
                "description": "See industry description for 813410.<br>"
            },
            {
                "code": "813410",
                "title": "Civic and Social Organizations",
                "description": "This industry comprises establishments primarily engaged in promoting the civic and social interests of their members.  Establishments in this industry may operate bars and restaurants for their members.<br><br>Illustrative Examples:<br><br>Alumni associations<br>Granges<br>Automobile clubs (except travel)<br>Parent-teacher associations<br>Booster clubs<br>Scouting organizations<br>Ethnic associations<br>Social clubs<br>Fraternal lodges<br>Veterans' membership organizations<br><br><br>Cross-References."
            },
            {
                "code": "8139",
                "title": "Business, Professional, Labor, Political, and Similar Organizations",
                "description": "This industry group comprises establishments primarily engaged in promoting the interests of their members (except religious organizations, social advocacy organizations, and civic and social organizations).  Examples of establishments in this industry are business associations, professional organizations, labor unions, and political organizations.<br>"
            },
            {
                "code": "81391",
                "title": "Business Associations",
                "description": "See industry description for 813910.<br>"
            },
            {
                "code": "813910",
                "title": "Business Associations",
                "description": "This industry comprises establishments primarily engaged in promoting the business interests of their members.  These establishments may conduct research on new products and services; develop market statistics; sponsor quality and certification standards; lobby public officials; or publish newsletters, books, or periodicals for distribution to their members.<br><br>Illustrative Examples:<br><br>Agricultural organizations (except youth farming organizations, farm granges)<br>Real estate boards<br>Chambers of commerce<br>Trade associations<br>Manufacturers' associations<br><br><br>Cross-References."
            },
            {
                "code": "81392",
                "title": "Professional Organizations",
                "description": "See industry description for 813920.<br>"
            },
            {
                "code": "813920",
                "title": "Professional Organizations",
                "description": "This industry comprises establishments primarily engaged in promoting the professional interests of their members and the profession as a whole.  These establishments may conduct research; develop statistics; sponsor quality and certification standards; lobby public officials; or publish newsletters, books, or periodicals for distribution to their members.<br><br>Illustrative Examples:<br><br>Bar associations<br>Learned societies<br>Dentists' associations<br>Peer review boards<br>Engineers' associations<br>Professional standards review boards<br>Health professionals' associations<br>Scientists' associations<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "81393",
                "title": "Labor Unions and Similar Labor Organizations",
                "description": "See industry description for 813930.<br>"
            },
            {
                "code": "813930",
                "title": "Labor Unions and Similar Labor Organizations",
                "description": "This industry comprises establishments primarily engaged in promoting the interests of organized labor and union employees.<br><br>Cross-References."
            },
            {
                "code": "81394",
                "title": "Political Organizations",
                "description": "See industry description for 813940.<br>"
            },
            {
                "code": "813940",
                "title": "Political Organizations",
                "description": "This industry comprises establishments primarily engaged in promoting the interests of national, state, or local political parties or candidates.  Included are political groups organized to raise funds for a political party or individual candidates.<br><br>Illustrative Examples:<br><br>Campaign organizations, political<br>Political organizations or clubs<br>Political action committees (PACs)<br>Political parties<br>Political campaign organizations<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "81399",
                "title": "Other Similar Organizations (except Business, Professional, Labor, and Political Organizations)",
                "description": "See industry description for 813990.<br>"
            },
            {
                "code": "813990",
                "title": "Other Similar Organizations (except Business, Professional, Labor, and Political Organizations)",
                "description": "This industry comprises establishments (except religious organizations, social advocacy organizations, civic and social organizations, business associations, professional organizations, labor unions, and political organizations) primarily engaged in promoting the interests of their members.<br><br>Illustrative Examples:<br><br>Athletic associations and leagues, regulatory<br>Property owners' associations<br>Condominium and homeowners' associations<br>Tenants' associations (except advocacy)<br>Cooperative owners' associations<br><br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "814",
                "title": "Private Households<sup>T</sup>",
                "description": "The Private Households subsector includes private households that engage in employing workers on or about the premises in activities primarily concerned with the operation of the household.  These private households may employ individuals, such as cooks, maids, nannies, butlers, non-medical personal care aides, and outside workers, such as gardeners, caretakers, and other maintenance workers.<br>"
            },
            {
                "code": "8141",
                "title": "Private Households<sup>T</sup>",
                "description": null
            },
            {
                "code": "81411",
                "title": "Private Households<sup>T</sup>",
                "description": "See industry description for 814110.<br>"
            },
            {
                "code": "814110",
                "title": "Private Households",
                "description": "This industry comprises private households primarily engaged in employing workers on or about the premises in activities primarily concerned with the operation of the household.  These private households may employ individuals, such as cooks, maids, nannies, butlers, non-medical personal care aides, and outside workers, such as gardeners, caretakers, and other maintenance workers.<br><br>Cross-References. Establishments primarily engaged in--"
            }
        ],
        "subsectors_count": 93
    },
    {
        "sectorCode": "92",
        "sectorDescription": "Public Administration",
        "subsectors": [
            {
                "code": "92",
                "title": "Public Administration<sup>T</sup>",
                "description": "The Sector as a Whole<br><br>The Public Administration sector consists of establishments of federal, state, and local government agencies that administer, oversee, and manage public programs and have executive, legislative, or judicial authority over other institutions within a given area.  These agencies also set policy, create laws, adjudicate civil and criminal legal cases, and provide for public safety and for national defense.  In general, government establishments in the Public Administration sector oversee governmental programs and activities that are not performed by private establishments.  Establishments in this sector typically are engaged in the organization and financing of the production of public goods and services, most of which are provided for free or at prices that are not economically significant.<br><br>Government establishments also engage in a wide range of productive activities covering not only public goods and services but also individual goods and services similar to tho"
            },
            {
                "code": "921",
                "title": "Executive, Legislative, and Other General Government Support",
                "description": "The Executive, Legislative, and Other General Government Support subsector groups offices of government executives, legislative bodies, public finance, and general government support.<br>"
            },
            {
                "code": "9211",
                "title": "Executive, Legislative, and Other General Government Support",
                "description": null
            },
            {
                "code": "92111",
                "title": "Executive Offices",
                "description": "See industry description for 921110.<br>"
            },
            {
                "code": "921110",
                "title": "Executive Offices",
                "description": "This industry comprises government establishments serving as offices of chief executives and their advisory committees and commissions.  This industry includes offices of the president, governors, and mayors, in addition to executive advisory commissions.<br>"
            },
            {
                "code": "92112",
                "title": "Legislative Bodies",
                "description": "See industry description for 921120.<br>"
            },
            {
                "code": "921120",
                "title": "Legislative Bodies",
                "description": "This industry comprises government establishments serving as legislative bodies and their advisory committees and commissions.  Included in this industry are legislative bodies, such as Congress, state legislatures, and advisory and study legislative commissions.<br>"
            },
            {
                "code": "92113",
                "title": "Public Finance Activities",
                "description": "See industry description for 921130.<br>"
            },
            {
                "code": "921130",
                "title": "Public Finance Activities",
                "description": "This industry comprises government establishments primarily engaged in public finance, taxation, and monetary policy.  Included are financial administration activities, such as monetary policy; tax administration and collection; custody and disbursement of funds; debt and investment administration; auditing activities; and government employee retirement trust fund administration.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "92114",
                "title": "Executive and Legislative Offices, Combined",
                "description": "See industry description for 921140.<br>"
            },
            {
                "code": "921140",
                "title": "Executive and Legislative Offices, Combined",
                "description": "This industry comprises government establishments serving as councils and boards of commissioners or supervisors and such bodies where the chief executive (e.g., county executive or city mayor) is a member of the legislative body (e.g., county or city council) itself.<br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "92115",
                "title": "American Indian and Alaska Native Tribal Governments",
                "description": "See industry description for 921150.<br>"
            },
            {
                "code": "921150",
                "title": "American Indian and Alaska Native Tribal Governments",
                "description": "This industry comprises American Indian and Alaska Native governing bodies.  Establishments in this industry perform legislative, judicial, and administrative functions for their American Indian and Alaska Native lands.  Included in this industry are American Indian and Alaska Native councils, courts, and law enforcement bodies.<br><br>Cross-References."
            },
            {
                "code": "92119",
                "title": "Other General Government Support",
                "description": "See industry description for 921190.<br>"
            },
            {
                "code": "921190",
                "title": "Other General Government Support",
                "description": "This industry comprises government establishments primarily engaged in providing general support for government.  Such support services include personnel services, election boards, and other general government support establishments that are not classified elsewhere in public administration.<br><br>Illustrative Examples:<br><br>Civil rights commissions<br>Personnel offices, government<br>Civil service commissions<br>Supply agencies, government<br>General services departments, government<br><br><br>Cross-References."
            },
            {
                "code": "922",
                "title": "Justice, Public Order, and Safety Activities",
                "description": "The Justice, Public Order, and Safety Activities subsector groups government establishments engaged in the administration of justice, public order, and safety programs.<br>"
            },
            {
                "code": "9221",
                "title": "Justice, Public Order, and Safety Activities",
                "description": null
            },
            {
                "code": "92211",
                "title": "Courts",
                "description": "See industry description for 922110.<br>"
            },
            {
                "code": "922110",
                "title": "Courts",
                "description": "This industry comprises civilian courts of law (except American Indian and Alaska Native tribal courts).  Included in this industry are civilian courts, courts of law, and sheriffs' offices conducting court functions only.<br><br>Cross-References."
            },
            {
                "code": "92212",
                "title": "Police Protection",
                "description": "See industry description for 922120.<br>"
            },
            {
                "code": "922120",
                "title": "Police Protection",
                "description": "This industry comprises government establishments primarily engaged in criminal and civil law enforcement, police, traffic safety, and other activities related to the enforcement of the law and preservation of order.  Combined police and fire departments are included in this industry.<br><br>Cross-References."
            },
            {
                "code": "92213",
                "title": "Legal Counsel and Prosecution",
                "description": "See industry description for 922130.<br>"
            },
            {
                "code": "922130",
                "title": "Legal Counsel and Prosecution",
                "description": "This industry comprises government establishments primarily engaged in providing legal counsel or prosecution services for the government.<br><br>Illustrative Examples:<br><br>Attorney generals' offices<br>Public defenders' offices<br>District attorneys' offices<br>Public prosecutors' offices<br><br><br>Cross-References."
            },
            {
                "code": "92214",
                "title": "Correctional Institutions",
                "description": "See industry description for 922140.<br>"
            },
            {
                "code": "922140",
                "title": "Correctional Institutions",
                "description": "This industry comprises government establishments primarily engaged in managing and operating correctional institutions.  The facility is generally designed for the confinement, correction, and rehabilitation of adult and/or juvenile offenders sentenced by a court.<br><br>Illustrative Examples:<br><br>Correctional institutions, public administration<br>Penitentiaries, public administration<br>Detention centers, public administration<br>Prisons, public administration<br>Jails, public administration <br><br><br>Cross-References."
            },
            {
                "code": "92215",
                "title": "Parole Offices and Probation Offices",
                "description": "See industry description for 922150.<br>"
            },
            {
                "code": "922150",
                "title": "Parole Offices and Probation Offices",
                "description": "This industry comprises government establishments primarily engaged in judicially administering probation offices, parole offices and boards, and pardon boards.<br><br>Cross-References."
            },
            {
                "code": "92216",
                "title": "Fire Protection",
                "description": "See industry description for 922160.<br>"
            },
            {
                "code": "922160",
                "title": "Fire Protection",
                "description": "This industry comprises government establishments primarily engaged in firefighting and other related fire protection activities.  Government establishments providing combined fire protection and ambulance or rescue services are classified in this industry.<br><br>Cross-References. Establishments primarily engaged in--"
            },
            {
                "code": "92219",
                "title": "Other Justice, Public Order, and Safety Activities",
                "description": "See industry description for 922190.<br>"
            },
            {
                "code": "922190",
                "title": "Other Justice, Public Order, and Safety Activities",
                "description": "This industry comprises government establishments primarily engaged in public order and safety (except courts, police protection, legal counsel and prosecution, correctional institutions, parole offices, probation offices, pardon boards, and fire protection).  These establishments include the general administration of public order and safety programs.  Government establishments responsible for the collection of statistics on public safety are included in this industry.<br><br>Illustrative Examples:<br><br>Consumer product safety commissions, public administration<br>Emergency planning and management offices, government<br>Disaster preparedness and management offices, government<br>Public safety bureaus and statistics centers, government<br><br><br>Cross-References."
            },
            {
                "code": "923",
                "title": "Administration of Human Resource Programs",
                "description": "The Administration of Human Resource Programs subsector groups government establishments primarily engaged in the administration of human resource programs.<br>"
            },
            {
                "code": "9231",
                "title": "Administration of Human Resource Programs",
                "description": null
            },
            {
                "code": "92311",
                "title": "Administration of Education Programs",
                "description": "See industry description for 923110.<br>"
            },
            {
                "code": "923110",
                "title": "Administration of Education Programs",
                "description": "This industry comprises government establishments primarily engaged in the central coordination, planning, supervision, and administration of funds, policies, intergovernmental activities, statistical reports and data collection, and centralized programs for educational administration.  Government scholarship programs are included in this industry.<br><br>Illustrative Examples:<br><br>Education offices, nonoperating, public administration<br>State education departments<br>Education statistics centers, government<br>University regents or boards, government<br><br><br>Cross-References."
            },
            {
                "code": "92312",
                "title": "Administration of Public Health Programs",
                "description": "See industry description for 923120.<br>"
            },
            {
                "code": "923120",
                "title": "Administration of Public Health Programs",
                "description": "This industry comprises government establishments primarily engaged in the planning, administration, and coordination of public health programs and services, including environmental health activities, mental health, categorical health programs, health statistics, and immunization services.  Government establishments primarily engaged in conducting public health-related inspections are included in this industry.<br><br>Illustrative Examples:<br><br>Communicable disease program administration, public administration<br>Mental health program administration, public administration<br>Coroners' offices, public administration<br>Public health program administration, nonoperating, public administration<br>Health program administration, public administration<br><br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "92313",
                "title": "Administration of Human Resource Programs (except Education, Public Health, and Veterans' Affairs Programs)",
                "description": "See industry description for 923130.<br>"
            },
            {
                "code": "923130",
                "title": "Administration of Human Resource Programs (except Education, Public Health, and Veterans' Affairs Programs)",
                "description": "This industry comprises government establishments primarily engaged in the planning, administration, and coordination of programs for public assistance, social work, and welfare activities.  The administration of Social Security, disability insurance, Medicare, unemployment insurance, and workers' compensation programs are included in this industry.<br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "92314",
                "title": "Administration of Veterans' Affairs",
                "description": "See industry description for 923140.<br>"
            },
            {
                "code": "923140",
                "title": "Administration of Veterans' Affairs",
                "description": "This industry comprises government establishments primarily engaged in the administration of programs of assistance, training, counseling, and other services to veterans and their dependents, heirs, or survivors.  Included in this industry are Veterans' Affairs offices that maintain liaison and coordinate activities with other service organizations and governmental agencies.<br><br>Cross-References."
            },
            {
                "code": "924",
                "title": "Administration of Environmental Quality Programs",
                "description": "The Administration of Environmental Quality Programs subsector groups government establishments primarily engaged in the administration of environmental quality.<br>"
            },
            {
                "code": "9241",
                "title": "Administration of Environmental Quality Programs",
                "description": null
            },
            {
                "code": "92411",
                "title": "Administration of Air and Water Resource and Solid Waste Management Programs",
                "description": "See industry description for 924110.<br>"
            },
            {
                "code": "924110",
                "title": "Administration of Air and Water Resource and Solid Waste Management Programs",
                "description": "This industry comprises government establishments primarily engaged in one or more of the following: (1) the administration, regulation, and enforcement of air and water resource programs; (2) the administration and regulation of solid waste management programs; (3) the administration and regulation of water and air pollution control and prevention programs; (4) the administration and regulation of flood control programs; (5) the administration and regulation of drainage development and water resource consumption programs; (6) the administration and regulation of toxic waste removal and cleanup programs; and (7) coordination of these activities at intergovernmental levels.<br><br>Illustrative Examples:<br><br>Environmental protection program administration, public administration<br>Waste management program (except sanitation districts) administration, public administration<br>Pollution control program administration, public administration<br>Water control and quality program administration, public administ"
            },
            {
                "code": "92412",
                "title": "Administration of Conservation Programs",
                "description": "See industry description for 924120.<br>"
            },
            {
                "code": "924120",
                "title": "Administration of Conservation Programs",
                "description": "This industry comprises government establishments primarily engaged in the administration, regulation, supervision, and control of land use, including recreational areas; conservation and preservation of natural resources; erosion control; geological survey program administration; weather forecasting program administration; and the administration and protection of publicly and privately owned forest lands.  Government establishments responsible for planning, management, regulation, and conservation of game, fish, and wildlife populations, including wildlife management areas and field stations; and other administrative matters relating to the protection of fish, game, and wildlife are included in this industry.<br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "925",
                "title": "Administration of Housing Programs, Urban Planning, and Community Development",
                "description": "The Administration of Housing Programs, Urban Planning, and Community Development subsector groups government establishments primarily engaged in the administration of housing, urban planning, and community development.<br>"
            },
            {
                "code": "9251",
                "title": "Administration of Housing Programs, Urban Planning, and Community Development",
                "description": null
            },
            {
                "code": "92511",
                "title": "Administration of Housing Programs",
                "description": "See industry description for 925110.<br>"
            },
            {
                "code": "925110",
                "title": "Administration of Housing Programs",
                "description": "This industry comprises government establishments primarily engaged in the administration and planning of housing programs.<br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "92512",
                "title": "Administration of Urban Planning and Community and Rural Development",
                "description": "See industry description for 925120.<br>"
            },
            {
                "code": "925120",
                "title": "Administration of Urban Planning and Community and Rural Development",
                "description": "This industry comprises government establishments primarily engaged in the administration and planning of the development of urban and rural areas.  Included in this industry are government zoning boards and commissions.<br><br>Illustrative Examples:<br><br>Land redevelopment agencies, government<br>Regional planning and development program administration, public administration<br>Urban planning commissions, government<br>Zoning boards and commissions, public administration <br>"
            },
            {
                "code": "926",
                "title": "Administration of Economic Programs",
                "description": "The Administration of Economic Programs subsector groups government establishments primarily engaged in the administration of economic programs.<br>"
            },
            {
                "code": "9261",
                "title": "Administration of Economic Programs",
                "description": null
            },
            {
                "code": "92611",
                "title": "Administration of General Economic Programs",
                "description": "See industry description for 926110.<br>"
            },
            {
                "code": "926110",
                "title": "Administration of General Economic Programs",
                "description": "This industry comprises government establishments primarily engaged in the administration, promotion, and development of economic resources, including business, industry, and tourism.  Included in this industry are government establishments responsible for the development of general statistical data and analyses and promotion of the general economic well-being of the governed area.<br><br>Illustrative Examples:<br><br>Consumer protection offices, public administration<br>Small business development agencies, public administration<br>Economic development agencies, government<br>Trade commissions, government<br>General economics statistical agencies, public administration<br><br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "92612",
                "title": "Regulation and Administration of Transportation Programs",
                "description": "See industry description for 926120.<br>"
            },
            {
                "code": "926120",
                "title": "Regulation and Administration of Transportation Programs",
                "description": "This industry comprises government establishments primarily engaged in the administration, regulation, licensing, planning, inspection, and investigation of transportation services and facilities.  Included in this industry are government establishments responsible for motor vehicle and operator licensing, the Coast Guard (except the Coast Guard Academy), and parking authorities.<br><br>Cross-References."
            },
            {
                "code": "92613",
                "title": "Regulation and Administration of Communications, Electric, Gas, and Other Utilities",
                "description": "See industry description for 926130.<br>"
            },
            {
                "code": "926130",
                "title": "Regulation and Administration of Communications, Electric, Gas, and Other Utilities",
                "description": "This industry comprises government establishments primarily engaged in the administration, regulation, licensing, and inspection of utilities, such as communications, electric power (including fossil, nuclear, solar, water, and wind), gas and water supply, and sewerage.<br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "92614",
                "title": "Regulation of Agricultural Marketing and Commodities",
                "description": "See industry description for 926140.<br>"
            },
            {
                "code": "926140",
                "title": "Regulation of Agricultural Marketing and Commodities",
                "description": "This industry comprises government establishments primarily engaged in the planning, administration, and coordination of agricultural programs for production, marketing, and utilization, including educational and promotional activities.  Included in this industry are government establishments responsible for regulating and controlling the grading and inspection of food, plants, animals, and other agricultural products.<br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "92615",
                "title": "Regulation, Licensing, and Inspection of Miscellaneous Commercial Sectors",
                "description": "See industry description for 926150.<br>"
            },
            {
                "code": "926150",
                "title": "Regulation, Licensing, and Inspection of Miscellaneous Commercial Sectors",
                "description": "This industry comprises government establishments primarily engaged in the regulation, licensing, and inspection of commercial sectors, such as retail trade, professional occupations, manufacturing, mining, construction, and services.  Included in this industry are government establishments maintaining physical standards, regulating hazardous conditions not elsewhere classified, and enforcing alcoholic beverage control regulations.<br><br>Illustrative Examples:<br><br>Alcoholic beverage control boards, public administration<br>Labor management negotiations boards, government<br>Banking regulatory agencies, public administration<br>Licensing and permit issuance for business operations, government<br>Building inspections, government<br>Licensing and permit issuance for professional occupations, government<br>Insurance commissions, government<br>Securities regulation commissions, public administration<br><br><br>Cross-References."
            },
            {
                "code": "927",
                "title": "Space Research and Technology",
                "description": "The Space Research and Technology subsector comprises government establishments primarily engaged in the administration and operations of space flights, space research, and space exploration.<br>"
            },
            {
                "code": "9271",
                "title": "Space Research and Technology",
                "description": null
            },
            {
                "code": "92711",
                "title": "Space Research and Technology",
                "description": "See industry description for 927110.<br>"
            },
            {
                "code": "927110",
                "title": "Space Research and Technology",
                "description": "This industry comprises government establishments primarily engaged in the administration and operations of space flights, space research, and space exploration.  Included in this industry are government establishments operating space flight centers.<br><br>Cross-References."
            },
            {
                "code": "928",
                "title": "National Security and International Affairs",
                "description": "The National Security and International Affairs subsector groups government establishments primarily engaged in national security and international affairs.<br>"
            },
            {
                "code": "9281",
                "title": "National Security and International Affairs",
                "description": null
            },
            {
                "code": "92811",
                "title": "National Security",
                "description": "See industry description for 928110.<br>"
            },
            {
                "code": "928110",
                "title": "National Security",
                "description": "This industry comprises government establishments of the Armed Forces, including the National Guard, primarily engaged in national security and related activities.<br><br>Illustrative Examples:<br><br>Air Force<br>Military police<br>Army<br>Military training schools (except military service academies)<br>Marine Corps<br>National Guard<br>Military courts<br>Navy<br><br><br>Cross-References. Government establishments primarily engaged in--"
            },
            {
                "code": "92812",
                "title": "International Affairs",
                "description": "See industry description for 928120.<br>"
            },
            {
                "code": "928120",
                "title": "International Affairs",
                "description": "This industry comprises establishments of U.S. and foreign governments primarily engaged in international affairs and programs relating to other nations and peoples.<br><br>Cross-References."
            }
        ],
        "subsectors_count": 75
    }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment