valuesets 0.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,752 @@
|
|
|
1
|
+
name: human_resources
|
|
2
|
+
title: Human Resources Management and Workforce Classifications
|
|
3
|
+
description: 'Employment types, HR functions, compensation structures, performance
|
|
4
|
+
management, and workforce development classifications. Based on labor standards,
|
|
5
|
+
HR best practices, and organizational development frameworks.'
|
|
6
|
+
id: https://w3id.org/linkml/valuesets/business/human_resources
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
valuesets: https://w3id.org/valuesets/
|
|
11
|
+
SHRM: https://www.shrm.org/
|
|
12
|
+
BLS: https://www.bls.gov/
|
|
13
|
+
FLSA: https://www.dol.gov/agencies/whd/flsa/
|
|
14
|
+
EEO: https://www.eeoc.gov/
|
|
15
|
+
default_prefix: valuesets
|
|
16
|
+
slots:
|
|
17
|
+
employment_type:
|
|
18
|
+
description: Type of employment arrangement
|
|
19
|
+
range: EmploymentTypeEnum
|
|
20
|
+
job_level:
|
|
21
|
+
description: Organizational job level or seniority
|
|
22
|
+
range: JobLevelEnum
|
|
23
|
+
hr_function:
|
|
24
|
+
description: Human resources functional area
|
|
25
|
+
range: HRFunctionEnum
|
|
26
|
+
compensation_type:
|
|
27
|
+
description: Type of employee compensation
|
|
28
|
+
range: CompensationTypeEnum
|
|
29
|
+
performance_rating:
|
|
30
|
+
description: Employee performance evaluation rating
|
|
31
|
+
range: PerformanceRatingEnum
|
|
32
|
+
recruitment_source:
|
|
33
|
+
description: Source of candidate recruitment
|
|
34
|
+
range: RecruitmentSourceEnum
|
|
35
|
+
training_type:
|
|
36
|
+
description: Type of employee training or development
|
|
37
|
+
range: TrainingTypeEnum
|
|
38
|
+
employee_status:
|
|
39
|
+
description: Current employment status
|
|
40
|
+
range: EmployeeStatusEnum
|
|
41
|
+
work_arrangement:
|
|
42
|
+
description: Work location and arrangement type
|
|
43
|
+
range: WorkArrangementEnum
|
|
44
|
+
benefits_category:
|
|
45
|
+
description: Category of employee benefits
|
|
46
|
+
range: BenefitsCategoryEnum
|
|
47
|
+
enums:
|
|
48
|
+
EmploymentTypeEnum:
|
|
49
|
+
description: Types of employment arrangements and contracts
|
|
50
|
+
permissible_values:
|
|
51
|
+
FULL_TIME:
|
|
52
|
+
title: Full-Time Employment
|
|
53
|
+
description: Regular full-time employment status
|
|
54
|
+
annotations:
|
|
55
|
+
hours: "typically 40 hours per week"
|
|
56
|
+
benefits: "full benefits package"
|
|
57
|
+
classification: "exempt or non-exempt"
|
|
58
|
+
stability: "permanent position"
|
|
59
|
+
commitment: "full organizational commitment"
|
|
60
|
+
PART_TIME:
|
|
61
|
+
title: Part-Time Employment
|
|
62
|
+
description: Regular part-time employment status
|
|
63
|
+
annotations:
|
|
64
|
+
hours: "less than full-time hours"
|
|
65
|
+
benefits: "limited or prorated benefits"
|
|
66
|
+
flexibility: "flexible scheduling"
|
|
67
|
+
classification: "typically non-exempt"
|
|
68
|
+
commitment: "ongoing but reduced hours"
|
|
69
|
+
CONTRACT:
|
|
70
|
+
title: Contract Employment
|
|
71
|
+
description: Fixed-term contractual employment
|
|
72
|
+
annotations:
|
|
73
|
+
duration: "defined contract period"
|
|
74
|
+
relationship: "contractual relationship"
|
|
75
|
+
benefits: "limited benefits"
|
|
76
|
+
termination: "defined end date"
|
|
77
|
+
purpose: "specific project or duration"
|
|
78
|
+
TEMPORARY:
|
|
79
|
+
title: Temporary Employment
|
|
80
|
+
description: Short-term temporary employment
|
|
81
|
+
annotations:
|
|
82
|
+
duration: "short-term assignment"
|
|
83
|
+
agency: "often through staffing agency"
|
|
84
|
+
benefits: "minimal benefits"
|
|
85
|
+
purpose: "seasonal or project work"
|
|
86
|
+
flexibility: "high flexibility"
|
|
87
|
+
FREELANCE:
|
|
88
|
+
title: Freelance/Independent Contractor
|
|
89
|
+
description: Independent contractor or freelance work
|
|
90
|
+
annotations:
|
|
91
|
+
relationship: "independent contractor"
|
|
92
|
+
benefits: "no traditional benefits"
|
|
93
|
+
control: "high work autonomy"
|
|
94
|
+
taxes: "responsible for own taxes"
|
|
95
|
+
projects: "project-based work"
|
|
96
|
+
INTERN:
|
|
97
|
+
title: Internship
|
|
98
|
+
description: Student or entry-level internship program
|
|
99
|
+
annotations:
|
|
100
|
+
purpose: "learning and experience"
|
|
101
|
+
duration: "limited duration"
|
|
102
|
+
compensation: "may be paid or unpaid"
|
|
103
|
+
education: "educational component"
|
|
104
|
+
supervision: "mentorship and guidance"
|
|
105
|
+
SEASONAL:
|
|
106
|
+
title: Seasonal Employment
|
|
107
|
+
description: Employment tied to seasonal business needs
|
|
108
|
+
annotations:
|
|
109
|
+
pattern: "recurring seasonal pattern"
|
|
110
|
+
duration: "specific seasons"
|
|
111
|
+
industry: "retail, agriculture, tourism"
|
|
112
|
+
return: "potential for seasonal return"
|
|
113
|
+
benefits: "limited benefits"
|
|
114
|
+
CONSULTANT:
|
|
115
|
+
title: Consultant
|
|
116
|
+
description: Professional consulting services
|
|
117
|
+
annotations:
|
|
118
|
+
expertise: "specialized expertise"
|
|
119
|
+
relationship: "advisory relationship"
|
|
120
|
+
independence: "independent professional"
|
|
121
|
+
project: "project or retainer basis"
|
|
122
|
+
value: "strategic value-add"
|
|
123
|
+
VOLUNTEER:
|
|
124
|
+
title: Volunteer
|
|
125
|
+
description: Unpaid volunteer service
|
|
126
|
+
annotations:
|
|
127
|
+
compensation: "unpaid service"
|
|
128
|
+
motivation: "altruistic motivation"
|
|
129
|
+
commitment: "voluntary commitment"
|
|
130
|
+
purpose: "mission-driven work"
|
|
131
|
+
recognition: "non-monetary recognition"
|
|
132
|
+
JobLevelEnum:
|
|
133
|
+
description: Organizational job levels and career progression
|
|
134
|
+
permissible_values:
|
|
135
|
+
ENTRY_LEVEL:
|
|
136
|
+
title: Entry Level
|
|
137
|
+
description: Beginning career level positions
|
|
138
|
+
annotations:
|
|
139
|
+
experience: "0-2 years experience"
|
|
140
|
+
responsibilities: "basic operational tasks"
|
|
141
|
+
supervision: "high supervision required"
|
|
142
|
+
development: "learning and development focus"
|
|
143
|
+
career_stage: "career beginning"
|
|
144
|
+
JUNIOR:
|
|
145
|
+
title: Junior Level
|
|
146
|
+
description: Junior professional level
|
|
147
|
+
annotations:
|
|
148
|
+
experience: "2-4 years experience"
|
|
149
|
+
responsibilities: "routine professional tasks"
|
|
150
|
+
independence: "some independence"
|
|
151
|
+
mentorship: "receiving mentorship"
|
|
152
|
+
skill_building: "skill development phase"
|
|
153
|
+
MID_LEVEL:
|
|
154
|
+
title: Mid-Level
|
|
155
|
+
description: Experienced professional level
|
|
156
|
+
annotations:
|
|
157
|
+
experience: "4-8 years experience"
|
|
158
|
+
responsibilities: "complex project work"
|
|
159
|
+
independence: "high independence"
|
|
160
|
+
mentorship: "providing and receiving mentorship"
|
|
161
|
+
expertise: "developing expertise"
|
|
162
|
+
SENIOR:
|
|
163
|
+
title: Senior Level
|
|
164
|
+
description: Senior professional level
|
|
165
|
+
annotations:
|
|
166
|
+
experience: "8+ years experience"
|
|
167
|
+
responsibilities: "strategic project leadership"
|
|
168
|
+
expertise: "subject matter expertise"
|
|
169
|
+
mentorship: "mentoring others"
|
|
170
|
+
influence: "organizational influence"
|
|
171
|
+
LEAD:
|
|
172
|
+
title: Team Lead
|
|
173
|
+
description: Team leadership role
|
|
174
|
+
annotations:
|
|
175
|
+
responsibility: "team leadership"
|
|
176
|
+
people_management: "direct reports"
|
|
177
|
+
coordination: "team coordination"
|
|
178
|
+
accountability: "team results"
|
|
179
|
+
development: "team development"
|
|
180
|
+
MANAGER:
|
|
181
|
+
title: Manager
|
|
182
|
+
description: Management level position
|
|
183
|
+
annotations:
|
|
184
|
+
scope: "departmental management"
|
|
185
|
+
people_management: "multiple direct reports"
|
|
186
|
+
budget: "budget responsibility"
|
|
187
|
+
strategy: "tactical strategy"
|
|
188
|
+
operations: "operational management"
|
|
189
|
+
DIRECTOR:
|
|
190
|
+
title: Director
|
|
191
|
+
description: Director level executive
|
|
192
|
+
annotations:
|
|
193
|
+
scope: "multi-departmental oversight"
|
|
194
|
+
strategy: "strategic planning"
|
|
195
|
+
leadership: "organizational leadership"
|
|
196
|
+
stakeholders: "senior stakeholder management"
|
|
197
|
+
results: "business results accountability"
|
|
198
|
+
VP:
|
|
199
|
+
title: Vice President
|
|
200
|
+
description: Vice President executive level
|
|
201
|
+
annotations:
|
|
202
|
+
scope: "business unit or functional area"
|
|
203
|
+
strategy: "strategic leadership"
|
|
204
|
+
board: "board interaction"
|
|
205
|
+
organization: "organizational impact"
|
|
206
|
+
succession: "succession planning"
|
|
207
|
+
C_LEVEL:
|
|
208
|
+
title: C-Level Executive
|
|
209
|
+
description: Chief executive level
|
|
210
|
+
annotations:
|
|
211
|
+
scope: "enterprise-wide responsibility"
|
|
212
|
+
governance: "corporate governance"
|
|
213
|
+
vision: "organizational vision"
|
|
214
|
+
stakeholders: "external stakeholder management"
|
|
215
|
+
fiduciary: "fiduciary responsibility"
|
|
216
|
+
HRFunctionEnum:
|
|
217
|
+
description: Human resources functional areas and specializations
|
|
218
|
+
permissible_values:
|
|
219
|
+
TALENT_ACQUISITION:
|
|
220
|
+
title: Talent Acquisition
|
|
221
|
+
description: Recruitment and hiring functions
|
|
222
|
+
annotations:
|
|
223
|
+
activities: "sourcing, screening, interviewing, hiring"
|
|
224
|
+
focus: "attracting and selecting talent"
|
|
225
|
+
metrics: "time to hire, quality of hire"
|
|
226
|
+
strategy: "workforce planning"
|
|
227
|
+
technology: "ATS and recruitment tools"
|
|
228
|
+
EMPLOYEE_RELATIONS:
|
|
229
|
+
title: Employee Relations
|
|
230
|
+
description: Managing employee relationships and workplace issues
|
|
231
|
+
annotations:
|
|
232
|
+
activities: "conflict resolution, grievance handling"
|
|
233
|
+
focus: "positive employee relations"
|
|
234
|
+
communication: "employee communication"
|
|
235
|
+
culture: "workplace culture"
|
|
236
|
+
mediation: "dispute resolution"
|
|
237
|
+
COMPENSATION_BENEFITS:
|
|
238
|
+
title: Compensation and Benefits
|
|
239
|
+
description: Managing compensation and benefits programs
|
|
240
|
+
annotations:
|
|
241
|
+
activities: "salary administration, benefits design"
|
|
242
|
+
analysis: "market analysis and benchmarking"
|
|
243
|
+
compliance: "regulatory compliance"
|
|
244
|
+
cost: "cost management"
|
|
245
|
+
competitiveness: "market competitiveness"
|
|
246
|
+
PERFORMANCE_MANAGEMENT:
|
|
247
|
+
title: Performance Management
|
|
248
|
+
description: Employee performance evaluation and improvement
|
|
249
|
+
annotations:
|
|
250
|
+
activities: "performance reviews, goal setting"
|
|
251
|
+
development: "performance improvement"
|
|
252
|
+
measurement: "performance metrics"
|
|
253
|
+
feedback: "continuous feedback"
|
|
254
|
+
coaching: "performance coaching"
|
|
255
|
+
LEARNING_DEVELOPMENT:
|
|
256
|
+
title: Learning and Development
|
|
257
|
+
description: Employee training and development programs
|
|
258
|
+
annotations:
|
|
259
|
+
activities: "training design, skill development"
|
|
260
|
+
career: "career development"
|
|
261
|
+
leadership: "leadership development"
|
|
262
|
+
compliance: "compliance training"
|
|
263
|
+
technology: "learning management systems"
|
|
264
|
+
HR_ANALYTICS:
|
|
265
|
+
title: HR Analytics
|
|
266
|
+
description: HR data analysis and workforce metrics
|
|
267
|
+
annotations:
|
|
268
|
+
activities: "data analysis, metrics reporting"
|
|
269
|
+
insights: "workforce insights"
|
|
270
|
+
predictive: "predictive analytics"
|
|
271
|
+
dashboard: "HR dashboards"
|
|
272
|
+
decision_support: "data-driven decisions"
|
|
273
|
+
ORGANIZATIONAL_DEVELOPMENT:
|
|
274
|
+
title: Organizational Development
|
|
275
|
+
description: Organizational design and change management
|
|
276
|
+
annotations:
|
|
277
|
+
activities: "change management, culture transformation"
|
|
278
|
+
design: "organizational design"
|
|
279
|
+
effectiveness: "organizational effectiveness"
|
|
280
|
+
culture: "culture development"
|
|
281
|
+
transformation: "business transformation"
|
|
282
|
+
HR_COMPLIANCE:
|
|
283
|
+
title: HR Compliance
|
|
284
|
+
description: Employment law compliance and risk management
|
|
285
|
+
annotations:
|
|
286
|
+
activities: "policy development, compliance monitoring"
|
|
287
|
+
legal: "employment law compliance"
|
|
288
|
+
risk: "HR risk management"
|
|
289
|
+
auditing: "compliance auditing"
|
|
290
|
+
documentation: "record keeping"
|
|
291
|
+
HRIS_TECHNOLOGY:
|
|
292
|
+
title: HRIS and Technology
|
|
293
|
+
description: HR information systems and technology
|
|
294
|
+
annotations:
|
|
295
|
+
activities: "system administration, data management"
|
|
296
|
+
systems: "HRIS implementation"
|
|
297
|
+
automation: "process automation"
|
|
298
|
+
integration: "system integration"
|
|
299
|
+
security: "data security"
|
|
300
|
+
CompensationTypeEnum:
|
|
301
|
+
description: Types of employee compensation structures
|
|
302
|
+
permissible_values:
|
|
303
|
+
BASE_SALARY:
|
|
304
|
+
title: Base Salary
|
|
305
|
+
description: Fixed annual salary compensation
|
|
306
|
+
annotations:
|
|
307
|
+
structure: "fixed annual amount"
|
|
308
|
+
payment: "regular pay periods"
|
|
309
|
+
exemption: "often exempt from overtime"
|
|
310
|
+
predictability: "predictable income"
|
|
311
|
+
market: "market benchmarked"
|
|
312
|
+
HOURLY_WAGE:
|
|
313
|
+
title: Hourly Wage
|
|
314
|
+
description: Compensation paid per hour worked
|
|
315
|
+
annotations:
|
|
316
|
+
structure: "rate per hour"
|
|
317
|
+
overtime: "overtime eligible"
|
|
318
|
+
tracking: "time tracking required"
|
|
319
|
+
variability: "variable based on hours"
|
|
320
|
+
classification: "non-exempt employees"
|
|
321
|
+
COMMISSION:
|
|
322
|
+
title: Commission
|
|
323
|
+
description: Performance-based sales commission
|
|
324
|
+
annotations:
|
|
325
|
+
structure: "percentage of sales"
|
|
326
|
+
performance: "performance-based"
|
|
327
|
+
variability: "highly variable"
|
|
328
|
+
motivation: "sales motivation"
|
|
329
|
+
risk: "income risk"
|
|
330
|
+
BONUS:
|
|
331
|
+
title: Performance Bonus
|
|
332
|
+
description: Additional compensation for performance
|
|
333
|
+
annotations:
|
|
334
|
+
timing: "annual or periodic"
|
|
335
|
+
criteria: "performance criteria"
|
|
336
|
+
discretionary: "may be discretionary"
|
|
337
|
+
recognition: "performance recognition"
|
|
338
|
+
retention: "retention tool"
|
|
339
|
+
STOCK_OPTIONS:
|
|
340
|
+
title: Stock Options
|
|
341
|
+
description: Equity compensation through stock options
|
|
342
|
+
annotations:
|
|
343
|
+
equity: "equity participation"
|
|
344
|
+
vesting: "vesting schedule"
|
|
345
|
+
retention: "long-term retention"
|
|
346
|
+
upside: "company growth upside"
|
|
347
|
+
risk: "market risk"
|
|
348
|
+
PROFIT_SHARING:
|
|
349
|
+
title: Profit Sharing
|
|
350
|
+
description: Sharing of company profits with employees
|
|
351
|
+
annotations:
|
|
352
|
+
structure: "percentage of profits"
|
|
353
|
+
performance: "company performance based"
|
|
354
|
+
culture: "ownership culture"
|
|
355
|
+
variability: "variable based on profits"
|
|
356
|
+
alignment: "interest alignment"
|
|
357
|
+
PIECE_RATE:
|
|
358
|
+
title: Piece Rate
|
|
359
|
+
description: Compensation based on units produced
|
|
360
|
+
annotations:
|
|
361
|
+
structure: "rate per unit produced"
|
|
362
|
+
productivity: "productivity-based"
|
|
363
|
+
manufacturing: "common in manufacturing"
|
|
364
|
+
measurement: "output measurement"
|
|
365
|
+
efficiency: "efficiency incentive"
|
|
366
|
+
STIPEND:
|
|
367
|
+
title: Stipend
|
|
368
|
+
description: Fixed regular allowance or payment
|
|
369
|
+
annotations:
|
|
370
|
+
purpose: "specific purpose payment"
|
|
371
|
+
amount: "modest fixed amount"
|
|
372
|
+
regularity: "regular payment"
|
|
373
|
+
supplemental: "supplemental income"
|
|
374
|
+
categories: "interns, volunteers, board members"
|
|
375
|
+
PerformanceRatingEnum:
|
|
376
|
+
description: Employee performance evaluation ratings
|
|
377
|
+
permissible_values:
|
|
378
|
+
EXCEEDS_EXPECTATIONS:
|
|
379
|
+
title: Exceeds Expectations
|
|
380
|
+
description: Performance significantly above expected standards
|
|
381
|
+
annotations:
|
|
382
|
+
level: "top performance tier"
|
|
383
|
+
impact: "significant business impact"
|
|
384
|
+
recognition: "high recognition"
|
|
385
|
+
development: "stretch assignments"
|
|
386
|
+
percentage: "typically 10-20% of population"
|
|
387
|
+
MEETS_EXPECTATIONS:
|
|
388
|
+
title: Meets Expectations
|
|
389
|
+
description: Performance meets all expected standards
|
|
390
|
+
annotations:
|
|
391
|
+
level: "satisfactory performance"
|
|
392
|
+
standards: "meets all job requirements"
|
|
393
|
+
competency: "demonstrates required competencies"
|
|
394
|
+
consistency: "consistent performance"
|
|
395
|
+
percentage: "typically 60-70% of population"
|
|
396
|
+
PARTIALLY_MEETS:
|
|
397
|
+
title: Partially Meets Expectations
|
|
398
|
+
description: Performance meets some but not all standards
|
|
399
|
+
annotations:
|
|
400
|
+
level: "below standard performance"
|
|
401
|
+
improvement: "improvement needed"
|
|
402
|
+
support: "additional support required"
|
|
403
|
+
development: "focused development plan"
|
|
404
|
+
percentage: "typically 10-15% of population"
|
|
405
|
+
DOES_NOT_MEET:
|
|
406
|
+
title: Does Not Meet Expectations
|
|
407
|
+
description: Performance below acceptable standards
|
|
408
|
+
annotations:
|
|
409
|
+
level: "unsatisfactory performance"
|
|
410
|
+
action: "performance improvement plan"
|
|
411
|
+
timeline: "improvement timeline"
|
|
412
|
+
consequences: "potential consequences"
|
|
413
|
+
percentage: "typically 5-10% of population"
|
|
414
|
+
OUTSTANDING:
|
|
415
|
+
title: Outstanding
|
|
416
|
+
description: Exceptional performance far exceeding standards
|
|
417
|
+
annotations:
|
|
418
|
+
level: "exceptional performance"
|
|
419
|
+
impact: "transformational impact"
|
|
420
|
+
leadership: "demonstrates leadership"
|
|
421
|
+
innovation: "innovation and excellence"
|
|
422
|
+
rarity: "rare rating"
|
|
423
|
+
RecruitmentSourceEnum:
|
|
424
|
+
description: Sources for candidate recruitment and sourcing
|
|
425
|
+
permissible_values:
|
|
426
|
+
INTERNAL_REFERRAL:
|
|
427
|
+
title: Internal Employee Referral
|
|
428
|
+
description: Candidates referred by current employees
|
|
429
|
+
annotations:
|
|
430
|
+
source: "employee networks"
|
|
431
|
+
quality: "typically high quality"
|
|
432
|
+
cost: "low cost per hire"
|
|
433
|
+
cultural_fit: "good cultural fit"
|
|
434
|
+
retention: "higher retention rates"
|
|
435
|
+
JOB_BOARDS:
|
|
436
|
+
title: Online Job Boards
|
|
437
|
+
description: Candidates from online job posting sites
|
|
438
|
+
annotations:
|
|
439
|
+
reach: "broad candidate reach"
|
|
440
|
+
cost: "moderate cost"
|
|
441
|
+
volume: "high application volume"
|
|
442
|
+
screening: "requires screening"
|
|
443
|
+
examples: "Indeed, LinkedIn, Monster"
|
|
444
|
+
COMPANY_WEBSITE:
|
|
445
|
+
title: Company Career Website
|
|
446
|
+
description: Candidates applying through company website
|
|
447
|
+
annotations:
|
|
448
|
+
interest: "high company interest"
|
|
449
|
+
brand: "employer brand driven"
|
|
450
|
+
quality: "targeted candidates"
|
|
451
|
+
direct: "direct application"
|
|
452
|
+
cost: "low incremental cost"
|
|
453
|
+
SOCIAL_MEDIA:
|
|
454
|
+
title: Social Media Recruiting
|
|
455
|
+
description: Candidates sourced through social media platforms
|
|
456
|
+
annotations:
|
|
457
|
+
platforms: "LinkedIn, Facebook, Twitter"
|
|
458
|
+
active: "active sourcing"
|
|
459
|
+
networking: "professional networking"
|
|
460
|
+
targeting: "targeted approach"
|
|
461
|
+
engagement: "relationship building"
|
|
462
|
+
RECRUITMENT_AGENCIES:
|
|
463
|
+
title: External Recruitment Agencies
|
|
464
|
+
description: Candidates sourced through recruitment firms
|
|
465
|
+
annotations:
|
|
466
|
+
expertise: "specialized expertise"
|
|
467
|
+
cost: "higher cost"
|
|
468
|
+
speed: "faster time to hire"
|
|
469
|
+
screening: "pre-screened candidates"
|
|
470
|
+
specialization: "industry specialization"
|
|
471
|
+
CAMPUS_RECRUITING:
|
|
472
|
+
title: Campus and University Recruiting
|
|
473
|
+
description: Recruitment from educational institutions
|
|
474
|
+
annotations:
|
|
475
|
+
target: "students and new graduates"
|
|
476
|
+
programs: "internship and graduate programs"
|
|
477
|
+
relationships: "university relationships"
|
|
478
|
+
pipeline: "talent pipeline"
|
|
479
|
+
early_career: "early career focus"
|
|
480
|
+
PROFESSIONAL_NETWORKS:
|
|
481
|
+
title: Professional Networks
|
|
482
|
+
description: Recruitment through professional associations
|
|
483
|
+
annotations:
|
|
484
|
+
industry: "industry-specific networks"
|
|
485
|
+
expertise: "specialized expertise"
|
|
486
|
+
relationships: "professional relationships"
|
|
487
|
+
credibility: "professional credibility"
|
|
488
|
+
targeted: "targeted recruitment"
|
|
489
|
+
HEADHUNTERS:
|
|
490
|
+
title: Executive Search/Headhunters
|
|
491
|
+
description: Executive-level recruitment specialists
|
|
492
|
+
annotations:
|
|
493
|
+
level: "senior and executive roles"
|
|
494
|
+
expertise: "specialized search expertise"
|
|
495
|
+
network: "extensive professional networks"
|
|
496
|
+
confidential: "confidential searches"
|
|
497
|
+
cost: "premium cost"
|
|
498
|
+
TrainingTypeEnum:
|
|
499
|
+
description: Types of employee training and development programs
|
|
500
|
+
permissible_values:
|
|
501
|
+
ONBOARDING:
|
|
502
|
+
title: New Employee Onboarding
|
|
503
|
+
description: Orientation and integration training for new hires
|
|
504
|
+
annotations:
|
|
505
|
+
timing: "first days/weeks of employment"
|
|
506
|
+
purpose: "integration and orientation"
|
|
507
|
+
content: "company culture, policies, role basics"
|
|
508
|
+
delivery: "structured program"
|
|
509
|
+
outcome: "successful integration"
|
|
510
|
+
TECHNICAL_SKILLS:
|
|
511
|
+
title: Technical Skills Training
|
|
512
|
+
description: Job-specific technical competency development
|
|
513
|
+
annotations:
|
|
514
|
+
focus: "technical competencies"
|
|
515
|
+
relevance: "job-specific skills"
|
|
516
|
+
methods: "hands-on training"
|
|
517
|
+
certification: "may include certification"
|
|
518
|
+
updating: "continuous skill updates"
|
|
519
|
+
LEADERSHIP_DEVELOPMENT:
|
|
520
|
+
title: Leadership Development
|
|
521
|
+
description: Management and leadership capability building
|
|
522
|
+
annotations:
|
|
523
|
+
target: "managers and high-potential employees"
|
|
524
|
+
skills: "leadership and management skills"
|
|
525
|
+
development: "long-term development"
|
|
526
|
+
mentorship: "coaching and mentorship"
|
|
527
|
+
succession: "succession planning"
|
|
528
|
+
COMPLIANCE_TRAINING:
|
|
529
|
+
title: Compliance Training
|
|
530
|
+
description: Required training for regulatory compliance
|
|
531
|
+
annotations:
|
|
532
|
+
requirement: "mandatory training"
|
|
533
|
+
regulation: "regulatory compliance"
|
|
534
|
+
documentation: "completion tracking"
|
|
535
|
+
frequency: "periodic updates"
|
|
536
|
+
risk: "risk mitigation"
|
|
537
|
+
SOFT_SKILLS:
|
|
538
|
+
title: Soft Skills Development
|
|
539
|
+
description: Communication and interpersonal skills training
|
|
540
|
+
annotations:
|
|
541
|
+
skills: "communication, teamwork, problem-solving"
|
|
542
|
+
application: "broadly applicable"
|
|
543
|
+
development: "personal development"
|
|
544
|
+
effectiveness: "workplace effectiveness"
|
|
545
|
+
collaboration: "collaboration skills"
|
|
546
|
+
SAFETY_TRAINING:
|
|
547
|
+
title: Safety Training
|
|
548
|
+
description: Workplace safety and health training
|
|
549
|
+
annotations:
|
|
550
|
+
focus: "safety procedures and practices"
|
|
551
|
+
compliance: "OSHA compliance"
|
|
552
|
+
prevention: "accident prevention"
|
|
553
|
+
emergency: "emergency procedures"
|
|
554
|
+
culture: "safety culture"
|
|
555
|
+
DIVERSITY_INCLUSION:
|
|
556
|
+
title: Diversity and Inclusion Training
|
|
557
|
+
description: Training on diversity, equity, and inclusion
|
|
558
|
+
annotations:
|
|
559
|
+
awareness: "cultural awareness"
|
|
560
|
+
bias: "unconscious bias training"
|
|
561
|
+
inclusion: "inclusive practices"
|
|
562
|
+
culture: "inclusive culture"
|
|
563
|
+
behavior: "behavior change"
|
|
564
|
+
CROSS_TRAINING:
|
|
565
|
+
title: Cross-Training
|
|
566
|
+
description: Training in multiple roles or departments
|
|
567
|
+
annotations:
|
|
568
|
+
flexibility: "workforce flexibility"
|
|
569
|
+
coverage: "backup coverage"
|
|
570
|
+
development: "career development"
|
|
571
|
+
understanding: "broader understanding"
|
|
572
|
+
collaboration: "improved collaboration"
|
|
573
|
+
EmployeeStatusEnum:
|
|
574
|
+
description: Current employment status classifications
|
|
575
|
+
permissible_values:
|
|
576
|
+
ACTIVE:
|
|
577
|
+
title: Active Employment
|
|
578
|
+
description: Currently employed and working
|
|
579
|
+
annotations:
|
|
580
|
+
status: "actively working"
|
|
581
|
+
benefits: "receiving full benefits"
|
|
582
|
+
responsibilities: "fulfilling job responsibilities"
|
|
583
|
+
engagement: "expected engagement"
|
|
584
|
+
performance: "subject to performance management"
|
|
585
|
+
ON_LEAVE:
|
|
586
|
+
title: On Leave
|
|
587
|
+
description: Temporarily away from work on approved leave
|
|
588
|
+
annotations:
|
|
589
|
+
temporary: "temporary absence"
|
|
590
|
+
approval: "approved leave"
|
|
591
|
+
return: "expected return date"
|
|
592
|
+
benefits: "may retain benefits"
|
|
593
|
+
types: "medical, family, personal leave"
|
|
594
|
+
PROBATIONARY:
|
|
595
|
+
title: Probationary Period
|
|
596
|
+
description: New employee in probationary period
|
|
597
|
+
annotations:
|
|
598
|
+
duration: "defined probationary period"
|
|
599
|
+
evaluation: "ongoing evaluation"
|
|
600
|
+
benefits: "limited or delayed benefits"
|
|
601
|
+
termination: "easier termination"
|
|
602
|
+
assessment: "performance assessment"
|
|
603
|
+
SUSPENDED:
|
|
604
|
+
title: Suspended
|
|
605
|
+
description: Temporarily suspended from work
|
|
606
|
+
annotations:
|
|
607
|
+
disciplinary: "disciplinary action"
|
|
608
|
+
investigation: "pending investigation"
|
|
609
|
+
pay: "with or without pay"
|
|
610
|
+
temporary: "temporary status"
|
|
611
|
+
review: "pending review"
|
|
612
|
+
TERMINATED:
|
|
613
|
+
title: Terminated
|
|
614
|
+
description: Employment has been terminated
|
|
615
|
+
annotations:
|
|
616
|
+
end: "employment ended"
|
|
617
|
+
voluntary: "voluntary or involuntary"
|
|
618
|
+
benefits: "benefits cessation"
|
|
619
|
+
final: "final status"
|
|
620
|
+
documentation: "termination documentation"
|
|
621
|
+
RETIRED:
|
|
622
|
+
title: Retired
|
|
623
|
+
description: Retired from employment
|
|
624
|
+
annotations:
|
|
625
|
+
voluntary: "voluntary departure"
|
|
626
|
+
age: "retirement age"
|
|
627
|
+
benefits: "retirement benefits"
|
|
628
|
+
service: "completed service"
|
|
629
|
+
transition: "career transition"
|
|
630
|
+
WorkArrangementEnum:
|
|
631
|
+
description: Work location and arrangement types
|
|
632
|
+
permissible_values:
|
|
633
|
+
ON_SITE:
|
|
634
|
+
title: On-Site Work
|
|
635
|
+
description: Work performed at company facilities
|
|
636
|
+
annotations:
|
|
637
|
+
location: "company premises"
|
|
638
|
+
collaboration: "in-person collaboration"
|
|
639
|
+
supervision: "direct supervision"
|
|
640
|
+
equipment: "company-provided equipment"
|
|
641
|
+
culture: "office culture participation"
|
|
642
|
+
REMOTE:
|
|
643
|
+
title: Remote Work
|
|
644
|
+
description: Work performed away from company facilities
|
|
645
|
+
annotations:
|
|
646
|
+
location: "home or remote location"
|
|
647
|
+
technology: "technology-enabled work"
|
|
648
|
+
flexibility: "location flexibility"
|
|
649
|
+
independence: "high independence"
|
|
650
|
+
communication: "virtual communication"
|
|
651
|
+
HYBRID:
|
|
652
|
+
title: Hybrid Work
|
|
653
|
+
description: Combination of on-site and remote work
|
|
654
|
+
annotations:
|
|
655
|
+
flexibility: "location flexibility"
|
|
656
|
+
balance: "office and remote balance"
|
|
657
|
+
collaboration: "mixed collaboration modes"
|
|
658
|
+
scheduling: "flexible scheduling"
|
|
659
|
+
adaptation: "adaptive work style"
|
|
660
|
+
FIELD_WORK:
|
|
661
|
+
title: Field Work
|
|
662
|
+
description: Work performed at client or field locations
|
|
663
|
+
annotations:
|
|
664
|
+
location: "customer or field locations"
|
|
665
|
+
travel: "travel requirements"
|
|
666
|
+
independence: "field independence"
|
|
667
|
+
client: "client interaction"
|
|
668
|
+
mobility: "mobile work style"
|
|
669
|
+
TELECOMMUTE:
|
|
670
|
+
title: Telecommuting
|
|
671
|
+
description: Regular remote work arrangement
|
|
672
|
+
annotations:
|
|
673
|
+
arrangement: "formal remote arrangement"
|
|
674
|
+
technology: "telecommunication technology"
|
|
675
|
+
productivity: "productivity focus"
|
|
676
|
+
work_life: "work-life integration"
|
|
677
|
+
communication: "virtual team communication"
|
|
678
|
+
BenefitsCategoryEnum:
|
|
679
|
+
description: Categories of employee benefits and compensation
|
|
680
|
+
permissible_values:
|
|
681
|
+
HEALTH_INSURANCE:
|
|
682
|
+
title: Health Insurance
|
|
683
|
+
description: Medical, dental, and vision insurance coverage
|
|
684
|
+
annotations:
|
|
685
|
+
coverage: "medical coverage"
|
|
686
|
+
family: "family coverage options"
|
|
687
|
+
cost_sharing: "employer contribution"
|
|
688
|
+
networks: "provider networks"
|
|
689
|
+
essential: "essential benefit"
|
|
690
|
+
RETIREMENT_BENEFITS:
|
|
691
|
+
title: Retirement Benefits
|
|
692
|
+
description: Retirement savings and pension plans
|
|
693
|
+
annotations:
|
|
694
|
+
savings: "401(k) or retirement savings"
|
|
695
|
+
matching: "employer matching"
|
|
696
|
+
vesting: "vesting schedules"
|
|
697
|
+
planning: "retirement planning"
|
|
698
|
+
long_term: "long-term benefit"
|
|
699
|
+
PAID_TIME_OFF:
|
|
700
|
+
title: Paid Time Off
|
|
701
|
+
description: Vacation, sick leave, and personal time
|
|
702
|
+
annotations:
|
|
703
|
+
vacation: "vacation time"
|
|
704
|
+
sick: "sick leave"
|
|
705
|
+
personal: "personal days"
|
|
706
|
+
accrual: "accrual systems"
|
|
707
|
+
work_life: "work-life balance"
|
|
708
|
+
LIFE_INSURANCE:
|
|
709
|
+
title: Life Insurance
|
|
710
|
+
description: Life and disability insurance coverage
|
|
711
|
+
annotations:
|
|
712
|
+
protection: "financial protection"
|
|
713
|
+
beneficiaries: "beneficiary designation"
|
|
714
|
+
disability: "disability coverage"
|
|
715
|
+
group: "group coverage"
|
|
716
|
+
peace_of_mind: "financial security"
|
|
717
|
+
FLEXIBLE_BENEFITS:
|
|
718
|
+
title: Flexible Benefits
|
|
719
|
+
description: Flexible spending and benefit choice options
|
|
720
|
+
annotations:
|
|
721
|
+
choice: "benefit choice"
|
|
722
|
+
spending: "flexible spending accounts"
|
|
723
|
+
customization: "personalized benefits"
|
|
724
|
+
tax_advantage: "tax advantages"
|
|
725
|
+
lifestyle: "lifestyle accommodation"
|
|
726
|
+
WELLNESS_PROGRAMS:
|
|
727
|
+
title: Wellness Programs
|
|
728
|
+
description: Employee health and wellness initiatives
|
|
729
|
+
annotations:
|
|
730
|
+
health: "health promotion"
|
|
731
|
+
fitness: "fitness programs"
|
|
732
|
+
mental_health: "mental health support"
|
|
733
|
+
prevention: "preventive care"
|
|
734
|
+
culture: "wellness culture"
|
|
735
|
+
PROFESSIONAL_DEVELOPMENT:
|
|
736
|
+
title: Professional Development
|
|
737
|
+
description: Training, education, and career development benefits
|
|
738
|
+
annotations:
|
|
739
|
+
education: "continuing education"
|
|
740
|
+
training: "professional training"
|
|
741
|
+
career: "career development"
|
|
742
|
+
skill: "skill enhancement"
|
|
743
|
+
growth: "professional growth"
|
|
744
|
+
WORK_LIFE_BALANCE:
|
|
745
|
+
title: Work-Life Balance Benefits
|
|
746
|
+
description: Benefits supporting work-life integration
|
|
747
|
+
annotations:
|
|
748
|
+
flexibility: "work flexibility"
|
|
749
|
+
family: "family support"
|
|
750
|
+
childcare: "childcare assistance"
|
|
751
|
+
elder_care: "elder care support"
|
|
752
|
+
balance: "life balance"
|