@thejob/schema 2.0.5 → 2.0.7

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/dist/index.js CHANGED
@@ -396,7 +396,15 @@ var PageSchema = object10().shape({
396
396
  dark: string7().optional().nullable().label("Dark Logo"),
397
397
  light: string7().required().label("Light Logo")
398
398
  }).optional().nullable().default(null).label("Logo"),
399
+ // Taxonomy (see job-taxonomy.constant.ts): category -> industry -> subCategory,
400
+ // stored as slugs and translated for display. As on JobSchema, these are NOT
401
+ // `oneOf`-constrained: a value that drifts out of the taxonomy must be dropped,
402
+ // never a reason to reject the whole page. `categories` is the top level (kept
403
+ // required for backward compatibility); `industries` and `subCategories` are the
404
+ // deeper levels the tree picker fills in when a leaf auto-selects its parents.
399
405
  categories: array5().of(string7().trim().required()).required().min(1).label("Categories"),
406
+ industries: array5().of(string7().trim().required()).optional().default([]).label("Industries"),
407
+ subCategories: array5().of(string7().trim().required()).optional().default([]).label("Sub Categories"),
400
408
  socialAccounts: array5().of(SocialAccountSchema).optional().label("Social Accounts"),
401
409
  isOwner: boolean7().optional().label("Is Owner"),
402
410
  isFeatured: boolean7().optional().default(false).label("Is Featured"),
@@ -711,6 +719,18 @@ var JobSchema = object16({
711
719
  isNegotiable: boolean9().nullable().optional().default(true).label("Is Negotiable")
712
720
  }).nullable().optional().label("Salary Range"),
713
721
  reports: array8().of(UserIdAndCreatedAtSchema).optional().label("Reports"),
722
+ // Taxonomy fields are constants (see job-taxonomy.constant.ts), stored as slugs and
723
+ // translated for display. They are deliberately NOT `oneOf`-constrained here: a value
724
+ // outside the taxonomy must be DROPPED, never a reason to reject the posting. Yup
725
+ // `oneOf` fails the whole object, so one stale subCategory would cost a user their
726
+ // entire job on the create/edit form, and a single drifted LLM value would bin an
727
+ // otherwise-good enriched job.
728
+ //
729
+ // Callers sanitize instead: jobs-service's sanitizeTaxonomy() coerces unknown values
730
+ // to null / filters them out of the array before validation. Taxonomies change over
731
+ // time (values get renamed, retired, added), so stored jobs will always outlive the
732
+ // enum — being lenient here is what lets the taxonomy evolve without a migration
733
+ // gate on every write.
714
734
  category: string13().nullable().optional().label("Category"),
715
735
  industry: string13().nullable().optional().label("Industry"),
716
736
  subCategories: array8().of(string13().trim().required()).nullable().optional().label("Sub Categories"),
@@ -720,6 +740,1116 @@ var JobSchema = object16({
720
740
  featuredMarkets: array8().of(string13().required()).optional().default([]).label("Featured markets")
721
741
  }).concat(DbDefaultSchema).noUnknown().label("Job");
722
742
 
