{"id":30786,"date":"2024-03-18T13:14:00","date_gmt":"2024-03-18T12:14:00","guid":{"rendered":"https:\/\/expert-only.com\/?p=30786"},"modified":"2024-03-18T16:49:38","modified_gmt":"2024-03-18T15:49:38","slug":"full-text-search-is-not-installed-sql-server","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/","title":{"rendered":"Full-Text Search is not installed or a full-text component cannot be loaded"},"content":{"rendered":"\n<p><strong>Using SQL Server, you just encountered the error &#8220;Full-Text Search is not installed, or a full-text component cannot be loaded.&#8221; In my case I was creating a Full Text on a table. <\/strong><\/p>\n\n\n\n<p>It simply means that this specific <a href=\"https:\/\/expert-only.com\/en\/t-sql\/sql-server-full-text-index-script\/\" target=\"_blank\" rel=\"noreferrer noopener\"><strong>feature<\/strong><\/a> using indexes is either not installed on your SQL Server instance or there&#8217;s an issue with loading its components. Find below a short guide to help you diagnose properly your case and fix the issue:<\/p>\n\n\n\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 ez-toc-wrap-center counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#1-why-the-full-text-search-feature-is-not-working\" >1. Why the Full-Text Search feature is not working ?<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#2-diagnose-the-full-text-search-is-not-installed-error\" >2. Diagnose the Full-Text Search is not installed Error<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#3-fix-the-issue\" >3. Fix the Issue<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#4-about-maintenance-and-best-practices\" >4. About Maintenance and Best Practices<\/a><\/li><\/ul><\/nav><\/div>\n<h2 class=\"wp-block-heading\" id=\"h-1-why-the-full-text-search-feature-is-not-working\"><span class=\"ez-toc-section\" id=\"1-why-the-full-text-search-feature-is-not-working\"><\/span>1. Why the Full-Text Search feature is not working ?<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>Full-Text Search in SQL Server enables you to perform advanced querying on textual data. This feature must be installed and correctly configured to work. If it&#8217;s not set up or encounters a problem, SQL Server can&#8217;t execute full-text queries.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-diagnose-the-full-text-search-is-not-installed-error\"><span class=\"ez-toc-section\" id=\"2-diagnose-the-full-text-search-is-not-installed-error\"><\/span>2. Diagnose the Full-Text Search is not installed Error<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<p>As explained <a href=\"https:\/\/learn.microsoft.com\/en-us\/sql\/relational-databases\/search\/full-text-search?view=sql-server-ver16\">here<\/a>, it is an optional component, and need to be installed independently, i.e. it is not installed by default.<\/p>\n\n\n\n<p><strong>Check first if the Full-Text Search feature is Installed<\/strong>: You need to open the SQL Server Configuration Manager and check the list of services. Look for a service named <em>SQL Full-text Filter Daemon Launcher<\/em> to confirm if Full-Text Search is installed.<\/p>\n\n\n\n<p>If the service is not in the list, you need of course to install it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-3-fix-the-issue\"><span class=\"ez-toc-section\" id=\"3-fix-the-issue\"><\/span>3. Fix the Issue<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Install the Full-Text Search Component<\/strong>: If you find that Full-Text Search is not installed, you&#8217;ll need to add it. This process involves running the SQL Server setup from the installation media (or setup file) and choosing the Full-Text Search feature during the setup wizard. Follow the on-screen instructions to complete the installation.<\/li>\n\n\n\n<li><strong>Restart the SQL Server Service<\/strong>: After ensuring the Full-Text feature is properly set up, restart the SQL Server service. This step ensures that any changes are applied, and services are correctly loaded.<\/li>\n\n\n\n<li><strong>I recommended to restart also the machine<\/strong>: restart your laptop or the server hosting the SQL Server instance.<\/li>\n\n\n\n<li><strong>Check the Installation<\/strong>: Use SQL Server Management Studio (SSMS) to verify that Full-Text Search is operational. Execute a basic full-text query or use the command <em>SELECT FULLTEXTSERVICEPROPERTY(&#8216;IsFullTextInstalled&#8217;)<\/em> to check. If the query returns <code>1<\/code>, Full-Text Search is installed and operational.<\/li>\n\n\n\n<li><strong>Further troubleshooting<\/strong>: If you still encounter issues, check the SQL Server error logs and the Windows Event Viewer for any related errors.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-4-about-maintenance-and-best-practices\"><span class=\"ez-toc-section\" id=\"4-about-maintenance-and-best-practices\"><\/span>4. About Maintenance and Best Practices<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Regularly Update SQL Server<\/strong>: Ensure your SQL Server instance is up-to-date with the latest security patches and updates.<\/li>\n\n\n\n<li><strong>Monitor Full-Text Catalogs<\/strong>: Regular monitoring and maintenance of your full-text catalogs helps prevent performance degradation and issues.<\/li>\n<\/ul>\n\n\n\n<p>By following these steps, you should be able to resolve the &#8220;Full-Text Search is not installed, or a full-text component cannot be loaded.&#8221; error, enabling your SQL Server instance to benefit from the capabilities of this powerful feature.<\/p>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>Using SQL Server, you just encountered the error &#8220;Full-Text Search is not installed, or a full-text component cannot be loaded.&#8221; In my case I was creating a Full Text on a table. It simply means that this specific feature <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/\" title=\"Full-Text Search is not installed or a full-text component cannot be loaded\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":10799,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[486],"tags":[],"class_list":{"0":"post-30786","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-errors"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v26.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Full-Text Search is not installed - SQL Server errors<\/title>\n<meta name=\"description\" content=\"To fix the Full-Text Search is not installed error in SQL Server, check the easy steps to install, verify, and use the full-text functions.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Full-Text Search is not installed or a full-text component cannot be loaded\" \/>\n<meta property=\"og:description\" content=\"To fix the Full-Text Search is not installed error in SQL Server, check the easy steps to install, verify, and use the full-text functions.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL and IT Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-18T12:14:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-18T15:49:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Expert-Only\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@expert_only\" \/>\n<meta name=\"twitter:site\" content=\"@expert_only\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert-Only\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"Full-Text Search is not installed or a full-text component cannot be loaded\",\"datePublished\":\"2024-03-18T12:14:00+00:00\",\"dateModified\":\"2024-03-18T15:49:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/\"},\"wordCount\":468,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg\",\"articleSection\":[\"SQL Server errors\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/\",\"url\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/\",\"name\":\"Full-Text Search is not installed - SQL Server errors\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg\",\"datePublished\":\"2024-03-18T12:14:00+00:00\",\"dateModified\":\"2024-03-18T15:49:38+00:00\",\"description\":\"To fix the Full-Text Search is not installed error in SQL Server, check the easy steps to install, verify, and use the full-text functions.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Full-Text Search is not installed or a full-text component cannot be loaded\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/expert-only.com\/en\/#website\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"name\":\"SQL and IT Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/expert-only.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/expert-only.com\/en\/#organization\",\"name\":\"Expert-Only\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"width\":381,\"height\":174,\"caption\":\"Expert-Only\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\",\"https:\/\/x.com\/expert_only\",\"https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\",\"name\":\"Expert-Only\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"caption\":\"Expert-Only\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Full-Text Search is not installed - SQL Server errors","description":"To fix the Full-Text Search is not installed error in SQL Server, check the easy steps to install, verify, and use the full-text functions.","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:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/","og_locale":"en_US","og_type":"article","og_title":"Full-Text Search is not installed or a full-text component cannot be loaded","og_description":"To fix the Full-Text Search is not installed error in SQL Server, check the easy steps to install, verify, and use the full-text functions.","og_url":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2024-03-18T12:14:00+00:00","article_modified_time":"2024-03-18T15:49:38+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg","type":"image\/jpeg"}],"author":"Expert-Only","twitter_card":"summary_large_image","twitter_creator":"@expert_only","twitter_site":"@expert_only","twitter_misc":{"Written by":"Expert-Only","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"Full-Text Search is not installed or a full-text component cannot be loaded","datePublished":"2024-03-18T12:14:00+00:00","dateModified":"2024-03-18T15:49:38+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/"},"wordCount":468,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg","articleSection":["SQL Server errors"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/","url":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/","name":"Full-Text Search is not installed - SQL Server errors","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg","datePublished":"2024-03-18T12:14:00+00:00","dateModified":"2024-03-18T15:49:38+00:00","description":"To fix the Full-Text Search is not installed error in SQL Server, check the easy steps to install, verify, and use the full-text functions.","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2022\/09\/one-hundred-64289A5CC0F_1920x1080.jpg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/errors\/full-text-search-is-not-installed-sql-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"Full-Text Search is not installed or a full-text component cannot be loaded"}]},{"@type":"WebSite","@id":"https:\/\/expert-only.com\/en\/#website","url":"https:\/\/expert-only.com\/en\/","name":"SQL and IT Tutorials","description":"","publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/expert-only.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/expert-only.com\/en\/#organization","name":"Expert-Only","url":"https:\/\/expert-only.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","width":381,"height":174,"caption":"Expert-Only"},"image":{"@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ExpertOnlyCom\/","https:\/\/x.com\/expert_only","https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA"]},{"@type":"Person","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef","name":"Expert-Only","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","caption":"Expert-Only"}}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/30786","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/comments?post=30786"}],"version-history":[{"count":3,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/30786\/revisions"}],"predecessor-version":[{"id":30789,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/30786\/revisions\/30789"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/10799"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=30786"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=30786"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=30786"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}