{"id":23259,"date":"2020-09-27T06:12:05","date_gmt":"2020-09-27T13:12:05","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23259"},"modified":"2020-09-27T06:12:09","modified_gmt":"2020-09-27T13:12:09","slug":"java-uncaught-type-error","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/","title":{"rendered":"Uncaught Typeerror: $ Is Not a Function"},"content":{"rendered":"\n<p>The $ sign in <a href=\"https:\/\/careerkarma.com\/blog\/what-is-jquery-used-for\/\">jQuery <\/a>is a syntax commonly used as a shortcut to access or define a JavaScript library. The code below illustrates that invoking the $ sign or the <code>jQuery<\/code> method results in all the <code>&lt;p><\/code> tags in a document. In other words, <code>$()<\/code> and <code>jQuery()<\/code> are strictly equal methods.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>var getAllParagraphTags = $(&quot;p&quot;);       \n var getAllParagraphTags = jQuery(&quot;p&quot;); \n \n console.log($ === jQuery);\n<\/pre><\/div>\n\n\n\n<p>jQuery is a JavaScript library that makes it easy for developers to manipulate an Hypertext Markup Language (HTML) document. Developers can get elements from an HTML document to help users trigger events on a web page, similarly to working with the Document Object Model (DOM) interface. This way, websites will have functions such as click, scroll, resize, and submit.<br><\/p>\n\n\n\n<p>WordPress is a free content management system which uses jQuery and other JavaScript libraries. The <code>typeerror: $ is not a function<\/code> is commonly seen when using jQuery with WordPress because of default scripting that prevents conflict with other libraries.<br><\/p>\n\n\n\n<p>TypeErrors can be thrown at you when attempting to modify an unchangeable value or when using a value in an inappropriate way. The error can also occur when an argument is passed to a function incompatible with the type expected by the function or the operator inside of the function.<br><\/p>\n\n\n\n<p>This article dives into the reason this error triggers as well as some possible solutions.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Why This Error Triggers in WordPress<\/h2>\n\n\n\n<p>Know that <code>$()<\/code> and <code>jQuery()<\/code> syntaxes are strictly equal methods. You must use jQuery() for compatibility with other libraries in WordPress. WordPress runs its own scripts before we can, and the jQuery library is auto set to the <code>noConflict()<\/code> mode, so the $() syntax shortcut to access it becomes unavailable. However, we can use it locally inside the function scope.<br><\/p>\n\n\n\n<p>The below code examples throws an error with WordPress as we invoke a jQuery library with $().<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre> $(document).ready(function(){\n    \/\/ jQuery code\n });\n<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>$(function(){\n    $(&quot;.element&quot;).typed({\n        \/\/ jQuery code\n    });\n });\n<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Possible Solutions<\/h2>\n\n\n\n<p>We can fix this error by using <code>jQuery()<\/code>. We can use <code>$()<\/code> freely inside of our jQuery object after utilizing it.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>jQuery(document).ready(function($){\n    var allParagraphTags = $( 'p' );\n  });\n<\/pre><\/div>\n\n\n\n<p>\u00a0<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre> jQuery(function($){\n    $(&quot;.element&quot;).typed({\n     \/\/ jQuery code\n });\n  });\n<\/pre><\/div>\n\n\n\n<p>Another possible solution would be to set the variable $ to noConflict, overriding WordPress\u2019 initial scripts like in the example below.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre> var $ = jQuery.noConflict();\n \n $(document).ready(function(){\n    \/\/ jQuery code\n });\n<\/pre><\/div>\n\n\n\n<p>However, this could cause other errors with other pieces of code as WordPress utilizes many in its content management system. Using the jQuery() method in lieu of the method above is the better solution.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <code>$() <\/code>shortcut to access jQuery throws an error in WordPress because the application sets your library to <code>noConflict()<\/code> mode to ensure compatibility with other libraries. Utilizing the<code> jQuery() <\/code>method prevents this error from triggering. Developers can then use $() once inside a function invoked with jQuery().<br><\/p>\n\n\n\n<p>Note that overriding the noConflict() mode in WordPress to prevent this error is not suggested as it may trigger other errors. The preferred solution is to invoke jQuery() globally in lieu of the shortcut, $().<br><\/p>\n","protected":false},"excerpt":{"rendered":"The $ sign in jQuery is a syntax commonly used as a shortcut to access or define a JavaScript library. The code below illustrates that invoking the $ sign or the jQuery method results in all the &lt;p> tags in a document. In other words, $() and jQuery() are strictly equal methods. var getAllParagraphTags =&hellip;","protected":false},"author":91,"featured_media":11910,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-23259","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-javascript"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"JavaScript","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":[]},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Uncaught Typeerror: $ Is Not a Function | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn why the Uncaught Typeerror: $ Is Not a Function error occurs and what the solutions are.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Uncaught Typeerror: $ Is Not a Function\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn why the Uncaught Typeerror: $ Is Not a Function error occurs and what the solutions are.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-27T13:12:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-09-27T13:12:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/javascript-splice.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"549\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Kelly M.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/misskellymore\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kelly M.\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/\"},\"author\":{\"name\":\"Kelly M.\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"headline\":\"Uncaught Typeerror: $ Is Not a Function\",\"datePublished\":\"2020-09-27T13:12:05+00:00\",\"dateModified\":\"2020-09-27T13:12:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/\"},\"wordCount\":439,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/javascript-splice.png\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/\",\"name\":\"Uncaught Typeerror: $ Is Not a Function | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/javascript-splice.png\",\"datePublished\":\"2020-09-27T13:12:05+00:00\",\"dateModified\":\"2020-09-27T13:12:09+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"description\":\"On Career Karma, learn why the Uncaught Typeerror: $ Is Not a Function error occurs and what the solutions are.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/javascript-splice.png\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/02\\\/javascript-splice.png\",\"width\":1000,\"height\":549},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/java-uncaught-type-error\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Uncaught Typeerror: $ Is Not a Function\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\",\"name\":\"Kelly M.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"caption\":\"Kelly M.\"},\"description\":\"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/kemore\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/misskellymore\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/kelly-m\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Uncaught Typeerror: $ Is Not a Function | Career Karma","description":"On Career Karma, learn why the Uncaught Typeerror: $ Is Not a Function error occurs and what the solutions are.","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:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/","og_locale":"en_US","og_type":"article","og_title":"Uncaught Typeerror: $ Is Not a Function","og_description":"On Career Karma, learn why the Uncaught Typeerror: $ Is Not a Function error occurs and what the solutions are.","og_url":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-27T13:12:05+00:00","article_modified_time":"2020-09-27T13:12:09+00:00","og_image":[{"width":1000,"height":549,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/javascript-splice.png","type":"image\/png"}],"author":"Kelly M.","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/misskellymore","twitter_site":"@career_karma","twitter_misc":{"Written by":"Kelly M.","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/"},"author":{"name":"Kelly M.","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"headline":"Uncaught Typeerror: $ Is Not a Function","datePublished":"2020-09-27T13:12:05+00:00","dateModified":"2020-09-27T13:12:09+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/"},"wordCount":439,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/javascript-splice.png","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/","url":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/","name":"Uncaught Typeerror: $ Is Not a Function | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/javascript-splice.png","datePublished":"2020-09-27T13:12:05+00:00","dateModified":"2020-09-27T13:12:09+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"description":"On Career Karma, learn why the Uncaught Typeerror: $ Is Not a Function error occurs and what the solutions are.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/javascript-splice.png","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/javascript-splice.png","width":1000,"height":549},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/java-uncaught-type-error\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/careerkarma.com\/blog\/javascript\/"},{"@type":"ListItem","position":3,"name":"Uncaught Typeerror: $ Is Not a Function"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb","name":"Kelly M.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","caption":"Kelly M."},"description":"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.","sameAs":["https:\/\/www.linkedin.com\/in\/kemore\/","https:\/\/x.com\/https:\/\/twitter.com\/misskellymore"],"url":"https:\/\/careerkarma.com\/blog\/author\/kelly-m\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23259","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/91"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=23259"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23259\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/11910"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23259"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23259"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23259"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}