@thejob/schema 2.0.4 → 2.0.6
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.
- package/.claude/settings.json +7 -0
- package/dist/index.cjs +1350 -130
- package/dist/index.d.cts +430 -1
- package/dist/index.d.ts +430 -1
- package/dist/index.js +1328 -125
- package/package.json +1 -1
- package/src/index.ts +8 -0
- package/src/job/job-taxonomy.constant.ts +1104 -0
- package/src/job/job-taxonomy.util.ts +111 -0
- package/src/job/job.schema.ts +30 -0
- package/src/post/post.constant.ts +7 -0
- package/src/post/post.schema.ts +68 -0
|
@@ -0,0 +1,1104 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Job classification taxonomy: category -> industry -> subCategory.
|
|
3
|
+
*
|
|
4
|
+
* Edit this file directly to change the taxonomy. The three views below cannot drift
|
|
5
|
+
* apart silently: JOB_TAXONOMY is typed against the enums, and TAXONOMY_LABELS is keyed
|
|
6
|
+
* by them, so adding a value without wiring it into both is a compile error.
|
|
7
|
+
*
|
|
8
|
+
* Values are lowercase snake_case constants, like every other enum in this package
|
|
9
|
+
* (EmploymentType, WorkMode, ExperienceLevel). They are what gets STORED and what the
|
|
10
|
+
* LLM must emit; the human-readable English label lives in TAXONOMY_LABELS, and each
|
|
11
|
+
* UI translates the constant for display rather than showing the stored string.
|
|
12
|
+
*
|
|
13
|
+
* Why constants and not the free text they replace: these are enforced as an `enum`
|
|
14
|
+
* in the Gemini response schema, which is structural. The previous free-text taxonomy
|
|
15
|
+
* relied on a prompt rule ("COPIED VERBATIM ... do NOT invent") and drifted anyway —
|
|
16
|
+
* production accumulated 115 distinct categories against 8 defined, and 848
|
|
17
|
+
* subCategories against 147.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
export enum JobCategory {
|
|
21
|
+
TechnologyDataAndDigital = "technology_data_and_digital",
|
|
22
|
+
HealthcareAndLifeSciences = "healthcare_and_life_sciences",
|
|
23
|
+
AgricultureEnergyAndEnvironment = "agriculture_energy_and_environment",
|
|
24
|
+
FinanceBankingAndLegal = "finance_banking_and_legal",
|
|
25
|
+
ConstructionEngineeringAndTrades = "construction_engineering_and_trades",
|
|
26
|
+
MarketingMediaAndCreative = "marketing_media_and_creative",
|
|
27
|
+
LogisticsSalesAndOperations = "logistics_sales_and_operations",
|
|
28
|
+
EducationAndPublicService = "education_and_public_service",
|
|
29
|
+
HospitalityFoodAndTourism = "hospitality_food_and_tourism",
|
|
30
|
+
ManufacturingAndProduction = "manufacturing_and_production",
|
|
31
|
+
RetailAndConsumerServices = "retail_and_consumer_services",
|
|
32
|
+
AutomotiveAndTransportServices = "automotive_and_transport_services",
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
export const SupportedJobCategories = Object.values(JobCategory);
|
|
36
|
+
|
|
37
|
+
export enum JobIndustry {
|
|
38
|
+
SoftwareAndWebDevelopment = "software_and_web_development",
|
|
39
|
+
DataAIAndAnalytics = "data_ai_and_analytics",
|
|
40
|
+
ITInfrastructureAndSecurity = "it_infrastructure_and_security",
|
|
41
|
+
ProductAndDesign = "product_and_design",
|
|
42
|
+
MedicalPractice = "medical_practice",
|
|
43
|
+
TherapyAndRehabilitation = "therapy_and_rehabilitation",
|
|
44
|
+
BioTechAndPharmaceuticals = "biotech_and_pharmaceuticals",
|
|
45
|
+
MentalHealth = "mental_health",
|
|
46
|
+
RenewableEnergy = "renewable_energy",
|
|
47
|
+
NaturalResourcesAndUtilities = "natural_resources_and_utilities",
|
|
48
|
+
AgricultureAndForestry = "agriculture_and_forestry",
|
|
49
|
+
EnvironmentalServices = "environmental_services",
|
|
50
|
+
BankingAndInvestments = "banking_and_investments",
|
|
51
|
+
FinTechAndInsurance = "fintech_and_insurance",
|
|
52
|
+
AccountingAndAudit = "accounting_and_audit",
|
|
53
|
+
LegalServices = "legal_services",
|
|
54
|
+
ArchitectureAndPlanning = "architecture_and_planning",
|
|
55
|
+
CivilAndIndustrialEngineering = "civil_and_industrial_engineering",
|
|
56
|
+
SkilledTrades = "skilled_trades",
|
|
57
|
+
MarketingAndAdvertising = "marketing_and_advertising",
|
|
58
|
+
MediaAndEntertainment = "media_and_entertainment",
|
|
59
|
+
CreativeArtsAndFashion = "creative_arts_and_fashion",
|
|
60
|
+
SupplyChainAndTransport = "supply_chain_and_transport",
|
|
61
|
+
SalesAndBusinessDevelopment = "sales_and_business_development",
|
|
62
|
+
HRAndAdmin = "hr_and_admin",
|
|
63
|
+
EducationAndTraining = "education_and_training",
|
|
64
|
+
GovernmentAndNonProfit = "government_and_non_profit",
|
|
65
|
+
FoodAndBeverageService = "food_and_beverage_service",
|
|
66
|
+
AccommodationAndTravel = "accommodation_and_travel",
|
|
67
|
+
ProductionAndAssembly = "production_and_assembly",
|
|
68
|
+
QualityAndProcess = "quality_and_process",
|
|
69
|
+
RetailOperations = "retail_operations",
|
|
70
|
+
CustomerService = "customer_service",
|
|
71
|
+
VehicleServiceAndRepair = "vehicle_service_and_repair",
|
|
72
|
+
DrivingAndTransport = "driving_and_transport",
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
export const SupportedJobIndustries = Object.values(JobIndustry);
|
|
76
|
+
|
|
77
|
+
export enum JobSubCategory {
|
|
78
|
+
Frontend = "frontend",
|
|
79
|
+
Backend = "backend",
|
|
80
|
+
FullStack = "full_stack",
|
|
81
|
+
MobileAppDev = "mobile_app_dev",
|
|
82
|
+
GameDevelopment = "game_development",
|
|
83
|
+
EmbeddedSystems = "embedded_systems",
|
|
84
|
+
QAAndTesting = "qa_and_testing",
|
|
85
|
+
SoftwareEngineering = "software_engineering",
|
|
86
|
+
WebDevelopment = "web_development",
|
|
87
|
+
SoftwareArchitecture = "software_architecture",
|
|
88
|
+
DataScience = "data_science",
|
|
89
|
+
MachineLearning = "machine_learning",
|
|
90
|
+
ArtificialIntelligence = "artificial_intelligence",
|
|
91
|
+
BusinessIntelligence = "business_intelligence",
|
|
92
|
+
DataEngineering = "data_engineering",
|
|
93
|
+
DataVisualization = "data_visualization",
|
|
94
|
+
DataAnalysis = "data_analysis",
|
|
95
|
+
DeepLearning = "deep_learning",
|
|
96
|
+
Cybersecurity = "cybersecurity",
|
|
97
|
+
CloudEngineering = "cloud_engineering",
|
|
98
|
+
DevOps = "devops",
|
|
99
|
+
NetworkAdministration = "network_administration",
|
|
100
|
+
SystemsEngineering = "systems_engineering",
|
|
101
|
+
DatabaseAdministration = "database_administration",
|
|
102
|
+
ITSupport = "it_support",
|
|
103
|
+
TechnicalSupport = "technical_support",
|
|
104
|
+
SiteReliabilityEngineering = "site_reliability_engineering",
|
|
105
|
+
ProductManagement = "product_management",
|
|
106
|
+
UIUXDesign = "ui_ux_design",
|
|
107
|
+
UserResearch = "user_research",
|
|
108
|
+
InteractionDesign = "interaction_design",
|
|
109
|
+
TechnicalWriting = "technical_writing",
|
|
110
|
+
ProductMarketing = "product_marketing",
|
|
111
|
+
BusinessAnalysis = "business_analysis",
|
|
112
|
+
ProjectManagement = "project_management",
|
|
113
|
+
ProgramManagement = "program_management",
|
|
114
|
+
Nursing = "nursing",
|
|
115
|
+
GeneralPractice = "general_practice",
|
|
116
|
+
Surgery = "surgery",
|
|
117
|
+
Pediatrics = "pediatrics",
|
|
118
|
+
EmergencyMedicine = "emergency_medicine",
|
|
119
|
+
Radiology = "radiology",
|
|
120
|
+
Anesthesiology = "anesthesiology",
|
|
121
|
+
Geriatrics = "geriatrics",
|
|
122
|
+
Oncology = "oncology",
|
|
123
|
+
Dentistry = "dentistry",
|
|
124
|
+
DentalHygiene = "dental_hygiene",
|
|
125
|
+
MedicalSecretary = "medical_secretary",
|
|
126
|
+
Veterinary = "veterinary",
|
|
127
|
+
PhysicalTherapy = "physical_therapy",
|
|
128
|
+
OccupationalTherapy = "occupational_therapy",
|
|
129
|
+
SpeechPathology = "speech_pathology",
|
|
130
|
+
RespiratoryTherapy = "respiratory_therapy",
|
|
131
|
+
ElderlyCare = "elderly_care",
|
|
132
|
+
DisabilitySupport = "disability_support",
|
|
133
|
+
ClinicalResearch = "clinical_research",
|
|
134
|
+
DrugDevelopment = "drug_development",
|
|
135
|
+
Bioinformatics = "bioinformatics",
|
|
136
|
+
Microbiology = "microbiology",
|
|
137
|
+
Pharmacology = "pharmacology",
|
|
138
|
+
LaboratoryTech = "laboratory_tech",
|
|
139
|
+
Psychology = "psychology",
|
|
140
|
+
Counseling = "counseling",
|
|
141
|
+
Psychiatry = "psychiatry",
|
|
142
|
+
SocialWork = "social_work",
|
|
143
|
+
AddictionRecovery = "addiction_recovery",
|
|
144
|
+
ChildWelfare = "child_welfare",
|
|
145
|
+
SolarEnergy = "solar_energy",
|
|
146
|
+
WindPower = "wind_power",
|
|
147
|
+
Hydroelectric = "hydroelectric",
|
|
148
|
+
BatteryAndStorageTech = "battery_and_storage_tech",
|
|
149
|
+
Geothermal = "geothermal",
|
|
150
|
+
Biofuels = "biofuels",
|
|
151
|
+
OilAndGas = "oil_and_gas",
|
|
152
|
+
MiningAndGeology = "mining_and_geology",
|
|
153
|
+
NuclearEnergy = "nuclear_energy",
|
|
154
|
+
WaterManagement = "water_management",
|
|
155
|
+
ElectricalGridOperations = "electrical_grid_operations",
|
|
156
|
+
AgriTech = "agri_tech",
|
|
157
|
+
Horticulture = "horticulture",
|
|
158
|
+
LivestockManagement = "livestock_management",
|
|
159
|
+
Forestry = "forestry",
|
|
160
|
+
FisheriesAndAquaculture = "fisheries_and_aquaculture",
|
|
161
|
+
SoilScience = "soil_science",
|
|
162
|
+
SustainabilityConsulting = "sustainability_consulting",
|
|
163
|
+
WasteManagement = "waste_management",
|
|
164
|
+
WildlifeConservation = "wildlife_conservation",
|
|
165
|
+
CarbonAccounting = "carbon_accounting",
|
|
166
|
+
Ecology = "ecology",
|
|
167
|
+
OccupationalHealthAndSafety = "occupational_health_and_safety",
|
|
168
|
+
Sustainability = "sustainability",
|
|
169
|
+
InvestmentBanking = "investment_banking",
|
|
170
|
+
CorporateFinance = "corporate_finance",
|
|
171
|
+
WealthManagement = "wealth_management",
|
|
172
|
+
VentureCapital = "venture_capital",
|
|
173
|
+
AssetManagement = "asset_management",
|
|
174
|
+
FinancialAnalysis = "financial_analysis",
|
|
175
|
+
FinancialPlanning = "financial_planning",
|
|
176
|
+
RiskManagement = "risk_management",
|
|
177
|
+
CreditAnalysis = "credit_analysis",
|
|
178
|
+
CryptocurrencyAndWeb3 = "cryptocurrency_and_web3",
|
|
179
|
+
DigitalPayments = "digital_payments",
|
|
180
|
+
ActuarialScience = "actuarial_science",
|
|
181
|
+
InsuranceUnderwriting = "insurance_underwriting",
|
|
182
|
+
ClaimsAdjustment = "claims_adjustment",
|
|
183
|
+
PublicAccounting = "public_accounting",
|
|
184
|
+
Taxation = "taxation",
|
|
185
|
+
ForensicAccounting = "forensic_accounting",
|
|
186
|
+
AuditAndAssurance = "audit_and_assurance",
|
|
187
|
+
Bookkeeping = "bookkeeping",
|
|
188
|
+
AccountsPayable = "accounts_payable",
|
|
189
|
+
AccountsReceivable = "accounts_receivable",
|
|
190
|
+
Payroll = "payroll",
|
|
191
|
+
Collections = "collections",
|
|
192
|
+
CorporateLaw = "corporate_law",
|
|
193
|
+
Litigation = "litigation",
|
|
194
|
+
IntellectualProperty = "intellectual_property",
|
|
195
|
+
ComplianceAndRegulatory = "compliance_and_regulatory",
|
|
196
|
+
ParalegalServices = "paralegal_services",
|
|
197
|
+
Paralegal = "paralegal",
|
|
198
|
+
UrbanPlanning = "urban_planning",
|
|
199
|
+
InteriorDesign = "interior_design",
|
|
200
|
+
LandscapeArchitecture = "landscape_architecture",
|
|
201
|
+
CADBIMManagement = "cad_bim_management",
|
|
202
|
+
ConstructionManagement = "construction_management",
|
|
203
|
+
SiteSupervision = "site_supervision",
|
|
204
|
+
StructuralEngineering = "structural_engineering",
|
|
205
|
+
MechanicalEngineering = "mechanical_engineering",
|
|
206
|
+
ElectricalEngineering = "electrical_engineering",
|
|
207
|
+
RoboticsAndAutomation = "robotics_and_automation",
|
|
208
|
+
ChemicalEngineering = "chemical_engineering",
|
|
209
|
+
IndustrialEngineering = "industrial_engineering",
|
|
210
|
+
ProcessEngineering = "process_engineering",
|
|
211
|
+
Mechatronics = "mechatronics",
|
|
212
|
+
Electrician = "electrician",
|
|
213
|
+
PlumbingAndHVAC = "plumbing_and_hvac",
|
|
214
|
+
Carpentry = "carpentry",
|
|
215
|
+
Welding = "welding",
|
|
216
|
+
HeavyEquipmentOperation = "heavy_equipment_operation",
|
|
217
|
+
Masonry = "masonry",
|
|
218
|
+
Machining = "machining",
|
|
219
|
+
FacilitiesMaintenance = "facilities_maintenance",
|
|
220
|
+
DigitalMarketing = "digital_marketing",
|
|
221
|
+
SEOSEM = "seo_sem",
|
|
222
|
+
ContentStrategy = "content_strategy",
|
|
223
|
+
SocialMediaManagement = "social_media_management",
|
|
224
|
+
BrandManagement = "brand_management",
|
|
225
|
+
MarketResearch = "market_research",
|
|
226
|
+
MarketingStrategy = "marketing_strategy",
|
|
227
|
+
Journalism = "journalism",
|
|
228
|
+
VideoProduction = "video_production",
|
|
229
|
+
AnimationAndVFX = "animation_and_vfx",
|
|
230
|
+
AudioEngineering = "audio_engineering",
|
|
231
|
+
Photography = "photography",
|
|
232
|
+
Broadcasting = "broadcasting",
|
|
233
|
+
GraphicDesign = "graphic_design",
|
|
234
|
+
FineArts = "fine_arts",
|
|
235
|
+
FashionDesign = "fashion_design",
|
|
236
|
+
ApparelManufacturing = "apparel_manufacturing",
|
|
237
|
+
TextileDesign = "textile_design",
|
|
238
|
+
LogisticsManagement = "logistics_management",
|
|
239
|
+
Warehousing = "warehousing",
|
|
240
|
+
FleetOperations = "fleet_operations",
|
|
241
|
+
FreightForwarding = "freight_forwarding",
|
|
242
|
+
Procurement = "procurement",
|
|
243
|
+
Purchasing = "purchasing",
|
|
244
|
+
WarehouseOperations = "warehouse_operations",
|
|
245
|
+
FreightAndShipping = "freight_and_shipping",
|
|
246
|
+
EnterpriseSales = "enterprise_sales",
|
|
247
|
+
AccountManagement = "account_management",
|
|
248
|
+
RetailManagement = "retail_management",
|
|
249
|
+
RealEstateSales = "real_estate_sales",
|
|
250
|
+
CustomerSuccess = "customer_success",
|
|
251
|
+
SalesManagement = "sales_management",
|
|
252
|
+
SalesOperations = "sales_operations",
|
|
253
|
+
SalesSupport = "sales_support",
|
|
254
|
+
TechnicalSales = "technical_sales",
|
|
255
|
+
Recruiting = "recruiting",
|
|
256
|
+
CompensationAndBenefits = "compensation_and_benefits",
|
|
257
|
+
OfficeAdministration = "office_administration",
|
|
258
|
+
ExecutiveAssistance = "executive_assistance",
|
|
259
|
+
OrganizationalDevelopment = "organizational_development",
|
|
260
|
+
HROperations = "hr_operations",
|
|
261
|
+
TalentAcquisition = "talent_acquisition",
|
|
262
|
+
LearningAndDevelopment = "learning_and_development",
|
|
263
|
+
AdministrativeSupport = "administrative_support",
|
|
264
|
+
OfficeManagement = "office_management",
|
|
265
|
+
K12Teaching = "k_12_teaching",
|
|
266
|
+
HigherEducation = "higher_education",
|
|
267
|
+
SpecialEducation = "special_education",
|
|
268
|
+
ESLInstruction = "esl_instruction",
|
|
269
|
+
EdTech = "edtech",
|
|
270
|
+
CorporateTraining = "corporate_training",
|
|
271
|
+
PublicPolicy = "public_policy",
|
|
272
|
+
SocialServices = "social_services",
|
|
273
|
+
FundraisingAndGrants = "fundraising_and_grants",
|
|
274
|
+
LawEnforcement = "law_enforcement",
|
|
275
|
+
Military = "military",
|
|
276
|
+
Diplomacy = "diplomacy",
|
|
277
|
+
PublicAdministration = "public_administration",
|
|
278
|
+
RestaurantOperations = "restaurant_operations",
|
|
279
|
+
FoodPreparation = "food_preparation",
|
|
280
|
+
CulinaryArts = "culinary_arts",
|
|
281
|
+
BaristaAndBar = "barista_and_bar",
|
|
282
|
+
Catering = "catering",
|
|
283
|
+
FoodService = "food_service",
|
|
284
|
+
HotelOperations = "hotel_operations",
|
|
285
|
+
FrontDeskAndReception = "front_desk_and_reception",
|
|
286
|
+
Housekeeping = "housekeeping",
|
|
287
|
+
TravelAndTourism = "travel_and_tourism",
|
|
288
|
+
EventsAndConferences = "events_and_conferences",
|
|
289
|
+
Assembly = "assembly",
|
|
290
|
+
MachineOperation = "machine_operation",
|
|
291
|
+
ProductionManagement = "production_management",
|
|
292
|
+
ManufacturingEngineering = "manufacturing_engineering",
|
|
293
|
+
FoodProduction = "food_production",
|
|
294
|
+
Packaging = "packaging",
|
|
295
|
+
QualityAssurance = "quality_assurance",
|
|
296
|
+
QualityControl = "quality_control",
|
|
297
|
+
ProcessImprovement = "process_improvement",
|
|
298
|
+
MaintenanceAndReliability = "maintenance_and_reliability",
|
|
299
|
+
IndustrialSafety = "industrial_safety",
|
|
300
|
+
StoreManagement = "store_management",
|
|
301
|
+
SalesAssociate = "sales_associate",
|
|
302
|
+
VisualMerchandising = "visual_merchandising",
|
|
303
|
+
CashierAndCheckout = "cashier_and_checkout",
|
|
304
|
+
InventoryAndStock = "inventory_and_stock",
|
|
305
|
+
CustomerSupport = "customer_support",
|
|
306
|
+
CallCentre = "call_centre",
|
|
307
|
+
ClientAdvisory = "client_advisory",
|
|
308
|
+
ComplaintsAndEscalations = "complaints_and_escalations",
|
|
309
|
+
AutomotiveTechnician = "automotive_technician",
|
|
310
|
+
AutomotiveRepair = "automotive_repair",
|
|
311
|
+
HeavyVehicleMechanic = "heavy_vehicle_mechanic",
|
|
312
|
+
VehicleInspection = "vehicle_inspection",
|
|
313
|
+
AutoBodyAndPaint = "auto_body_and_paint",
|
|
314
|
+
TruckDriving = "truck_driving",
|
|
315
|
+
DeliveryAndCourier = "delivery_and_courier",
|
|
316
|
+
PublicTransport = "public_transport",
|
|
317
|
+
FleetManagement = "fleet_management",
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
export const SupportedJobSubCategories = Object.values(JobSubCategory);
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* The hierarchy: which industries belong to a category, and which subCategories to an
|
|
324
|
+
* industry. Consumers use it to render dependent pickers and to validate that a job's
|
|
325
|
+
* industry actually sits under its category.
|
|
326
|
+
*/
|
|
327
|
+
export const JOB_TAXONOMY: ReadonlyArray<{
|
|
328
|
+
category: JobCategory;
|
|
329
|
+
industries: ReadonlyArray<{ industry: JobIndustry; subCategories: readonly JobSubCategory[] }>;
|
|
330
|
+
}> = [
|
|
331
|
+
{
|
|
332
|
+
category: JobCategory.TechnologyDataAndDigital,
|
|
333
|
+
industries: [
|
|
334
|
+
{
|
|
335
|
+
industry: JobIndustry.SoftwareAndWebDevelopment,
|
|
336
|
+
subCategories: [
|
|
337
|
+
JobSubCategory.Frontend,
|
|
338
|
+
JobSubCategory.Backend,
|
|
339
|
+
JobSubCategory.FullStack,
|
|
340
|
+
JobSubCategory.MobileAppDev,
|
|
341
|
+
JobSubCategory.GameDevelopment,
|
|
342
|
+
JobSubCategory.EmbeddedSystems,
|
|
343
|
+
JobSubCategory.QAAndTesting,
|
|
344
|
+
JobSubCategory.SoftwareEngineering,
|
|
345
|
+
JobSubCategory.WebDevelopment,
|
|
346
|
+
JobSubCategory.SoftwareArchitecture,
|
|
347
|
+
],
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
industry: JobIndustry.DataAIAndAnalytics,
|
|
351
|
+
subCategories: [
|
|
352
|
+
JobSubCategory.DataScience,
|
|
353
|
+
JobSubCategory.MachineLearning,
|
|
354
|
+
JobSubCategory.ArtificialIntelligence,
|
|
355
|
+
JobSubCategory.BusinessIntelligence,
|
|
356
|
+
JobSubCategory.DataEngineering,
|
|
357
|
+
JobSubCategory.DataVisualization,
|
|
358
|
+
JobSubCategory.DataAnalysis,
|
|
359
|
+
JobSubCategory.DeepLearning,
|
|
360
|
+
],
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
industry: JobIndustry.ITInfrastructureAndSecurity,
|
|
364
|
+
subCategories: [
|
|
365
|
+
JobSubCategory.Cybersecurity,
|
|
366
|
+
JobSubCategory.CloudEngineering,
|
|
367
|
+
JobSubCategory.DevOps,
|
|
368
|
+
JobSubCategory.NetworkAdministration,
|
|
369
|
+
JobSubCategory.SystemsEngineering,
|
|
370
|
+
JobSubCategory.DatabaseAdministration,
|
|
371
|
+
JobSubCategory.ITSupport,
|
|
372
|
+
JobSubCategory.TechnicalSupport,
|
|
373
|
+
JobSubCategory.SiteReliabilityEngineering,
|
|
374
|
+
],
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
industry: JobIndustry.ProductAndDesign,
|
|
378
|
+
subCategories: [
|
|
379
|
+
JobSubCategory.ProductManagement,
|
|
380
|
+
JobSubCategory.UIUXDesign,
|
|
381
|
+
JobSubCategory.UserResearch,
|
|
382
|
+
JobSubCategory.InteractionDesign,
|
|
383
|
+
JobSubCategory.TechnicalWriting,
|
|
384
|
+
JobSubCategory.ProductMarketing,
|
|
385
|
+
JobSubCategory.BusinessAnalysis,
|
|
386
|
+
JobSubCategory.ProjectManagement,
|
|
387
|
+
JobSubCategory.ProgramManagement,
|
|
388
|
+
],
|
|
389
|
+
},
|
|
390
|
+
],
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
category: JobCategory.HealthcareAndLifeSciences,
|
|
394
|
+
industries: [
|
|
395
|
+
{
|
|
396
|
+
industry: JobIndustry.MedicalPractice,
|
|
397
|
+
subCategories: [
|
|
398
|
+
JobSubCategory.Nursing,
|
|
399
|
+
JobSubCategory.GeneralPractice,
|
|
400
|
+
JobSubCategory.Surgery,
|
|
401
|
+
JobSubCategory.Pediatrics,
|
|
402
|
+
JobSubCategory.EmergencyMedicine,
|
|
403
|
+
JobSubCategory.Radiology,
|
|
404
|
+
JobSubCategory.Anesthesiology,
|
|
405
|
+
JobSubCategory.Geriatrics,
|
|
406
|
+
JobSubCategory.Oncology,
|
|
407
|
+
JobSubCategory.Dentistry,
|
|
408
|
+
JobSubCategory.DentalHygiene,
|
|
409
|
+
JobSubCategory.MedicalSecretary,
|
|
410
|
+
JobSubCategory.Veterinary,
|
|
411
|
+
],
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
industry: JobIndustry.TherapyAndRehabilitation,
|
|
415
|
+
subCategories: [
|
|
416
|
+
JobSubCategory.PhysicalTherapy,
|
|
417
|
+
JobSubCategory.OccupationalTherapy,
|
|
418
|
+
JobSubCategory.SpeechPathology,
|
|
419
|
+
JobSubCategory.RespiratoryTherapy,
|
|
420
|
+
JobSubCategory.ElderlyCare,
|
|
421
|
+
JobSubCategory.DisabilitySupport,
|
|
422
|
+
],
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
industry: JobIndustry.BioTechAndPharmaceuticals,
|
|
426
|
+
subCategories: [
|
|
427
|
+
JobSubCategory.ClinicalResearch,
|
|
428
|
+
JobSubCategory.DrugDevelopment,
|
|
429
|
+
JobSubCategory.Bioinformatics,
|
|
430
|
+
JobSubCategory.Microbiology,
|
|
431
|
+
JobSubCategory.Pharmacology,
|
|
432
|
+
JobSubCategory.LaboratoryTech,
|
|
433
|
+
],
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
industry: JobIndustry.MentalHealth,
|
|
437
|
+
subCategories: [
|
|
438
|
+
JobSubCategory.Psychology,
|
|
439
|
+
JobSubCategory.Counseling,
|
|
440
|
+
JobSubCategory.Psychiatry,
|
|
441
|
+
JobSubCategory.SocialWork,
|
|
442
|
+
JobSubCategory.AddictionRecovery,
|
|
443
|
+
JobSubCategory.ChildWelfare,
|
|
444
|
+
],
|
|
445
|
+
},
|
|
446
|
+
],
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
category: JobCategory.AgricultureEnergyAndEnvironment,
|
|
450
|
+
industries: [
|
|
451
|
+
{
|
|
452
|
+
industry: JobIndustry.RenewableEnergy,
|
|
453
|
+
subCategories: [
|
|
454
|
+
JobSubCategory.SolarEnergy,
|
|
455
|
+
JobSubCategory.WindPower,
|
|
456
|
+
JobSubCategory.Hydroelectric,
|
|
457
|
+
JobSubCategory.BatteryAndStorageTech,
|
|
458
|
+
JobSubCategory.Geothermal,
|
|
459
|
+
JobSubCategory.Biofuels,
|
|
460
|
+
],
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
industry: JobIndustry.NaturalResourcesAndUtilities,
|
|
464
|
+
subCategories: [
|
|
465
|
+
JobSubCategory.OilAndGas,
|
|
466
|
+
JobSubCategory.MiningAndGeology,
|
|
467
|
+
JobSubCategory.NuclearEnergy,
|
|
468
|
+
JobSubCategory.WaterManagement,
|
|
469
|
+
JobSubCategory.ElectricalGridOperations,
|
|
470
|
+
],
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
industry: JobIndustry.AgricultureAndForestry,
|
|
474
|
+
subCategories: [
|
|
475
|
+
JobSubCategory.AgriTech,
|
|
476
|
+
JobSubCategory.Horticulture,
|
|
477
|
+
JobSubCategory.LivestockManagement,
|
|
478
|
+
JobSubCategory.Forestry,
|
|
479
|
+
JobSubCategory.FisheriesAndAquaculture,
|
|
480
|
+
JobSubCategory.SoilScience,
|
|
481
|
+
],
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
industry: JobIndustry.EnvironmentalServices,
|
|
485
|
+
subCategories: [
|
|
486
|
+
JobSubCategory.SustainabilityConsulting,
|
|
487
|
+
JobSubCategory.WasteManagement,
|
|
488
|
+
JobSubCategory.WildlifeConservation,
|
|
489
|
+
JobSubCategory.CarbonAccounting,
|
|
490
|
+
JobSubCategory.Ecology,
|
|
491
|
+
JobSubCategory.OccupationalHealthAndSafety,
|
|
492
|
+
JobSubCategory.Sustainability,
|
|
493
|
+
],
|
|
494
|
+
},
|
|
495
|
+
],
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
category: JobCategory.FinanceBankingAndLegal,
|
|
499
|
+
industries: [
|
|
500
|
+
{
|
|
501
|
+
industry: JobIndustry.BankingAndInvestments,
|
|
502
|
+
subCategories: [
|
|
503
|
+
JobSubCategory.InvestmentBanking,
|
|
504
|
+
JobSubCategory.CorporateFinance,
|
|
505
|
+
JobSubCategory.WealthManagement,
|
|
506
|
+
JobSubCategory.VentureCapital,
|
|
507
|
+
JobSubCategory.AssetManagement,
|
|
508
|
+
JobSubCategory.FinancialAnalysis,
|
|
509
|
+
JobSubCategory.FinancialPlanning,
|
|
510
|
+
JobSubCategory.RiskManagement,
|
|
511
|
+
JobSubCategory.CreditAnalysis,
|
|
512
|
+
],
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
industry: JobIndustry.FinTechAndInsurance,
|
|
516
|
+
subCategories: [
|
|
517
|
+
JobSubCategory.CryptocurrencyAndWeb3,
|
|
518
|
+
JobSubCategory.DigitalPayments,
|
|
519
|
+
JobSubCategory.ActuarialScience,
|
|
520
|
+
JobSubCategory.InsuranceUnderwriting,
|
|
521
|
+
JobSubCategory.ClaimsAdjustment,
|
|
522
|
+
],
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
industry: JobIndustry.AccountingAndAudit,
|
|
526
|
+
subCategories: [
|
|
527
|
+
JobSubCategory.PublicAccounting,
|
|
528
|
+
JobSubCategory.Taxation,
|
|
529
|
+
JobSubCategory.ForensicAccounting,
|
|
530
|
+
JobSubCategory.AuditAndAssurance,
|
|
531
|
+
JobSubCategory.Bookkeeping,
|
|
532
|
+
JobSubCategory.AccountsPayable,
|
|
533
|
+
JobSubCategory.AccountsReceivable,
|
|
534
|
+
JobSubCategory.Payroll,
|
|
535
|
+
JobSubCategory.Collections,
|
|
536
|
+
],
|
|
537
|
+
},
|
|
538
|
+
{
|
|
539
|
+
industry: JobIndustry.LegalServices,
|
|
540
|
+
subCategories: [
|
|
541
|
+
JobSubCategory.CorporateLaw,
|
|
542
|
+
JobSubCategory.Litigation,
|
|
543
|
+
JobSubCategory.IntellectualProperty,
|
|
544
|
+
JobSubCategory.ComplianceAndRegulatory,
|
|
545
|
+
JobSubCategory.ParalegalServices,
|
|
546
|
+
JobSubCategory.Paralegal,
|
|
547
|
+
],
|
|
548
|
+
},
|
|
549
|
+
],
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
category: JobCategory.ConstructionEngineeringAndTrades,
|
|
553
|
+
industries: [
|
|
554
|
+
{
|
|
555
|
+
industry: JobIndustry.ArchitectureAndPlanning,
|
|
556
|
+
subCategories: [
|
|
557
|
+
JobSubCategory.UrbanPlanning,
|
|
558
|
+
JobSubCategory.InteriorDesign,
|
|
559
|
+
JobSubCategory.LandscapeArchitecture,
|
|
560
|
+
JobSubCategory.CADBIMManagement,
|
|
561
|
+
JobSubCategory.ConstructionManagement,
|
|
562
|
+
JobSubCategory.SiteSupervision,
|
|
563
|
+
],
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
industry: JobIndustry.CivilAndIndustrialEngineering,
|
|
567
|
+
subCategories: [
|
|
568
|
+
JobSubCategory.StructuralEngineering,
|
|
569
|
+
JobSubCategory.MechanicalEngineering,
|
|
570
|
+
JobSubCategory.ElectricalEngineering,
|
|
571
|
+
JobSubCategory.RoboticsAndAutomation,
|
|
572
|
+
JobSubCategory.ChemicalEngineering,
|
|
573
|
+
JobSubCategory.IndustrialEngineering,
|
|
574
|
+
JobSubCategory.ProcessEngineering,
|
|
575
|
+
JobSubCategory.Mechatronics,
|
|
576
|
+
],
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
industry: JobIndustry.SkilledTrades,
|
|
580
|
+
subCategories: [
|
|
581
|
+
JobSubCategory.Electrician,
|
|
582
|
+
JobSubCategory.PlumbingAndHVAC,
|
|
583
|
+
JobSubCategory.Carpentry,
|
|
584
|
+
JobSubCategory.Welding,
|
|
585
|
+
JobSubCategory.HeavyEquipmentOperation,
|
|
586
|
+
JobSubCategory.Masonry,
|
|
587
|
+
JobSubCategory.Machining,
|
|
588
|
+
JobSubCategory.FacilitiesMaintenance,
|
|
589
|
+
],
|
|
590
|
+
},
|
|
591
|
+
],
|
|
592
|
+
},
|
|
593
|
+
{
|
|
594
|
+
category: JobCategory.MarketingMediaAndCreative,
|
|
595
|
+
industries: [
|
|
596
|
+
{
|
|
597
|
+
industry: JobIndustry.MarketingAndAdvertising,
|
|
598
|
+
subCategories: [
|
|
599
|
+
JobSubCategory.DigitalMarketing,
|
|
600
|
+
JobSubCategory.SEOSEM,
|
|
601
|
+
JobSubCategory.ContentStrategy,
|
|
602
|
+
JobSubCategory.SocialMediaManagement,
|
|
603
|
+
JobSubCategory.BrandManagement,
|
|
604
|
+
JobSubCategory.MarketResearch,
|
|
605
|
+
JobSubCategory.MarketingStrategy,
|
|
606
|
+
],
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
industry: JobIndustry.MediaAndEntertainment,
|
|
610
|
+
subCategories: [
|
|
611
|
+
JobSubCategory.Journalism,
|
|
612
|
+
JobSubCategory.VideoProduction,
|
|
613
|
+
JobSubCategory.AnimationAndVFX,
|
|
614
|
+
JobSubCategory.AudioEngineering,
|
|
615
|
+
JobSubCategory.Photography,
|
|
616
|
+
JobSubCategory.Broadcasting,
|
|
617
|
+
],
|
|
618
|
+
},
|
|
619
|
+
{
|
|
620
|
+
industry: JobIndustry.CreativeArtsAndFashion,
|
|
621
|
+
subCategories: [
|
|
622
|
+
JobSubCategory.GraphicDesign,
|
|
623
|
+
JobSubCategory.FineArts,
|
|
624
|
+
JobSubCategory.FashionDesign,
|
|
625
|
+
JobSubCategory.ApparelManufacturing,
|
|
626
|
+
JobSubCategory.TextileDesign,
|
|
627
|
+
],
|
|
628
|
+
},
|
|
629
|
+
],
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
category: JobCategory.LogisticsSalesAndOperations,
|
|
633
|
+
industries: [
|
|
634
|
+
{
|
|
635
|
+
industry: JobIndustry.SupplyChainAndTransport,
|
|
636
|
+
subCategories: [
|
|
637
|
+
JobSubCategory.LogisticsManagement,
|
|
638
|
+
JobSubCategory.Warehousing,
|
|
639
|
+
JobSubCategory.FleetOperations,
|
|
640
|
+
JobSubCategory.FreightForwarding,
|
|
641
|
+
JobSubCategory.Procurement,
|
|
642
|
+
JobSubCategory.Purchasing,
|
|
643
|
+
JobSubCategory.WarehouseOperations,
|
|
644
|
+
JobSubCategory.FreightAndShipping,
|
|
645
|
+
],
|
|
646
|
+
},
|
|
647
|
+
{
|
|
648
|
+
industry: JobIndustry.SalesAndBusinessDevelopment,
|
|
649
|
+
subCategories: [
|
|
650
|
+
JobSubCategory.EnterpriseSales,
|
|
651
|
+
JobSubCategory.AccountManagement,
|
|
652
|
+
JobSubCategory.RetailManagement,
|
|
653
|
+
JobSubCategory.RealEstateSales,
|
|
654
|
+
JobSubCategory.CustomerSuccess,
|
|
655
|
+
JobSubCategory.SalesManagement,
|
|
656
|
+
JobSubCategory.SalesOperations,
|
|
657
|
+
JobSubCategory.SalesSupport,
|
|
658
|
+
JobSubCategory.TechnicalSales,
|
|
659
|
+
],
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
industry: JobIndustry.HRAndAdmin,
|
|
663
|
+
subCategories: [
|
|
664
|
+
JobSubCategory.Recruiting,
|
|
665
|
+
JobSubCategory.CompensationAndBenefits,
|
|
666
|
+
JobSubCategory.OfficeAdministration,
|
|
667
|
+
JobSubCategory.ExecutiveAssistance,
|
|
668
|
+
JobSubCategory.OrganizationalDevelopment,
|
|
669
|
+
JobSubCategory.HROperations,
|
|
670
|
+
JobSubCategory.TalentAcquisition,
|
|
671
|
+
JobSubCategory.LearningAndDevelopment,
|
|
672
|
+
JobSubCategory.AdministrativeSupport,
|
|
673
|
+
JobSubCategory.OfficeManagement,
|
|
674
|
+
],
|
|
675
|
+
},
|
|
676
|
+
],
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
category: JobCategory.EducationAndPublicService,
|
|
680
|
+
industries: [
|
|
681
|
+
{
|
|
682
|
+
industry: JobIndustry.EducationAndTraining,
|
|
683
|
+
subCategories: [
|
|
684
|
+
JobSubCategory.K12Teaching,
|
|
685
|
+
JobSubCategory.HigherEducation,
|
|
686
|
+
JobSubCategory.SpecialEducation,
|
|
687
|
+
JobSubCategory.ESLInstruction,
|
|
688
|
+
JobSubCategory.EdTech,
|
|
689
|
+
JobSubCategory.CorporateTraining,
|
|
690
|
+
],
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
industry: JobIndustry.GovernmentAndNonProfit,
|
|
694
|
+
subCategories: [
|
|
695
|
+
JobSubCategory.PublicPolicy,
|
|
696
|
+
JobSubCategory.SocialServices,
|
|
697
|
+
JobSubCategory.FundraisingAndGrants,
|
|
698
|
+
JobSubCategory.LawEnforcement,
|
|
699
|
+
JobSubCategory.Military,
|
|
700
|
+
JobSubCategory.Diplomacy,
|
|
701
|
+
JobSubCategory.PublicAdministration,
|
|
702
|
+
],
|
|
703
|
+
},
|
|
704
|
+
],
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
category: JobCategory.HospitalityFoodAndTourism,
|
|
708
|
+
industries: [
|
|
709
|
+
{
|
|
710
|
+
industry: JobIndustry.FoodAndBeverageService,
|
|
711
|
+
subCategories: [
|
|
712
|
+
JobSubCategory.RestaurantOperations,
|
|
713
|
+
JobSubCategory.FoodPreparation,
|
|
714
|
+
JobSubCategory.CulinaryArts,
|
|
715
|
+
JobSubCategory.BaristaAndBar,
|
|
716
|
+
JobSubCategory.Catering,
|
|
717
|
+
JobSubCategory.FoodService,
|
|
718
|
+
],
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
industry: JobIndustry.AccommodationAndTravel,
|
|
722
|
+
subCategories: [
|
|
723
|
+
JobSubCategory.HotelOperations,
|
|
724
|
+
JobSubCategory.FrontDeskAndReception,
|
|
725
|
+
JobSubCategory.Housekeeping,
|
|
726
|
+
JobSubCategory.TravelAndTourism,
|
|
727
|
+
JobSubCategory.EventsAndConferences,
|
|
728
|
+
],
|
|
729
|
+
},
|
|
730
|
+
],
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
category: JobCategory.ManufacturingAndProduction,
|
|
734
|
+
industries: [
|
|
735
|
+
{
|
|
736
|
+
industry: JobIndustry.ProductionAndAssembly,
|
|
737
|
+
subCategories: [
|
|
738
|
+
JobSubCategory.Assembly,
|
|
739
|
+
JobSubCategory.MachineOperation,
|
|
740
|
+
JobSubCategory.ProductionManagement,
|
|
741
|
+
JobSubCategory.ManufacturingEngineering,
|
|
742
|
+
JobSubCategory.FoodProduction,
|
|
743
|
+
JobSubCategory.Packaging,
|
|
744
|
+
],
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
industry: JobIndustry.QualityAndProcess,
|
|
748
|
+
subCategories: [
|
|
749
|
+
JobSubCategory.QualityAssurance,
|
|
750
|
+
JobSubCategory.QualityControl,
|
|
751
|
+
JobSubCategory.ProcessImprovement,
|
|
752
|
+
JobSubCategory.MaintenanceAndReliability,
|
|
753
|
+
JobSubCategory.IndustrialSafety,
|
|
754
|
+
],
|
|
755
|
+
},
|
|
756
|
+
],
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
category: JobCategory.RetailAndConsumerServices,
|
|
760
|
+
industries: [
|
|
761
|
+
{
|
|
762
|
+
industry: JobIndustry.RetailOperations,
|
|
763
|
+
subCategories: [
|
|
764
|
+
JobSubCategory.StoreManagement,
|
|
765
|
+
JobSubCategory.SalesAssociate,
|
|
766
|
+
JobSubCategory.VisualMerchandising,
|
|
767
|
+
JobSubCategory.CashierAndCheckout,
|
|
768
|
+
JobSubCategory.InventoryAndStock,
|
|
769
|
+
],
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
industry: JobIndustry.CustomerService,
|
|
773
|
+
subCategories: [
|
|
774
|
+
JobSubCategory.CustomerSupport,
|
|
775
|
+
JobSubCategory.CallCentre,
|
|
776
|
+
JobSubCategory.ClientAdvisory,
|
|
777
|
+
JobSubCategory.ComplaintsAndEscalations,
|
|
778
|
+
],
|
|
779
|
+
},
|
|
780
|
+
],
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
category: JobCategory.AutomotiveAndTransportServices,
|
|
784
|
+
industries: [
|
|
785
|
+
{
|
|
786
|
+
industry: JobIndustry.VehicleServiceAndRepair,
|
|
787
|
+
subCategories: [
|
|
788
|
+
JobSubCategory.AutomotiveTechnician,
|
|
789
|
+
JobSubCategory.AutomotiveRepair,
|
|
790
|
+
JobSubCategory.HeavyVehicleMechanic,
|
|
791
|
+
JobSubCategory.VehicleInspection,
|
|
792
|
+
JobSubCategory.AutoBodyAndPaint,
|
|
793
|
+
],
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
industry: JobIndustry.DrivingAndTransport,
|
|
797
|
+
subCategories: [
|
|
798
|
+
JobSubCategory.TruckDriving,
|
|
799
|
+
JobSubCategory.DeliveryAndCourier,
|
|
800
|
+
JobSubCategory.PublicTransport,
|
|
801
|
+
JobSubCategory.FleetManagement,
|
|
802
|
+
],
|
|
803
|
+
},
|
|
804
|
+
],
|
|
805
|
+
},
|
|
806
|
+
];
|
|
807
|
+
|
|
808
|
+
/**
|
|
809
|
+
* English display labels for every taxonomy constant. This is the source text the
|
|
810
|
+
* taxonomy was defined in; it is ALSO what the enrichment prompt renders, so the model
|
|
811
|
+
* still classifies against readable names while emitting the constant. UIs should
|
|
812
|
+
* translate the constant (tEnum-style) rather than use these directly.
|
|
813
|
+
*/
|
|
814
|
+
export const TAXONOMY_LABELS: Readonly<
|
|
815
|
+
Record<JobCategory | JobIndustry | JobSubCategory, string>
|
|
816
|
+
> = {
|
|
817
|
+
"technology_data_and_digital": "Technology, Data & Digital",
|
|
818
|
+
"healthcare_and_life_sciences": "Healthcare & Life Sciences",
|
|
819
|
+
"agriculture_energy_and_environment": "Agriculture, Energy & Environment",
|
|
820
|
+
"finance_banking_and_legal": "Finance, Banking & Legal",
|
|
821
|
+
"construction_engineering_and_trades": "Construction, Engineering & Trades",
|
|
822
|
+
"marketing_media_and_creative": "Marketing, Media & Creative",
|
|
823
|
+
"logistics_sales_and_operations": "Logistics, Sales & Operations",
|
|
824
|
+
"education_and_public_service": "Education & Public Service",
|
|
825
|
+
"hospitality_food_and_tourism": "Hospitality, Food & Tourism",
|
|
826
|
+
"manufacturing_and_production": "Manufacturing & Production",
|
|
827
|
+
"retail_and_consumer_services": "Retail & Consumer Services",
|
|
828
|
+
"automotive_and_transport_services": "Automotive & Transport Services",
|
|
829
|
+
"software_and_web_development": "Software & Web Development",
|
|
830
|
+
"data_ai_and_analytics": "Data, AI & Analytics",
|
|
831
|
+
"it_infrastructure_and_security": "IT Infrastructure & Security",
|
|
832
|
+
"product_and_design": "Product & Design",
|
|
833
|
+
"medical_practice": "Medical Practice",
|
|
834
|
+
"therapy_and_rehabilitation": "Therapy & Rehabilitation",
|
|
835
|
+
"biotech_and_pharmaceuticals": "BioTech & Pharmaceuticals",
|
|
836
|
+
"mental_health": "Mental Health",
|
|
837
|
+
"renewable_energy": "Renewable Energy",
|
|
838
|
+
"natural_resources_and_utilities": "Natural Resources & Utilities",
|
|
839
|
+
"agriculture_and_forestry": "Agriculture & Forestry",
|
|
840
|
+
"environmental_services": "Environmental Services",
|
|
841
|
+
"banking_and_investments": "Banking & Investments",
|
|
842
|
+
"fintech_and_insurance": "FinTech & Insurance",
|
|
843
|
+
"accounting_and_audit": "Accounting & Audit",
|
|
844
|
+
"legal_services": "Legal Services",
|
|
845
|
+
"architecture_and_planning": "Architecture & Planning",
|
|
846
|
+
"civil_and_industrial_engineering": "Civil & Industrial Engineering",
|
|
847
|
+
"skilled_trades": "Skilled Trades",
|
|
848
|
+
"marketing_and_advertising": "Marketing & Advertising",
|
|
849
|
+
"media_and_entertainment": "Media & Entertainment",
|
|
850
|
+
"creative_arts_and_fashion": "Creative Arts & Fashion",
|
|
851
|
+
"supply_chain_and_transport": "Supply Chain & Transport",
|
|
852
|
+
"sales_and_business_development": "Sales & Business Development",
|
|
853
|
+
"hr_and_admin": "HR & Admin",
|
|
854
|
+
"education_and_training": "Education & Training",
|
|
855
|
+
"government_and_non_profit": "Government & Non-Profit",
|
|
856
|
+
"food_and_beverage_service": "Food & Beverage Service",
|
|
857
|
+
"accommodation_and_travel": "Accommodation & Travel",
|
|
858
|
+
"production_and_assembly": "Production & Assembly",
|
|
859
|
+
"quality_and_process": "Quality & Process",
|
|
860
|
+
"retail_operations": "Retail Operations",
|
|
861
|
+
"customer_service": "Customer Service",
|
|
862
|
+
"vehicle_service_and_repair": "Vehicle Service & Repair",
|
|
863
|
+
"driving_and_transport": "Driving & Transport",
|
|
864
|
+
"frontend": "Frontend",
|
|
865
|
+
"backend": "Backend",
|
|
866
|
+
"full_stack": "Full Stack",
|
|
867
|
+
"mobile_app_dev": "Mobile App Dev",
|
|
868
|
+
"game_development": "Game Development",
|
|
869
|
+
"embedded_systems": "Embedded Systems",
|
|
870
|
+
"qa_and_testing": "QA & Testing",
|
|
871
|
+
"software_engineering": "Software Engineering",
|
|
872
|
+
"web_development": "Web Development",
|
|
873
|
+
"software_architecture": "Software Architecture",
|
|
874
|
+
"data_science": "Data Science",
|
|
875
|
+
"machine_learning": "Machine Learning",
|
|
876
|
+
"artificial_intelligence": "Artificial Intelligence",
|
|
877
|
+
"business_intelligence": "Business Intelligence",
|
|
878
|
+
"data_engineering": "Data Engineering",
|
|
879
|
+
"data_visualization": "Data Visualization",
|
|
880
|
+
"data_analysis": "Data Analysis",
|
|
881
|
+
"deep_learning": "Deep Learning",
|
|
882
|
+
"cybersecurity": "Cybersecurity",
|
|
883
|
+
"cloud_engineering": "Cloud Engineering",
|
|
884
|
+
"devops": "DevOps",
|
|
885
|
+
"network_administration": "Network Administration",
|
|
886
|
+
"systems_engineering": "Systems Engineering",
|
|
887
|
+
"database_administration": "Database Administration",
|
|
888
|
+
"it_support": "IT Support",
|
|
889
|
+
"technical_support": "Technical Support",
|
|
890
|
+
"site_reliability_engineering": "Site Reliability Engineering",
|
|
891
|
+
"product_management": "Product Management",
|
|
892
|
+
"ui_ux_design": "UI/UX Design",
|
|
893
|
+
"user_research": "User Research",
|
|
894
|
+
"interaction_design": "Interaction Design",
|
|
895
|
+
"technical_writing": "Technical Writing",
|
|
896
|
+
"product_marketing": "Product Marketing",
|
|
897
|
+
"business_analysis": "Business Analysis",
|
|
898
|
+
"project_management": "Project Management",
|
|
899
|
+
"program_management": "Program Management",
|
|
900
|
+
"nursing": "Nursing",
|
|
901
|
+
"general_practice": "General Practice",
|
|
902
|
+
"surgery": "Surgery",
|
|
903
|
+
"pediatrics": "Pediatrics",
|
|
904
|
+
"emergency_medicine": "Emergency Medicine",
|
|
905
|
+
"radiology": "Radiology",
|
|
906
|
+
"anesthesiology": "Anesthesiology",
|
|
907
|
+
"geriatrics": "Geriatrics",
|
|
908
|
+
"oncology": "Oncology",
|
|
909
|
+
"dentistry": "Dentistry",
|
|
910
|
+
"dental_hygiene": "Dental Hygiene",
|
|
911
|
+
"medical_secretary": "Medical Secretary",
|
|
912
|
+
"veterinary": "Veterinary",
|
|
913
|
+
"physical_therapy": "Physical Therapy",
|
|
914
|
+
"occupational_therapy": "Occupational Therapy",
|
|
915
|
+
"speech_pathology": "Speech Pathology",
|
|
916
|
+
"respiratory_therapy": "Respiratory Therapy",
|
|
917
|
+
"elderly_care": "Elderly Care",
|
|
918
|
+
"disability_support": "Disability Support",
|
|
919
|
+
"clinical_research": "Clinical Research",
|
|
920
|
+
"drug_development": "Drug Development",
|
|
921
|
+
"bioinformatics": "Bioinformatics",
|
|
922
|
+
"microbiology": "Microbiology",
|
|
923
|
+
"pharmacology": "Pharmacology",
|
|
924
|
+
"laboratory_tech": "Laboratory Tech",
|
|
925
|
+
"psychology": "Psychology",
|
|
926
|
+
"counseling": "Counseling",
|
|
927
|
+
"psychiatry": "Psychiatry",
|
|
928
|
+
"social_work": "Social Work",
|
|
929
|
+
"addiction_recovery": "Addiction Recovery",
|
|
930
|
+
"child_welfare": "Child Welfare",
|
|
931
|
+
"solar_energy": "Solar Energy",
|
|
932
|
+
"wind_power": "Wind Power",
|
|
933
|
+
"hydroelectric": "Hydroelectric",
|
|
934
|
+
"battery_and_storage_tech": "Battery & Storage Tech",
|
|
935
|
+
"geothermal": "Geothermal",
|
|
936
|
+
"biofuels": "Biofuels",
|
|
937
|
+
"oil_and_gas": "Oil & Gas",
|
|
938
|
+
"mining_and_geology": "Mining & Geology",
|
|
939
|
+
"nuclear_energy": "Nuclear Energy",
|
|
940
|
+
"water_management": "Water Management",
|
|
941
|
+
"electrical_grid_operations": "Electrical Grid Operations",
|
|
942
|
+
"agri_tech": "Agri-Tech",
|
|
943
|
+
"horticulture": "Horticulture",
|
|
944
|
+
"livestock_management": "Livestock Management",
|
|
945
|
+
"forestry": "Forestry",
|
|
946
|
+
"fisheries_and_aquaculture": "Fisheries & Aquaculture",
|
|
947
|
+
"soil_science": "Soil Science",
|
|
948
|
+
"sustainability_consulting": "Sustainability Consulting",
|
|
949
|
+
"waste_management": "Waste Management",
|
|
950
|
+
"wildlife_conservation": "Wildlife Conservation",
|
|
951
|
+
"carbon_accounting": "Carbon Accounting",
|
|
952
|
+
"ecology": "Ecology",
|
|
953
|
+
"occupational_health_and_safety": "Occupational Health & Safety",
|
|
954
|
+
"sustainability": "Sustainability",
|
|
955
|
+
"investment_banking": "Investment Banking",
|
|
956
|
+
"corporate_finance": "Corporate Finance",
|
|
957
|
+
"wealth_management": "Wealth Management",
|
|
958
|
+
"venture_capital": "Venture Capital",
|
|
959
|
+
"asset_management": "Asset Management",
|
|
960
|
+
"financial_analysis": "Financial Analysis",
|
|
961
|
+
"financial_planning": "Financial Planning",
|
|
962
|
+
"risk_management": "Risk Management",
|
|
963
|
+
"credit_analysis": "Credit Analysis",
|
|
964
|
+
"cryptocurrency_and_web3": "Cryptocurrency & Web3",
|
|
965
|
+
"digital_payments": "Digital Payments",
|
|
966
|
+
"actuarial_science": "Actuarial Science",
|
|
967
|
+
"insurance_underwriting": "Insurance Underwriting",
|
|
968
|
+
"claims_adjustment": "Claims Adjustment",
|
|
969
|
+
"public_accounting": "Public Accounting",
|
|
970
|
+
"taxation": "Taxation",
|
|
971
|
+
"forensic_accounting": "Forensic Accounting",
|
|
972
|
+
"audit_and_assurance": "Audit & Assurance",
|
|
973
|
+
"bookkeeping": "Bookkeeping",
|
|
974
|
+
"accounts_payable": "Accounts Payable",
|
|
975
|
+
"accounts_receivable": "Accounts Receivable",
|
|
976
|
+
"payroll": "Payroll",
|
|
977
|
+
"collections": "Collections",
|
|
978
|
+
"corporate_law": "Corporate Law",
|
|
979
|
+
"litigation": "Litigation",
|
|
980
|
+
"intellectual_property": "Intellectual Property",
|
|
981
|
+
"compliance_and_regulatory": "Compliance & Regulatory",
|
|
982
|
+
"paralegal_services": "Paralegal Services",
|
|
983
|
+
"paralegal": "Paralegal",
|
|
984
|
+
"urban_planning": "Urban Planning",
|
|
985
|
+
"interior_design": "Interior Design",
|
|
986
|
+
"landscape_architecture": "Landscape Architecture",
|
|
987
|
+
"cad_bim_management": "CAD/BIM Management",
|
|
988
|
+
"construction_management": "Construction Management",
|
|
989
|
+
"site_supervision": "Site Supervision",
|
|
990
|
+
"structural_engineering": "Structural Engineering",
|
|
991
|
+
"mechanical_engineering": "Mechanical Engineering",
|
|
992
|
+
"electrical_engineering": "Electrical Engineering",
|
|
993
|
+
"robotics_and_automation": "Robotics & Automation",
|
|
994
|
+
"chemical_engineering": "Chemical Engineering",
|
|
995
|
+
"industrial_engineering": "Industrial Engineering",
|
|
996
|
+
"process_engineering": "Process Engineering",
|
|
997
|
+
"mechatronics": "Mechatronics",
|
|
998
|
+
"electrician": "Electrician",
|
|
999
|
+
"plumbing_and_hvac": "Plumbing & HVAC",
|
|
1000
|
+
"carpentry": "Carpentry",
|
|
1001
|
+
"welding": "Welding",
|
|
1002
|
+
"heavy_equipment_operation": "Heavy Equipment Operation",
|
|
1003
|
+
"masonry": "Masonry",
|
|
1004
|
+
"machining": "Machining",
|
|
1005
|
+
"facilities_maintenance": "Facilities Maintenance",
|
|
1006
|
+
"digital_marketing": "Digital Marketing",
|
|
1007
|
+
"seo_sem": "SEO/SEM",
|
|
1008
|
+
"content_strategy": "Content Strategy",
|
|
1009
|
+
"social_media_management": "Social Media Management",
|
|
1010
|
+
"brand_management": "Brand Management",
|
|
1011
|
+
"market_research": "Market Research",
|
|
1012
|
+
"marketing_strategy": "Marketing Strategy",
|
|
1013
|
+
"journalism": "Journalism",
|
|
1014
|
+
"video_production": "Video Production",
|
|
1015
|
+
"animation_and_vfx": "Animation & VFX",
|
|
1016
|
+
"audio_engineering": "Audio Engineering",
|
|
1017
|
+
"photography": "Photography",
|
|
1018
|
+
"broadcasting": "Broadcasting",
|
|
1019
|
+
"graphic_design": "Graphic Design",
|
|
1020
|
+
"fine_arts": "Fine Arts",
|
|
1021
|
+
"fashion_design": "Fashion Design",
|
|
1022
|
+
"apparel_manufacturing": "Apparel Manufacturing",
|
|
1023
|
+
"textile_design": "Textile Design",
|
|
1024
|
+
"logistics_management": "Logistics Management",
|
|
1025
|
+
"warehousing": "Warehousing",
|
|
1026
|
+
"fleet_operations": "Fleet Operations",
|
|
1027
|
+
"freight_forwarding": "Freight Forwarding",
|
|
1028
|
+
"procurement": "Procurement",
|
|
1029
|
+
"purchasing": "Purchasing",
|
|
1030
|
+
"warehouse_operations": "Warehouse Operations",
|
|
1031
|
+
"freight_and_shipping": "Freight & Shipping",
|
|
1032
|
+
"enterprise_sales": "Enterprise Sales",
|
|
1033
|
+
"account_management": "Account Management",
|
|
1034
|
+
"retail_management": "Retail Management",
|
|
1035
|
+
"real_estate_sales": "Real Estate Sales",
|
|
1036
|
+
"customer_success": "Customer Success",
|
|
1037
|
+
"sales_management": "Sales Management",
|
|
1038
|
+
"sales_operations": "Sales Operations",
|
|
1039
|
+
"sales_support": "Sales Support",
|
|
1040
|
+
"technical_sales": "Technical Sales",
|
|
1041
|
+
"recruiting": "Recruiting",
|
|
1042
|
+
"compensation_and_benefits": "Compensation & Benefits",
|
|
1043
|
+
"office_administration": "Office Administration",
|
|
1044
|
+
"executive_assistance": "Executive Assistance",
|
|
1045
|
+
"organizational_development": "Organizational Development",
|
|
1046
|
+
"hr_operations": "HR Operations",
|
|
1047
|
+
"talent_acquisition": "Talent Acquisition",
|
|
1048
|
+
"learning_and_development": "Learning & Development",
|
|
1049
|
+
"administrative_support": "Administrative Support",
|
|
1050
|
+
"office_management": "Office Management",
|
|
1051
|
+
"k_12_teaching": "K-12 Teaching",
|
|
1052
|
+
"higher_education": "Higher Education",
|
|
1053
|
+
"special_education": "Special Education",
|
|
1054
|
+
"esl_instruction": "ESL Instruction",
|
|
1055
|
+
"edtech": "EdTech",
|
|
1056
|
+
"corporate_training": "Corporate Training",
|
|
1057
|
+
"public_policy": "Public Policy",
|
|
1058
|
+
"social_services": "Social Services",
|
|
1059
|
+
"fundraising_and_grants": "Fundraising & Grants",
|
|
1060
|
+
"law_enforcement": "Law Enforcement",
|
|
1061
|
+
"military": "Military",
|
|
1062
|
+
"diplomacy": "Diplomacy",
|
|
1063
|
+
"public_administration": "Public Administration",
|
|
1064
|
+
"restaurant_operations": "Restaurant Operations",
|
|
1065
|
+
"food_preparation": "Food Preparation",
|
|
1066
|
+
"culinary_arts": "Culinary Arts",
|
|
1067
|
+
"barista_and_bar": "Barista & Bar",
|
|
1068
|
+
"catering": "Catering",
|
|
1069
|
+
"food_service": "Food Service",
|
|
1070
|
+
"hotel_operations": "Hotel Operations",
|
|
1071
|
+
"front_desk_and_reception": "Front Desk & Reception",
|
|
1072
|
+
"housekeeping": "Housekeeping",
|
|
1073
|
+
"travel_and_tourism": "Travel & Tourism",
|
|
1074
|
+
"events_and_conferences": "Events & Conferences",
|
|
1075
|
+
"assembly": "Assembly",
|
|
1076
|
+
"machine_operation": "Machine Operation",
|
|
1077
|
+
"production_management": "Production Management",
|
|
1078
|
+
"manufacturing_engineering": "Manufacturing Engineering",
|
|
1079
|
+
"food_production": "Food Production",
|
|
1080
|
+
"packaging": "Packaging",
|
|
1081
|
+
"quality_assurance": "Quality Assurance",
|
|
1082
|
+
"quality_control": "Quality Control",
|
|
1083
|
+
"process_improvement": "Process Improvement",
|
|
1084
|
+
"maintenance_and_reliability": "Maintenance & Reliability",
|
|
1085
|
+
"industrial_safety": "Industrial Safety",
|
|
1086
|
+
"store_management": "Store Management",
|
|
1087
|
+
"sales_associate": "Sales Associate",
|
|
1088
|
+
"visual_merchandising": "Visual Merchandising",
|
|
1089
|
+
"cashier_and_checkout": "Cashier & Checkout",
|
|
1090
|
+
"inventory_and_stock": "Inventory & Stock",
|
|
1091
|
+
"customer_support": "Customer Support",
|
|
1092
|
+
"call_centre": "Call Centre",
|
|
1093
|
+
"client_advisory": "Client Advisory",
|
|
1094
|
+
"complaints_and_escalations": "Complaints & Escalations",
|
|
1095
|
+
"automotive_technician": "Automotive Technician",
|
|
1096
|
+
"automotive_repair": "Automotive Repair",
|
|
1097
|
+
"heavy_vehicle_mechanic": "Heavy Vehicle Mechanic",
|
|
1098
|
+
"vehicle_inspection": "Vehicle Inspection",
|
|
1099
|
+
"auto_body_and_paint": "Auto Body & Paint",
|
|
1100
|
+
"truck_driving": "Truck Driving",
|
|
1101
|
+
"delivery_and_courier": "Delivery & Courier",
|
|
1102
|
+
"public_transport": "Public Transport",
|
|
1103
|
+
"fleet_management": "Fleet Management"
|
|
1104
|
+
};
|