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.

Files changed (248) hide show
  1. valuesets/__init__.py +7 -0
  2. valuesets/_version.py +8 -0
  3. valuesets/datamodel/valuesets.py +13796 -0
  4. valuesets/datamodel/valuesets_dataclass.py +24503 -0
  5. valuesets/datamodel/valuesets_pydantic.py +13796 -0
  6. valuesets/enums/__init__.py +590 -0
  7. valuesets/enums/academic/__init__.py +1 -0
  8. valuesets/enums/academic/research.py +559 -0
  9. valuesets/enums/analytical_chemistry/__init__.py +1 -0
  10. valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
  11. valuesets/enums/bio/__init__.py +1 -0
  12. valuesets/enums/bio/biological_colors.py +238 -0
  13. valuesets/enums/bio/cell_cycle.py +180 -0
  14. valuesets/enums/bio/currency_chemicals.py +52 -0
  15. valuesets/enums/bio/developmental_stages.py +103 -0
  16. valuesets/enums/bio/genome_features.py +182 -0
  17. valuesets/enums/bio/genomics.py +91 -0
  18. valuesets/enums/bio/go_aspect.py +32 -0
  19. valuesets/enums/bio/go_causality.py +58 -0
  20. valuesets/enums/bio/go_evidence.py +129 -0
  21. valuesets/enums/bio/human_developmental_stages.py +62 -0
  22. valuesets/enums/bio/insdc_geographic_locations.py +591 -0
  23. valuesets/enums/bio/insdc_missing_values.py +49 -0
  24. valuesets/enums/bio/lipid_categories.py +67 -0
  25. valuesets/enums/bio/mouse_developmental_stages.py +62 -0
  26. valuesets/enums/bio/plant_biology.py +86 -0
  27. valuesets/enums/bio/plant_developmental_stages.py +54 -0
  28. valuesets/enums/bio/plant_sex.py +81 -0
  29. valuesets/enums/bio/protein_evidence.py +61 -0
  30. valuesets/enums/bio/proteomics_standards.py +123 -0
  31. valuesets/enums/bio/psi_mi.py +306 -0
  32. valuesets/enums/bio/relationship_to_oxygen.py +37 -0
  33. valuesets/enums/bio/sequence_alphabets.py +449 -0
  34. valuesets/enums/bio/sequence_chemistry.py +357 -0
  35. valuesets/enums/bio/sequencing_platforms.py +302 -0
  36. valuesets/enums/bio/structural_biology.py +320 -0
  37. valuesets/enums/bio/taxonomy.py +238 -0
  38. valuesets/enums/bio/trophic_levels.py +85 -0
  39. valuesets/enums/bio/uniprot_species.py +344 -0
  40. valuesets/enums/bio/viral_genome_types.py +47 -0
  41. valuesets/enums/bioprocessing/__init__.py +1 -0
  42. valuesets/enums/bioprocessing/scale_up.py +249 -0
  43. valuesets/enums/business/__init__.py +1 -0
  44. valuesets/enums/business/human_resources.py +275 -0
  45. valuesets/enums/business/industry_classifications.py +181 -0
  46. valuesets/enums/business/management_operations.py +228 -0
  47. valuesets/enums/business/organizational_structures.py +236 -0
  48. valuesets/enums/business/quality_management.py +181 -0
  49. valuesets/enums/business/supply_chain.py +232 -0
  50. valuesets/enums/chemistry/__init__.py +1 -0
  51. valuesets/enums/chemistry/chemical_entities.py +315 -0
  52. valuesets/enums/chemistry/reaction_directionality.py +65 -0
  53. valuesets/enums/chemistry/reactions.py +256 -0
  54. valuesets/enums/clinical/__init__.py +1 -0
  55. valuesets/enums/clinical/nih_demographics.py +177 -0
  56. valuesets/enums/clinical/phenopackets.py +254 -0
  57. valuesets/enums/common_value_sets.py +8791 -0
  58. valuesets/enums/computing/__init__.py +1 -0
  59. valuesets/enums/computing/file_formats.py +294 -0
  60. valuesets/enums/computing/maturity_levels.py +196 -0
  61. valuesets/enums/computing/mime_types.py +227 -0
  62. valuesets/enums/confidence_levels.py +168 -0
  63. valuesets/enums/contributor.py +30 -0
  64. valuesets/enums/core.py +42 -0
  65. valuesets/enums/data/__init__.py +1 -0
  66. valuesets/enums/data/data_absent_reason.py +53 -0
  67. valuesets/enums/data_science/__init__.py +1 -0
  68. valuesets/enums/data_science/binary_classification.py +87 -0
  69. valuesets/enums/data_science/emotion_classification.py +66 -0
  70. valuesets/enums/data_science/priority_severity.py +73 -0
  71. valuesets/enums/data_science/quality_control.py +46 -0
  72. valuesets/enums/data_science/sentiment_analysis.py +50 -0
  73. valuesets/enums/data_science/text_classification.py +97 -0
  74. valuesets/enums/demographics.py +206 -0
  75. valuesets/enums/ecological_interactions.py +151 -0
  76. valuesets/enums/energy/__init__.py +1 -0
  77. valuesets/enums/energy/energy.py +343 -0
  78. valuesets/enums/energy/fossil_fuels.py +29 -0
  79. valuesets/enums/energy/nuclear/__init__.py +1 -0
  80. valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
  81. valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
  82. valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
  83. valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
  84. valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
  85. valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
  86. valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
  87. valuesets/enums/energy/nuclear/reactor_types.py +163 -0
  88. valuesets/enums/environmental_health/__init__.py +1 -0
  89. valuesets/enums/environmental_health/exposures.py +265 -0
  90. valuesets/enums/geography/__init__.py +1 -0
  91. valuesets/enums/geography/geographic_codes.py +741 -0
  92. valuesets/enums/health/__init__.py +12 -0
  93. valuesets/enums/health/vaccination.py +98 -0
  94. valuesets/enums/health.py +36 -0
  95. valuesets/enums/health_base.py +36 -0
  96. valuesets/enums/healthcare.py +45 -0
  97. valuesets/enums/industry/__init__.py +1 -0
  98. valuesets/enums/industry/extractive_industry.py +94 -0
  99. valuesets/enums/industry/mining.py +388 -0
  100. valuesets/enums/industry/safety_colors.py +201 -0
  101. valuesets/enums/investigation.py +27 -0
  102. valuesets/enums/materials_science/__init__.py +1 -0
  103. valuesets/enums/materials_science/characterization_methods.py +112 -0
  104. valuesets/enums/materials_science/crystal_structures.py +76 -0
  105. valuesets/enums/materials_science/material_properties.py +119 -0
  106. valuesets/enums/materials_science/material_types.py +104 -0
  107. valuesets/enums/materials_science/pigments_dyes.py +198 -0
  108. valuesets/enums/materials_science/synthesis_methods.py +109 -0
  109. valuesets/enums/medical/__init__.py +1 -0
  110. valuesets/enums/medical/clinical.py +277 -0
  111. valuesets/enums/medical/neuroimaging.py +119 -0
  112. valuesets/enums/mining_processing.py +302 -0
  113. valuesets/enums/physics/__init__.py +1 -0
  114. valuesets/enums/physics/states_of_matter.py +46 -0
  115. valuesets/enums/social/__init__.py +1 -0
  116. valuesets/enums/social/person_status.py +29 -0
  117. valuesets/enums/spatial/__init__.py +1 -0
  118. valuesets/enums/spatial/spatial_qualifiers.py +246 -0
  119. valuesets/enums/statistics/__init__.py +5 -0
  120. valuesets/enums/statistics/prediction_outcomes.py +31 -0
  121. valuesets/enums/statistics.py +31 -0
  122. valuesets/enums/time/__init__.py +1 -0
  123. valuesets/enums/time/temporal.py +254 -0
  124. valuesets/enums/units/__init__.py +1 -0
  125. valuesets/enums/units/measurements.py +310 -0
  126. valuesets/enums/visual/__init__.py +1 -0
  127. valuesets/enums/visual/colors.py +376 -0
  128. valuesets/generators/__init__.py +19 -0
  129. valuesets/generators/auto_slot_injector.py +280 -0
  130. valuesets/generators/enhanced_pydantic_generator.py +100 -0
  131. valuesets/generators/enum_slot_generator.py +201 -0
  132. valuesets/generators/modular_rich_generator.py +353 -0
  133. valuesets/generators/prefix_standardizer.py +198 -0
  134. valuesets/generators/rich_enum.py +127 -0
  135. valuesets/generators/rich_pydantic_generator.py +310 -0
  136. valuesets/generators/smart_slot_syncer.py +428 -0
  137. valuesets/generators/sssom_generator.py +394 -0
  138. valuesets/merged/merged_hierarchy.yaml +21649 -0
  139. valuesets/schema/README.md +3 -0
  140. valuesets/schema/academic/research.yaml +911 -0
  141. valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
  142. valuesets/schema/bio/bio_entities.yaml +364 -0
  143. valuesets/schema/bio/biological_colors.yaml +434 -0
  144. valuesets/schema/bio/cell_cycle.yaml +309 -0
  145. valuesets/schema/bio/currency_chemicals.yaml +70 -0
  146. valuesets/schema/bio/developmental_stages.yaml +226 -0
  147. valuesets/schema/bio/genome_features.yaml +342 -0
  148. valuesets/schema/bio/genomics.yaml +101 -0
  149. valuesets/schema/bio/go_aspect.yaml +39 -0
  150. valuesets/schema/bio/go_causality.yaml +119 -0
  151. valuesets/schema/bio/go_evidence.yaml +215 -0
  152. valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
  153. valuesets/schema/bio/insdc_missing_values.yaml +85 -0
  154. valuesets/schema/bio/lipid_categories.yaml +72 -0
  155. valuesets/schema/bio/plant_biology.yaml +125 -0
  156. valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
  157. valuesets/schema/bio/plant_sex.yaml +108 -0
  158. valuesets/schema/bio/protein_evidence.yaml +63 -0
  159. valuesets/schema/bio/proteomics_standards.yaml +116 -0
  160. valuesets/schema/bio/psi_mi.yaml +400 -0
  161. valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
  162. valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
  163. valuesets/schema/bio/sequence_chemistry.yaml +477 -0
  164. valuesets/schema/bio/sequencing_platforms.yaml +515 -0
  165. valuesets/schema/bio/structural_biology.yaml +428 -0
  166. valuesets/schema/bio/taxonomy.yaml +453 -0
  167. valuesets/schema/bio/trophic_levels.yaml +118 -0
  168. valuesets/schema/bio/uniprot_species.yaml +1209 -0
  169. valuesets/schema/bio/viral_genome_types.yaml +99 -0
  170. valuesets/schema/bioprocessing/scale_up.yaml +458 -0
  171. valuesets/schema/business/human_resources.yaml +752 -0
  172. valuesets/schema/business/industry_classifications.yaml +448 -0
  173. valuesets/schema/business/management_operations.yaml +602 -0
  174. valuesets/schema/business/organizational_structures.yaml +645 -0
  175. valuesets/schema/business/quality_management.yaml +502 -0
  176. valuesets/schema/business/supply_chain.yaml +688 -0
  177. valuesets/schema/chemistry/chemical_entities.yaml +639 -0
  178. valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
  179. valuesets/schema/chemistry/reactions.yaml +442 -0
  180. valuesets/schema/clinical/nih_demographics.yaml +285 -0
  181. valuesets/schema/clinical/phenopackets.yaml +429 -0
  182. valuesets/schema/computing/file_formats.yaml +631 -0
  183. valuesets/schema/computing/maturity_levels.yaml +229 -0
  184. valuesets/schema/computing/mime_types.yaml +266 -0
  185. valuesets/schema/confidence_levels.yaml +206 -0
  186. valuesets/schema/contributor.yaml +30 -0
  187. valuesets/schema/core.yaml +55 -0
  188. valuesets/schema/data/data_absent_reason.yaml +82 -0
  189. valuesets/schema/data_science/binary_classification.yaml +125 -0
  190. valuesets/schema/data_science/emotion_classification.yaml +109 -0
  191. valuesets/schema/data_science/priority_severity.yaml +122 -0
  192. valuesets/schema/data_science/quality_control.yaml +68 -0
  193. valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
  194. valuesets/schema/data_science/text_classification.yaml +135 -0
  195. valuesets/schema/demographics.yaml +238 -0
  196. valuesets/schema/ecological_interactions.yaml +298 -0
  197. valuesets/schema/energy/energy.yaml +595 -0
  198. valuesets/schema/energy/fossil_fuels.yaml +28 -0
  199. valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
  200. valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
  201. valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
  202. valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
  203. valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
  204. valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
  205. valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
  206. valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
  207. valuesets/schema/environmental_health/exposures.yaml +355 -0
  208. valuesets/schema/generated_slots.yaml +1828 -0
  209. valuesets/schema/geography/geographic_codes.yaml +1018 -0
  210. valuesets/schema/health/vaccination.yaml +102 -0
  211. valuesets/schema/health.yaml +38 -0
  212. valuesets/schema/healthcare.yaml +53 -0
  213. valuesets/schema/industry/extractive_industry.yaml +89 -0
  214. valuesets/schema/industry/mining.yaml +888 -0
  215. valuesets/schema/industry/safety_colors.yaml +375 -0
  216. valuesets/schema/investigation.yaml +64 -0
  217. valuesets/schema/materials_science/characterization_methods.yaml +193 -0
  218. valuesets/schema/materials_science/crystal_structures.yaml +138 -0
  219. valuesets/schema/materials_science/material_properties.yaml +135 -0
  220. valuesets/schema/materials_science/material_types.yaml +151 -0
  221. valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
  222. valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
  223. valuesets/schema/medical/clinical.yaml +610 -0
  224. valuesets/schema/medical/neuroimaging.yaml +325 -0
  225. valuesets/schema/mining_processing.yaml +295 -0
  226. valuesets/schema/physics/states_of_matter.yaml +46 -0
  227. valuesets/schema/slot_mixins.yaml +143 -0
  228. valuesets/schema/social/person_status.yaml +28 -0
  229. valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
  230. valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
  231. valuesets/schema/statistics.yaml +34 -0
  232. valuesets/schema/time/temporal.yaml +435 -0
  233. valuesets/schema/types.yaml +15 -0
  234. valuesets/schema/units/measurements.yaml +675 -0
  235. valuesets/schema/valuesets.yaml +100 -0
  236. valuesets/schema/visual/colors.yaml +778 -0
  237. valuesets/utils/__init__.py +6 -0
  238. valuesets/utils/comparison.py +102 -0
  239. valuesets/utils/expand_dynamic_enums.py +414 -0
  240. valuesets/utils/mapping_utils.py +236 -0
  241. valuesets/validators/__init__.py +11 -0
  242. valuesets/validators/enum_evaluator.py +669 -0
  243. valuesets/validators/oak_config.yaml +70 -0
  244. valuesets/validators/validate_with_ols.py +241 -0
  245. valuesets-0.3.1.dist-info/METADATA +395 -0
  246. valuesets-0.3.1.dist-info/RECORD +248 -0
  247. valuesets-0.3.1.dist-info/WHEEL +4 -0
  248. valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,181 @@
