{"id":1208,"date":"2019-06-18T00:00:00","date_gmt":"2019-06-18T00:00:00","guid":{"rendered":""},"modified":"2025-06-24T11:40:21","modified_gmt":"2025-06-24T18:40:21","slug":"using-azure-search-custom-skills-to-create-personalized-job-recommendations","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/","title":{"rendered":"Using Azure Search custom skills to create personalized job recommendations"},"content":{"rendered":"\n<div class=\"wp-block-html\" style=\"background: #eee;border: 1px solid #ccc;padding: 5px 10px\"><strong>Update:<\/strong> the library of technical skills mentioned in the blog is now in preview through Azure Cognitive Services Text Analytics General Named Entity Recognition (NER V3) model. We recommend using the SKILL type from the new V3 Endpoint for this workflow. Read more about the <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cognitive-services\/text-analytics\/whats-new#named-entity-recognition-v3-public-preview\" target=\"_blank\" rel=\"noopener\">NER V3 service<\/a>.\n<p>The Microsoft Worldwide Learning Innovation Studio is an idea incubation lab within Microsoft\u2019s Worldwide Commercial Business (WCB) organization focuses on developing personalized learning and career experiences. One of the recent experiences that the lab developed focused on offering skills-based personalized job recommendations. Research shows that job search is one of the most stressful times in someone\u2019s life, especially searching for the first job out of college. Everyone remembers at some point looking for their next career move and how stressful it was to find a job that aligns with their various skills.<\/p>\n<p>Harnessing <a href=\"https:\/\/azure.microsoft.com\/en-us\/services\/search\/\" target=\"_blank\" rel=\"noopener\">Azure Cognitive Search<\/a> custom skills together <a href=\"https:\/\/azure.microsoft.com\/en-us\/services\/cognitive-services\/text-analytics\/\" target=\"_blank\" rel=\"noopener\">Azure Cognitive Services Text Analytics<\/a>, we were able to build a feature that offers personalized job recommendations based on identified capabilities from resumes and job descriptions. The feature parses a resume to identify technical skills (highlighted and checkmarked in the figure below.) It then ranks jobs based on the skills most relevant to the capabilities in the resume. Another helpful ability is in the UI layout, where the user can view the gaps in their skills (non-highlighted skills in the figure below) for jobs they\u2019re interested in and work towards building those skills.<\/p>\n<figure><a href=\"https:\/\/careersearchui.azurewebsites.net\/\" target=\"_blank\" rel=\"noopener\"><img loading=\"lazy\" decoding=\"async\" title=\"An image of the Worldwide Learning personalized jobs search demo UI\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp\" alt=\"An image of the Worldwide Learning personalized jobs search demo UI\" width=\"1024\" height=\"660\"><\/a><\/figure><p><\/p>\n<p align=\"center\"><em>Figure one: Worldwide Learning Personalized <a href=\"https:\/\/careersearchui.azurewebsites.net\/\" target=\"_blank\" rel=\"noopener\">Jobs Search Demo UI<\/a><\/em><\/p>\n<p>In this example, our user is interested in transitioning from a Software Engineering role to Program Management. Displayed in the image above you can see how the top jobs for our user are in Program Management but they are ranked based on our user\u2019s unique capabilities in areas like AI, Machine Learning and Cloud Computing, resulting in the top ranked job on the Bing Search and AI team which deals with all three.<\/p>\n<h2>How we used Azure Search<\/h2>\n<figure><img loading=\"lazy\" decoding=\"async\" title=\"Image of the Worldwide Learning personalized jobs search architecture.\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/1b3b0a47-d25a-4220-bfff-7b81507c51fc.webp\" alt=\"Image of the Worldwide Learning personalized jobs search architecture.\" width=\"1024\" height=\"407\"><\/figure><p><\/p>\n<p align=\"center\"><em>Figure two: Worldwide Learning Personalized Jobs Search Architecture<\/em><\/p>\n<p align=\"left\">The above architecture diagram shows the data flow for our application. We started with around 2000 job openings pulled directly from the Microsoft Careers website as an example. We then indexed these jobs, adding a <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/search\/cognitive-search-create-custom-skill-example\" target=\"_blank\" rel=\"noopener\">custom Azure Search cognitive skill<\/a> to extract capabilities from the descriptions of each job. This allows a user to search for a job based on a capability like \u201cMachine Learning\u201d. Then, when a user uploads a resume, we upload it to <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/storage\/blobs\/storage-blobs-introduction\" target=\"_blank\" rel=\"noopener\">Azure Blob storage<\/a> and run an <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/search\/search-indexer-overview\" target=\"_blank\" rel=\"noopener\">Azure Search indexer<\/a>. Leveraging a mix of <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/search\/cognitive-search-concept-intro\" target=\"_blank\" rel=\"noopener\">cognitive skills<\/a> provided by Azure and our custom skill to extract capabilities, we end up with a good representation of the user\u2019s capabilities.<\/p>\n<p>To personalize the job search, we leverage the <a href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/personalizing-search-results-announcing-tag-boosting-in-azure-search\/\" target=\"_blank\" rel=\"noopener\">tag boosting scoring profile<\/a> built into Azure Search. Tag boosting ranks search results by the user\u2019s search query and the number of matching \u201ctags\u201d (in this case capabilities) with the target index. So, in our example, we pass the user\u2019s capabilities along with their search query and get jobs that best match our user\u2019s unique set of capabilities.<\/p>\n<p>With Azure Cognitive Search skills, our team was able to make the personalization of job search, a desirable capability among job seekers and recruiters, possible through this proof of concept. You can use <a href=\"https:\/\/github.com\/microsoft\/SkillsExtractorCognitiveSearch\/blob\/master\/README.md\" target=\"_blank\" rel=\"noopener\">the same process<\/a> we followed to achieve the same goal for your own <strong>careers<\/strong> <strong>site<\/strong>. The <a href=\"https:\/\/github.com\/microsoft\/SkillsExtractorCognitiveSearch\" target=\"_blank\" rel=\"noopener\">Skills Extractor Library<\/a> that we used in this example is now in preview through <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cognitive-services\/text-analytics\/whats-new#named-entity-recognition-v3-public-preview\" target=\"_blank\" rel=\"noopener\">Azure Cognitive Services Text Analytic General Named Entity Recognition (NER V3) model<\/a>. You can leverage this service through using the <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/cognitive-services\/text-analytics\/how-tos\/text-analytics-how-to-entity-linking?tabs=version-3\" target=\"_blank\" rel=\"noopener\">Text Analytics General endpoint.<\/a><\/p>\n<p>Please be aware that before running this sample, you must have the following:<\/p>\n<ul>\n<li>Install the <a href=\"https:\/\/docs.microsoft.com\/en-us\/cli\/azure\/install-azure-cli?view=azure-cli-latest\" target=\"_blank\" rel=\"noopener\">Azure CLI<\/a>. This article requires the Azure CLI version 2.0 or later. Run az &#8211;version to find the version you have.<\/li>\n<li>You can also use the <a href=\"https:\/\/shell.azure.com\/bash\" target=\"_blank\" rel=\"noopener\">Azure Cloud Shell<\/a>.<\/li>\n<\/ul>\n<p>To learn more about this feature, you can <a href=\"https:\/\/mybuild.techcommunity.microsoft.com\/sessions\/76963?source=sessions#top-anchor\" target=\"_blank\" rel=\"noopener\">view the live demo<\/a> (starts at timecode 00:50:00) and read more in our <a href=\"https:\/\/github.com\/Microsoft\/SkillsExtractorCognitiveSearch\" target=\"_blank\" rel=\"noopener\">GitHub repository<\/a>.<\/p>\n<h2>Feedback and support<\/h2>\n<p>We\u2019re eager to improve, so please take a couple of minutes to answer some questions about your experience <a href=\"https:\/\/aka.ms\/AA4xoy5\" target=\"_blank\" rel=\"noopener\">using this survey<\/a>. For support requests, please contact us at <a href=\"mailto:WWL_Skills_Service@microsoft.com\">WWL_Skills_Service@microsoft.com<\/a>.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>The Microsoft Worldwide Learning Innovation lab is an idea incubation lab within Microsoft that focuses on developing personalized learning and career experiences. One of the recent experiences that the lab developed focused on offering skills-based personalized job recommendations.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","footnotes":"","msx_community_cta_settings":[]},"categories":[1454],"tags":[],"audience":[3057,3055,3056],"content-type":[1511],"product":[2757,3164],"tech-community":[],"topic":[],"coauthors":[494],"class_list":["post-1208","post","type-post","status-publish","format-standard","hentry","category-ai-machine-learning","audience-data-professionals","audience-developers","audience-it-implementors","content-type-best-practices","product-azure-ai-search","product-microsoft-foundry","review-flag-2-1680286581-601","review-flag-lever-1680286579-649","review-flag-machi-1680286585-314","review-flag-microsofts","review-flag-new-1680286579-546"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using Azure Search custom skills to create personalized job recommendations | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"The Microsoft Worldwide Learning Innovation lab is an idea incubation lab within Microsoft that focuses on developing personalized learning and career experiences. One of the recent experiences that the lab developed focused on offering skills-based personalized job recommendations.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Azure Search custom skills to create personalized job recommendations | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"The Microsoft Worldwide Learning Innovation lab is an idea incubation lab within Microsoft that focuses on developing personalized learning and career experiences. One of the recent experiences that the lab developed focused on offering skills-based personalized job recommendations.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Azure Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/microsoftazure\" \/>\n<meta property=\"article:published_time\" content=\"2019-06-18T00:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-24T18:40:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp\" \/>\n<meta name=\"author\" content=\"Norah Abokhodair\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@azure\" \/>\n<meta name=\"twitter:site\" content=\"@azure\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Norah Abokhodair\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/norah-abokhodair\/\",\"@type\":\"Person\",\"@name\":\"Norah Abokhodair\"}],\"headline\":\"Using Azure Search custom skills to create personalized job recommendations\",\"datePublished\":\"2019-06-18T00:00:00+00:00\",\"dateModified\":\"2025-06-24T18:40:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/\"},\"wordCount\":719,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp\",\"articleSection\":[\"AI + machine learning\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/\",\"name\":\"Using Azure Search custom skills to create personalized job recommendations | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp\",\"datePublished\":\"2019-06-18T00:00:00+00:00\",\"dateModified\":\"2025-06-24T18:40:21+00:00\",\"description\":\"The Microsoft Worldwide Learning Innovation lab is an idea incubation lab within Microsoft that focuses on developing personalized learning and career experiences. One of the recent experiences that the lab developed focused on offering skills-based personalized job recommendations.\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#primaryimage\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"AI + machine learning\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/ai-machine-learning\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Using Azure Search custom skills to create personalized job recommendations\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"name\":\"Microsoft Azure Blog\",\"description\":\"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.\",\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\",\"name\":\"Microsoft Azure Blog\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"width\":512,\"height\":512,\"caption\":\"Microsoft Azure Blog\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/microsoftazure\",\"https:\/\/x.com\/azure\",\"https:\/\/www.instagram.com\/microsoftdeveloper\/\",\"https:\/\/www.linkedin.com\/company\/16188386\",\"https:\/\/www.youtube.com\/user\/windowsazure\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117\",\"name\":\"shakir\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"caption\":\"shakir\"},\"sameAs\":[\"https:\/\/azure.microsoft.com\"],\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Azure Search custom skills to create personalized job recommendations | Microsoft Azure Blog","description":"The Microsoft Worldwide Learning Innovation lab is an idea incubation lab within Microsoft that focuses on developing personalized learning and career experiences. One of the recent experiences that the lab developed focused on offering skills-based personalized job recommendations.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/","og_locale":"en_US","og_type":"article","og_title":"Using Azure Search custom skills to create personalized job recommendations | Microsoft Azure Blog","og_description":"The Microsoft Worldwide Learning Innovation lab is an idea incubation lab within Microsoft that focuses on developing personalized learning and career experiences. One of the recent experiences that the lab developed focused on offering skills-based personalized job recommendations.","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2019-06-18T00:00:00+00:00","article_modified_time":"2025-06-24T18:40:21+00:00","og_image":[{"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp","type":"","width":"","height":""}],"author":"Norah Abokhodair","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Norah Abokhodair","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/norah-abokhodair\/","@type":"Person","@name":"Norah Abokhodair"}],"headline":"Using Azure Search custom skills to create personalized job recommendations","datePublished":"2019-06-18T00:00:00+00:00","dateModified":"2025-06-24T18:40:21+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/"},"wordCount":719,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp","articleSection":["AI + machine learning"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/","name":"Using Azure Search custom skills to create personalized job recommendations | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#primaryimage"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp","datePublished":"2019-06-18T00:00:00+00:00","dateModified":"2025-06-24T18:40:21+00:00","description":"The Microsoft Worldwide Learning Innovation lab is an idea incubation lab within Microsoft that focuses on developing personalized learning and career experiences. One of the recent experiences that the lab developed focused on offering skills-based personalized job recommendations.","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#primaryimage","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2019\/06\/fa32cebd-3e70-4b23-8a68-bef3b181b9e7.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/using-azure-search-custom-skills-to-create-personalized-job-recommendations\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"AI + machine learning","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/ai-machine-learning\/"},{"@type":"ListItem","position":3,"name":"Using Azure Search custom skills to create personalized job recommendations"}]},{"@type":"WebSite","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","name":"Microsoft Azure Blog","description":"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.","publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization","name":"Microsoft Azure Blog","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","width":512,"height":512,"caption":"Microsoft Azure Blog"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/microsoftazure","https:\/\/x.com\/azure","https:\/\/www.instagram.com\/microsoftdeveloper\/","https:\/\/www.linkedin.com\/company\/16188386","https:\/\/www.youtube.com\/user\/windowsazure"]},{"@type":"Person","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117","name":"shakir","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4","url":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","caption":"shakir"},"sameAs":["https:\/\/azure.microsoft.com"],"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/"}]}},"msxcm_display_generated_audio":false,"msxcm_animated_featured_image":null,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Azure Blog","distributor_original_site_url":"https:\/\/azure.microsoft.com\/en-us\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/1208","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/comments?post=1208"}],"version-history":[{"count":1,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/1208\/revisions"}],"predecessor-version":[{"id":43084,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/1208\/revisions\/43084"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=1208"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=1208"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=1208"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=1208"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=1208"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=1208"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=1208"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=1208"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=1208"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}