743
+ // src/job/job-taxonomy.constant.ts
744
+ var JobCategory = /* @__PURE__ */ ((JobCategory2) => {
745
+ JobCategory2["TechnologyDataAndDigital"] = "technology_data_and_digital";
746
+ JobCategory2["HealthcareAndLifeSciences"] = "healthcare_and_life_sciences";
747
+ JobCategory2["AgricultureEnergyAndEnvironment"] = "agriculture_energy_and_environment";
748
+ JobCategory2["FinanceBankingAndLegal"] = "finance_banking_and_legal";
749
+ JobCategory2["ConstructionEngineeringAndTrades"] = "construction_engineering_and_trades";
750
+ JobCategory2["MarketingMediaAndCreative"] = "marketing_media_and_creative";
751
+ JobCategory2["LogisticsSalesAndOperations"] = "logistics_sales_and_operations";
752
+ JobCategory2["EducationAndPublicService"] = "education_and_public_service";
753
+ JobCategory2["HospitalityFoodAndTourism"] = "hospitality_food_and_tourism";
754
+ JobCategory2["ManufacturingAndProduction"] = "manufacturing_and_production";
755
+ JobCategory2["RetailAndConsumerServices"] = "retail_and_consumer_services";
756
+ JobCategory2["AutomotiveAndTransportServices"] = "automotive_and_transport_services";
757
+ return JobCategory2;
758
+ })(JobCategory || {});
759
+ var SupportedJobCategories = Object.values(JobCategory);
760
+ var JobIndustry = /* @__PURE__ */ ((JobIndustry2) => {
761
+ JobIndustry2["SoftwareAndWebDevelopment"] = "software_and_web_development";
762
+ JobIndustry2["DataAIAndAnalytics"] = "data_ai_and_analytics";
763
+ JobIndustry2["ITInfrastructureAndSecurity"] = "it_infrastructure_and_security";
764
+ JobIndustry2["ProductAndDesign"] = "product_and_design";
765
+ JobIndustry2["MedicalPractice"] = "medical_practice";
766
+ JobIndustry2["TherapyAndRehabilitation"] = "therapy_and_rehabilitation";
767
+ JobIndustry2["BioTechAndPharmaceuticals"] = "biotech_and_pharmaceuticals";
768
+ JobIndustry2["MentalHealth"] = "mental_health";
769
+ JobIndustry2["RenewableEnergy"] = "renewable_energy";
770
+ JobIndustry2["NaturalResourcesAndUtilities"] = "natural_resources_and_utilities";
771
+ JobIndustry2["AgricultureAndForestry"] = "agriculture_and_forestry";
772
+ JobIndustry2["EnvironmentalServices"] = "environmental_services";
773
+ JobIndustry2["BankingAndInvestments"] = "banking_and_investments";
774
+ JobIndustry2["FinTechAndInsurance"] = "fintech_and_insurance";
775
+ JobIndustry2["AccountingAndAudit"] = "accounting_and_audit";
776
+ JobIndustry2["LegalServices"] = "legal_services";
777
+ JobIndustry2["ArchitectureAndPlanning"] = "architecture_and_planning";
778
+ JobIndustry2["CivilAndIndustrialEngineering"] = "civil_and_industrial_engineering";
779
+ JobIndustry2["SkilledTrades"] = "skilled_trades";
780
+ JobIndustry2["MarketingAndAdvertising"] = "marketing_and_advertising";
781
+ JobIndustry2["MediaAndEntertainment"] = "media_and_entertainment";
782
+ JobIndustry2["CreativeArtsAndFashion"] = "creative_arts_and_fashion";
783
+ JobIndustry2["SupplyChainAndTransport"] = "supply_chain_and_transport";
784
+ JobIndustry2["SalesAndBusinessDevelopment"] = "sales_and_business_development";
785
+ JobIndustry2["HRAndAdmin"] = "hr_and_admin";
786
+ JobIndustry2["EducationAndTraining"] = "education_and_training";
787
+ JobIndustry2["GovernmentAndNonProfit"] = "government_and_non_profit";
788
+ JobIndustry2["FoodAndBeverageService"] = "food_and_beverage_service";
789
+ JobIndustry2["AccommodationAndTravel"] = "accommodation_and_travel";
790
+ JobIndustry2["ProductionAndAssembly"] = "production_and_assembly";
791
+ JobIndustry2["QualityAndProcess"] = "quality_and_process";
792
+ JobIndustry2["RetailOperations"] = "retail_operations";
793
+ JobIndustry2["CustomerService"] = "customer_service";
794
+ JobIndustry2["VehicleServiceAndRepair"] = "vehicle_service_and_repair";
795
+ JobIndustry2["DrivingAndTransport"] = "driving_and_transport";
796
+ return JobIndustry2;
797
+ })(JobIndustry || {});
798
+ var SupportedJobIndustries = Object.values(JobIndustry);
799
+ var JobSubCategory = /* @__PURE__ */ ((JobSubCategory2) => {
800
+ JobSubCategory2["Frontend"] = "frontend";
801
+ JobSubCategory2["Backend"] = "backend";
802
+ JobSubCategory2["FullStack"] = "full_stack";
803
+ JobSubCategory2["MobileAppDev"] = "mobile_app_dev";
804
+ JobSubCategory2["GameDevelopment"] = "game_development";
805
+ JobSubCategory2["EmbeddedSystems"] = "embedded_systems";
806
+ JobSubCategory2["QAAndTesting"] = "qa_and_testing";
807
+ JobSubCategory2["SoftwareEngineering"] = "software_engineering";
808
+ JobSubCategory2["WebDevelopment"] = "web_development";
809
+ JobSubCategory2["SoftwareArchitecture"] = "software_architecture";
810
+ JobSubCategory2["DataScience"] = "data_science";
811
+ JobSubCategory2["MachineLearning"] = "machine_learning";
812
+ JobSubCategory2["ArtificialIntelligence"] = "artificial_intelligence";
813
+ JobSubCategory2["BusinessIntelligence"] = "business_intelligence";
814
+ JobSubCategory2["DataEngineering"] = "data_engineering";
815
+ JobSubCategory2["DataVisualization"] = "data_visualization";
816
+ JobSubCategory2["DataAnalysis"] = "data_analysis";
817
+ JobSubCategory2["DeepLearning"] = "deep_learning";
818
+ JobSubCategory2["Cybersecurity"] = "cybersecurity";
819
+ JobSubCategory2["CloudEngineering"] = "cloud_engineering";
820
+ JobSubCategory2["DevOps"] = "devops";
821
+ JobSubCategory2["NetworkAdministration"] = "network_administration";
822
+ JobSubCategory2["SystemsEngineering"] = "systems_engineering";
823
+ JobSubCategory2["DatabaseAdministration"] = "database_administration";
824
+ JobSubCategory2["ITSupport"] = "it_support";
825
+ JobSubCategory2["TechnicalSupport"] = "technical_support";
826
+ JobSubCategory2["SiteReliabilityEngineering"] = "site_reliability_engineering";
827
+ JobSubCategory2["ProductManagement"] = "product_management";
828
+ JobSubCategory2["UIUXDesign"] = "ui_ux_design";
829
+ JobSubCategory2["UserResearch"] = "user_research";
830
+ JobSubCategory2["InteractionDesign"] = "interaction_design";
831
+ JobSubCategory2["TechnicalWriting"] = "technical_writing";
832
+ JobSubCategory2["ProductMarketing"] = "product_marketing";
833
+ JobSubCategory2["BusinessAnalysis"] = "business_analysis";
834
+ JobSubCategory2["ProjectManagement"] = "project_management";
835
+ JobSubCategory2["ProgramManagement"] = "program_management";
836
+ JobSubCategory2["Nursing"] = "nursing";
837
+ JobSubCategory2["GeneralPractice"] = "general_practice";
838
+ JobSubCategory2["Surgery"] = "surgery";
839
+ JobSubCategory2["Pediatrics"] = "pediatrics";
840
+ JobSubCategory2["EmergencyMedicine"] = "emergency_medicine";
841
+ JobSubCategory2["Radiology"] = "radiology";
842
+ JobSubCategory2["Anesthesiology"] = "anesthesiology";
843
+ JobSubCategory2["Geriatrics"] = "geriatrics";
844
+ JobSubCategory2["Oncology"] = "oncology";
845
+ JobSubCategory2["Dentistry"] = "dentistry";
846
+ JobSubCategory2["DentalHygiene"] = "dental_hygiene";
847
+ JobSubCategory2["MedicalSecretary"] = "medical_secretary";
848
+ JobSubCategory2["Veterinary"] = "veterinary";
849
+ JobSubCategory2["PhysicalTherapy"] = "physical_therapy";
850
+ JobSubCategory2["OccupationalTherapy"] = "occupational_therapy";
851
+ JobSubCategory2["SpeechPathology"] = "speech_pathology";
852
+ JobSubCategory2["RespiratoryTherapy"] = "respiratory_therapy";
853
+ JobSubCategory2["ElderlyCare"] = "elderly_care";
854
+ JobSubCategory2["DisabilitySupport"] = "disability_support";
855
+ JobSubCategory2["ClinicalResearch"] = "clinical_research";
856
+ JobSubCategory2["DrugDevelopment"] = "drug_development";
857
+ JobSubCategory2["Bioinformatics"] = "bioinformatics";
858
+ JobSubCategory2["Microbiology"] = "microbiology";
859
+ JobSubCategory2["Pharmacology"] = "pharmacology";
860
+ JobSubCategory2["LaboratoryTech"] = "laboratory_tech";
861
+ JobSubCategory2["Psychology"] = "psychology";
862
+ JobSubCategory2["Counseling"] = "counseling";
863
+ JobSubCategory2["Psychiatry"] = "psychiatry";
864
+ JobSubCategory2["SocialWork"] = "social_work";
865
+ JobSubCategory2["AddictionRecovery"] = "addiction_recovery";
866
+ JobSubCategory2["ChildWelfare"] = "child_welfare";
867
+ JobSubCategory2["SolarEnergy"] = "solar_energy";
868
+ JobSubCategory2["WindPower"] = "wind_power";
869
+ JobSubCategory2["Hydroelectric"] = "hydroelectric";
870
+ JobSubCategory2["BatteryAndStorageTech"] = "battery_and_storage_tech";
871
+ JobSubCategory2["Geothermal"] = "geothermal";
872
+ JobSubCategory2["Biofuels"] = "biofuels";
873
+ JobSubCategory2["OilAndGas"] = "oil_and_gas";
874
+ JobSubCategory2["MiningAndGeology"] = "mining_and_geology";
875
+ JobSubCategory2["NuclearEnergy"] = "nuclear_energy";
876
+ JobSubCategory2["WaterManagement"] = "water_management";
877
+ JobSubCategory2["ElectricalGridOperations"] = "electrical_grid_operations";
878
+ JobSubCategory2["AgriTech"] = "agri_tech";
879
+ JobSubCategory2["Horticulture"] = "horticulture";
880
+ JobSubCategory2["LivestockManagement"] = "livestock_management";
881
+ JobSubCategory2["Forestry"] = "forestry";
882
+ JobSubCategory2["FisheriesAndAquaculture"] = "fisheries_and_aquaculture";
883
+ JobSubCategory2["SoilScience"] = "soil_science";
884
+ JobSubCategory2["SustainabilityConsulting"] = "sustainability_consulting";
885
+ JobSubCategory2["WasteManagement"] = "waste_management";
886
+ JobSubCategory2["WildlifeConservation"] = "wildlife_conservation";
887
+ JobSubCategory2["CarbonAccounting"] = "carbon_accounting";
888
+ JobSubCategory2["Ecology"] = "ecology";
889
+ JobSubCategory2["OccupationalHealthAndSafety"] = "occupational_health_and_safety";
890
+ JobSubCategory2["Sustainability"] = "sustainability";
891
+ JobSubCategory2["InvestmentBanking"] = "investment_banking";
892
+ JobSubCategory2["CorporateFinance"] = "corporate_finance";
893
+ JobSubCategory2["WealthManagement"] = "wealth_management";
894
+ JobSubCategory2["VentureCapital"] = "venture_capital";
895
+ JobSubCategory2["AssetManagement"] = "asset_management";
896
+ JobSubCategory2["FinancialAnalysis"] = "financial_analysis";
897
+ JobSubCategory2["FinancialPlanning"] = "financial_planning";
898
+ JobSubCategory2["RiskManagement"] = "risk_management";
899
+ JobSubCategory2["CreditAnalysis"] = "credit_analysis";
900
+ JobSubCategory2["CryptocurrencyAndWeb3"] = "cryptocurrency_and_web3";
901
+ JobSubCategory2["DigitalPayments"] = "digital_payments";
902
+ JobSubCategory2["ActuarialScience"] = "actuarial_science";
903
+ JobSubCategory2["InsuranceUnderwriting"] = "insurance_underwriting";
904
+ JobSubCategory2["ClaimsAdjustment"] = "claims_adjustment";
905
+ JobSubCategory2["PublicAccounting"] = "public_accounting";
906
+ JobSubCategory2["Taxation"] = "taxation";
907
+ JobSubCategory2["ForensicAccounting"] = "forensic_accounting";
908
+ JobSubCategory2["AuditAndAssurance"] = "audit_and_assurance";
909
+ JobSubCategory2["Bookkeeping"] = "bookkeeping";
910
+ JobSubCategory2["AccountsPayable"] = "accounts_payable";
911
+ JobSubCategory2["AccountsReceivable"] = "accounts_receivable";
912
+ JobSubCategory2["Payroll"] = "payroll";
913
+ JobSubCategory2["Collections"] = "collections";
914
+ JobSubCategory2["CorporateLaw"] = "corporate_law";
915
+ JobSubCategory2["Litigation"] = "litigation";
916
+ JobSubCategory2["IntellectualProperty"] = "intellectual_property";
917
+ JobSubCategory2["ComplianceAndRegulatory"] = "compliance_and_regulatory";
918
+ JobSubCategory2["ParalegalServices"] = "paralegal_services";
919
+ JobSubCategory2["Paralegal"] = "paralegal";
920
+ JobSubCategory2["UrbanPlanning"] = "urban_planning";
921
+ JobSubCategory2["InteriorDesign"] = "interior_design";
922
+ JobSubCategory2["LandscapeArchitecture"] = "landscape_architecture";
923
+ JobSubCategory2["CADBIMManagement"] = "cad_bim_management";
924
+ JobSubCategory2["ConstructionManagement"] = "construction_management";
925
+ JobSubCategory2["SiteSupervision"] = "site_supervision";
926
+ JobSubCategory2["StructuralEngineering"] = "structural_engineering";
927
+ JobSubCategory2["MechanicalEngineering"] = "mechanical_engineering";
928
+ JobSubCategory2["ElectricalEngineering"] = "electrical_engineering";
929
+ JobSubCategory2["RoboticsAndAutomation"] = "robotics_and_automation";
930
+ JobSubCategory2["ChemicalEngineering"] = "chemical_engineering";
931
+ JobSubCategory2["IndustrialEngineering"] = "industrial_engineering";
932
+ JobSubCategory2["ProcessEngineering"] = "process_engineering";
933
+ JobSubCategory2["Mechatronics"] = "mechatronics";
934
+ JobSubCategory2["Electrician"] = "electrician";
935
+ JobSubCategory2["PlumbingAndHVAC"] = "plumbing_and_hvac";
936
+ JobSubCategory2["Carpentry"] = "carpentry";
937
+ JobSubCategory2["Welding"] = "welding";
938
+ JobSubCategory2["HeavyEquipmentOperation"] = "heavy_equipment_operation";
939
+ JobSubCategory2["Masonry"] = "masonry";
940
+ JobSubCategory2["Machining"] = "machining";
941
+ JobSubCategory2["FacilitiesMaintenance"] = "facilities_maintenance";
942
+ JobSubCategory2["DigitalMarketing"] = "digital_marketing";
943
+ JobSubCategory2["SEOSEM"] = "seo_sem";
944
+ JobSubCategory2["ContentStrategy"] = "content_strategy";
945
+ JobSubCategory2["SocialMediaManagement"] = "social_media_management";
946
+ JobSubCategory2["BrandManagement"] = "brand_management";
947
+ JobSubCategory2["MarketResearch"] = "market_research";
948
+ JobSubCategory2["MarketingStrategy"] = "marketing_strategy";
949
+ JobSubCategory2["Journalism"] = "journalism";
950
+ JobSubCategory2["VideoProduction"] = "video_production";
951
+ JobSubCategory2["AnimationAndVFX"] = "animation_and_vfx";
952
+ JobSubCategory2["AudioEngineering"] = "audio_engineering";
953
+ JobSubCategory2["Photography"] = "photography";
954
+ JobSubCategory2["Broadcasting"] = "broadcasting";
955
+ JobSubCategory2["GraphicDesign"] = "graphic_design";
956
+ JobSubCategory2["FineArts"] = "fine_arts";
957
+ JobSubCategory2["FashionDesign"] = "fashion_design";
958
+ JobSubCategory2["ApparelManufacturing"] = "apparel_manufacturing";
959
+ JobSubCategory2["TextileDesign"] = "textile_design";
960
+ JobSubCategory2["LogisticsManagement"] = "logistics_management";
961
+ JobSubCategory2["Warehousing"] = "warehousing";
962
+ JobSubCategory2["FleetOperations"] = "fleet_operations";
963
+ JobSubCategory2["FreightForwarding"] = "freight_forwarding";
964
+ JobSubCategory2["Procurement"] = "procurement";
965
+ JobSubCategory2["Purchasing"] = "purchasing";
966
+ JobSubCategory2["WarehouseOperations"] = "warehouse_operations";
967
+ JobSubCategory2["FreightAndShipping"] = "freight_and_shipping";
968
+ JobSubCategory2["EnterpriseSales"] = "enterprise_sales";
969
+ JobSubCategory2["AccountManagement"] = "account_management";
970
+ JobSubCategory2["RetailManagement"] = "retail_management";
971
+ JobSubCategory2["RealEstateSales"] = "real_estate_sales";
972
+ JobSubCategory2["CustomerSuccess"] = "customer_success";
973
+ JobSubCategory2["SalesManagement"] = "sales_management";
974
+ JobSubCategory2["SalesOperations"] = "sales_operations";
975
+ JobSubCategory2["SalesSupport"] = "sales_support";
976
+ JobSubCategory2["TechnicalSales"] = "technical_sales";
977
+ JobSubCategory2["Recruiting"] = "recruiting";
978
+ JobSubCategory2["CompensationAndBenefits"] = "compensation_and_benefits";
979
+ JobSubCategory2["OfficeAdministration"] = "office_administration";
980
+ JobSubCategory2["ExecutiveAssistance"] = "executive_assistance";
981
+ JobSubCategory2["OrganizationalDevelopment"] = "organizational_development";
982
+ JobSubCategory2["HROperations"] = "hr_operations";
983
+ JobSubCategory2["TalentAcquisition"] = "talent_acquisition";
984
+ JobSubCategory2["LearningAndDevelopment"] = "learning_and_development";
985
+ JobSubCategory2["AdministrativeSupport"] = "administrative_support";
986
+ JobSubCategory2["OfficeManagement"] = "office_management";
987
+ JobSubCategory2["K12Teaching"] = "k_12_teaching";
988
+ JobSubCategory2["HigherEducation"] = "higher_education";
989
+ JobSubCategory2["SpecialEducation"] = "special_education";
990
+ JobSubCategory2["ESLInstruction"] = "esl_instruction";
991
+ JobSubCategory2["EdTech"] = "edtech";
992
+ JobSubCategory2["CorporateTraining"] = "corporate_training";
993
+ JobSubCategory2["PublicPolicy"] = "public_policy";
994
+ JobSubCategory2["SocialServices"] = "social_services";
995
+ JobSubCategory2["FundraisingAndGrants"] = "fundraising_and_grants";
996
+ JobSubCategory2["LawEnforcement"] = "law_enforcement";
997
+ JobSubCategory2["Military"] = "military";
998
+ JobSubCategory2["Diplomacy"] = "diplomacy";
999
+ JobSubCategory2["PublicAdministration"] = "public_administration";
1000
+ JobSubCategory2["RestaurantOperations"] = "restaurant_operations";
1001
+ JobSubCategory2["FoodPreparation"] = "food_preparation";
1002
+ JobSubCategory2["CulinaryArts"] = "culinary_arts";
1003
+ JobSubCategory2["BaristaAndBar"] = "barista_and_bar";
1004
+ JobSubCategory2["Catering"] = "catering";
1005
+ JobSubCategory2["FoodService"] = "food_service";
1006
+ JobSubCategory2["HotelOperations"] = "hotel_operations";
1007
+ JobSubCategory2["FrontDeskAndReception"] = "front_desk_and_reception";
1008
+ JobSubCategory2["Housekeeping"] = "housekeeping";
1009
+ JobSubCategory2["TravelAndTourism"] = "travel_and_tourism";
1010
+ JobSubCategory2["EventsAndConferences"] = "events_and_conferences";
1011
+ JobSubCategory2["Assembly"] = "assembly";
1012
+ JobSubCategory2["MachineOperation"] = "machine_operation";
1013
+ JobSubCategory2["ProductionManagement"] = "production_management";
1014
+ JobSubCategory2["ManufacturingEngineering"] = "manufacturing_engineering";
1015
+ JobSubCategory2["FoodProduction"] = "food_production";
1016
+ JobSubCategory2["Packaging"] = "packaging";
1017
+ JobSubCategory2["QualityAssurance"] = "quality_assurance";
1018
+ JobSubCategory2["QualityControl"] = "quality_control";
1019
+ JobSubCategory2["ProcessImprovement"] = "process_improvement";
1020
+ JobSubCategory2["MaintenanceAndReliability"] = "maintenance_and_reliability";
1021
+ JobSubCategory2["IndustrialSafety"] = "industrial_safety";
1022
+ JobSubCategory2["StoreManagement"] = "store_management";
1023
+ JobSubCategory2["SalesAssociate"] = "sales_associate";
1024
+ JobSubCategory2["VisualMerchandising"] = "visual_merchandising";
1025
+ JobSubCategory2["CashierAndCheckout"] = "cashier_and_checkout";
1026
+ JobSubCategory2["InventoryAndStock"] = "inventory_and_stock";
1027
+ JobSubCategory2["CustomerSupport"] = "customer_support";
1028
+ JobSubCategory2["CallCentre"] = "call_centre";
1029
+ JobSubCategory2["ClientAdvisory"] = "client_advisory";
1030
+ JobSubCategory2["ComplaintsAndEscalations"] = "complaints_and_escalations";
1031
+ JobSubCategory2["AutomotiveTechnician"] = "automotive_technician";
1032
+ JobSubCategory2["AutomotiveRepair"] = "automotive_repair";
1033
+ JobSubCategory2["HeavyVehicleMechanic"] = "heavy_vehicle_mechanic";
1034
+ JobSubCategory2["VehicleInspection"] = "vehicle_inspection";
1035
+ JobSubCategory2["AutoBodyAndPaint"] = "auto_body_and_paint";
1036
+ JobSubCategory2["TruckDriving"] = "truck_driving";
1037
+ JobSubCategory2["DeliveryAndCourier"] = "delivery_and_courier";
1038
+ JobSubCategory2["PublicTransport"] = "public_transport";
1039
+ JobSubCategory2["FleetManagement"] = "fleet_management";
1040
+ return JobSubCategory2;
1041
+ })(JobSubCategory || {});
1042
+ var SupportedJobSubCategories = Object.values(JobSubCategory);
1043
+ var JOB_TAXONOMY = [
1044
+ {
1045
+ category: "technology_data_and_digital" /* TechnologyDataAndDigital */,
1046
+ industries: [
1047
+ {
1048
+ industry: "software_and_web_development" /* SoftwareAndWebDevelopment */,
1049
+ subCategories: [
1050
+ "frontend" /* Frontend */,
1051
+ "backend" /* Backend */,
1052
+ "full_stack" /* FullStack */,
1053
+ "mobile_app_dev" /* MobileAppDev */,
1054
+ "game_development" /* GameDevelopment */,
1055
+ "embedded_systems" /* EmbeddedSystems */,
1056
+ "qa_and_testing" /* QAAndTesting */,
1057
+ "software_engineering" /* SoftwareEngineering */,
1058
+ "web_development" /* WebDevelopment */,
1059
+ "software_architecture" /* SoftwareArchitecture */
1060
+ ]
1061
+ },
1062
+ {
1063
+ industry: "data_ai_and_analytics" /* DataAIAndAnalytics */,
1064
+ subCategories: [
1065
+ "data_science" /* DataScience */,
1066
+ "machine_learning" /* MachineLearning */,
1067
+ "artificial_intelligence" /* ArtificialIntelligence */,
1068
+ "business_intelligence" /* BusinessIntelligence */,
1069
+ "data_engineering" /* DataEngineering */,
1070
+ "data_visualization" /* DataVisualization */,
1071
+ "data_analysis" /* DataAnalysis */,
1072
+ "deep_learning" /* DeepLearning */
1073
+ ]
1074
+ },
1075
+ {
1076
+ industry: "it_infrastructure_and_security" /* ITInfrastructureAndSecurity */,
1077
+ subCategories: [
1078
+ "cybersecurity" /* Cybersecurity */,
1079
+ "cloud_engineering" /* CloudEngineering */,
1080
+ "devops" /* DevOps */,
1081
+ "network_administration" /* NetworkAdministration */,
1082
+ "systems_engineering" /* SystemsEngineering */,
1083
+ "database_administration" /* DatabaseAdministration */,
1084
+ "it_support" /* ITSupport */,
1085
+ "technical_support" /* TechnicalSupport */,
1086
+ "site_reliability_engineering" /* SiteReliabilityEngineering */
1087
+ ]
1088
+ },
1089
+ {
1090
+ industry: "product_and_design" /* ProductAndDesign */,
1091
+ subCategories: [
1092
+ "product_management" /* ProductManagement */,
1093
+ "ui_ux_design" /* UIUXDesign */,
1094
+ "user_research" /* UserResearch */,
1095
+ "interaction_design" /* InteractionDesign */,
1096
+ "technical_writing" /* TechnicalWriting */,
1097
+ "product_marketing" /* ProductMarketing */,
1098
+ "business_analysis" /* BusinessAnalysis */,
1099
+ "project_management" /* ProjectManagement */,
1100
+ "program_management" /* ProgramManagement */
1101
+ ]
1102
+ }
1103
+ ]
1104
+ },
1105
+ {
1106
+ category: "healthcare_and_life_sciences" /* HealthcareAndLifeSciences */,
1107
+ industries: [
1108
+ {
1109
+ industry: "medical_practice" /* MedicalPractice */,
1110
+ subCategories: [
1111
+ "nursing" /* Nursing */,
1112
+ "general_practice" /* GeneralPractice */,
1113
+ "surgery" /* Surgery */,
1114
+ "pediatrics" /* Pediatrics */,
1115
+ "emergency_medicine" /* EmergencyMedicine */,
1116
+ "radiology" /* Radiology */,
1117
+ "anesthesiology" /* Anesthesiology */,
1118
+ "geriatrics" /* Geriatrics */,
1119
+ "oncology" /* Oncology */,
1120
+ "dentistry" /* Dentistry */,
1121
+ "dental_hygiene" /* DentalHygiene */,
1122
+ "medical_secretary" /* MedicalSecretary */,
1123
+ "veterinary" /* Veterinary */
1124
+ ]
1125
+ },
1126
+ {
1127
+ industry: "therapy_and_rehabilitation" /* TherapyAndRehabilitation */,
1128
+ subCategories: [
1129
+ "physical_therapy" /* PhysicalTherapy */,
1130
+ "occupational_therapy" /* OccupationalTherapy */,
1131
+ "speech_pathology" /* SpeechPathology */,
1132
+ "respiratory_therapy" /* RespiratoryTherapy */,
1133
+ "elderly_care" /* ElderlyCare */,
1134
+ "disability_support" /* DisabilitySupport */
1135
+ ]
1136
+ },
1137
+ {
1138
+ industry: "biotech_and_pharmaceuticals" /* BioTechAndPharmaceuticals */,
1139
+ subCategories: [
1140
+ "clinical_research" /* ClinicalResearch */,
1141
+ "drug_development" /* DrugDevelopment */,
1142
+ "bioinformatics" /* Bioinformatics */,
1143
+ "microbiology" /* Microbiology */,
1144
+ "pharmacology" /* Pharmacology */,
1145
+ "laboratory_tech" /* LaboratoryTech */
1146
+ ]
1147
+ },
1148
+ {
1149
+ industry: "mental_health" /* MentalHealth */,
1150
+ subCategories: [
1151
+ "psychology" /* Psychology */,
1152
+ "counseling" /* Counseling */,
1153
+ "psychiatry" /* Psychiatry */,
1154
+ "social_work" /* SocialWork */,
1155
+ "addiction_recovery" /* AddictionRecovery */,
1156
+ "child_welfare" /* ChildWelfare */
1157
+ ]
1158
+ }
1159
+ ]
1160
+ },
1161
+ {
1162
+ category: "agriculture_energy_and_environment" /* AgricultureEnergyAndEnvironment */,
1163
+ industries: [
1164
+ {
1165
+ industry: "renewable_energy" /* RenewableEnergy */,
1166
+ subCategories: [
1167
+ "solar_energy" /* SolarEnergy */,
1168
+ "wind_power" /* WindPower */,
1169
+ "hydroelectric" /* Hydroelectric */,
1170
+ "battery_and_storage_tech" /* BatteryAndStorageTech */,
1171
+ "geothermal" /* Geothermal */,
1172
+ "biofuels" /* Biofuels */
1173
+ ]
1174
+ },
1175
+ {
1176
+ industry: "natural_resources_and_utilities" /* NaturalResourcesAndUtilities */,
1177
+ subCategories: [
1178
+ "oil_and_gas" /* OilAndGas */,
1179
+ "mining_and_geology" /* MiningAndGeology */,
1180
+ "nuclear_energy" /* NuclearEnergy */,
1181
+ "water_management" /* WaterManagement */,
1182
+ "electrical_grid_operations" /* ElectricalGridOperations */
1183
+ ]
1184
+ },
1185
+ {
1186
+ industry: "agriculture_and_forestry" /* AgricultureAndForestry */,
1187
+ subCategories: [
1188
+ "agri_tech" /* AgriTech */,
1189
+ "horticulture" /* Horticulture */,
1190
+ "livestock_management" /* LivestockManagement */,
1191
+ "forestry" /* Forestry */,
1192
+ "fisheries_and_aquaculture" /* FisheriesAndAquaculture */,
1193
+ "soil_science" /* SoilScience */
1194
+ ]
1195
+ },
1196
+ {
1197
+ industry: "environmental_services" /* EnvironmentalServices */,
1198
+ subCategories: [
1199
+ "sustainability_consulting" /* SustainabilityConsulting */,
1200
+ "waste_management" /* WasteManagement */,
1201
+ "wildlife_conservation" /* WildlifeConservation */,
1202
+ "carbon_accounting" /* CarbonAccounting */,
1203
+ "ecology" /* Ecology */,
1204
+ "occupational_health_and_safety" /* OccupationalHealthAndSafety */,
1205
+ "sustainability" /* Sustainability */
1206
+ ]
1207
+ }
1208
+ ]
1209
+ },
1210
+ {
1211
+ category: "finance_banking_and_legal" /* FinanceBankingAndLegal */,
1212
+ industries: [
1213
+ {
1214
+ industry: "banking_and_investments" /* BankingAndInvestments */,
1215
+ subCategories: [
1216
+ "investment_banking" /* InvestmentBanking */,
1217
+ "corporate_finance" /* CorporateFinance */,
1218
+ "wealth_management" /* WealthManagement */,
1219
+ "venture_capital" /* VentureCapital */,
1220
+ "asset_management" /* AssetManagement */,
1221
+ "financial_analysis" /* FinancialAnalysis */,
1222
+ "financial_planning" /* FinancialPlanning */,
1223
+ "risk_management" /* RiskManagement */,
1224
+ "credit_analysis" /* CreditAnalysis */
1225
+ ]
1226
+ },
1227
+ {
1228
+ industry: "fintech_and_insurance" /* FinTechAndInsurance */,
1229
+ subCategories: [
1230
+ "cryptocurrency_and_web3" /* CryptocurrencyAndWeb3 */,
1231
+ "digital_payments" /* DigitalPayments */,
1232
+ "actuarial_science" /* ActuarialScience */,
1233
+ "insurance_underwriting" /* InsuranceUnderwriting */,
1234
+ "claims_adjustment" /* ClaimsAdjustment */
1235
+ ]
1236
+ },
1237
+ {
1238
+ industry: "accounting_and_audit" /* AccountingAndAudit */,
1239
+ subCategories: [
1240
+ "public_accounting" /* PublicAccounting */,
1241
+ "taxation" /* Taxation */,
1242
+ "forensic_accounting" /* ForensicAccounting */,
1243
+ "audit_and_assurance" /* AuditAndAssurance */,
1244
+ "bookkeeping" /* Bookkeeping */,
1245
+ "accounts_payable" /* AccountsPayable */,
1246
+ "accounts_receivable" /* AccountsReceivable */,
1247
+ "payroll" /* Payroll */,
1248
+ "collections" /* Collections */
1249
+ ]
1250
+ },
1251
+ {
1252
+ industry: "legal_services" /* LegalServices */,
1253
+ subCategories: [
1254
+ "corporate_law" /* CorporateLaw */,
1255
+ "litigation" /* Litigation */,
1256
+ "intellectual_property" /* IntellectualProperty */,
1257
+ "compliance_and_regulatory" /* ComplianceAndRegulatory */,
1258
+ "paralegal_services" /* ParalegalServices */,
1259
+ "paralegal" /* Paralegal */
1260
+ ]
1261
+ }
1262
+ ]
1263
+ },
1264
+ {
1265
+ category: "construction_engineering_and_trades" /* ConstructionEngineeringAndTrades */,
1266
+ industries: [
1267
+ {
1268
+ industry: "architecture_and_planning" /* ArchitectureAndPlanning */,
1269
+ subCategories: [
1270
+ "urban_planning" /* UrbanPlanning */,
1271
+ "interior_design" /* InteriorDesign */,
1272
+ "landscape_architecture" /* LandscapeArchitecture */,
1273
+ "cad_bim_management" /* CADBIMManagement */,
1274
+ "construction_management" /* ConstructionManagement */,
1275
+ "site_supervision" /* SiteSupervision */
1276
+ ]
1277
+ },
1278
+ {
1279
+ industry: "civil_and_industrial_engineering" /* CivilAndIndustrialEngineering */,
1280
+ subCategories: [
1281
+ "structural_engineering" /* StructuralEngineering */,
1282
+ "mechanical_engineering" /* MechanicalEngineering */,
1283
+ "electrical_engineering" /* ElectricalEngineering */,
1284
+ "robotics_and_automation" /* RoboticsAndAutomation */,
1285
+ "chemical_engineering" /* ChemicalEngineering */,
1286
+ "industrial_engineering" /* IndustrialEngineering */,
1287
+ "process_engineering" /* ProcessEngineering */,
1288
+ "mechatronics" /* Mechatronics */
1289
+ ]
1290
+ },
1291
+ {
1292
+ industry: "skilled_trades" /* SkilledTrades */,
1293
+ subCategories: [
1294
+ "electrician" /* Electrician */,
1295
+ "plumbing_and_hvac" /* PlumbingAndHVAC */,
1296
+ "carpentry" /* Carpentry */,
1297
+ "welding" /* Welding */,
1298
+ "heavy_equipment_operation" /* HeavyEquipmentOperation */,
1299
+ "masonry" /* Masonry */,
1300
+ "machining" /* Machining */,
1301
+ "facilities_maintenance" /* FacilitiesMaintenance */
1302
+ ]
1303
+ }
1304
+ ]
1305
+ },
1306
+ {
1307
+ category: "marketing_media_and_creative" /* MarketingMediaAndCreative */,
1308
+ industries: [
1309
+ {
1310
+ industry: "marketing_and_advertising" /* MarketingAndAdvertising */,
1311
+ subCategories: [
1312
+ "digital_marketing" /* DigitalMarketing */,
1313
+ "seo_sem" /* SEOSEM */,
1314
+ "content_strategy" /* ContentStrategy */,
1315
+ "social_media_management" /* SocialMediaManagement */,
1316
+ "brand_management" /* BrandManagement */,
1317
+ "market_research" /* MarketResearch */,
1318
+ "marketing_strategy" /* MarketingStrategy */
1319
+ ]
1320
+ },
1321
+ {
1322
+ industry: "media_and_entertainment" /* MediaAndEntertainment */,
1323
+ subCategories: [
1324
+ "journalism" /* Journalism */,
1325
+ "video_production" /* VideoProduction */,
1326
+ "animation_and_vfx" /* AnimationAndVFX */,
1327
+ "audio_engineering" /* AudioEngineering */,
1328
+ "photography" /* Photography */,
1329
+ "broadcasting" /* Broadcasting */
1330
+ ]
1331
+ },
1332
+ {
1333
+ industry: "creative_arts_and_fashion" /* CreativeArtsAndFashion */,
1334
+ subCategories: [
1335
+ "graphic_design" /* GraphicDesign */,
1336
+ "fine_arts" /* FineArts */,
1337
+ "fashion_design" /* FashionDesign */,
1338
+ "apparel_manufacturing" /* ApparelManufacturing */,
1339
+ "textile_design" /* TextileDesign */
1340
+ ]
1341
+ }
1342
+ ]
1343
+ },
1344
+ {
1345
+ category: "logistics_sales_and_operations" /* LogisticsSalesAndOperations */,
1346
+ industries: [
1347
+ {
1348
+ industry: "supply_chain_and_transport" /* SupplyChainAndTransport */,
1349
+ subCategories: [
1350
+ "logistics_management" /* LogisticsManagement */,
1351
+ "warehousing" /* Warehousing */,
1352
+ "fleet_operations" /* FleetOperations */,
1353
+ "freight_forwarding" /* FreightForwarding */,
1354
+ "procurement" /* Procurement */,
1355
+ "purchasing" /* Purchasing */,
1356
+ "warehouse_operations" /* WarehouseOperations */,
1357
+ "freight_and_shipping" /* FreightAndShipping */
1358
+ ]
1359
+ },
1360
+ {
1361
+ industry: "sales_and_business_development" /* SalesAndBusinessDevelopment */,
1362
+ subCategories: [
1363
+ "enterprise_sales" /* EnterpriseSales */,
1364
+ "account_management" /* AccountManagement */,
1365
+ "retail_management" /* RetailManagement */,
1366
+ "real_estate_sales" /* RealEstateSales */,
1367
+ "customer_success" /* CustomerSuccess */,
1368
+ "sales_management" /* SalesManagement */,
1369
+ "sales_operations" /* SalesOperations */,
1370
+ "sales_support" /* SalesSupport */,
1371
+ "technical_sales" /* TechnicalSales */
1372
+ ]
1373
+ },
1374
+ {
1375
+ industry: "hr_and_admin" /* HRAndAdmin */,
1376
+ subCategories: [
1377
+ "recruiting" /* Recruiting */,
1378
+ "compensation_and_benefits" /* CompensationAndBenefits */,
1379
+ "office_administration" /* OfficeAdministration */,
1380
+ "executive_assistance" /* ExecutiveAssistance */,
1381
+ "organizational_development" /* OrganizationalDevelopment */,
1382
+ "hr_operations" /* HROperations */,
1383
+ "talent_acquisition" /* TalentAcquisition */,
1384
+ "learning_and_development" /* LearningAndDevelopment */,
1385
+ "administrative_support" /* AdministrativeSupport */,
1386
+ "office_management" /* OfficeManagement */
1387
+ ]
1388
+ }
1389
+ ]
1390
+ },
1391
+ {
1392
+ category: "education_and_public_service" /* EducationAndPublicService */,
1393
+ industries: [
1394
+ {
1395
+ industry: "education_and_training" /* EducationAndTraining */,
1396
+ subCategories: [
1397
+ "k_12_teaching" /* K12Teaching */,
1398
+ "higher_education" /* HigherEducation */,
1399
+ "special_education" /* SpecialEducation */,
1400
+ "esl_instruction" /* ESLInstruction */,
1401
+ "edtech" /* EdTech */,
1402
+ "corporate_training" /* CorporateTraining */
1403
+ ]
1404
+ },
1405
+ {
1406
+ industry: "government_and_non_profit" /* GovernmentAndNonProfit */,
1407
+ subCategories: [
1408
+ "public_policy" /* PublicPolicy */,
1409
+ "social_services" /* SocialServices */,
1410
+ "fundraising_and_grants" /* FundraisingAndGrants */,
1411
+ "law_enforcement" /* LawEnforcement */,
1412
+ "military" /* Military */,
1413
+ "diplomacy" /* Diplomacy */,
1414
+ "public_administration" /* PublicAdministration */
1415
+ ]
1416
+ }
1417
+ ]
1418
+ },
1419
+ {
1420
+ category: "hospitality_food_and_tourism" /* HospitalityFoodAndTourism */,
1421
+ industries: [
1422
+ {
1423
+ industry: "food_and_beverage_service" /* FoodAndBeverageService */,
1424
+ subCategories: [
1425
+ "restaurant_operations" /* RestaurantOperations */,
1426
+ "food_preparation" /* FoodPreparation */,
1427
+ "culinary_arts" /* CulinaryArts */,
1428
+ "barista_and_bar" /* BaristaAndBar */,
1429
+ "catering" /* Catering */,
1430
+ "food_service" /* FoodService */
1431
+ ]
1432
+ },
1433
+ {
1434
+ industry: "accommodation_and_travel" /* AccommodationAndTravel */,
1435
+ subCategories: [
1436
+ "hotel_operations" /* HotelOperations */,
1437
+ "front_desk_and_reception" /* FrontDeskAndReception */,
1438
+ "housekeeping" /* Housekeeping */,
1439
+ "travel_and_tourism" /* TravelAndTourism */,
1440
+ "events_and_conferences" /* EventsAndConferences */
1441
+ ]
1442
+ }
1443
+ ]
1444
+ },
1445
+ {
1446
+ category: "manufacturing_and_production" /* ManufacturingAndProduction */,
1447
+ industries: [
1448
+ {
1449
+ industry: "production_and_assembly" /* ProductionAndAssembly */,
1450
+ subCategories: [
1451
+ "assembly" /* Assembly */,
1452
+ "machine_operation" /* MachineOperation */,
1453
+ "production_management" /* ProductionManagement */,
1454
+ "manufacturing_engineering" /* ManufacturingEngineering */,
1455
+ "food_production" /* FoodProduction */,
1456
+ "packaging" /* Packaging */
1457
+ ]
1458
+ },
1459
+ {
1460
+ industry: "quality_and_process" /* QualityAndProcess */,
1461
+ subCategories: [
1462
+ "quality_assurance" /* QualityAssurance */,
1463
+ "quality_control" /* QualityControl */,
1464
+ "process_improvement" /* ProcessImprovement */,
1465
+ "maintenance_and_reliability" /* MaintenanceAndReliability */,
1466
+ "industrial_safety" /* IndustrialSafety */
1467
+ ]
1468
+ }
1469
+ ]
1470
+ },
1471
+ {
1472
+ category: "retail_and_consumer_services" /* RetailAndConsumerServices */,
1473
+ industries: [
1474
+ {
1475
+ industry: "retail_operations" /* RetailOperations */,
1476
+ subCategories: [
1477
+ "store_management" /* StoreManagement */,
1478
+ "sales_associate" /* SalesAssociate */,
1479
+ "visual_merchandising" /* VisualMerchandising */,
1480
+ "cashier_and_checkout" /* CashierAndCheckout */,
1481
+ "inventory_and_stock" /* InventoryAndStock */
1482
+ ]
1483
+ },
1484
+ {
1485
+ industry: "customer_service" /* CustomerService */,
1486
+ subCategories: [
1487
+ "customer_support" /* CustomerSupport */,
1488
+ "call_centre" /* CallCentre */,
1489
+ "client_advisory" /* ClientAdvisory */,
1490
+ "complaints_and_escalations" /* ComplaintsAndEscalations */
1491
+ ]
1492
+ }
1493
+ ]
1494
+ },
1495
+ {
1496
+ category: "automotive_and_transport_services" /* AutomotiveAndTransportServices */,
1497
+ industries: [
1498
+ {
1499
+ industry: "vehicle_service_and_repair" /* VehicleServiceAndRepair */,
1500
+ subCategories: [
1501
+ "automotive_technician" /* AutomotiveTechnician */,
1502
+ "automotive_repair" /* AutomotiveRepair */,
1503
+ "heavy_vehicle_mechanic" /* HeavyVehicleMechanic */,
1504
+ "vehicle_inspection" /* VehicleInspection */,
1505
+ "auto_body_and_paint" /* AutoBodyAndPaint */
1506
+ ]
1507
+ },
1508
+ {
1509
+ industry: "driving_and_transport" /* DrivingAndTransport */,
1510
+ subCategories: [
1511
+ "truck_driving" /* TruckDriving */,
1512
+ "delivery_and_courier" /* DeliveryAndCourier */,
1513
+ "public_transport" /* PublicTransport */,
1514
+ "fleet_management" /* FleetManagement */
1515
+ ]
1516
+ }
1517
+ ]
1518
+ }
1519
+ ];
1520
+ var TAXONOMY_LABELS = {
1521
+ "technology_data_and_digital": "Technology, Data & Digital",
1522
+ "healthcare_and_life_sciences": "Healthcare & Life Sciences",
1523
+ "agriculture_energy_and_environment": "Agriculture, Energy & Environment",
1524
+ "finance_banking_and_legal": "Finance, Banking & Legal",
1525
+ "construction_engineering_and_trades": "Construction, Engineering & Trades",
1526
+ "marketing_media_and_creative": "Marketing, Media & Creative",
1527
+ "logistics_sales_and_operations": "Logistics, Sales & Operations",
1528
+ "education_and_public_service": "Education & Public Service",
1529
+ "hospitality_food_and_tourism": "Hospitality, Food & Tourism",
1530
+ "manufacturing_and_production": "Manufacturing & Production",
1531
+ "retail_and_consumer_services": "Retail & Consumer Services",
1532
+ "automotive_and_transport_services": "Automotive & Transport Services",
1533
+ "software_and_web_development": "Software & Web Development",
1534
+ "data_ai_and_analytics": "Data, AI & Analytics",
1535
+ "it_infrastructure_and_security": "IT Infrastructure & Security",
1536
+ "product_and_design": "Product & Design",
1537
+ "medical_practice": "Medical Practice",
1538
+ "therapy_and_rehabilitation": "Therapy & Rehabilitation",
1539
+ "biotech_and_pharmaceuticals": "BioTech & Pharmaceuticals",
1540
+ "mental_health": "Mental Health",
1541
+ "renewable_energy": "Renewable Energy",
1542
+ "natural_resources_and_utilities": "Natural Resources & Utilities",
1543
+ "agriculture_and_forestry": "Agriculture & Forestry",
1544
+ "environmental_services": "Environmental Services",
1545
+ "banking_and_investments": "Banking & Investments",
1546
+ "fintech_and_insurance": "FinTech & Insurance",
1547
+ "accounting_and_audit": "Accounting & Audit",
1548
+ "legal_services": "Legal Services",
1549
+ "architecture_and_planning": "Architecture & Planning",
1550
+ "civil_and_industrial_engineering": "Civil & Industrial Engineering",
1551
+ "skilled_trades": "Skilled Trades",
1552
+ "marketing_and_advertising": "Marketing & Advertising",
1553
+ "media_and_entertainment": "Media & Entertainment",
1554
+ "creative_arts_and_fashion": "Creative Arts & Fashion",
1555
+ "supply_chain_and_transport": "Supply Chain & Transport",
1556
+ "sales_and_business_development": "Sales & Business Development",
1557
+ "hr_and_admin": "HR & Admin",
1558
+ "education_and_training": "Education & Training",
1559
+ "government_and_non_profit": "Government & Non-Profit",
1560
+ "food_and_beverage_service": "Food & Beverage Service",
1561
+ "accommodation_and_travel": "Accommodation & Travel",
1562
+ "production_and_assembly": "Production & Assembly",
1563
+ "quality_and_process": "Quality & Process",
1564
+ "retail_operations": "Retail Operations",
1565
+ "customer_service": "Customer Service",
1566
+ "vehicle_service_and_repair": "Vehicle Service & Repair",
1567
+ "driving_and_transport": "Driving & Transport",
1568
+ "frontend": "Frontend",
1569
+ "backend": "Backend",
1570
+ "full_stack": "Full Stack",
1571
+ "mobile_app_dev": "Mobile App Dev",
1572
+ "game_development": "Game Development",
1573
+ "embedded_systems": "Embedded Systems",
1574
+ "qa_and_testing": "QA & Testing",
1575
+ "software_engineering": "Software Engineering",
1576
+ "web_development": "Web Development",
1577
+ "software_architecture": "Software Architecture",
1578
+ "data_science": "Data Science",
1579
+ "machine_learning": "Machine Learning",
1580
+ "artificial_intelligence": "Artificial Intelligence",
1581
+ "business_intelligence": "Business Intelligence",
1582
+ "data_engineering": "Data Engineering",
1583
+ "data_visualization": "Data Visualization",
1584
+ "data_analysis": "Data Analysis",
1585
+ "deep_learning": "Deep Learning",
1586
+ "cybersecurity": "Cybersecurity",
1587
+ "cloud_engineering": "Cloud Engineering",
1588
+ "devops": "DevOps",
1589
+ "network_administration": "Network Administration",
1590
+ "systems_engineering": "Systems Engineering",
1591
+ "database_administration": "Database Administration",
1592
+ "it_support": "IT Support",
1593
+ "technical_support": "Technical Support",
1594
+ "site_reliability_engineering": "Site Reliability Engineering",
1595
+ "product_management": "Product Management",
1596
+ "ui_ux_design": "UI/UX Design",
1597
+ "user_research": "User Research",
1598
+ "interaction_design": "Interaction Design",
1599
+ "technical_writing": "Technical Writing",
1600
+ "product_marketing": "Product Marketing",
1601
+ "business_analysis": "Business Analysis",
1602
+ "project_management": "Project Management",
1603
+ "program_management": "Program Management",
1604
+ "nursing": "Nursing",
1605
+ "general_practice": "General Practice",
1606
+ "surgery": "Surgery",
1607
+ "pediatrics": "Pediatrics",
1608
+ "emergency_medicine": "Emergency Medicine",
1609
+ "radiology": "Radiology",
1610
+ "anesthesiology": "Anesthesiology",
1611
+ "geriatrics": "Geriatrics",
1612
+ "oncology": "Oncology",
1613
+ "dentistry": "Dentistry",
1614
+ "dental_hygiene": "Dental Hygiene",
1615
+ "medical_secretary": "Medical Secretary",
1616
+ "veterinary": "Veterinary",
1617
+ "physical_therapy": "Physical Therapy",
1618
+ "occupational_therapy": "Occupational Therapy",
1619
+ "speech_pathology": "Speech Pathology",
1620
+ "respiratory_therapy": "Respiratory Therapy",
1621
+ "elderly_care": "Elderly Care",
1622
+ "disability_support": "Disability Support",
1623
+ "clinical_research": "Clinical Research",
1624
+ "drug_development": "Drug Development",
1625
+ "bioinformatics": "Bioinformatics",
1626
+ "microbiology": "Microbiology",
1627
+ "pharmacology": "Pharmacology",
1628
+ "laboratory_tech": "Laboratory Tech",
1629
+ "psychology": "Psychology",
1630
+ "counseling": "Counseling",
1631
+ "psychiatry": "Psychiatry",
1632
+ "social_work": "Social Work",
1633
+ "addiction_recovery": "Addiction Recovery",
1634
+ "child_welfare": "Child Welfare",
1635
+ "solar_energy": "Solar Energy",
1636
+ "wind_power": "Wind Power",
1637
+ "hydroelectric": "Hydroelectric",
1638
+ "battery_and_storage_tech": "Battery & Storage Tech",
1639
+ "geothermal": "Geothermal",
1640
+ "biofuels": "Biofuels",
1641
+ "oil_and_gas": "Oil & Gas",
1642
+ "mining_and_geology": "Mining & Geology",
1643
+ "nuclear_energy": "Nuclear Energy",
1644
+ "water_management": "Water Management",
1645
+ "electrical_grid_operations": "Electrical Grid Operations",
1646
+ "agri_tech": "Agri-Tech",
1647
+ "horticulture": "Horticulture",
1648
+ "livestock_management": "Livestock Management",
1649
+ "forestry": "Forestry",
1650
+ "fisheries_and_aquaculture": "Fisheries & Aquaculture",
1651
+ "soil_science": "Soil Science",
1652
+ "sustainability_consulting": "Sustainability Consulting",
1653
+ "waste_management": "Waste Management",
1654
+ "wildlife_conservation": "Wildlife Conservation",
1655
+ "carbon_accounting": "Carbon Accounting",
1656
+ "ecology": "Ecology",
1657
+ "occupational_health_and_safety": "Occupational Health & Safety",
1658
+ "sustainability": "Sustainability",
1659
+ "investment_banking": "Investment Banking",
1660
+ "corporate_finance": "Corporate Finance",
1661
+ "wealth_management": "Wealth Management",
1662
+ "venture_capital": "Venture Capital",
1663
+ "asset_management": "Asset Management",
1664
+ "financial_analysis": "Financial Analysis",
1665
+ "financial_planning": "Financial Planning",
1666
+ "risk_management": "Risk Management",
1667
+ "credit_analysis": "Credit Analysis",
1668
+ "cryptocurrency_and_web3": "Cryptocurrency & Web3",
1669
+ "digital_payments": "Digital Payments",
1670
+ "actuarial_science": "Actuarial Science",
1671
+ "insurance_underwriting": "Insurance Underwriting",
1672
+ "claims_adjustment": "Claims Adjustment",
1673
+ "public_accounting": "Public Accounting",
1674
+ "taxation": "Taxation",
1675
+ "forensic_accounting": "Forensic Accounting",
1676
+ "audit_and_assurance": "Audit & Assurance",
1677
+ "bookkeeping": "Bookkeeping",
1678
+ "accounts_payable": "Accounts Payable",
1679
+ "accounts_receivable": "Accounts Receivable",
1680
+ "payroll": "Payroll",
1681
+ "collections": "Collections",
1682
+ "corporate_law": "Corporate Law",
1683
+ "litigation": "Litigation",
1684
+ "intellectual_property": "Intellectual Property",
1685
+ "compliance_and_regulatory": "Compliance & Regulatory",
1686
+ "paralegal_services": "Paralegal Services",
1687
+ "paralegal": "Paralegal",
1688
+ "urban_planning": "Urban Planning",
1689
+ "interior_design": "Interior Design",
1690
+ "landscape_architecture": "Landscape Architecture",
1691
+ "cad_bim_management": "CAD/BIM Management",
1692
+ "construction_management": "Construction Management",
1693
+ "site_supervision": "Site Supervision",
1694
+ "structural_engineering": "Structural Engineering",
1695
+ "mechanical_engineering": "Mechanical Engineering",
1696
+ "electrical_engineering": "Electrical Engineering",
1697
+ "robotics_and_automation": "Robotics & Automation",
1698
+ "chemical_engineering": "Chemical Engineering",
1699
+ "industrial_engineering": "Industrial Engineering",
1700
+ "process_engineering": "Process Engineering",
1701
+ "mechatronics": "Mechatronics",
1702
+ "electrician": "Electrician",
1703
+ "plumbing_and_hvac": "Plumbing & HVAC",
1704
+ "carpentry": "Carpentry",
1705
+ "welding": "Welding",
1706
+ "heavy_equipment_operation": "Heavy Equipment Operation",
1707
+ "masonry": "Masonry",
1708
+ "machining": "Machining",
1709
+ "facilities_maintenance": "Facilities Maintenance",
1710
+ "digital_marketing": "Digital Marketing",
1711
+ "seo_sem": "SEO/SEM",
1712
+ "content_strategy": "Content Strategy",
1713
+ "social_media_management": "Social Media Management",
1714
+ "brand_management": "Brand Management",
1715
+ "market_research": "Market Research",
1716
+ "marketing_strategy": "Marketing Strategy",
1717
+ "journalism": "Journalism",
1718
+ "video_production": "Video Production",
1719
+ "animation_and_vfx": "Animation & VFX",
1720
+ "audio_engineering": "Audio Engineering",
1721
+ "photography": "Photography",
1722
+ "broadcasting": "Broadcasting",
1723
+ "graphic_design": "Graphic Design",
1724
+ "fine_arts": "Fine Arts",
1725
+ "fashion_design": "Fashion Design",
1726
+ "apparel_manufacturing": "Apparel Manufacturing",
1727
+ "textile_design": "Textile Design",
1728
+ "logistics_management": "Logistics Management",
1729
+ "warehousing": "Warehousing",
1730
+ "fleet_operations": "Fleet Operations",
1731
+ "freight_forwarding": "Freight Forwarding",
1732
+ "procurement": "Procurement",
1733
+ "purchasing": "Purchasing",
1734
+ "warehouse_operations": "Warehouse Operations",
1735
+ "freight_and_shipping": "Freight & Shipping",
1736
+ "enterprise_sales": "Enterprise Sales",
1737
+ "account_management": "Account Management",
1738
+ "retail_management": "Retail Management",
1739
+ "real_estate_sales": "Real Estate Sales",
1740
+ "customer_success": "Customer Success",
1741
+ "sales_management": "Sales Management",
1742
+ "sales_operations": "Sales Operations",
1743
+ "sales_support": "Sales Support",
1744
+ "technical_sales": "Technical Sales",
1745
+ "recruiting": "Recruiting",
1746
+ "compensation_and_benefits": "Compensation & Benefits",
1747
+ "office_administration": "Office Administration",
1748
+ "executive_assistance": "Executive Assistance",
1749
+ "organizational_development": "Organizational Development",
1750
+ "hr_operations": "HR Operations",
1751
+ "talent_acquisition": "Talent Acquisition",
1752
+ "learning_and_development": "Learning & Development",
1753
+ "administrative_support": "Administrative Support",
1754
+ "office_management": "Office Management",
1755
+ "k_12_teaching": "K-12 Teaching",
1756
+ "higher_education": "Higher Education",
1757
+ "special_education": "Special Education",
1758
+ "esl_instruction": "ESL Instruction",
1759
+ "edtech": "EdTech",
1760
+ "corporate_training": "Corporate Training",
1761
+ "public_policy": "Public Policy",
1762
+ "social_services": "Social Services",
1763
+ "fundraising_and_grants": "Fundraising & Grants",
1764
+ "law_enforcement": "Law Enforcement",
1765
+ "military": "Military",
1766
+ "diplomacy": "Diplomacy",
1767
+ "public_administration": "Public Administration",
1768
+ "restaurant_operations": "Restaurant Operations",
1769
+ "food_preparation": "Food Preparation",
1770
+ "culinary_arts": "Culinary Arts",
1771
+ "barista_and_bar": "Barista & Bar",
1772
+ "catering": "Catering",
1773
+ "food_service": "Food Service",
1774
+ "hotel_operations": "Hotel Operations",
1775
+ "front_desk_and_reception": "Front Desk & Reception",
1776
+ "housekeeping": "Housekeeping",
1777
+ "travel_and_tourism": "Travel & Tourism",
1778
+ "events_and_conferences": "Events & Conferences",
1779
+ "assembly": "Assembly",
1780
+ "machine_operation": "Machine Operation",
1781
+ "production_management": "Production Management",
1782
+ "manufacturing_engineering": "Manufacturing Engineering",
1783
+ "food_production": "Food Production",
1784
+ "packaging": "Packaging",
1785
+ "quality_assurance": "Quality Assurance",
1786
+ "quality_control": "Quality Control",
1787
+ "process_improvement": "Process Improvement",
1788
+ "maintenance_and_reliability": "Maintenance & Reliability",
1789
+ "industrial_safety": "Industrial Safety",
1790
+ "store_management": "Store Management",
1791
+ "sales_associate": "Sales Associate",
1792
+ "visual_merchandising": "Visual Merchandising",
1793
+ "cashier_and_checkout": "Cashier & Checkout",
1794
+ "inventory_and_stock": "Inventory & Stock",
1795
+ "customer_support": "Customer Support",
1796
+ "call_centre": "Call Centre",
1797
+ "client_advisory": "Client Advisory",
1798
+ "complaints_and_escalations": "Complaints & Escalations",
1799
+ "automotive_technician": "Automotive Technician",
1800
+ "automotive_repair": "Automotive Repair",
1801
+ "heavy_vehicle_mechanic": "Heavy Vehicle Mechanic",
1802
+ "vehicle_inspection": "Vehicle Inspection",
1803
+ "auto_body_and_paint": "Auto Body & Paint",
1804
+ "truck_driving": "Truck Driving",
1805
+ "delivery_and_courier": "Delivery & Courier",
1806
+ "public_transport": "Public Transport",
1807
+ "fleet_management": "Fleet Management"
1808
+ };
1809
+
1810
+ // src/job/job-taxonomy.util.ts
1811
+ var INDUSTRY_OF_SUB = new Map(
1812
+ JOB_TAXONOMY.flatMap(
1813
+ (c) => c.industries.flatMap((i) => i.subCategories.map((s) => [s, i.industry]))
1814
+ )
1815
+ );
1816
+ var CATEGORY_OF_SUB = new Map(
1817
+ JOB_TAXONOMY.flatMap(
1818
+ (c) => c.industries.flatMap((i) => i.subCategories.map((s) => [s, c.category]))
1819
+ )
1820
+ );
1821
+ var CATEGORY_OF_INDUSTRY = new Map(
1822
+ JOB_TAXONOMY.flatMap((c) => c.industries.map((i) => [i.industry, c.category]))
1823
+ );
1824
+ function industryOfSubCategory(sub) {
1825
+ return INDUSTRY_OF_SUB.get(sub);
1826
+ }
1827
+ function categoryOfSubCategory(sub) {
1828
+ return CATEGORY_OF_SUB.get(sub);
1829
+ }
1830
+ function categoryOfIndustry(industry) {
1831
+ return CATEGORY_OF_INDUSTRY.get(industry);
1832
+ }
1833
+ function industriesOfCategory(category) {
1834
+ return JOB_TAXONOMY.find((c) => c.category === category)?.industries.map((i) => i.industry) ?? [];
1835
+ }
1836
+ function subCategoriesOfIndustry(industry) {
1837
+ for (const c of JOB_TAXONOMY) {
1838
+ for (const i of c.industries) if (i.industry === industry) return i.subCategories;
1839
+ }
1840
+ return [];
1841
+ }
1842
+ function deriveIndustry(category, subCategories) {
1843
+ const subs = (subCategories ?? []).filter((s) => INDUSTRY_OF_SUB.has(s));
1844
+ if (subs.length === 0) return void 0;
1845
+ if (category) {
1846
+ const inCategory = subs.find((s) => CATEGORY_OF_SUB.get(s) === category);
1847
+ if (inCategory) return INDUSTRY_OF_SUB.get(inCategory);
1848
+ return void 0;
1849
+ }
1850
+ return INDUSTRY_OF_SUB.get(subs[0]);
1851
+ }
1852
+
723
1853
  // src/post/post.schema.ts
