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,249 @@
1
+ """
2
+ Bioprocessing Scale-up Value Sets
3
+
4
+ Value sets for bioprocessing scale-up facilities, fermentation, and biomanufacturing
5
+ operations like those at ABPDU (Advanced Biofuels and Bioproducts Process Development Unit)
6
+
7
+ Generated from: bioprocessing/scale_up.yaml
8
+ """
9
+
10
+ from __future__ import annotations
11
+
12
+ from typing import Dict, Any, Optional
13
+ from valuesets.generators.rich_enum import RichEnum
14
+
15
+ class ProcessScaleEnum(RichEnum):
16
+ """
17
+ Scale of bioprocessing operations from lab bench to commercial production
18
+ """
19
+ # Enum members
20
+ BENCH_SCALE = "BENCH_SCALE"
21
+ PILOT_SCALE = "PILOT_SCALE"
22
+ DEMONSTRATION_SCALE = "DEMONSTRATION_SCALE"
23
+ PRODUCTION_SCALE = "PRODUCTION_SCALE"
24
+ MICROFLUIDIC_SCALE = "MICROFLUIDIC_SCALE"
25
+
26
+ # Set metadata after class creation
27
+ ProcessScaleEnum._metadata = {
28
+ "BENCH_SCALE": {'description': 'Laboratory bench scale (typically < 10 L)', 'annotations': {'volume_range': '0.1-10 L', 'typical_volume': '1-5 L', 'purpose': 'Initial development and screening'}},
29
+ "PILOT_SCALE": {'description': 'Pilot plant scale (10-1000 L)', 'annotations': {'volume_range': '10-1000 L', 'typical_volume': '50-500 L', 'purpose': 'Process development and optimization'}},
30
+ "DEMONSTRATION_SCALE": {'description': 'Demonstration scale (1000-10000 L)', 'annotations': {'volume_range': '1000-10000 L', 'typical_volume': '2000-5000 L', 'purpose': 'Technology demonstration and validation'}},
31
+ "PRODUCTION_SCALE": {'description': 'Commercial production scale (>10000 L)', 'annotations': {'volume_range': '>10000 L', 'typical_volume': '20000-200000 L', 'purpose': 'Commercial manufacturing'}},
32
+ "MICROFLUIDIC_SCALE": {'description': 'Microfluidic scale (<1 mL)', 'annotations': {'volume_range': '<1 mL', 'typical_volume': '1-1000 μL', 'purpose': 'High-throughput screening'}},
33
+ }
34
+
35
+ class BioreactorTypeEnum(RichEnum):
36
+ """
37
+ Types of bioreactors used in fermentation and cell culture
38
+ """
39
+ # Enum members
40
+ STIRRED_TANK = "STIRRED_TANK"
41
+ AIRLIFT = "AIRLIFT"
42
+ BUBBLE_COLUMN = "BUBBLE_COLUMN"
43
+ PACKED_BED = "PACKED_BED"
44
+ FLUIDIZED_BED = "FLUIDIZED_BED"
45
+ MEMBRANE = "MEMBRANE"
46
+ WAVE_BAG = "WAVE_BAG"
47
+ HOLLOW_FIBER = "HOLLOW_FIBER"
48
+ PHOTOBIOREACTOR = "PHOTOBIOREACTOR"
49
+
50
+ # Set metadata after class creation
51
+ BioreactorTypeEnum._metadata = {
52
+ "STIRRED_TANK": {'description': 'Stirred tank reactor (STR/CSTR)', 'annotations': {'mixing': 'Mechanical agitation', 'common_volumes': '1-200000 L'}},
53
+ "AIRLIFT": {'description': 'Airlift bioreactor', 'annotations': {'mixing': 'Gas sparging', 'advantages': 'Low shear, no mechanical parts'}},
54
+ "BUBBLE_COLUMN": {'description': 'Bubble column bioreactor', 'annotations': {'mixing': 'Gas bubbling', 'advantages': 'Simple design, good mass transfer'}},
55
+ "PACKED_BED": {'description': 'Packed bed bioreactor', 'annotations': {'configuration': 'Fixed bed of immobilized cells/enzymes', 'flow': 'Continuous'}},
56
+ "FLUIDIZED_BED": {'description': 'Fluidized bed bioreactor', 'annotations': {'configuration': 'Suspended solid particles', 'mixing': 'Fluid flow'}},
57
+ "MEMBRANE": {'description': 'Membrane bioreactor', 'meaning': 'ENVO:03600010', 'annotations': {'feature': 'Integrated membrane separation', 'application': 'Cell retention, product separation'}},
58
+ "WAVE_BAG": {'description': 'Wave/rocking bioreactor', 'annotations': {'mixing': 'Rocking motion', 'advantages': 'Single-use, low shear'}},
59
+ "HOLLOW_FIBER": {'description': 'Hollow fiber bioreactor', 'annotations': {'configuration': 'Hollow fiber membranes', 'application': 'High-density cell culture'}},
60
+ "PHOTOBIOREACTOR": {'description': 'Photobioreactor for photosynthetic organisms', 'annotations': {'light_source': 'Required', 'organisms': 'Algae, cyanobacteria'}},
61
+ }
62
+
63
+ class FermentationModeEnum(RichEnum):
64
+ """
65
+ Modes of fermentation operation
66
+ """
67
+ # Enum members
68
+ BATCH = "BATCH"
69
+ FED_BATCH = "FED_BATCH"
70
+ CONTINUOUS = "CONTINUOUS"
71
+ PERFUSION = "PERFUSION"
72
+ REPEATED_BATCH = "REPEATED_BATCH"
73
+ SEMI_CONTINUOUS = "SEMI_CONTINUOUS"
74
+
75
+ # Set metadata after class creation
76
+ FermentationModeEnum._metadata = {
77
+ "BATCH": {'description': 'Batch fermentation', 'meaning': 'MSIO:0000181', 'annotations': {'operation': 'All nutrients added at start', 'duration': 'Fixed time period'}},
78
+ "FED_BATCH": {'description': 'Fed-batch fermentation', 'annotations': {'operation': 'Nutrients added during run', 'advantage': 'Control of growth rate'}},
79
+ "CONTINUOUS": {'description': 'Continuous fermentation (chemostat)', 'meaning': 'MSIO:0000155', 'annotations': {'operation': 'Continuous feed and harvest', 'steady_state': True}},
80
+ "PERFUSION": {'description': 'Perfusion culture', 'annotations': {'operation': 'Continuous media exchange with cell retention', 'application': 'High-density cell culture'}},
81
+ "REPEATED_BATCH": {'description': 'Repeated batch fermentation', 'annotations': {'operation': 'Sequential batches with partial harvest', 'advantage': 'Reduced downtime'}},
82
+ "SEMI_CONTINUOUS": {'description': 'Semi-continuous operation', 'annotations': {'operation': 'Periodic harvest and refill', 'advantage': 'Extended production'}},
83
+ }
84
+
85
+ class OxygenationStrategyEnum(RichEnum):
86
+ """
87
+ Oxygen supply strategies for fermentation
88
+ """
89
+ # Enum members
90
+ AEROBIC = "AEROBIC"
91
+ ANAEROBIC = "ANAEROBIC"
92
+ MICROAEROBIC = "MICROAEROBIC"
93
+ FACULTATIVE = "FACULTATIVE"
94
+
95
+ # Set metadata after class creation
96
+ OxygenationStrategyEnum._metadata = {
97
+ "AEROBIC": {'description': 'Aerobic with active aeration', 'annotations': {'oxygen': 'Required', 'typical_DO': '20-80% saturation'}},
98
+ "ANAEROBIC": {'description': 'Anaerobic (no oxygen)', 'annotations': {'oxygen': 'Excluded', 'atmosphere': 'N2 or CO2'}},
99
+ "MICROAEROBIC": {'description': 'Microaerobic (limited oxygen)', 'annotations': {'oxygen': 'Limited', 'typical_DO': '<5% saturation'}},
100
+ "FACULTATIVE": {'description': 'Facultative (with/without oxygen)', 'annotations': {'oxygen': 'Optional', 'flexibility': 'Organism-dependent'}},
101
+ }
102
+
103
+ class AgitationTypeEnum(RichEnum):
104
+ """
105
+ Types of agitation/mixing in bioreactors
106
+ """
107
+ # Enum members
108
+ RUSHTON_TURBINE = "RUSHTON_TURBINE"
109
+ PITCHED_BLADE = "PITCHED_BLADE"
110
+ MARINE_PROPELLER = "MARINE_PROPELLER"
111
+ ANCHOR = "ANCHOR"
112
+ HELICAL_RIBBON = "HELICAL_RIBBON"
113
+ MAGNETIC_BAR = "MAGNETIC_BAR"
114
+ ORBITAL_SHAKING = "ORBITAL_SHAKING"
115
+ NO_AGITATION = "NO_AGITATION"
116
+
117
+ # Set metadata after class creation
118
+ AgitationTypeEnum._metadata = {
119
+ "RUSHTON_TURBINE": {'description': 'Rushton turbine impeller', 'annotations': {'type': 'Radial flow', 'power_number': '5-6'}},
120
+ "PITCHED_BLADE": {'description': 'Pitched blade turbine', 'annotations': {'type': 'Axial flow', 'angle': '45 degrees'}},
121
+ "MARINE_PROPELLER": {'description': 'Marine propeller', 'annotations': {'type': 'Axial flow', 'low_shear': True}},
122
+ "ANCHOR": {'description': 'Anchor impeller', 'annotations': {'type': 'Close clearance', 'viscous_fluids': True}},
123
+ "HELICAL_RIBBON": {'description': 'Helical ribbon impeller', 'annotations': {'type': 'Close clearance', 'high_viscosity': True}},
124
+ "MAGNETIC_BAR": {'description': 'Magnetic stir bar', 'annotations': {'scale': 'Laboratory', 'volume': '<5 L'}},
125
+ "ORBITAL_SHAKING": {'description': 'Orbital shaking', 'annotations': {'type': 'Platform shaker', 'application': 'Shake flasks'}},
126
+ "NO_AGITATION": {'description': 'No mechanical agitation', 'annotations': {'mixing': 'Gas sparging or static'}},
127
+ }
128
+
129
+ class DownstreamProcessEnum(RichEnum):
130
+ """
131
+ Downstream processing unit operations
132
+ """
133
+ # Enum members
134
+ CENTRIFUGATION = "CENTRIFUGATION"
135
+ FILTRATION = "FILTRATION"
136
+ CHROMATOGRAPHY = "CHROMATOGRAPHY"
137
+ EXTRACTION = "EXTRACTION"
138
+ PRECIPITATION = "PRECIPITATION"
139
+ EVAPORATION = "EVAPORATION"
140
+ DISTILLATION = "DISTILLATION"
141
+ DRYING = "DRYING"
142
+ HOMOGENIZATION = "HOMOGENIZATION"
143
+
144
+ # Set metadata after class creation
145
+ DownstreamProcessEnum._metadata = {
146
+ "CENTRIFUGATION": {'description': 'Centrifugal separation', 'meaning': 'CHMO:0002010', 'annotations': {'principle': 'Density difference', 'types': 'Disk stack, tubular, decanter'}},
147
+ "FILTRATION": {'description': 'Filtration (micro/ultra/nano)', 'meaning': 'CHMO:0001640', 'annotations': {'types': 'Dead-end, crossflow, depth'}},
148
+ "CHROMATOGRAPHY": {'description': 'Chromatographic separation', 'meaning': 'CHMO:0001000', 'annotations': {'types': 'Ion exchange, affinity, size exclusion'}},
149
+ "EXTRACTION": {'description': 'Liquid-liquid extraction', 'meaning': 'CHMO:0001577', 'annotations': {'principle': 'Partitioning between phases'}},
150
+ "PRECIPITATION": {'description': 'Precipitation/crystallization', 'meaning': 'CHMO:0001688', 'annotations': {'agents': 'Salts, solvents, pH'}},
151
+ "EVAPORATION": {'description': 'Evaporation/concentration', 'meaning': 'CHMO:0001574', 'annotations': {'types': 'Falling film, MVR, TVR'}},
152
+ "DISTILLATION": {'description': 'Distillation', 'meaning': 'CHMO:0001534', 'annotations': {'principle': 'Boiling point difference'}},
153
+ "DRYING": {'description': 'Drying operations', 'meaning': 'CHMO:0001551', 'annotations': {'types': 'Spray, freeze, vacuum'}},
154
+ "HOMOGENIZATION": {'description': 'Cell disruption/homogenization', 'annotations': {'methods': 'High pressure, bead mill'}},
155
+ }
156
+
157
+ class FeedstockTypeEnum(RichEnum):
158
+ """
159
+ Types of feedstocks for bioprocessing
160
+ """
161
+ # Enum members
162
+ GLUCOSE = "GLUCOSE"
163
+ SUCROSE = "SUCROSE"
164
+ GLYCEROL = "GLYCEROL"
165
+ MOLASSES = "MOLASSES"
166
+ CORN_STEEP_LIQUOR = "CORN_STEEP_LIQUOR"
167
+ YEAST_EXTRACT = "YEAST_EXTRACT"
168
+ LIGNOCELLULOSIC = "LIGNOCELLULOSIC"
169
+ METHANOL = "METHANOL"
170
+ WASTE_STREAM = "WASTE_STREAM"
171
+
172
+ # Set metadata after class creation
173
+ FeedstockTypeEnum._metadata = {
174
+ "GLUCOSE": {'description': 'Glucose/dextrose', 'meaning': 'CHEBI:17234', 'annotations': {'source': 'Corn, sugarcane', 'carbon_source': True}},
175
+ "SUCROSE": {'description': 'Sucrose', 'meaning': 'CHEBI:17992', 'annotations': {'source': 'Sugarcane, sugar beet', 'carbon_source': True}},
176
+ "GLYCEROL": {'description': 'Glycerol', 'meaning': 'CHEBI:17754', 'annotations': {'source': 'Biodiesel byproduct', 'carbon_source': True}},
177
+ "MOLASSES": {'description': 'Molasses', 'meaning': 'CHEBI:83163', 'annotations': {'source': 'Sugar processing byproduct', 'complex_medium': True}},
178
+ "CORN_STEEP_LIQUOR": {'description': 'Corn steep liquor', 'annotations': {'source': 'Corn wet milling', 'nitrogen_source': True}},
179
+ "YEAST_EXTRACT": {'description': 'Yeast extract', 'meaning': 'FOODON:03315426', 'annotations': {'source': 'Autolyzed yeast', 'complex_nutrient': True}},
180
+ "LIGNOCELLULOSIC": {'description': 'Lignocellulosic biomass', 'annotations': {'source': 'Agricultural residues, wood', 'pretreatment': 'Required'}},
181
+ "METHANOL": {'description': 'Methanol', 'meaning': 'CHEBI:17790', 'annotations': {'carbon_source': True, 'methylotrophic': True}},
182
+ "WASTE_STREAM": {'description': 'Industrial waste stream', 'annotations': {'variable_composition': True, 'sustainability': 'Circular economy'}},
183
+ }
184
+
185
+ class ProductTypeEnum(RichEnum):
186
+ """
187
+ Types of products from bioprocessing
188
+ """
189
+ # Enum members
190
+ BIOFUEL = "BIOFUEL"
191
+ PROTEIN = "PROTEIN"
192
+ ENZYME = "ENZYME"
193
+ ORGANIC_ACID = "ORGANIC_ACID"
194
+ AMINO_ACID = "AMINO_ACID"
195
+ ANTIBIOTIC = "ANTIBIOTIC"
196
+ VITAMIN = "VITAMIN"
197
+ BIOPOLYMER = "BIOPOLYMER"
198
+ BIOMASS = "BIOMASS"
199
+ SECONDARY_METABOLITE = "SECONDARY_METABOLITE"
200
+
201
+ # Set metadata after class creation
202
+ ProductTypeEnum._metadata = {
203
+ "BIOFUEL": {'description': 'Biofuel (ethanol, biodiesel, etc.)', 'meaning': 'CHEBI:33292', 'annotations': {'category': 'Energy'}},
204
+ "PROTEIN": {'description': 'Recombinant protein', 'meaning': 'NCIT:C17021', 'annotations': {'category': 'Biopharmaceutical'}},
205
+ "ENZYME": {'description': 'Industrial enzyme', 'meaning': 'NCIT:C16554', 'annotations': {'category': 'Biocatalyst'}},
206
+ "ORGANIC_ACID": {'description': 'Organic acid (citric, lactic, etc.)', 'meaning': 'CHEBI:64709', 'annotations': {'category': 'Chemical'}},
207
+ "AMINO_ACID": {'description': 'Amino acid', 'meaning': 'CHEBI:33709', 'annotations': {'category': 'Nutritional'}},
208
+ "ANTIBIOTIC": {'description': 'Antibiotic', 'meaning': 'CHEBI:33281', 'annotations': {'category': 'Pharmaceutical'}},
209
+ "VITAMIN": {'description': 'Vitamin', 'meaning': 'CHEBI:33229', 'annotations': {'category': 'Nutritional'}},
210
+ "BIOPOLYMER": {'description': 'Biopolymer (PHA, PLA, etc.)', 'meaning': 'CHEBI:33694', 'annotations': {'category': 'Material'}},
211
+ "BIOMASS": {'description': 'Microbial biomass', 'meaning': 'ENVO:01000155', 'annotations': {'category': 'Feed/food'}},
212
+ "SECONDARY_METABOLITE": {'description': 'Secondary metabolite', 'meaning': 'CHEBI:25212', 'annotations': {'category': 'Specialty chemical'}},
213
+ }
214
+
215
+ class SterilizationMethodEnum(RichEnum):
216
+ """
217
+ Methods for sterilization in bioprocessing
218
+ """
219
+ # Enum members
220
+ STEAM_IN_PLACE = "STEAM_IN_PLACE"
221
+ AUTOCLAVE = "AUTOCLAVE"
222
+ FILTER_STERILIZATION = "FILTER_STERILIZATION"
223
+ GAMMA_IRRADIATION = "GAMMA_IRRADIATION"
224
+ ETHYLENE_OXIDE = "ETHYLENE_OXIDE"
225
+ UV_STERILIZATION = "UV_STERILIZATION"
226
+ CHEMICAL_STERILIZATION = "CHEMICAL_STERILIZATION"
227
+
228
+ # Set metadata after class creation
229
+ SterilizationMethodEnum._metadata = {
230
+ "STEAM_IN_PLACE": {'description': 'Steam in place (SIP)', 'annotations': {'temperature': '121-134°C', 'time': '15-30 min'}},
231
+ "AUTOCLAVE": {'description': 'Autoclave sterilization', 'meaning': 'CHMO:0002846', 'annotations': {'temperature': '121°C', 'pressure': '15 psi'}},
232
+ "FILTER_STERILIZATION": {'description': 'Filter sterilization (0.2 μm)', 'annotations': {'pore_size': '0.2 μm', 'heat_labile': True}},
233
+ "GAMMA_IRRADIATION": {'description': 'Gamma irradiation', 'annotations': {'dose': '25-40 kGy', 'single_use': True}},
234
+ "ETHYLENE_OXIDE": {'description': 'Ethylene oxide sterilization', 'annotations': {'temperature': '30-60°C', 'plastic_compatible': True}},
235
+ "UV_STERILIZATION": {'description': 'UV sterilization', 'annotations': {'wavelength': '254 nm', 'surface_only': True}},
236
+ "CHEMICAL_STERILIZATION": {'description': 'Chemical sterilization', 'annotations': {'agents': 'Bleach, alcohol, peroxide', 'contact_time': 'Variable'}},
237
+ }
238
+
239
+ __all__ = [
240
+ "ProcessScaleEnum",
241
+ "BioreactorTypeEnum",
242
+ "FermentationModeEnum",
243
+ "OxygenationStrategyEnum",
244
+ "AgitationTypeEnum",
245
+ "DownstreamProcessEnum",
246
+ "FeedstockTypeEnum",
247
+ "ProductTypeEnum",
248
+ "SterilizationMethodEnum",
249
+ ]
@@ -0,0 +1 @@
1
+ """Auto-generated package."""
@@ -0,0 +1,275 @@
1
+ """
2
+ Human Resources Management and Workforce Classifications
3
+
4
+ Employment types, HR functions, compensation structures, performance management, and workforce development classifications. Based on labor standards, HR best practices, and organizational development frameworks.
5
+
6
+ Generated from: business/human_resources.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 EmploymentTypeEnum(RichEnum):
15
+ """
16
+ Types of employment arrangements and contracts
17
+ """
18
+ # Enum members
19
+ FULL_TIME = "FULL_TIME"
20
+ PART_TIME = "PART_TIME"
21
+ CONTRACT = "CONTRACT"
22
+ TEMPORARY = "TEMPORARY"
23
+ FREELANCE = "FREELANCE"
24
+ INTERN = "INTERN"
25
+ SEASONAL = "SEASONAL"
26
+ CONSULTANT = "CONSULTANT"
27
+ VOLUNTEER = "VOLUNTEER"
28
+
29
+ # Set metadata after class creation
30
+ EmploymentTypeEnum._metadata = {
31
+ "FULL_TIME": {'description': 'Regular full-time employment status', 'annotations': {'hours': 'typically 40 hours per week', 'benefits': 'full benefits package', 'classification': 'exempt or non-exempt', 'stability': 'permanent position', 'commitment': 'full organizational commitment'}},
32
+ "PART_TIME": {'description': 'Regular part-time employment status', 'annotations': {'hours': 'less than full-time hours', 'benefits': 'limited or prorated benefits', 'flexibility': 'flexible scheduling', 'classification': 'typically non-exempt', 'commitment': 'ongoing but reduced hours'}},
33
+ "CONTRACT": {'description': 'Fixed-term contractual employment', 'annotations': {'duration': 'defined contract period', 'relationship': 'contractual relationship', 'benefits': 'limited benefits', 'termination': 'defined end date', 'purpose': 'specific project or duration'}},
34
+ "TEMPORARY": {'description': 'Short-term temporary employment', 'annotations': {'duration': 'short-term assignment', 'agency': 'often through staffing agency', 'benefits': 'minimal benefits', 'purpose': 'seasonal or project work', 'flexibility': 'high flexibility'}},
35
+ "FREELANCE": {'description': 'Independent contractor or freelance work', 'annotations': {'relationship': 'independent contractor', 'benefits': 'no traditional benefits', 'control': 'high work autonomy', 'taxes': 'responsible for own taxes', 'projects': 'project-based work'}},
36
+ "INTERN": {'description': 'Student or entry-level internship program', 'annotations': {'purpose': 'learning and experience', 'duration': 'limited duration', 'compensation': 'may be paid or unpaid', 'education': 'educational component', 'supervision': 'mentorship and guidance'}},
37
+ "SEASONAL": {'description': 'Employment tied to seasonal business needs', 'annotations': {'pattern': 'recurring seasonal pattern', 'duration': 'specific seasons', 'industry': 'retail, agriculture, tourism', 'return': 'potential for seasonal return', 'benefits': 'limited benefits'}},
38
+ "CONSULTANT": {'description': 'Professional consulting services', 'annotations': {'expertise': 'specialized expertise', 'relationship': 'advisory relationship', 'independence': 'independent professional', 'project': 'project or retainer basis', 'value': 'strategic value-add'}},
39
+ "VOLUNTEER": {'description': 'Unpaid volunteer service', 'annotations': {'compensation': 'unpaid service', 'motivation': 'altruistic motivation', 'commitment': 'voluntary commitment', 'purpose': 'mission-driven work', 'recognition': 'non-monetary recognition'}},
40
+ }
41
+
42
+ class JobLevelEnum(RichEnum):
43
+ """
44
+ Organizational job levels and career progression
45
+ """
46
+ # Enum members
47
+ ENTRY_LEVEL = "ENTRY_LEVEL"
48
+ JUNIOR = "JUNIOR"
49
+ MID_LEVEL = "MID_LEVEL"
50
+ SENIOR = "SENIOR"
51
+ LEAD = "LEAD"
52
+ MANAGER = "MANAGER"
53
+ DIRECTOR = "DIRECTOR"
54
+ VP = "VP"
55
+ C_LEVEL = "C_LEVEL"
56
+
57
+ # Set metadata after class creation
58
+ JobLevelEnum._metadata = {
59
+ "ENTRY_LEVEL": {'description': 'Beginning career level positions', 'annotations': {'experience': '0-2 years experience', 'responsibilities': 'basic operational tasks', 'supervision': 'high supervision required', 'development': 'learning and development focus', 'career_stage': 'career beginning'}},
60
+ "JUNIOR": {'description': 'Junior professional level', 'annotations': {'experience': '2-4 years experience', 'responsibilities': 'routine professional tasks', 'independence': 'some independence', 'mentorship': 'receiving mentorship', 'skill_building': 'skill development phase'}},
61
+ "MID_LEVEL": {'description': 'Experienced professional level', 'annotations': {'experience': '4-8 years experience', 'responsibilities': 'complex project work', 'independence': 'high independence', 'mentorship': 'providing and receiving mentorship', 'expertise': 'developing expertise'}},
62
+ "SENIOR": {'description': 'Senior professional level', 'annotations': {'experience': '8+ years experience', 'responsibilities': 'strategic project leadership', 'expertise': 'subject matter expertise', 'mentorship': 'mentoring others', 'influence': 'organizational influence'}},
63
+ "LEAD": {'description': 'Team leadership role', 'annotations': {'responsibility': 'team leadership', 'people_management': 'direct reports', 'coordination': 'team coordination', 'accountability': 'team results', 'development': 'team development'}},
64
+ "MANAGER": {'description': 'Management level position', 'annotations': {'scope': 'departmental management', 'people_management': 'multiple direct reports', 'budget': 'budget responsibility', 'strategy': 'tactical strategy', 'operations': 'operational management'}},
65
+ "DIRECTOR": {'description': 'Director level executive', 'annotations': {'scope': 'multi-departmental oversight', 'strategy': 'strategic planning', 'leadership': 'organizational leadership', 'stakeholders': 'senior stakeholder management', 'results': 'business results accountability'}},
66
+ "VP": {'description': 'Vice President executive level', 'annotations': {'scope': 'business unit or functional area', 'strategy': 'strategic leadership', 'board': 'board interaction', 'organization': 'organizational impact', 'succession': 'succession planning'}},
67
+ "C_LEVEL": {'description': 'Chief executive level', 'annotations': {'scope': 'enterprise-wide responsibility', 'governance': 'corporate governance', 'vision': 'organizational vision', 'stakeholders': 'external stakeholder management', 'fiduciary': 'fiduciary responsibility'}},
68
+ }
69
+
70
+ class HRFunctionEnum(RichEnum):
71
+ """
72
+ Human resources functional areas and specializations
73
+ """
74
+ # Enum members
75
+ TALENT_ACQUISITION = "TALENT_ACQUISITION"
76
+ EMPLOYEE_RELATIONS = "EMPLOYEE_RELATIONS"
77
+ COMPENSATION_BENEFITS = "COMPENSATION_BENEFITS"
78
+ PERFORMANCE_MANAGEMENT = "PERFORMANCE_MANAGEMENT"
79
+ LEARNING_DEVELOPMENT = "LEARNING_DEVELOPMENT"
80
+ HR_ANALYTICS = "HR_ANALYTICS"
81
+ ORGANIZATIONAL_DEVELOPMENT = "ORGANIZATIONAL_DEVELOPMENT"
82
+ HR_COMPLIANCE = "HR_COMPLIANCE"
83
+ HRIS_TECHNOLOGY = "HRIS_TECHNOLOGY"
84
+
85
+ # Set metadata after class creation
86
+ HRFunctionEnum._metadata = {
87
+ "TALENT_ACQUISITION": {'description': 'Recruitment and hiring functions', 'annotations': {'activities': 'sourcing, screening, interviewing, hiring', 'focus': 'attracting and selecting talent', 'metrics': 'time to hire, quality of hire', 'strategy': 'workforce planning', 'technology': 'ATS and recruitment tools'}},
88
+ "EMPLOYEE_RELATIONS": {'description': 'Managing employee relationships and workplace issues', 'annotations': {'activities': 'conflict resolution, grievance handling', 'focus': 'positive employee relations', 'communication': 'employee communication', 'culture': 'workplace culture', 'mediation': 'dispute resolution'}},
89
+ "COMPENSATION_BENEFITS": {'description': 'Managing compensation and benefits programs', 'annotations': {'activities': 'salary administration, benefits design', 'analysis': 'market analysis and benchmarking', 'compliance': 'regulatory compliance', 'cost': 'cost management', 'competitiveness': 'market competitiveness'}},
90
+ "PERFORMANCE_MANAGEMENT": {'description': 'Employee performance evaluation and improvement', 'annotations': {'activities': 'performance reviews, goal setting', 'development': 'performance improvement', 'measurement': 'performance metrics', 'feedback': 'continuous feedback', 'coaching': 'performance coaching'}},
91
+ "LEARNING_DEVELOPMENT": {'description': 'Employee training and development programs', 'annotations': {'activities': 'training design, skill development', 'career': 'career development', 'leadership': 'leadership development', 'compliance': 'compliance training', 'technology': 'learning management systems'}},
92
+ "HR_ANALYTICS": {'description': 'HR data analysis and workforce metrics', 'annotations': {'activities': 'data analysis, metrics reporting', 'insights': 'workforce insights', 'predictive': 'predictive analytics', 'dashboard': 'HR dashboards', 'decision_support': 'data-driven decisions'}},
93
+ "ORGANIZATIONAL_DEVELOPMENT": {'description': 'Organizational design and change management', 'annotations': {'activities': 'change management, culture transformation', 'design': 'organizational design', 'effectiveness': 'organizational effectiveness', 'culture': 'culture development', 'transformation': 'business transformation'}},
94
+ "HR_COMPLIANCE": {'description': 'Employment law compliance and risk management', 'annotations': {'activities': 'policy development, compliance monitoring', 'legal': 'employment law compliance', 'risk': 'HR risk management', 'auditing': 'compliance auditing', 'documentation': 'record keeping'}},
95
+ "HRIS_TECHNOLOGY": {'description': 'HR information systems and technology', 'annotations': {'activities': 'system administration, data management', 'systems': 'HRIS implementation', 'automation': 'process automation', 'integration': 'system integration', 'security': 'data security'}},
96
+ }
97
+
98
+ class CompensationTypeEnum(RichEnum):
99
+ """
100
+ Types of employee compensation structures
101
+ """
102
+ # Enum members
103
+ BASE_SALARY = "BASE_SALARY"
104
+ HOURLY_WAGE = "HOURLY_WAGE"
105
+ COMMISSION = "COMMISSION"
106
+ BONUS = "BONUS"
107
+ STOCK_OPTIONS = "STOCK_OPTIONS"
108
+ PROFIT_SHARING = "PROFIT_SHARING"
109
+ PIECE_RATE = "PIECE_RATE"
110
+ STIPEND = "STIPEND"
111
+
112
+ # Set metadata after class creation
113
+ CompensationTypeEnum._metadata = {
114
+ "BASE_SALARY": {'description': 'Fixed annual salary compensation', 'annotations': {'structure': 'fixed annual amount', 'payment': 'regular pay periods', 'exemption': 'often exempt from overtime', 'predictability': 'predictable income', 'market': 'market benchmarked'}},
115
+ "HOURLY_WAGE": {'description': 'Compensation paid per hour worked', 'annotations': {'structure': 'rate per hour', 'overtime': 'overtime eligible', 'tracking': 'time tracking required', 'variability': 'variable based on hours', 'classification': 'non-exempt employees'}},
116
+ "COMMISSION": {'description': 'Performance-based sales commission', 'annotations': {'structure': 'percentage of sales', 'performance': 'performance-based', 'variability': 'highly variable', 'motivation': 'sales motivation', 'risk': 'income risk'}},
117
+ "BONUS": {'description': 'Additional compensation for performance', 'annotations': {'timing': 'annual or periodic', 'criteria': 'performance criteria', 'discretionary': 'may be discretionary', 'recognition': 'performance recognition', 'retention': 'retention tool'}},
118
+ "STOCK_OPTIONS": {'description': 'Equity compensation through stock options', 'annotations': {'equity': 'equity participation', 'vesting': 'vesting schedule', 'retention': 'long-term retention', 'upside': 'company growth upside', 'risk': 'market risk'}},
119
+ "PROFIT_SHARING": {'description': 'Sharing of company profits with employees', 'annotations': {'structure': 'percentage of profits', 'performance': 'company performance based', 'culture': 'ownership culture', 'variability': 'variable based on profits', 'alignment': 'interest alignment'}},
120
+ "PIECE_RATE": {'description': 'Compensation based on units produced', 'annotations': {'structure': 'rate per unit produced', 'productivity': 'productivity-based', 'manufacturing': 'common in manufacturing', 'measurement': 'output measurement', 'efficiency': 'efficiency incentive'}},
121
+ "STIPEND": {'description': 'Fixed regular allowance or payment', 'annotations': {'purpose': 'specific purpose payment', 'amount': 'modest fixed amount', 'regularity': 'regular payment', 'supplemental': 'supplemental income', 'categories': 'interns, volunteers, board members'}},
122
+ }
123
+
124
+ class PerformanceRatingEnum(RichEnum):
125
+ """
126
+ Employee performance evaluation ratings
127
+ """
128
+ # Enum members
129
+ EXCEEDS_EXPECTATIONS = "EXCEEDS_EXPECTATIONS"
130
+ MEETS_EXPECTATIONS = "MEETS_EXPECTATIONS"
131
+ PARTIALLY_MEETS = "PARTIALLY_MEETS"
132
+ DOES_NOT_MEET = "DOES_NOT_MEET"
133
+ OUTSTANDING = "OUTSTANDING"
134
+
135
+ # Set metadata after class creation
136
+ PerformanceRatingEnum._metadata = {
137
+ "EXCEEDS_EXPECTATIONS": {'description': 'Performance significantly above expected standards', 'annotations': {'level': 'top performance tier', 'impact': 'significant business impact', 'recognition': 'high recognition', 'development': 'stretch assignments', 'percentage': 'typically 10-20% of population'}},
138
+ "MEETS_EXPECTATIONS": {'description': 'Performance meets all expected standards', 'annotations': {'level': 'satisfactory performance', 'standards': 'meets all job requirements', 'competency': 'demonstrates required competencies', 'consistency': 'consistent performance', 'percentage': 'typically 60-70% of population'}},
139
+ "PARTIALLY_MEETS": {'description': 'Performance meets some but not all standards', 'annotations': {'level': 'below standard performance', 'improvement': 'improvement needed', 'support': 'additional support required', 'development': 'focused development plan', 'percentage': 'typically 10-15% of population'}},
140
+ "DOES_NOT_MEET": {'description': 'Performance below acceptable standards', 'annotations': {'level': 'unsatisfactory performance', 'action': 'performance improvement plan', 'timeline': 'improvement timeline', 'consequences': 'potential consequences', 'percentage': 'typically 5-10% of population'}},
141
+ "OUTSTANDING": {'description': 'Exceptional performance far exceeding standards', 'annotations': {'level': 'exceptional performance', 'impact': 'transformational impact', 'leadership': 'demonstrates leadership', 'innovation': 'innovation and excellence', 'rarity': 'rare rating'}},
142
+ }
143
+
144
+ class RecruitmentSourceEnum(RichEnum):
145
+ """
146
+ Sources for candidate recruitment and sourcing
147
+ """
148
+ # Enum members
149
+ INTERNAL_REFERRAL = "INTERNAL_REFERRAL"
150
+ JOB_BOARDS = "JOB_BOARDS"
151
+ COMPANY_WEBSITE = "COMPANY_WEBSITE"
152
+ SOCIAL_MEDIA = "SOCIAL_MEDIA"
153
+ RECRUITMENT_AGENCIES = "RECRUITMENT_AGENCIES"
154
+ CAMPUS_RECRUITING = "CAMPUS_RECRUITING"
155
+ PROFESSIONAL_NETWORKS = "PROFESSIONAL_NETWORKS"
156
+ HEADHUNTERS = "HEADHUNTERS"
157
+
158
+ # Set metadata after class creation
159
+ RecruitmentSourceEnum._metadata = {
160
+ "INTERNAL_REFERRAL": {'description': 'Candidates referred by current employees', 'annotations': {'source': 'employee networks', 'quality': 'typically high quality', 'cost': 'low cost per hire', 'cultural_fit': 'good cultural fit', 'retention': 'higher retention rates'}},
161
+ "JOB_BOARDS": {'description': 'Candidates from online job posting sites', 'annotations': {'reach': 'broad candidate reach', 'cost': 'moderate cost', 'volume': 'high application volume', 'screening': 'requires screening', 'examples': 'Indeed, LinkedIn, Monster'}},
162
+ "COMPANY_WEBSITE": {'description': 'Candidates applying through company website', 'annotations': {'interest': 'high company interest', 'brand': 'employer brand driven', 'quality': 'targeted candidates', 'direct': 'direct application', 'cost': 'low incremental cost'}},
163
+ "SOCIAL_MEDIA": {'description': 'Candidates sourced through social media platforms', 'annotations': {'platforms': 'LinkedIn, Facebook, Twitter', 'active': 'active sourcing', 'networking': 'professional networking', 'targeting': 'targeted approach', 'engagement': 'relationship building'}},
164
+ "RECRUITMENT_AGENCIES": {'description': 'Candidates sourced through recruitment firms', 'annotations': {'expertise': 'specialized expertise', 'cost': 'higher cost', 'speed': 'faster time to hire', 'screening': 'pre-screened candidates', 'specialization': 'industry specialization'}},
165
+ "CAMPUS_RECRUITING": {'description': 'Recruitment from educational institutions', 'annotations': {'target': 'students and new graduates', 'programs': 'internship and graduate programs', 'relationships': 'university relationships', 'pipeline': 'talent pipeline', 'early_career': 'early career focus'}},
166
+ "PROFESSIONAL_NETWORKS": {'description': 'Recruitment through professional associations', 'annotations': {'industry': 'industry-specific networks', 'expertise': 'specialized expertise', 'relationships': 'professional relationships', 'credibility': 'professional credibility', 'targeted': 'targeted recruitment'}},
167
+ "HEADHUNTERS": {'description': 'Executive-level recruitment specialists', 'annotations': {'level': 'senior and executive roles', 'expertise': 'specialized search expertise', 'network': 'extensive professional networks', 'confidential': 'confidential searches', 'cost': 'premium cost'}},
168
+ }
169
+
170
+ class TrainingTypeEnum(RichEnum):
171
+ """
172
+ Types of employee training and development programs
173
+ """
174
+ # Enum members
175
+ ONBOARDING = "ONBOARDING"
176
+ TECHNICAL_SKILLS = "TECHNICAL_SKILLS"
177
+ LEADERSHIP_DEVELOPMENT = "LEADERSHIP_DEVELOPMENT"
178
+ COMPLIANCE_TRAINING = "COMPLIANCE_TRAINING"
179
+ SOFT_SKILLS = "SOFT_SKILLS"
180
+ SAFETY_TRAINING = "SAFETY_TRAINING"
181
+ DIVERSITY_INCLUSION = "DIVERSITY_INCLUSION"
182
+ CROSS_TRAINING = "CROSS_TRAINING"
183
+
184
+ # Set metadata after class creation
185
+ TrainingTypeEnum._metadata = {
186
+ "ONBOARDING": {'description': 'Orientation and integration training for new hires', 'annotations': {'timing': 'first days/weeks of employment', 'purpose': 'integration and orientation', 'content': 'company culture, policies, role basics', 'delivery': 'structured program', 'outcome': 'successful integration'}},
187
+ "TECHNICAL_SKILLS": {'description': 'Job-specific technical competency development', 'annotations': {'focus': 'technical competencies', 'relevance': 'job-specific skills', 'methods': 'hands-on training', 'certification': 'may include certification', 'updating': 'continuous skill updates'}},
188
+ "LEADERSHIP_DEVELOPMENT": {'description': 'Management and leadership capability building', 'annotations': {'target': 'managers and high-potential employees', 'skills': 'leadership and management skills', 'development': 'long-term development', 'mentorship': 'coaching and mentorship', 'succession': 'succession planning'}},
189
+ "COMPLIANCE_TRAINING": {'description': 'Required training for regulatory compliance', 'annotations': {'requirement': 'mandatory training', 'regulation': 'regulatory compliance', 'documentation': 'completion tracking', 'frequency': 'periodic updates', 'risk': 'risk mitigation'}},
190
+ "SOFT_SKILLS": {'description': 'Communication and interpersonal skills training', 'annotations': {'skills': 'communication, teamwork, problem-solving', 'application': 'broadly applicable', 'development': 'personal development', 'effectiveness': 'workplace effectiveness', 'collaboration': 'collaboration skills'}},
191
+ "SAFETY_TRAINING": {'description': 'Workplace safety and health training', 'annotations': {'focus': 'safety procedures and practices', 'compliance': 'OSHA compliance', 'prevention': 'accident prevention', 'emergency': 'emergency procedures', 'culture': 'safety culture'}},
192
+ "DIVERSITY_INCLUSION": {'description': 'Training on diversity, equity, and inclusion', 'annotations': {'awareness': 'cultural awareness', 'bias': 'unconscious bias training', 'inclusion': 'inclusive practices', 'culture': 'inclusive culture', 'behavior': 'behavior change'}},
193
+ "CROSS_TRAINING": {'description': 'Training in multiple roles or departments', 'annotations': {'flexibility': 'workforce flexibility', 'coverage': 'backup coverage', 'development': 'career development', 'understanding': 'broader understanding', 'collaboration': 'improved collaboration'}},
194
+ }
195
+
196
+ class EmployeeStatusEnum(RichEnum):
197
+ """
198
+ Current employment status classifications
199
+ """
200
+ # Enum members
201
+ ACTIVE = "ACTIVE"
202
+ ON_LEAVE = "ON_LEAVE"
203
+ PROBATIONARY = "PROBATIONARY"
204
+ SUSPENDED = "SUSPENDED"
205
+ TERMINATED = "TERMINATED"
206
+ RETIRED = "RETIRED"
207
+
208
+ # Set metadata after class creation
209
+ EmployeeStatusEnum._metadata = {
210
+ "ACTIVE": {'description': 'Currently employed and working', 'annotations': {'status': 'actively working', 'benefits': 'receiving full benefits', 'responsibilities': 'fulfilling job responsibilities', 'engagement': 'expected engagement', 'performance': 'subject to performance management'}},
211
+ "ON_LEAVE": {'description': 'Temporarily away from work on approved leave', 'annotations': {'temporary': 'temporary absence', 'approval': 'approved leave', 'return': 'expected return date', 'benefits': 'may retain benefits', 'types': 'medical, family, personal leave'}},
212
+ "PROBATIONARY": {'description': 'New employee in probationary period', 'annotations': {'duration': 'defined probationary period', 'evaluation': 'ongoing evaluation', 'benefits': 'limited or delayed benefits', 'termination': 'easier termination', 'assessment': 'performance assessment'}},
213
+ "SUSPENDED": {'description': 'Temporarily suspended from work', 'annotations': {'disciplinary': 'disciplinary action', 'investigation': 'pending investigation', 'pay': 'with or without pay', 'temporary': 'temporary status', 'review': 'pending review'}},
214
+ "TERMINATED": {'description': 'Employment has been terminated', 'annotations': {'end': 'employment ended', 'voluntary': 'voluntary or involuntary', 'benefits': 'benefits cessation', 'final': 'final status', 'documentation': 'termination documentation'}},
215
+ "RETIRED": {'description': 'Retired from employment', 'annotations': {'voluntary': 'voluntary departure', 'age': 'retirement age', 'benefits': 'retirement benefits', 'service': 'completed service', 'transition': 'career transition'}},
216
+ }
217
+
218
+ class WorkArrangementEnum(RichEnum):
219
+ """
220
+ Work location and arrangement types
221
+ """
222
+ # Enum members
223
+ ON_SITE = "ON_SITE"
224
+ REMOTE = "REMOTE"
225
+ HYBRID = "HYBRID"
226
+ FIELD_WORK = "FIELD_WORK"
227
+ TELECOMMUTE = "TELECOMMUTE"
228
+
229
+ # Set metadata after class creation
230
+ WorkArrangementEnum._metadata = {
231
+ "ON_SITE": {'description': 'Work performed at company facilities', 'annotations': {'location': 'company premises', 'collaboration': 'in-person collaboration', 'supervision': 'direct supervision', 'equipment': 'company-provided equipment', 'culture': 'office culture participation'}},
232
+ "REMOTE": {'description': 'Work performed away from company facilities', 'annotations': {'location': 'home or remote location', 'technology': 'technology-enabled work', 'flexibility': 'location flexibility', 'independence': 'high independence', 'communication': 'virtual communication'}},
233
+ "HYBRID": {'description': 'Combination of on-site and remote work', 'annotations': {'flexibility': 'location flexibility', 'balance': 'office and remote balance', 'collaboration': 'mixed collaboration modes', 'scheduling': 'flexible scheduling', 'adaptation': 'adaptive work style'}},
234
+ "FIELD_WORK": {'description': 'Work performed at client or field locations', 'annotations': {'location': 'customer or field locations', 'travel': 'travel requirements', 'independence': 'field independence', 'client': 'client interaction', 'mobility': 'mobile work style'}},
235
+ "TELECOMMUTE": {'description': 'Regular remote work arrangement', 'annotations': {'arrangement': 'formal remote arrangement', 'technology': 'telecommunication technology', 'productivity': 'productivity focus', 'work_life': 'work-life integration', 'communication': 'virtual team communication'}},
236
+ }
237
+
238
+ class BenefitsCategoryEnum(RichEnum):
239
+ """
240
+ Categories of employee benefits and compensation
241
+ """
242
+ # Enum members
243
+ HEALTH_INSURANCE = "HEALTH_INSURANCE"
244
+ RETIREMENT_BENEFITS = "RETIREMENT_BENEFITS"
245
+ PAID_TIME_OFF = "PAID_TIME_OFF"
246
+ LIFE_INSURANCE = "LIFE_INSURANCE"
247
+ FLEXIBLE_BENEFITS = "FLEXIBLE_BENEFITS"
248
+ WELLNESS_PROGRAMS = "WELLNESS_PROGRAMS"
249
+ PROFESSIONAL_DEVELOPMENT = "PROFESSIONAL_DEVELOPMENT"
250
+ WORK_LIFE_BALANCE = "WORK_LIFE_BALANCE"
251
+
252
+ # Set metadata after class creation
253
+ BenefitsCategoryEnum._metadata = {
254
+ "HEALTH_INSURANCE": {'description': 'Medical, dental, and vision insurance coverage', 'annotations': {'coverage': 'medical coverage', 'family': 'family coverage options', 'cost_sharing': 'employer contribution', 'networks': 'provider networks', 'essential': 'essential benefit'}},
255
+ "RETIREMENT_BENEFITS": {'description': 'Retirement savings and pension plans', 'annotations': {'savings': '401(k) or retirement savings', 'matching': 'employer matching', 'vesting': 'vesting schedules', 'planning': 'retirement planning', 'long_term': 'long-term benefit'}},
256
+ "PAID_TIME_OFF": {'description': 'Vacation, sick leave, and personal time', 'annotations': {'vacation': 'vacation time', 'sick': 'sick leave', 'personal': 'personal days', 'accrual': 'accrual systems', 'work_life': 'work-life balance'}},
257
+ "LIFE_INSURANCE": {'description': 'Life and disability insurance coverage', 'annotations': {'protection': 'financial protection', 'beneficiaries': 'beneficiary designation', 'disability': 'disability coverage', 'group': 'group coverage', 'peace_of_mind': 'financial security'}},
258
+ "FLEXIBLE_BENEFITS": {'description': 'Flexible spending and benefit choice options', 'annotations': {'choice': 'benefit choice', 'spending': 'flexible spending accounts', 'customization': 'personalized benefits', 'tax_advantage': 'tax advantages', 'lifestyle': 'lifestyle accommodation'}},
259
+ "WELLNESS_PROGRAMS": {'description': 'Employee health and wellness initiatives', 'annotations': {'health': 'health promotion', 'fitness': 'fitness programs', 'mental_health': 'mental health support', 'prevention': 'preventive care', 'culture': 'wellness culture'}},
260
+ "PROFESSIONAL_DEVELOPMENT": {'description': 'Training, education, and career development benefits', 'annotations': {'education': 'continuing education', 'training': 'professional training', 'career': 'career development', 'skill': 'skill enhancement', 'growth': 'professional growth'}},
261
+ "WORK_LIFE_BALANCE": {'description': 'Benefits supporting work-life integration', 'annotations': {'flexibility': 'work flexibility', 'family': 'family support', 'childcare': 'childcare assistance', 'elder_care': 'elder care support', 'balance': 'life balance'}},
262
+ }
263
+
264
+ __all__ = [
265
+ "EmploymentTypeEnum",
266
+ "JobLevelEnum",
267
+ "HRFunctionEnum",
268
+ "CompensationTypeEnum",
269
+ "PerformanceRatingEnum",
270
+ "RecruitmentSourceEnum",
271
+ "TrainingTypeEnum",
272
+ "EmployeeStatusEnum",
273
+ "WorkArrangementEnum",
274
+ "BenefitsCategoryEnum",
275
+ ]