1
+ """
2
+ Business Industry Classifications and Economic Sectors
3
+
4
+ Industry classification systems including NAICS codes, economic sectors, and business activity categories. Based on official government classification systems and international standards for economic analysis and business categorization.
5
+
6
+ Generated from: business/industry_classifications.yaml
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ from typing import Dict, Any, Optional
12
+ from valuesets.generators.rich_enum import RichEnum
13
+
14
+ class NAICSSectorEnum(RichEnum):
15
+ """
16
+ NAICS two-digit sector codes (North American Industry Classification System)
17
+ """
18
+ # Enum members
19
+ SECTOR_11 = "SECTOR_11"
20
+ SECTOR_21 = "SECTOR_21"
21
+ SECTOR_22 = "SECTOR_22"
22
+ SECTOR_23 = "SECTOR_23"
23
+ SECTOR_31_33 = "SECTOR_31_33"
24
+ SECTOR_42 = "SECTOR_42"
25
+ SECTOR_44_45 = "SECTOR_44_45"
26
+ SECTOR_48_49 = "SECTOR_48_49"
27
+ SECTOR_51 = "SECTOR_51"
28
+ SECTOR_52 = "SECTOR_52"
29
+ SECTOR_53 = "SECTOR_53"
30
+ SECTOR_54 = "SECTOR_54"
31
+ SECTOR_55 = "SECTOR_55"
32
+ SECTOR_56 = "SECTOR_56"
33
+ SECTOR_61 = "SECTOR_61"
34
+ SECTOR_62 = "SECTOR_62"
35
+ SECTOR_71 = "SECTOR_71"
36
+ SECTOR_72 = "SECTOR_72"
37
+ SECTOR_81 = "SECTOR_81"
38
+ SECTOR_92 = "SECTOR_92"
39
+
40
+ # Set metadata after class creation
41
+ NAICSSectorEnum._metadata = {
42
+ "SECTOR_11": {'description': 'Establishments engaged in agriculture, forestry, fishing, and hunting', 'annotations': {'naics_code': '11', 'activities': 'crop production, animal production, forestry, fishing', 'economic_base': 'natural resource extraction and production'}},
43
+ "SECTOR_21": {'description': 'Establishments engaged in extracting natural resources', 'annotations': {'naics_code': '21', 'activities': 'oil and gas extraction, mining, support activities', 'economic_base': 'natural resource extraction'}},
44
+ "SECTOR_22": {'description': 'Establishments engaged in providing utilities', 'annotations': {'naics_code': '22', 'activities': 'electric power, natural gas, water, sewage, waste management', 'regulation': 'heavily regulated'}},
45
+ "SECTOR_23": {'description': 'Establishments engaged in construction activities', 'annotations': {'naics_code': '23', 'activities': 'building construction, heavy construction, specialty trade contractors', 'cyclical': 'highly cyclical industry'}},
46
+ "SECTOR_31_33": {'description': 'Establishments engaged in manufacturing goods', 'annotations': {'naics_code': '31-33', 'activities': 'food, chemicals, machinery, transportation equipment', 'value_added': 'transforms materials into finished goods'}},
47
+ "SECTOR_42": {'description': 'Establishments engaged in wholesale distribution', 'annotations': {'naics_code': '42', 'activities': 'merchant wholesalers, agents and brokers', 'function': 'intermediary between manufacturers and retailers'}},
48
+ "SECTOR_44_45": {'description': 'Establishments engaged in retail sales to consumers', 'annotations': {'naics_code': '44-45', 'activities': 'motor vehicle dealers, food stores, general merchandise', 'customer': 'sells to final consumers'}},
49
+ "SECTOR_48_49": {'description': 'Establishments providing transportation and warehousing services', 'annotations': {'naics_code': '48-49', 'activities': 'air, rail, water, truck transportation, warehousing', 'infrastructure': 'transportation infrastructure dependent'}},
50
+ "SECTOR_51": {'description': 'Establishments in information industries', 'annotations': {'naics_code': '51', 'activities': 'publishing, broadcasting, telecommunications, data processing', 'technology': 'information technology and content'}},
51
+ "SECTOR_52": {'description': 'Establishments providing financial services', 'annotations': {'naics_code': '52', 'activities': 'banking, securities, insurance, funds and trusts', 'regulation': 'highly regulated financial sector'}},
52
+ "SECTOR_53": {'description': 'Establishments engaged in real estate and rental activities', 'annotations': {'naics_code': '53', 'activities': 'real estate, rental and leasing services', 'asset_type': 'real and personal property'}},
53
+ "SECTOR_54": {'description': 'Establishments providing professional services', 'annotations': {'naics_code': '54', 'activities': 'legal, accounting, engineering, consulting, research', 'knowledge_based': 'knowledge and skill intensive'}},
54
+ "SECTOR_55": {'description': 'Establishments serving as holding companies or managing enterprises', 'annotations': {'naics_code': '55', 'activities': 'holding companies, corporate management', 'function': 'corporate ownership and management'}},
55
+ "SECTOR_56": {'description': 'Establishments providing administrative and support services', 'annotations': {'naics_code': '56', 'activities': 'administrative services, waste management, remediation', 'support_function': 'business support services'}},
56
+ "SECTOR_61": {'description': 'Establishments providing educational instruction', 'annotations': {'naics_code': '61', 'activities': 'schools, colleges, training programs', 'public_private': 'public and private education'}},
57
+ "SECTOR_62": {'description': 'Establishments providing health care and social assistance', 'annotations': {'naics_code': '62', 'activities': 'hospitals, medical practices, social assistance', 'essential_services': 'essential public services'}},
58
+ "SECTOR_71": {'description': 'Establishments in arts, entertainment, and recreation', 'annotations': {'naics_code': '71', 'activities': 'performing arts, spectator sports, museums, recreation', 'discretionary': 'discretionary consumer spending'}},
59
+ "SECTOR_72": {'description': 'Establishments providing accommodation and food services', 'annotations': {'naics_code': '72', 'activities': 'hotels, restaurants, food services', 'consumer_services': 'consumer hospitality services'}},
60
+ "SECTOR_81": {'description': 'Establishments providing other services', 'annotations': {'naics_code': '81', 'activities': 'repair, personal care, religious organizations', 'diverse': 'diverse service activities'}},
61
+ "SECTOR_92": {'description': 'Government establishments', 'annotations': {'naics_code': '92', 'activities': 'executive, legislative, judicial, public safety', 'sector': 'government sector'}},
62
+ }
63
+
64
+ class EconomicSectorEnum(RichEnum):
65
+ """
66
+ Broad economic sector classifications
67
+ """
68
+ # Enum members
69
+ PRIMARY_SECTOR = "PRIMARY_SECTOR"
70
+ SECONDARY_SECTOR = "SECONDARY_SECTOR"
71
+ TERTIARY_SECTOR = "TERTIARY_SECTOR"
72
+ QUATERNARY_SECTOR = "QUATERNARY_SECTOR"
73
+ QUINARY_SECTOR = "QUINARY_SECTOR"
74
+
75
+ # Set metadata after class creation
76
+ EconomicSectorEnum._metadata = {
77
+ "PRIMARY_SECTOR": {'description': 'Economic activities extracting natural resources', 'annotations': {'activities': 'agriculture, mining, forestry, fishing', 'output': 'raw materials and natural resources', 'employment': 'typically lower employment share in developed economies', 'development_stage': 'dominant in early economic development'}},
78
+ "SECONDARY_SECTOR": {'description': 'Economic activities manufacturing and processing goods', 'annotations': {'activities': 'manufacturing, construction, utilities', 'output': 'processed and manufactured goods', 'value_added': 'transforms raw materials into finished products', 'employment': 'historically significant in industrial economies'}},
79
+ "TERTIARY_SECTOR": {'description': 'Economic activities providing services', 'annotations': {'activities': 'retail, hospitality, transportation, finance, healthcare', 'output': 'services to consumers and businesses', 'growth': 'largest and fastest growing sector in developed economies', 'employment': 'dominant employment sector'}},
80
+ "QUATERNARY_SECTOR": {'description': 'Knowledge-based economic activities', 'annotations': {'activities': 'research, education, information technology, consulting', 'output': 'knowledge, information, and intellectual services', 'characteristics': 'high skill and education requirements', 'growth': 'rapidly growing in knowledge economies'}},
81
+ "QUINARY_SECTOR": {'description': 'High-level decision-making and policy services', 'annotations': {'activities': 'top-level government, healthcare, education, culture', 'output': 'highest level services and decision-making', 'characteristics': 'elite services and leadership roles', 'scope': 'limited to highest level activities'}},
82
+ }
83
+
84
+ class BusinessActivityTypeEnum(RichEnum):
85
+ """
86
+ Types of primary business activities
87
+ """
88
+ # Enum members
89
+ PRODUCTION = "PRODUCTION"
90
+ DISTRIBUTION = "DISTRIBUTION"
91
+ SERVICES = "SERVICES"
92
+ TECHNOLOGY = "TECHNOLOGY"
93
+ FINANCE = "FINANCE"
94
+ INFORMATION = "INFORMATION"
95
+ EDUCATION = "EDUCATION"
96
+ HEALTHCARE = "HEALTHCARE"
97
+ ENTERTAINMENT = "ENTERTAINMENT"
98
+ PROFESSIONAL_SERVICES = "PROFESSIONAL_SERVICES"
99
+
100
+ # Set metadata after class creation
101
+ BusinessActivityTypeEnum._metadata = {
102
+ "PRODUCTION": {'description': 'Creating or manufacturing physical goods', 'annotations': {'output': 'physical products and goods', 'process': 'transformation of materials', 'assets': 'physical assets and equipment intensive', 'examples': 'factories, farms, mines'}},
103
+ "DISTRIBUTION": {'description': 'Moving goods from producers to consumers', 'annotations': {'function': 'intermediary between producers and consumers', 'value_added': 'place and time utility', 'examples': 'wholesalers, retailers, logistics companies', 'efficiency': 'improves market efficiency'}},
104
+ "SERVICES": {'description': 'Providing intangible services to customers', 'annotations': {'output': 'intangible services', 'characteristics': 'labor intensive, customized', 'examples': 'consulting, healthcare, hospitality', 'customer_interaction': 'high customer interaction'}},
105
+ "TECHNOLOGY": {'description': 'Developing and applying technology solutions', 'annotations': {'focus': 'technology development and application', 'innovation': 'research and development intensive', 'examples': 'software companies, biotech, engineering', 'intellectual_property': 'high intellectual property content'}},
106
+ "FINANCE": {'description': 'Providing financial and investment services', 'annotations': {'function': 'financial intermediation and services', 'regulation': 'highly regulated', 'examples': 'banks, insurance, investment firms', 'capital': 'capital intensive'}},
107
+ "INFORMATION": {'description': 'Creating, processing, and distributing information', 'annotations': {'output': 'information and content', 'channels': 'various distribution channels', 'examples': 'media companies, publishers, data processors', 'technology_dependent': 'technology platform dependent'}},
108
+ "EDUCATION": {'description': 'Providing educational and training services', 'annotations': {'function': 'knowledge and skill development', 'public_private': 'public and private providers', 'examples': 'schools, universities, training companies', 'social_impact': 'high social impact'}},
109
+ "HEALTHCARE": {'description': 'Providing health and medical services', 'annotations': {'function': 'health and medical care', 'regulation': 'highly regulated', 'examples': 'hospitals, clinics, pharmaceutical companies', 'essential': 'essential service'}},
110
+ "ENTERTAINMENT": {'description': 'Providing entertainment and recreational services', 'annotations': {'output': 'entertainment and leisure experiences', 'discretionary': 'discretionary consumer spending', 'examples': 'media, sports, tourism, gaming', 'experience_based': 'experience and emotion based'}},
111
+ "PROFESSIONAL_SERVICES": {'description': 'Providing specialized professional expertise', 'annotations': {'characteristics': 'high skill and knowledge requirements', 'customization': 'highly customized services', 'examples': 'law firms, consulting, accounting', 'expertise': 'specialized professional expertise'}},
112
+ }
113
+
114
+ class IndustryMaturityEnum(RichEnum):
115
+ """
116
+ Industry lifecycle and maturity stages
117
+ """
118
+ # Enum members
119
+ EMERGING = "EMERGING"
120
+ GROWTH = "GROWTH"
121
+ MATURE = "MATURE"
122
+ DECLINING = "DECLINING"
123
+ TRANSFORMING = "TRANSFORMING"
124
+
125
+ # Set metadata after class creation
126
+ IndustryMaturityEnum._metadata = {
127
+ "EMERGING": {'description': 'New industry in early development stage', 'annotations': {'characteristics': 'high uncertainty, rapid change', 'growth': 'high growth potential', 'technology': 'new or evolving technology', 'competition': 'few competitors, unclear standards', 'investment': 'high investment requirements'}},
128
+ "GROWTH": {'description': 'Industry experiencing rapid expansion', 'annotations': {'characteristics': 'rapid market expansion', 'competition': 'increasing competition', 'standardization': 'emerging standards', 'investment': 'significant investment opportunities', 'profitability': 'improving profitability'}},
129
+ "MATURE": {'description': 'Established industry with stable growth', 'annotations': {'characteristics': 'stable market conditions', 'growth': 'slower, steady growth', 'competition': 'established competitive structure', 'efficiency': 'focus on operational efficiency', 'consolidation': 'potential for consolidation'}},
130
+ "DECLINING": {'description': 'Industry experiencing contraction', 'annotations': {'characteristics': 'decreasing demand', 'competition': 'intensifying competition for shrinking market', 'cost_focus': 'focus on cost reduction', 'consolidation': 'significant consolidation', 'exit': 'companies exiting industry'}},
131
+ "TRANSFORMING": {'description': 'Industry undergoing fundamental change', 'annotations': {'characteristics': 'disruptive change and innovation', 'technology': 'technology-driven transformation', 'business_models': 'evolving business models', 'uncertainty': 'high uncertainty about future structure', 'opportunity': 'opportunities for innovation and disruption'}},
132
+ }
133
+
134
+ class MarketStructureEnum(RichEnum):
135
+ """
136
+ Competitive structure of industry markets
137
+ """
138
+ # Enum members
139
+ PERFECT_COMPETITION = "PERFECT_COMPETITION"
140
+ MONOPOLISTIC_COMPETITION = "MONOPOLISTIC_COMPETITION"
141
+ OLIGOPOLY = "OLIGOPOLY"
142
+ MONOPOLY = "MONOPOLY"
143
+ DUOPOLY = "DUOPOLY"
144
+
145
+ # Set metadata after class creation
146
+ MarketStructureEnum._metadata = {
147
+ "PERFECT_COMPETITION": {'description': 'Many small firms with identical products', 'annotations': {'competitors': 'many small competitors', 'products': 'homogeneous products', 'barriers': 'no barriers to entry', 'pricing': 'price takers', 'examples': 'agricultural commodities'}},
148
+ "MONOPOLISTIC_COMPETITION": {'description': 'Many firms with differentiated products', 'annotations': {'competitors': 'many competitors', 'products': 'differentiated products', 'barriers': 'low barriers to entry', 'pricing': 'some pricing power', 'examples': 'restaurants, retail clothing'}},
149
+ "OLIGOPOLY": {'description': 'Few large firms dominating the market', 'annotations': {'competitors': 'few large competitors', 'concentration': 'high market concentration', 'barriers': 'significant barriers to entry', 'interdependence': 'strategic interdependence', 'examples': 'automobiles, telecommunications'}},
150
+ "MONOPOLY": {'description': 'Single firm controlling the market', 'annotations': {'competitors': 'single market leader', 'barriers': 'very high barriers to entry', 'pricing': 'price maker', 'regulation': 'often regulated', 'examples': 'utilities, patented products'}},
151
+ "DUOPOLY": {'description': 'Two firms dominating the market', 'annotations': {'competitors': 'two dominant competitors', 'competition': 'head-to-head competition', 'barriers': 'high barriers to entry', 'strategy': 'strategic competition', 'examples': 'aircraft manufacturing, some software markets'}},
152
+ }
153
+
154
+ class IndustryRegulationLevelEnum(RichEnum):
155
+ """
156
+ Level of government regulation in different industries
157
+ """
158
+ # Enum members
159
+ HIGHLY_REGULATED = "HIGHLY_REGULATED"
160
+ MODERATELY_REGULATED = "MODERATELY_REGULATED"
161
+ LIGHTLY_REGULATED = "LIGHTLY_REGULATED"
162
+ SELF_REGULATED = "SELF_REGULATED"
163
+ DEREGULATED = "DEREGULATED"
164
+
165
+ # Set metadata after class creation
166
+ IndustryRegulationLevelEnum._metadata = {
167
+ "HIGHLY_REGULATED": {'description': 'Industries subject to extensive government oversight', 'annotations': {'oversight': 'extensive government oversight', 'compliance': 'complex compliance requirements', 'barriers': 'regulatory barriers to entry', 'examples': 'banking, healthcare, utilities, pharmaceuticals', 'reason': 'public safety, market power, or systemic risk'}},
168
+ "MODERATELY_REGULATED": {'description': 'Industries with significant but focused regulation', 'annotations': {'oversight': 'focused regulatory oversight', 'compliance': 'specific compliance requirements', 'areas': 'targeted regulatory areas', 'examples': 'food service, transportation, insurance', 'balance': 'balance between oversight and flexibility'}},
169
+ "LIGHTLY_REGULATED": {'description': 'Industries with minimal regulatory oversight', 'annotations': {'oversight': 'minimal regulatory oversight', 'compliance': 'basic compliance requirements', 'flexibility': 'high operational flexibility', 'examples': 'technology, consulting, retail', 'approach': 'market-based approach'}},
170
+ "SELF_REGULATED": {'description': 'Industries primarily regulated by industry organizations', 'annotations': {'oversight': 'industry self-regulation', 'standards': 'industry-developed standards', 'compliance': 'voluntary compliance', 'examples': 'professional services, trade associations', 'effectiveness': 'varies by industry'}},
171
+ "DEREGULATED": {'description': 'Industries formerly regulated but now market-based', 'annotations': {'history': 'formerly regulated industries', 'competition': 'market-based competition', 'transition': 'transition from regulation to competition', 'examples': 'airlines, telecommunications, energy', 'benefits': 'increased competition and efficiency'}},
172
+ }
173
+
174
+ __all__ = [
175
+ "NAICSSectorEnum",
176
+ "EconomicSectorEnum",
177
+ "BusinessActivityTypeEnum",
178
+ "IndustryMaturityEnum",
179
+ "MarketStructureEnum",
180
+ "IndustryRegulationLevelEnum",
181
+ ]
@@ -0,0 +1,228 @@
1
+ """
2
+ Business Management and Operations
3
+
4
+ Business management methodologies, operational frameworks, strategic planning approaches, and performance management systems. Based on management theory, business strategy frameworks, and operational excellence practices.
5
+
6
+ Generated from: business/management_operations.yaml
7
+ """
8
+
9
+ from __future__ import annotations
10
+
11
+ from typing import Dict, Any, Optional
12
+ from valuesets.generators.rich_enum import RichEnum
13
+
14
+ class ManagementMethodologyEnum(RichEnum):
15
+ """
16
+ Management approaches and methodologies
17
+ """
18
+ # Enum members
19
+ TRADITIONAL_MANAGEMENT = "TRADITIONAL_MANAGEMENT"
20
+ AGILE_MANAGEMENT = "AGILE_MANAGEMENT"
21
+ LEAN_MANAGEMENT = "LEAN_MANAGEMENT"
22
+ PARTICIPATIVE_MANAGEMENT = "PARTICIPATIVE_MANAGEMENT"
23
+ MATRIX_MANAGEMENT = "MATRIX_MANAGEMENT"
24
+ PROJECT_MANAGEMENT = "PROJECT_MANAGEMENT"
25
+ RESULTS_ORIENTED_MANAGEMENT = "RESULTS_ORIENTED_MANAGEMENT"
26
+ SERVANT_LEADERSHIP = "SERVANT_LEADERSHIP"
27
+ TRANSFORMATIONAL_MANAGEMENT = "TRANSFORMATIONAL_MANAGEMENT"
28
+ DEMOCRATIC_MANAGEMENT = "DEMOCRATIC_MANAGEMENT"
29
+
30
+ # Set metadata after class creation
31
+ ManagementMethodologyEnum._metadata = {
32
+ "TRADITIONAL_MANAGEMENT": {'description': 'Hierarchical command-and-control management approach', 'annotations': {'structure': 'hierarchical structure', 'authority': 'centralized authority', 'communication': 'top-down communication', 'control': 'direct supervision and control'}},
33
+ "AGILE_MANAGEMENT": {'description': 'Flexible, iterative management approach', 'annotations': {'flexibility': 'adaptive and flexible', 'iteration': 'iterative approach', 'collaboration': 'cross-functional collaboration', 'customer_focus': 'customer-centric'}},
34
+ "LEAN_MANAGEMENT": {'description': 'Waste elimination and value optimization approach', 'annotations': {'focus': 'waste elimination', 'value': 'value stream optimization', 'continuous_improvement': 'kaizen and continuous improvement', 'efficiency': 'operational efficiency'}},
35
+ "PARTICIPATIVE_MANAGEMENT": {'description': 'Employee involvement in decision-making', 'annotations': {'involvement': 'employee participation', 'decision_making': 'shared decision-making', 'empowerment': 'employee empowerment', 'engagement': 'increased employee engagement'}},
36
+ "MATRIX_MANAGEMENT": {'description': 'Dual reporting relationships and shared authority', 'annotations': {'structure': 'matrix reporting structure', 'authority': 'shared authority', 'flexibility': 'organizational flexibility', 'complexity': 'increased complexity'}},
37
+ "PROJECT_MANAGEMENT": {'description': 'Structured approach to managing projects', 'annotations': {'methodology': 'project management methodology', 'lifecycle': 'project lifecycle management', 'deliverables': 'deliverable-focused', 'temporary': 'temporary organizational structure'}},
38
+ "RESULTS_ORIENTED_MANAGEMENT": {'description': 'Focus on outcomes and performance results', 'annotations': {'focus': 'results and outcomes', 'measurement': 'performance measurement', 'accountability': 'accountability for results', 'goals': 'goal-oriented approach'}},
39
+ "SERVANT_LEADERSHIP": {'description': 'Leader serves and supports team members', 'annotations': {'philosophy': 'service-oriented leadership', 'support': 'leader supports team', 'development': 'people development focus', 'empowerment': 'team empowerment'}},
40
+ "TRANSFORMATIONAL_MANAGEMENT": {'description': 'Change-oriented and inspirational management', 'annotations': {'change': 'transformation and change focus', 'inspiration': 'inspirational leadership', 'vision': 'vision-driven', 'development': 'follower development'}},
41
+ "DEMOCRATIC_MANAGEMENT": {'description': 'Collaborative and consensus-building approach', 'annotations': {'participation': 'democratic participation', 'consensus': 'consensus-building', 'equality': 'equal voice in decisions', 'transparency': 'transparent processes'}},
42
+ }
43
+
44
+ class StrategicFrameworkEnum(RichEnum):
45
+ """
46
+ Strategic planning and analysis frameworks
47
+ """
48
+ # Enum members
49
+ SWOT_ANALYSIS = "SWOT_ANALYSIS"
50
+ PORTERS_FIVE_FORCES = "PORTERS_FIVE_FORCES"
51
+ BALANCED_SCORECARD = "BALANCED_SCORECARD"
52
+ BLUE_OCEAN_STRATEGY = "BLUE_OCEAN_STRATEGY"
53
+ ANSOFF_MATRIX = "ANSOFF_MATRIX"
54
+ BCG_MATRIX = "BCG_MATRIX"
55
+ VALUE_CHAIN_ANALYSIS = "VALUE_CHAIN_ANALYSIS"
56
+ SCENARIO_PLANNING = "SCENARIO_PLANNING"
57
+ STRATEGIC_CANVAS = "STRATEGIC_CANVAS"
58
+ CORE_COMPETENCY_ANALYSIS = "CORE_COMPETENCY_ANALYSIS"
59
+
60
+ # Set metadata after class creation
61
+ StrategicFrameworkEnum._metadata = {
62
+ "SWOT_ANALYSIS": {'description': 'Strengths, Weaknesses, Opportunities, Threats analysis', 'annotations': {'components': 'strengths, weaknesses, opportunities, threats', 'purpose': 'strategic positioning analysis', 'simplicity': 'simple and widely used', 'application': 'strategic planning and decision-making'}},
63
+ "PORTERS_FIVE_FORCES": {'description': 'Industry competitiveness analysis framework', 'annotations': {'forces': 'competitive rivalry, supplier power, buyer power, substitutes, barriers', 'purpose': 'industry attractiveness analysis', 'competition': 'competitive strategy framework', 'application': 'industry analysis and strategy formulation'}},
64
+ "BALANCED_SCORECARD": {'description': 'Performance measurement from multiple perspectives', 'annotations': {'perspectives': 'financial, customer, internal process, learning', 'purpose': 'strategic performance measurement', 'balance': 'balanced view of performance', 'alignment': 'strategy alignment tool'}},
65
+ "BLUE_OCEAN_STRATEGY": {'description': 'Creating uncontested market space strategy', 'annotations': {'concept': 'value innovation and market creation', 'competition': 'competition avoidance', 'differentiation': 'differentiation and low cost', 'innovation': 'strategic innovation'}},
66
+ "ANSOFF_MATRIX": {'description': 'Product and market growth strategy framework', 'annotations': {'dimensions': 'products and markets', 'strategies': 'market penetration, development, diversification', 'growth': 'growth strategy framework', 'risk': 'risk assessment of growth options'}},
67
+ "BCG_MATRIX": {'description': 'Portfolio analysis of business units', 'annotations': {'dimensions': 'market growth and market share', 'categories': 'stars, cash cows, question marks, dogs', 'portfolio': 'business portfolio analysis', 'resource_allocation': 'resource allocation decisions'}},
68
+ "VALUE_CHAIN_ANALYSIS": {'description': 'Analysis of value-creating activities', 'annotations': {'activities': 'primary and support activities', 'value': 'value creation analysis', 'advantage': 'competitive advantage source identification', 'optimization': 'value chain optimization'}},
69
+ "SCENARIO_PLANNING": {'description': 'Multiple future scenario development and planning', 'annotations': {'scenarios': 'multiple future scenarios', 'uncertainty': 'uncertainty management', 'planning': 'strategic contingency planning', 'flexibility': 'strategic flexibility'}},
70
+ "STRATEGIC_CANVAS": {'description': 'Visual representation of competitive factors', 'annotations': {'visualization': 'visual strategy representation', 'factors': 'competitive factors analysis', 'comparison': 'competitor comparison', 'innovation': 'value innovation identification'}},
71
+ "CORE_COMPETENCY_ANALYSIS": {'description': 'Identification and development of core competencies', 'annotations': {'competencies': 'unique organizational capabilities', 'advantage': 'sustainable competitive advantage', 'focus': 'competency-based strategy', 'development': 'capability development'}},
72
+ }
73
+
74
+ class OperationalModelEnum(RichEnum):
75
+ """
76
+ Business operational models and approaches
77
+ """
78
+ # Enum members
79
+ CENTRALIZED_OPERATIONS = "CENTRALIZED_OPERATIONS"
80
+ DECENTRALIZED_OPERATIONS = "DECENTRALIZED_OPERATIONS"
81
+ HYBRID_OPERATIONS = "HYBRID_OPERATIONS"
82
+ OUTSOURCED_OPERATIONS = "OUTSOURCED_OPERATIONS"
83
+ SHARED_SERVICES = "SHARED_SERVICES"
84
+ NETWORK_OPERATIONS = "NETWORK_OPERATIONS"
85
+ PLATFORM_OPERATIONS = "PLATFORM_OPERATIONS"
86
+ AGILE_OPERATIONS = "AGILE_OPERATIONS"
87
+ LEAN_OPERATIONS = "LEAN_OPERATIONS"
88
+ DIGITAL_OPERATIONS = "DIGITAL_OPERATIONS"
89
+
90
+ # Set metadata after class creation
91
+ OperationalModelEnum._metadata = {
92
+ "CENTRALIZED_OPERATIONS": {'description': 'Centralized operational control and decision-making', 'annotations': {'control': 'centralized control', 'efficiency': 'operational efficiency', 'standardization': 'standardized processes', 'coordination': 'central coordination'}},
93
+ "DECENTRALIZED_OPERATIONS": {'description': 'Distributed operational control and autonomy', 'annotations': {'autonomy': 'local autonomy', 'responsiveness': 'market responsiveness', 'flexibility': 'operational flexibility', 'empowerment': 'local empowerment'}},
94
+ "HYBRID_OPERATIONS": {'description': 'Combination of centralized and decentralized elements', 'annotations': {'combination': 'mixed centralized and decentralized', 'balance': 'balance between control and flexibility', 'optimization': 'situational optimization', 'complexity': 'increased complexity'}},
95
+ "OUTSOURCED_OPERATIONS": {'description': 'External service provider operational model', 'annotations': {'provider': 'external service providers', 'focus': 'core competency focus', 'cost': 'cost optimization', 'expertise': 'specialized expertise'}},
96
+ "SHARED_SERVICES": {'description': 'Centralized services shared across business units', 'annotations': {'sharing': 'shared service delivery', 'efficiency': 'scale efficiency', 'standardization': 'service standardization', 'cost_effectiveness': 'cost-effective service delivery'}},
97
+ "NETWORK_OPERATIONS": {'description': 'Collaborative network of partners and suppliers', 'annotations': {'network': 'partner and supplier network', 'collaboration': 'collaborative operations', 'flexibility': 'network flexibility', 'coordination': 'network coordination'}},
98
+ "PLATFORM_OPERATIONS": {'description': 'Platform-based business operational model', 'annotations': {'platform': 'platform-based operations', 'ecosystem': 'business ecosystem', 'scalability': 'scalable operations', 'network_effects': 'network effects'}},
99
+ "AGILE_OPERATIONS": {'description': 'Flexible and responsive operational approach', 'annotations': {'agility': 'operational agility', 'responsiveness': 'market responsiveness', 'adaptation': 'rapid adaptation', 'iteration': 'iterative improvement'}},
100
+ "LEAN_OPERATIONS": {'description': 'Waste elimination and value-focused operations', 'annotations': {'waste': 'waste elimination', 'value': 'value stream focus', 'efficiency': 'operational efficiency', 'continuous_improvement': 'continuous improvement'}},
101
+ "DIGITAL_OPERATIONS": {'description': 'Technology-enabled and digital-first operations', 'annotations': {'technology': 'digital technology enabled', 'automation': 'process automation', 'data_driven': 'data-driven operations', 'scalability': 'digital scalability'}},
102
+ }
103
+
104
+ class PerformanceMeasurementEnum(RichEnum):
105
+ """
106
+ Performance measurement systems and approaches
107
+ """
108
+ # Enum members
109
+ KEY_PERFORMANCE_INDICATORS = "KEY_PERFORMANCE_INDICATORS"
110
+ OBJECTIVES_KEY_RESULTS = "OBJECTIVES_KEY_RESULTS"
111
+ BALANCED_SCORECARD_MEASUREMENT = "BALANCED_SCORECARD_MEASUREMENT"
112
+ RETURN_ON_INVESTMENT = "RETURN_ON_INVESTMENT"
113
+ ECONOMIC_VALUE_ADDED = "ECONOMIC_VALUE_ADDED"
114
+ CUSTOMER_SATISFACTION_METRICS = "CUSTOMER_SATISFACTION_METRICS"
115
+ EMPLOYEE_ENGAGEMENT_METRICS = "EMPLOYEE_ENGAGEMENT_METRICS"
116
+ OPERATIONAL_EFFICIENCY_METRICS = "OPERATIONAL_EFFICIENCY_METRICS"
117
+ INNOVATION_METRICS = "INNOVATION_METRICS"
118
+ SUSTAINABILITY_METRICS = "SUSTAINABILITY_METRICS"
119
+
120
+ # Set metadata after class creation
121
+ PerformanceMeasurementEnum._metadata = {
122
+ "KEY_PERFORMANCE_INDICATORS": {'description': 'Specific metrics measuring critical performance areas', 'annotations': {'specificity': 'specific performance metrics', 'critical': 'critical success factors', 'measurement': 'quantitative measurement', 'tracking': 'performance tracking'}},
123
+ "OBJECTIVES_KEY_RESULTS": {'description': 'Goal-setting framework with measurable outcomes', 'annotations': {'objectives': 'qualitative objectives', 'results': 'quantitative key results', 'alignment': 'organizational alignment', 'transparency': 'transparent goal setting'}},
124
+ "BALANCED_SCORECARD_MEASUREMENT": {'description': 'Multi-perspective performance measurement system', 'annotations': {'perspectives': 'multiple performance perspectives', 'balance': 'balanced performance view', 'strategy': 'strategy-linked measurement', 'cause_effect': 'cause-and-effect relationships'}},
125
+ "RETURN_ON_INVESTMENT": {'description': 'Financial return measurement relative to investment', 'annotations': {'financial': 'financial performance measure', 'investment': 'investment-based measurement', 'efficiency': 'capital efficiency', 'comparison': 'investment comparison'}},
126
+ "ECONOMIC_VALUE_ADDED": {'description': 'Value creation measurement after cost of capital', 'annotations': {'value': 'economic value creation', 'capital_cost': 'cost of capital consideration', 'shareholder': 'shareholder value focus', 'performance': 'true economic performance'}},
127
+ "CUSTOMER_SATISFACTION_METRICS": {'description': 'Customer experience and satisfaction measurement', 'annotations': {'customer': 'customer-focused measurement', 'satisfaction': 'satisfaction and loyalty', 'experience': 'customer experience', 'retention': 'customer retention'}},
128
+ "EMPLOYEE_ENGAGEMENT_METRICS": {'description': 'Employee satisfaction and engagement measurement', 'annotations': {'engagement': 'employee engagement', 'satisfaction': 'employee satisfaction', 'retention': 'employee retention', 'productivity': 'employee productivity'}},
129
+ "OPERATIONAL_EFFICIENCY_METRICS": {'description': 'Operational performance and efficiency measurement', 'annotations': {'efficiency': 'operational efficiency', 'productivity': 'process productivity', 'quality': 'quality metrics', 'cost': 'cost efficiency'}},
130
+ "INNOVATION_METRICS": {'description': 'Innovation performance and capability measurement', 'annotations': {'innovation': 'innovation performance', 'development': 'new product development', 'improvement': 'process improvement', 'creativity': 'organizational creativity'}},
131
+ "SUSTAINABILITY_METRICS": {'description': 'Environmental and social sustainability measurement', 'annotations': {'sustainability': 'sustainability performance', 'environmental': 'environmental impact', 'social': 'social responsibility', 'governance': 'governance effectiveness'}},
132
+ }
133
+
134
+ class DecisionMakingStyleEnum(RichEnum):
135
+ """
136
+ Decision-making approaches and styles
137
+ """
138
+ # Enum members
139
+ AUTOCRATIC = "AUTOCRATIC"
140
+ DEMOCRATIC = "DEMOCRATIC"
141
+ CONSULTATIVE = "CONSULTATIVE"
142
+ CONSENSUS = "CONSENSUS"
143
+ DELEGATED = "DELEGATED"
144
+ DATA_DRIVEN = "DATA_DRIVEN"
145
+ INTUITIVE = "INTUITIVE"
146
+ COMMITTEE = "COMMITTEE"
147
+ COLLABORATIVE = "COLLABORATIVE"
148
+ CRISIS = "CRISIS"
149
+
150
+ # Set metadata after class creation
151
+ DecisionMakingStyleEnum._metadata = {
152
+ "AUTOCRATIC": {'description': 'Single decision-maker with full authority', 'annotations': {'authority': 'centralized decision authority', 'speed': 'fast decision making', 'control': 'complete control', 'input': 'limited input from others'}},
153
+ "DEMOCRATIC": {'description': 'Group participation in decision-making process', 'annotations': {'participation': 'group participation', 'consensus': 'consensus building', 'input': 'diverse input and perspectives', 'ownership': 'shared ownership of decisions'}},
154
+ "CONSULTATIVE": {'description': 'Leader consults others before deciding', 'annotations': {'consultation': 'stakeholder consultation', 'input': 'seeks input and advice', 'authority': 'leader retains decision authority', 'informed': 'informed decision making'}},
155
+ "CONSENSUS": {'description': 'Agreement reached through group discussion', 'annotations': {'agreement': 'group agreement required', 'discussion': 'extensive group discussion', 'unanimous': 'unanimous or near-unanimous agreement', 'time': 'time-intensive process'}},
156
+ "DELEGATED": {'description': 'Decision authority delegated to others', 'annotations': {'delegation': 'decision authority delegation', 'empowerment': 'employee empowerment', 'autonomy': 'decision autonomy', 'accountability': 'delegated accountability'}},
157
+ "DATA_DRIVEN": {'description': 'Decisions based on data analysis and evidence', 'annotations': {'data': 'data and analytics based', 'evidence': 'evidence-based decisions', 'objectivity': 'objective decision making', 'analysis': 'analytical approach'}},
158
+ "INTUITIVE": {'description': 'Decisions based on experience and gut feeling', 'annotations': {'intuition': 'intuition and experience based', 'speed': 'rapid decision making', 'experience': 'leverages experience', 'creativity': 'creative and innovative'}},
159
+ "COMMITTEE": {'description': 'Formal group decision-making structure', 'annotations': {'structure': 'formal committee structure', 'representation': 'stakeholder representation', 'process': 'structured decision process', 'accountability': 'shared accountability'}},
160
+ "COLLABORATIVE": {'description': 'Joint decision-making with shared responsibility', 'annotations': {'collaboration': 'collaborative approach', 'shared': 'shared responsibility', 'teamwork': 'team-based decisions', 'synergy': 'collective wisdom'}},
161
+ "CRISIS": {'description': 'Rapid decision-making under crisis conditions', 'annotations': {'urgency': 'urgent decision making', 'limited_info': 'limited information available', 'speed': 'rapid response required', 'risk': 'high-risk decision making'}},
162
+ }
163
+
164
+ class LeadershipStyleEnum(RichEnum):
165
+ """
166
+ Leadership approaches and styles
167
+ """
168
+ # Enum members
169
+ TRANSFORMATIONAL = "TRANSFORMATIONAL"
170
+ TRANSACTIONAL = "TRANSACTIONAL"
171
+ SERVANT = "SERVANT"
172
+ AUTHENTIC = "AUTHENTIC"
173
+ CHARISMATIC = "CHARISMATIC"
174
+ SITUATIONAL = "SITUATIONAL"
175
+ DEMOCRATIC = "DEMOCRATIC"
176
+ AUTOCRATIC = "AUTOCRATIC"
177
+ LAISSEZ_FAIRE = "LAISSEZ_FAIRE"
178
+ COACHING = "COACHING"
179
+
180
+ # Set metadata after class creation
181
+ LeadershipStyleEnum._metadata = {
182
+ "TRANSFORMATIONAL": {'description': 'Inspirational leadership that motivates change', 'annotations': {'inspiration': 'inspirational motivation', 'vision': 'visionary leadership', 'development': 'follower development', 'change': 'change-oriented'}},
183
+ "TRANSACTIONAL": {'description': 'Exchange-based leadership with rewards and consequences', 'annotations': {'exchange': 'reward and consequence based', 'structure': 'structured approach', 'performance': 'performance-based', 'management': 'management by exception'}},
184
+ "SERVANT": {'description': 'Leader serves followers and facilitates their growth', 'annotations': {'service': 'service to followers', 'empowerment': 'follower empowerment', 'development': 'personal development focus', 'humility': 'humble leadership approach'}},
185
+ "AUTHENTIC": {'description': 'Genuine and self-aware leadership approach', 'annotations': {'authenticity': 'genuine and authentic', 'self_awareness': 'high self-awareness', 'values': 'values-based leadership', 'integrity': 'personal integrity'}},
186
+ "CHARISMATIC": {'description': 'Inspiring leadership through personal charisma', 'annotations': {'charisma': 'personal charisma', 'inspiration': 'inspirational influence', 'emotion': 'emotional appeal', 'following': 'devoted following'}},
187
+ "SITUATIONAL": {'description': 'Adaptive leadership based on situation requirements', 'annotations': {'adaptation': 'situational adaptation', 'flexibility': 'flexible approach', 'assessment': 'situation assessment', 'style_variation': 'varying leadership styles'}},
188
+ "DEMOCRATIC": {'description': 'Participative leadership with shared decision-making', 'annotations': {'participation': 'follower participation', 'shared': 'shared decision making', 'empowerment': 'team empowerment', 'collaboration': 'collaborative approach'}},
189
+ "AUTOCRATIC": {'description': 'Directive leadership with centralized control', 'annotations': {'control': 'centralized control', 'directive': 'directive approach', 'authority': 'strong authority', 'efficiency': 'decision efficiency'}},
190
+ "LAISSEZ_FAIRE": {'description': 'Hands-off leadership with minimal interference', 'annotations': {'autonomy': 'high follower autonomy', 'minimal': 'minimal leadership intervention', 'freedom': 'freedom to operate', 'self_direction': 'self-directed teams'}},
191
+ "COACHING": {'description': 'Development-focused leadership approach', 'annotations': {'development': 'skill and capability development', 'guidance': 'mentoring and guidance', 'growth': 'personal and professional growth', 'support': 'supportive leadership'}},
192
+ }
193
+
194
+ class BusinessProcessTypeEnum(RichEnum):
195
+ """
196
+ Types of business processes
197
+ """
198
+ # Enum members
199
+ CORE_PROCESS = "CORE_PROCESS"
200
+ SUPPORT_PROCESS = "SUPPORT_PROCESS"
201
+ MANAGEMENT_PROCESS = "MANAGEMENT_PROCESS"
202
+ OPERATIONAL_PROCESS = "OPERATIONAL_PROCESS"
203
+ STRATEGIC_PROCESS = "STRATEGIC_PROCESS"
204
+ INNOVATION_PROCESS = "INNOVATION_PROCESS"
205
+ CUSTOMER_PROCESS = "CUSTOMER_PROCESS"
206
+ FINANCIAL_PROCESS = "FINANCIAL_PROCESS"
207
+
208
+ # Set metadata after class creation
209
+ BusinessProcessTypeEnum._metadata = {
210
+ "CORE_PROCESS": {'description': 'Primary processes that create customer value', 'annotations': {'value': 'direct customer value creation', 'primary': 'primary business activities', 'competitive': 'competitive advantage source', 'strategic': 'strategic importance'}},
211
+ "SUPPORT_PROCESS": {'description': 'Processes that enable core business activities', 'annotations': {'support': 'supports core processes', 'enabling': 'enabling activities', 'infrastructure': 'business infrastructure', 'indirect': 'indirect value contribution'}},
212
+ "MANAGEMENT_PROCESS": {'description': 'Processes for planning, controlling, and improving', 'annotations': {'management': 'management and governance', 'planning': 'planning and control', 'improvement': 'process improvement', 'oversight': 'organizational oversight'}},
213
+ "OPERATIONAL_PROCESS": {'description': 'Day-to-day operational activities', 'annotations': {'operations': 'daily operations', 'routine': 'routine activities', 'execution': 'operational execution', 'efficiency': 'operational efficiency'}},
214
+ "STRATEGIC_PROCESS": {'description': 'Long-term planning and strategic activities', 'annotations': {'strategy': 'strategic planning', 'long_term': 'long-term focus', 'direction': 'organizational direction', 'competitive': 'competitive positioning'}},
215
+ "INNOVATION_PROCESS": {'description': 'Processes for developing new products or services', 'annotations': {'innovation': 'innovation and development', 'creativity': 'creative processes', 'new_development': 'new product/service development', 'competitive': 'competitive innovation'}},
216
+ "CUSTOMER_PROCESS": {'description': 'Processes focused on customer interaction and service', 'annotations': {'customer': 'customer-facing processes', 'service': 'customer service', 'relationship': 'customer relationship', 'satisfaction': 'customer satisfaction'}},
217
+ "FINANCIAL_PROCESS": {'description': 'Processes related to financial management', 'annotations': {'financial': 'financial management', 'accounting': 'accounting and reporting', 'control': 'financial control', 'compliance': 'financial compliance'}},
218
+ }
219
+
220
+ __all__ = [
221
+ "ManagementMethodologyEnum",
222
+ "StrategicFrameworkEnum",
223
+ "OperationalModelEnum",
224
+ "PerformanceMeasurementEnum",
225
+ "DecisionMakingStyleEnum",
226
+ "LeadershipStyleEnum",
227
+ "BusinessProcessTypeEnum",
228
+ ]