valuesets 0.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,448 @@
|
|
|
1
|
+
name: industry_classifications
|
|
2
|
+
title: Business Industry Classifications and Economic Sectors
|
|
3
|
+
description: 'Industry classification systems including NAICS codes, economic sectors,
|
|
4
|
+
and business activity categories. Based on official government classification systems
|
|
5
|
+
and international standards for economic analysis and business categorization.'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/business/industry_classifications
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
NAICS: https://www.census.gov/naics/
|
|
12
|
+
SIC: https://www.osha.gov/data/sic-manual/
|
|
13
|
+
ISIC: https://unstats.un.org/unsd/classifications/Econ/ISIC
|
|
14
|
+
BLS: https://www.bls.gov/
|
|
15
|
+
default_prefix: valuesets
|
|
16
|
+
slots:
|
|
17
|
+
naics_sector:
|
|
18
|
+
description: NAICS two-digit sector classification
|
|
19
|
+
range: NAICSSectorEnum
|
|
20
|
+
economic_sector:
|
|
21
|
+
description: Broad economic sector classification
|
|
22
|
+
range: EconomicSectorEnum
|
|
23
|
+
business_activity_type:
|
|
24
|
+
description: Type of primary business activity
|
|
25
|
+
range: BusinessActivityTypeEnum
|
|
26
|
+
industry_maturity:
|
|
27
|
+
description: Industry lifecycle and maturity stage
|
|
28
|
+
range: IndustryMaturityEnum
|
|
29
|
+
market_structure:
|
|
30
|
+
description: Competitive structure of industry market
|
|
31
|
+
range: MarketStructureEnum
|
|
32
|
+
industry_regulation_level:
|
|
33
|
+
description: Level of government regulation in industry
|
|
34
|
+
range: IndustryRegulationLevelEnum
|
|
35
|
+
enums:
|
|
36
|
+
NAICSSectorEnum:
|
|
37
|
+
description: NAICS two-digit sector codes (North American Industry Classification System)
|
|
38
|
+
permissible_values:
|
|
39
|
+
SECTOR_11:
|
|
40
|
+
title: Agriculture, Forestry, Fishing and Hunting
|
|
41
|
+
description: Establishments engaged in agriculture, forestry, fishing, and hunting
|
|
42
|
+
annotations:
|
|
43
|
+
naics_code: "11"
|
|
44
|
+
activities: "crop production, animal production, forestry, fishing"
|
|
45
|
+
economic_base: "natural resource extraction and production"
|
|
46
|
+
SECTOR_21:
|
|
47
|
+
title: Mining, Quarrying, and Oil and Gas Extraction
|
|
48
|
+
description: Establishments engaged in extracting natural resources
|
|
49
|
+
annotations:
|
|
50
|
+
naics_code: "21"
|
|
51
|
+
activities: "oil and gas extraction, mining, support activities"
|
|
52
|
+
economic_base: "natural resource extraction"
|
|
53
|
+
SECTOR_22:
|
|
54
|
+
title: Utilities
|
|
55
|
+
description: Establishments engaged in providing utilities
|
|
56
|
+
annotations:
|
|
57
|
+
naics_code: "22"
|
|
58
|
+
activities: "electric power, natural gas, water, sewage, waste management"
|
|
59
|
+
regulation: "heavily regulated"
|
|
60
|
+
SECTOR_23:
|
|
61
|
+
title: Construction
|
|
62
|
+
description: Establishments engaged in construction activities
|
|
63
|
+
annotations:
|
|
64
|
+
naics_code: "23"
|
|
65
|
+
activities: "building construction, heavy construction, specialty trade contractors"
|
|
66
|
+
cyclical: "highly cyclical industry"
|
|
67
|
+
SECTOR_31_33:
|
|
68
|
+
title: Manufacturing
|
|
69
|
+
description: Establishments engaged in manufacturing goods
|
|
70
|
+
annotations:
|
|
71
|
+
naics_code: "31-33"
|
|
72
|
+
activities: "food, chemicals, machinery, transportation equipment"
|
|
73
|
+
value_added: "transforms materials into finished goods"
|
|
74
|
+
SECTOR_42:
|
|
75
|
+
title: Wholesale Trade
|
|
76
|
+
description: Establishments engaged in wholesale distribution
|
|
77
|
+
annotations:
|
|
78
|
+
naics_code: "42"
|
|
79
|
+
activities: "merchant wholesalers, agents and brokers"
|
|
80
|
+
function: "intermediary between manufacturers and retailers"
|
|
81
|
+
SECTOR_44_45:
|
|
82
|
+
title: Retail Trade
|
|
83
|
+
description: Establishments engaged in retail sales to consumers
|
|
84
|
+
annotations:
|
|
85
|
+
naics_code: "44-45"
|
|
86
|
+
activities: "motor vehicle dealers, food stores, general merchandise"
|
|
87
|
+
customer: "sells to final consumers"
|
|
88
|
+
SECTOR_48_49:
|
|
89
|
+
title: Transportation and Warehousing
|
|
90
|
+
description: Establishments providing transportation and warehousing services
|
|
91
|
+
annotations:
|
|
92
|
+
naics_code: "48-49"
|
|
93
|
+
activities: "air, rail, water, truck transportation, warehousing"
|
|
94
|
+
infrastructure: "transportation infrastructure dependent"
|
|
95
|
+
SECTOR_51:
|
|
96
|
+
title: Information
|
|
97
|
+
description: Establishments in information industries
|
|
98
|
+
annotations:
|
|
99
|
+
naics_code: "51"
|
|
100
|
+
activities: "publishing, broadcasting, telecommunications, data processing"
|
|
101
|
+
technology: "information technology and content"
|
|
102
|
+
SECTOR_52:
|
|
103
|
+
title: Finance and Insurance
|
|
104
|
+
description: Establishments providing financial services
|
|
105
|
+
annotations:
|
|
106
|
+
naics_code: "52"
|
|
107
|
+
activities: "banking, securities, insurance, funds and trusts"
|
|
108
|
+
regulation: "highly regulated financial sector"
|
|
109
|
+
SECTOR_53:
|
|
110
|
+
title: Real Estate and Rental and Leasing
|
|
111
|
+
description: Establishments engaged in real estate and rental activities
|
|
112
|
+
annotations:
|
|
113
|
+
naics_code: "53"
|
|
114
|
+
activities: "real estate, rental and leasing services"
|
|
115
|
+
asset_type: "real and personal property"
|
|
116
|
+
SECTOR_54:
|
|
117
|
+
title: Professional, Scientific, and Technical Services
|
|
118
|
+
description: Establishments providing professional services
|
|
119
|
+
annotations:
|
|
120
|
+
naics_code: "54"
|
|
121
|
+
activities: "legal, accounting, engineering, consulting, research"
|
|
122
|
+
knowledge_based: "knowledge and skill intensive"
|
|
123
|
+
SECTOR_55:
|
|
124
|
+
title: Management of Companies and Enterprises
|
|
125
|
+
description: Establishments serving as holding companies or managing enterprises
|
|
126
|
+
annotations:
|
|
127
|
+
naics_code: "55"
|
|
128
|
+
activities: "holding companies, corporate management"
|
|
129
|
+
function: "corporate ownership and management"
|
|
130
|
+
SECTOR_56:
|
|
131
|
+
title: Administrative and Support and Waste Management
|
|
132
|
+
description: Establishments providing administrative and support services
|
|
133
|
+
annotations:
|
|
134
|
+
naics_code: "56"
|
|
135
|
+
activities: "administrative services, waste management, remediation"
|
|
136
|
+
support_function: "business support services"
|
|
137
|
+
SECTOR_61:
|
|
138
|
+
title: Educational Services
|
|
139
|
+
description: Establishments providing educational instruction
|
|
140
|
+
annotations:
|
|
141
|
+
naics_code: "61"
|
|
142
|
+
activities: "schools, colleges, training programs"
|
|
143
|
+
public_private: "public and private education"
|
|
144
|
+
SECTOR_62:
|
|
145
|
+
title: Health Care and Social Assistance
|
|
146
|
+
description: Establishments providing health care and social assistance
|
|
147
|
+
annotations:
|
|
148
|
+
naics_code: "62"
|
|
149
|
+
activities: "hospitals, medical practices, social assistance"
|
|
150
|
+
essential_services: "essential public services"
|
|
151
|
+
SECTOR_71:
|
|
152
|
+
title: Arts, Entertainment, and Recreation
|
|
153
|
+
description: Establishments in arts, entertainment, and recreation
|
|
154
|
+
annotations:
|
|
155
|
+
naics_code: "71"
|
|
156
|
+
activities: "performing arts, spectator sports, museums, recreation"
|
|
157
|
+
discretionary: "discretionary consumer spending"
|
|
158
|
+
SECTOR_72:
|
|
159
|
+
title: Accommodation and Food Services
|
|
160
|
+
description: Establishments providing accommodation and food services
|
|
161
|
+
annotations:
|
|
162
|
+
naics_code: "72"
|
|
163
|
+
activities: "hotels, restaurants, food services"
|
|
164
|
+
consumer_services: "consumer hospitality services"
|
|
165
|
+
SECTOR_81:
|
|
166
|
+
title: Other Services (except Public Administration)
|
|
167
|
+
description: Establishments providing other services
|
|
168
|
+
annotations:
|
|
169
|
+
naics_code: "81"
|
|
170
|
+
activities: "repair, personal care, religious organizations"
|
|
171
|
+
diverse: "diverse service activities"
|
|
172
|
+
SECTOR_92:
|
|
173
|
+
title: Public Administration
|
|
174
|
+
description: Government establishments
|
|
175
|
+
annotations:
|
|
176
|
+
naics_code: "92"
|
|
177
|
+
activities: "executive, legislative, judicial, public safety"
|
|
178
|
+
sector: "government sector"
|
|
179
|
+
EconomicSectorEnum:
|
|
180
|
+
description: Broad economic sector classifications
|
|
181
|
+
permissible_values:
|
|
182
|
+
PRIMARY_SECTOR:
|
|
183
|
+
title: Primary Sector
|
|
184
|
+
description: Economic activities extracting natural resources
|
|
185
|
+
annotations:
|
|
186
|
+
activities: "agriculture, mining, forestry, fishing"
|
|
187
|
+
output: "raw materials and natural resources"
|
|
188
|
+
employment: "typically lower employment share in developed economies"
|
|
189
|
+
development_stage: "dominant in early economic development"
|
|
190
|
+
SECONDARY_SECTOR:
|
|
191
|
+
title: Secondary Sector
|
|
192
|
+
description: Economic activities manufacturing and processing goods
|
|
193
|
+
annotations:
|
|
194
|
+
activities: "manufacturing, construction, utilities"
|
|
195
|
+
output: "processed and manufactured goods"
|
|
196
|
+
value_added: "transforms raw materials into finished products"
|
|
197
|
+
employment: "historically significant in industrial economies"
|
|
198
|
+
TERTIARY_SECTOR:
|
|
199
|
+
title: Tertiary Sector
|
|
200
|
+
description: Economic activities providing services
|
|
201
|
+
annotations:
|
|
202
|
+
activities: "retail, hospitality, transportation, finance, healthcare"
|
|
203
|
+
output: "services to consumers and businesses"
|
|
204
|
+
growth: "largest and fastest growing sector in developed economies"
|
|
205
|
+
employment: "dominant employment sector"
|
|
206
|
+
QUATERNARY_SECTOR:
|
|
207
|
+
title: Quaternary Sector
|
|
208
|
+
description: Knowledge-based economic activities
|
|
209
|
+
annotations:
|
|
210
|
+
activities: "research, education, information technology, consulting"
|
|
211
|
+
output: "knowledge, information, and intellectual services"
|
|
212
|
+
characteristics: "high skill and education requirements"
|
|
213
|
+
growth: "rapidly growing in knowledge economies"
|
|
214
|
+
QUINARY_SECTOR:
|
|
215
|
+
title: Quinary Sector
|
|
216
|
+
description: High-level decision-making and policy services
|
|
217
|
+
annotations:
|
|
218
|
+
activities: "top-level government, healthcare, education, culture"
|
|
219
|
+
output: "highest level services and decision-making"
|
|
220
|
+
characteristics: "elite services and leadership roles"
|
|
221
|
+
scope: "limited to highest level activities"
|
|
222
|
+
BusinessActivityTypeEnum:
|
|
223
|
+
description: Types of primary business activities
|
|
224
|
+
permissible_values:
|
|
225
|
+
PRODUCTION:
|
|
226
|
+
title: Production/Manufacturing
|
|
227
|
+
description: Creating or manufacturing physical goods
|
|
228
|
+
annotations:
|
|
229
|
+
output: "physical products and goods"
|
|
230
|
+
process: "transformation of materials"
|
|
231
|
+
assets: "physical assets and equipment intensive"
|
|
232
|
+
examples: "factories, farms, mines"
|
|
233
|
+
DISTRIBUTION:
|
|
234
|
+
title: Distribution/Trade
|
|
235
|
+
description: Moving goods from producers to consumers
|
|
236
|
+
annotations:
|
|
237
|
+
function: "intermediary between producers and consumers"
|
|
238
|
+
value_added: "place and time utility"
|
|
239
|
+
examples: "wholesalers, retailers, logistics companies"
|
|
240
|
+
efficiency: "improves market efficiency"
|
|
241
|
+
SERVICES:
|
|
242
|
+
title: Service Provision
|
|
243
|
+
description: Providing intangible services to customers
|
|
244
|
+
annotations:
|
|
245
|
+
output: "intangible services"
|
|
246
|
+
characteristics: "labor intensive, customized"
|
|
247
|
+
examples: "consulting, healthcare, hospitality"
|
|
248
|
+
customer_interaction: "high customer interaction"
|
|
249
|
+
TECHNOLOGY:
|
|
250
|
+
title: Technology/Innovation
|
|
251
|
+
description: Developing and applying technology solutions
|
|
252
|
+
annotations:
|
|
253
|
+
focus: "technology development and application"
|
|
254
|
+
innovation: "research and development intensive"
|
|
255
|
+
examples: "software companies, biotech, engineering"
|
|
256
|
+
intellectual_property: "high intellectual property content"
|
|
257
|
+
FINANCE:
|
|
258
|
+
title: Financial Services
|
|
259
|
+
description: Providing financial and investment services
|
|
260
|
+
annotations:
|
|
261
|
+
function: "financial intermediation and services"
|
|
262
|
+
regulation: "highly regulated"
|
|
263
|
+
examples: "banks, insurance, investment firms"
|
|
264
|
+
capital: "capital intensive"
|
|
265
|
+
INFORMATION:
|
|
266
|
+
title: Information/Media
|
|
267
|
+
description: Creating, processing, and distributing information
|
|
268
|
+
annotations:
|
|
269
|
+
output: "information and content"
|
|
270
|
+
channels: "various distribution channels"
|
|
271
|
+
examples: "media companies, publishers, data processors"
|
|
272
|
+
technology_dependent: "technology platform dependent"
|
|
273
|
+
EDUCATION:
|
|
274
|
+
title: Education/Training
|
|
275
|
+
description: Providing educational and training services
|
|
276
|
+
annotations:
|
|
277
|
+
function: "knowledge and skill development"
|
|
278
|
+
public_private: "public and private providers"
|
|
279
|
+
examples: "schools, universities, training companies"
|
|
280
|
+
social_impact: "high social impact"
|
|
281
|
+
HEALTHCARE:
|
|
282
|
+
title: Healthcare/Medical
|
|
283
|
+
description: Providing health and medical services
|
|
284
|
+
annotations:
|
|
285
|
+
function: "health and medical care"
|
|
286
|
+
regulation: "highly regulated"
|
|
287
|
+
examples: "hospitals, clinics, pharmaceutical companies"
|
|
288
|
+
essential: "essential service"
|
|
289
|
+
ENTERTAINMENT:
|
|
290
|
+
title: Entertainment/Recreation
|
|
291
|
+
description: Providing entertainment and recreational services
|
|
292
|
+
annotations:
|
|
293
|
+
output: "entertainment and leisure experiences"
|
|
294
|
+
discretionary: "discretionary consumer spending"
|
|
295
|
+
examples: "media, sports, tourism, gaming"
|
|
296
|
+
experience_based: "experience and emotion based"
|
|
297
|
+
PROFESSIONAL_SERVICES:
|
|
298
|
+
title: Professional Services
|
|
299
|
+
description: Providing specialized professional expertise
|
|
300
|
+
annotations:
|
|
301
|
+
characteristics: "high skill and knowledge requirements"
|
|
302
|
+
customization: "highly customized services"
|
|
303
|
+
examples: "law firms, consulting, accounting"
|
|
304
|
+
expertise: "specialized professional expertise"
|
|
305
|
+
IndustryMaturityEnum:
|
|
306
|
+
description: Industry lifecycle and maturity stages
|
|
307
|
+
permissible_values:
|
|
308
|
+
EMERGING:
|
|
309
|
+
title: Emerging Industry
|
|
310
|
+
description: New industry in early development stage
|
|
311
|
+
annotations:
|
|
312
|
+
characteristics: "high uncertainty, rapid change"
|
|
313
|
+
growth: "high growth potential"
|
|
314
|
+
technology: "new or evolving technology"
|
|
315
|
+
competition: "few competitors, unclear standards"
|
|
316
|
+
investment: "high investment requirements"
|
|
317
|
+
GROWTH:
|
|
318
|
+
title: Growth Industry
|
|
319
|
+
description: Industry experiencing rapid expansion
|
|
320
|
+
annotations:
|
|
321
|
+
characteristics: "rapid market expansion"
|
|
322
|
+
competition: "increasing competition"
|
|
323
|
+
standardization: "emerging standards"
|
|
324
|
+
investment: "significant investment opportunities"
|
|
325
|
+
profitability: "improving profitability"
|
|
326
|
+
MATURE:
|
|
327
|
+
title: Mature Industry
|
|
328
|
+
description: Established industry with stable growth
|
|
329
|
+
annotations:
|
|
330
|
+
characteristics: "stable market conditions"
|
|
331
|
+
growth: "slower, steady growth"
|
|
332
|
+
competition: "established competitive structure"
|
|
333
|
+
efficiency: "focus on operational efficiency"
|
|
334
|
+
consolidation: "potential for consolidation"
|
|
335
|
+
DECLINING:
|
|
336
|
+
title: Declining Industry
|
|
337
|
+
description: Industry experiencing contraction
|
|
338
|
+
annotations:
|
|
339
|
+
characteristics: "decreasing demand"
|
|
340
|
+
competition: "intensifying competition for shrinking market"
|
|
341
|
+
cost_focus: "focus on cost reduction"
|
|
342
|
+
consolidation: "significant consolidation"
|
|
343
|
+
exit: "companies exiting industry"
|
|
344
|
+
TRANSFORMING:
|
|
345
|
+
title: Transforming Industry
|
|
346
|
+
description: Industry undergoing fundamental change
|
|
347
|
+
annotations:
|
|
348
|
+
characteristics: "disruptive change and innovation"
|
|
349
|
+
technology: "technology-driven transformation"
|
|
350
|
+
business_models: "evolving business models"
|
|
351
|
+
uncertainty: "high uncertainty about future structure"
|
|
352
|
+
opportunity: "opportunities for innovation and disruption"
|
|
353
|
+
MarketStructureEnum:
|
|
354
|
+
description: Competitive structure of industry markets
|
|
355
|
+
permissible_values:
|
|
356
|
+
PERFECT_COMPETITION:
|
|
357
|
+
title: Perfect Competition
|
|
358
|
+
description: Many small firms with identical products
|
|
359
|
+
annotations:
|
|
360
|
+
competitors: "many small competitors"
|
|
361
|
+
products: "homogeneous products"
|
|
362
|
+
barriers: "no barriers to entry"
|
|
363
|
+
pricing: "price takers"
|
|
364
|
+
examples: "agricultural commodities"
|
|
365
|
+
MONOPOLISTIC_COMPETITION:
|
|
366
|
+
title: Monopolistic Competition
|
|
367
|
+
description: Many firms with differentiated products
|
|
368
|
+
annotations:
|
|
369
|
+
competitors: "many competitors"
|
|
370
|
+
products: "differentiated products"
|
|
371
|
+
barriers: "low barriers to entry"
|
|
372
|
+
pricing: "some pricing power"
|
|
373
|
+
examples: "restaurants, retail clothing"
|
|
374
|
+
OLIGOPOLY:
|
|
375
|
+
title: Oligopoly
|
|
376
|
+
description: Few large firms dominating the market
|
|
377
|
+
annotations:
|
|
378
|
+
competitors: "few large competitors"
|
|
379
|
+
concentration: "high market concentration"
|
|
380
|
+
barriers: "significant barriers to entry"
|
|
381
|
+
interdependence: "strategic interdependence"
|
|
382
|
+
examples: "automobiles, telecommunications"
|
|
383
|
+
MONOPOLY:
|
|
384
|
+
title: Monopoly
|
|
385
|
+
description: Single firm controlling the market
|
|
386
|
+
annotations:
|
|
387
|
+
competitors: "single market leader"
|
|
388
|
+
barriers: "very high barriers to entry"
|
|
389
|
+
pricing: "price maker"
|
|
390
|
+
regulation: "often regulated"
|
|
391
|
+
examples: "utilities, patented products"
|
|
392
|
+
DUOPOLY:
|
|
393
|
+
title: Duopoly
|
|
394
|
+
description: Two firms dominating the market
|
|
395
|
+
annotations:
|
|
396
|
+
competitors: "two dominant competitors"
|
|
397
|
+
competition: "head-to-head competition"
|
|
398
|
+
barriers: "high barriers to entry"
|
|
399
|
+
strategy: "strategic competition"
|
|
400
|
+
examples: "aircraft manufacturing, some software markets"
|
|
401
|
+
IndustryRegulationLevelEnum:
|
|
402
|
+
description: Level of government regulation in different industries
|
|
403
|
+
permissible_values:
|
|
404
|
+
HIGHLY_REGULATED:
|
|
405
|
+
title: Highly Regulated
|
|
406
|
+
description: Industries subject to extensive government oversight
|
|
407
|
+
annotations:
|
|
408
|
+
oversight: "extensive government oversight"
|
|
409
|
+
compliance: "complex compliance requirements"
|
|
410
|
+
barriers: "regulatory barriers to entry"
|
|
411
|
+
examples: "banking, healthcare, utilities, pharmaceuticals"
|
|
412
|
+
reason: "public safety, market power, or systemic risk"
|
|
413
|
+
MODERATELY_REGULATED:
|
|
414
|
+
title: Moderately Regulated
|
|
415
|
+
description: Industries with significant but focused regulation
|
|
416
|
+
annotations:
|
|
417
|
+
oversight: "focused regulatory oversight"
|
|
418
|
+
compliance: "specific compliance requirements"
|
|
419
|
+
areas: "targeted regulatory areas"
|
|
420
|
+
examples: "food service, transportation, insurance"
|
|
421
|
+
balance: "balance between oversight and flexibility"
|
|
422
|
+
LIGHTLY_REGULATED:
|
|
423
|
+
title: Lightly Regulated
|
|
424
|
+
description: Industries with minimal regulatory oversight
|
|
425
|
+
annotations:
|
|
426
|
+
oversight: "minimal regulatory oversight"
|
|
427
|
+
compliance: "basic compliance requirements"
|
|
428
|
+
flexibility: "high operational flexibility"
|
|
429
|
+
examples: "technology, consulting, retail"
|
|
430
|
+
approach: "market-based approach"
|
|
431
|
+
SELF_REGULATED:
|
|
432
|
+
title: Self-Regulated
|
|
433
|
+
description: Industries primarily regulated by industry organizations
|
|
434
|
+
annotations:
|
|
435
|
+
oversight: "industry self-regulation"
|
|
436
|
+
standards: "industry-developed standards"
|
|
437
|
+
compliance: "voluntary compliance"
|
|
438
|
+
examples: "professional services, trade associations"
|
|
439
|
+
effectiveness: "varies by industry"
|
|
440
|
+
DEREGULATED:
|
|
441
|
+
title: Deregulated
|
|
442
|
+
description: Industries formerly regulated but now market-based
|
|
443
|
+
annotations:
|
|
444
|
+
history: "formerly regulated industries"
|
|
445
|
+
competition: "market-based competition"
|
|
446
|
+
transition: "transition from regulation to competition"
|
|
447
|
+
examples: "airlines, telecommunications, energy"
|
|
448
|
+
benefits: "increased competition and efficiency"
|