724
1854
  import { array as array9, boolean as boolean10, number as number6, object as object17, string as string14 } from "yup";
725
1855
 
@@ -1273,9 +2403,13 @@ export {
1273
2403
  GroupTranslationSchema,
1274
2404
  GroupVisibility,
1275
2405
  InputQuestionSchema,
2406
+ JOB_TAXONOMY,
2407
+ JobCategory,
2408
+ JobIndustry,
1276
2409
  JobSchema,
1277
2410
  JobSearchUrgency,
1278
2411
  JobStatus,
2412
+ JobSubCategory,
1279
2413
  LocationSchema,
1280
2414
  MIN_SALARY_LOWER_BOUND,
1281
2415
  MIN_SALARY_UPPER_BOUND,
@@ -1309,8 +2443,11 @@ export {
1309
2443
  SupportedEmployeeCounts,
1310
2444
  SupportedEmploymentTypes,
1311
2445
  SupportedExperienceLevels,
2446
+ SupportedJobCategories,
2447
+ SupportedJobIndustries,
1312
2448
  SupportedJobSearchUrgencies,
1313
2449
  SupportedJobStatuses,
2450
+ SupportedJobSubCategories,
1314
2451
  SupportedPageStatuses,
1315
2452
  SupportedPageTypes,
1316
2453
  SupportedPostStatuses,
@@ -1326,6 +2463,7 @@ export {
1326
2463
  SupportedUserRoles,
1327
2464
  SupportedUserStatuses,
1328
2465
  SupportedWorkModes,
2466
+ TAXONOMY_LABELS,
1329
2467
  TermsAcceptedSchema,
1330
2468
  UserAdditionalInfoSchema,
1331
2469
  UserCertificationSchema,
@@ -1346,6 +2484,12 @@ export {
1346
2484
  UserStatus,
1347
2485
  WorkExperienceSchema,
1348
2486
  WorkMode,
2487
+ categoryOfIndustry,
2488
+ categoryOfSubCategory,
1349
2489
  dateString,
1350
- getSchemaByQuestion
2490
+ deriveIndustry,
2491
+ getSchemaByQuestion,
2492
+ industriesOfCategory,
2493
+ industryOfSubCategory,
2494
+ subCategoriesOfIndustry
1351
2495
  };