{"id":84279,"date":"2017-06-12T08:38:27","date_gmt":"2017-06-12T08:38:27","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=84279"},"modified":"2017-11-02T14:23:40","modified_gmt":"2017-11-02T14:23:40","slug":"introduction-json-ld","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/introduction-json-ld\/","title":{"rendered":"Introduction to JSON-LD"},"content":{"rendered":"<p><b>JSON<\/b>&#8211;<b>LD<\/b>, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using\u00a0<b>JSON<\/b>.<\/p>\n<p>Before talking about JSON-LD let&#8217;s first understand what is Linked\u00a0Data? Linked data is a way of publishing structured data so that; it has more relationship with its\u00a0conclusive meaning or logic.Linked data is about applying the principles of the web to sharing data and doing so at a deeper level. In linked data, we can give each thing or\u00a0data an individual identity or URI so that it can be identified uniquely.<\/p>\n<p>Let&#8217;s take an example if we want to publish information about each hotel in India then we would need a URI for each hotel by which we can identify it. After that, we will be able to publish information about each hotel in a small set of statements such as its name, address, company etc. If a hotel is operated by a company\u00a0which is represented by their respective URI then we are creating a web of linked information. The company URI gives us the information about its name, headquarter, budget etc. This helps us in a lot of ways, such as the data is linked and\u00a0is placed in context with each other which helps in allowing explanation and implication linked directly to data.<\/p>\n<p>When linked data concept is applied with JSON we are able to get encoded linked data.\u00a0It is an implementation format for structuring data analogous to Microdata and RDFa.\u00a0JSON-LD is considered to be simpler to implement, due to the ability to simply paste the markup within the HTML document, versus having to wrap the markup around HTML elements.<\/p>\n<p>JSON-LD annotates elements on a page, structuring the data, which can then be used by search engines to remove the uncertainty of meaning from elements and establish facts around surrounding entities, which is then associated with creating a more organized, better web overall.<\/p>\n<h3>How to write JSON-LD?<\/h3>\n<p>JSON-LD is recommended to be written in &lt;head&gt; tag but it can be used also written in &lt;body&gt; tag. It is written in between script tag having the type defined as application\/ld+json. Don&#8217;t forget to add curly braces.<\/p>\n<pre class=\"brush:js\">&lt;script type=\"application\/ld+json\"&gt;\r\n{\r\n.\r\n.\r\n.\r\n}\r\n&lt;\/script&gt;<\/pre>\n<p class=\"brush:js\"><strong>@context<\/strong>: It defines the settings\u00a0of an idea in whose term it can be understood.<\/p>\n<pre class=\"brush:js\">\"@context\": \"http:\/\/schema.org\",<\/pre>\n<p class=\"brush:js\"><strong>@type<\/strong>: It defines the item type that has been marked up.<\/p>\n<pre class=\"brush:js\">\"@Type\": \"\u2026\",<\/pre>\n<p class=\"brush:js\">Attribute-Value pairs: Next item which comes into a role on JSON-LD is attribute value pair that is item property and its value.<\/p>\n<p class=\"brush:js\">Let&#8217;s write the JSON-LD for above-taken example of Hotel in India.<\/p>\n<pre class=\"brush:js\">&lt;script type=\"application\/ld+json\"&gt;\r\n{\r\n  \"@context\": \"http:\/\/schema.org\",\r\n  \"@type\": \"Hotel\",\r\n  \"name\" : \"ABC Hotel\",\r\n  \"description\" : \"Lorem Ipsum is simply dummy text of \r\n                   the printing and typesetting industry.\r\n                   Lorem Ipsum has been the industry's standard\r\n                   dummy text ever since the 1500s, when an unknown \r\n                   printer took a galley of type and scrambled it \r\n                   to make a type specimen book.\",\r\n  \"address\" : { \"@type\" : \"PostalAddress\",\r\n               \"addressCountry\" : \"IN\",\r\n               \"addressLocality\" : \"Noida\",\r\n               \"addressRegion\" : \"UP\",\r\n               \"postalCode\" : \"201301\",\r\n               \"streetAddress\" : \"XYZ\"\r\n               },\r\n  \"telephone\" :  \"+91 96504 86699\",\r\n  \"photo\" : \"http:\/\/www.xyz\/image.png\",\r\n  \"starRating\" : { \"@type\" : \"Rating\",\r\n                   \"ratingValue\" : \"4\"},\r\n  \"priceRange\" : \"1000 - 2400\"\r\n}\r\n&lt;\/script&gt;<\/pre>\n<p class=\"brush:js\">In context, we are defining the vocabulary which we are using. @type defines the item type which is the hotel. Name, description, address, telephone, photo etc are the properties of the item type that is the hotel. We can also nest item type in JSON-LD. As you can see the hotel has property address and starRating which can be of different type and they have their own attribute value pair.<\/p>\n<p class=\"brush:js\">Hope this blog will help you to understand JSON-LD in a better way.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>JSON&#8211;LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using\u00a0JSON. Before talking about JSON-LD let&#8217;s first understand what is Linked\u00a0Data? Linked data is a way of publishing structured data so that; it has more relationship with its\u00a0conclusive meaning or logic.Linked data is about applying the principles of the web <a href=\"https:\/\/webkul.com\/blog\/introduction-json-ld\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":131,"featured_media":74323,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[4915,4912,4913,4914],"class_list":["post-84279","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-introduction-to-json-ld","tag-json-ld","tag-linked-data","tag-semantic-web"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Introduction to JSON-LD - Webkul Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/introduction-json-ld\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Introduction to JSON-LD - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"JSON&#8211;LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using\u00a0JSON. Before talking about JSON-LD let&#8217;s first understand what is Linked\u00a0Data? Linked data is a way of publishing structured data so that; it has more relationship with its\u00a0conclusive meaning or logic.Linked data is about applying the principles of the web [...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/introduction-json-ld\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-12T08:38:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2017-11-02T14:23:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"825\" \/>\n\t<meta property=\"og:image:height\" content=\"260\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Aditya Singh\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Aditya Singh\" \/>\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:\/\/webkul.com\/blog\/introduction-json-ld\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/\"},\"author\":{\"name\":\"Aditya Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/b5553f8865bca7df1bb376eebb3b1273\"},\"headline\":\"Introduction to JSON-LD\",\"datePublished\":\"2017-06-12T08:38:27+00:00\",\"dateModified\":\"2017-11-02T14:23:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/\"},\"wordCount\":511,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\",\"keywords\":[\"introduction to json-ld\",\"json-ld\",\"linked data\",\"semantic web\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/introduction-json-ld\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/\",\"url\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/\",\"name\":\"Introduction to JSON-LD - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\",\"datePublished\":\"2017-06-12T08:38:27+00:00\",\"dateModified\":\"2017-11-02T14:23:40+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/introduction-json-ld\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png\",\"width\":825,\"height\":260},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/introduction-json-ld\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Introduction to JSON-LD\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/b5553f8865bca7df1bb376eebb3b1273\",\"name\":\"Aditya Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b633b49ed99cbb4affd1dfc6b0a84bedc74a65e68325ef2c2ecf3e32d98a9f1f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b633b49ed99cbb4affd1dfc6b0a84bedc74a65e68325ef2c2ecf3e32d98a9f1f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Aditya Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/aditya-singh528\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Introduction to JSON-LD - Webkul Blog","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:\/\/webkul.com\/blog\/introduction-json-ld\/","og_locale":"en_US","og_type":"article","og_title":"Introduction to JSON-LD - Webkul Blog","og_description":"JSON&#8211;LD, or JavaScript Object Notation for Linked Data, is a method of encoding Linked Data using\u00a0JSON. Before talking about JSON-LD let&#8217;s first understand what is Linked\u00a0Data? Linked data is a way of publishing structured data so that; it has more relationship with its\u00a0conclusive meaning or logic.Linked data is about applying the principles of the web [...]","og_url":"https:\/\/webkul.com\/blog\/introduction-json-ld\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2017-06-12T08:38:27+00:00","article_modified_time":"2017-11-02T14:23:40+00:00","og_image":[{"width":825,"height":260,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","type":"image\/png"}],"author":"Aditya Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Aditya Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/"},"author":{"name":"Aditya Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/b5553f8865bca7df1bb376eebb3b1273"},"headline":"Introduction to JSON-LD","datePublished":"2017-06-12T08:38:27+00:00","dateModified":"2017-11-02T14:23:40+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/"},"wordCount":511,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","keywords":["introduction to json-ld","json-ld","linked data","semantic web"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/introduction-json-ld\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/","url":"https:\/\/webkul.com\/blog\/introduction-json-ld\/","name":"Introduction to JSON-LD - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","datePublished":"2017-06-12T08:38:27+00:00","dateModified":"2017-11-02T14:23:40+00:00","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/introduction-json-ld\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2017\/02\/Code-Snippet-1.png","width":825,"height":260},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/introduction-json-ld\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Introduction to JSON-LD"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/b5553f8865bca7df1bb376eebb3b1273","name":"Aditya Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b633b49ed99cbb4affd1dfc6b0a84bedc74a65e68325ef2c2ecf3e32d98a9f1f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b633b49ed99cbb4affd1dfc6b0a84bedc74a65e68325ef2c2ecf3e32d98a9f1f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Aditya Singh"},"url":"https:\/\/webkul.com\/blog\/author\/aditya-singh528\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/84279","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/131"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=84279"}],"version-history":[{"count":12,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/84279\/revisions"}],"predecessor-version":[{"id":100639,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/84279\/revisions\/100639"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/74323"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=84279"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=84279"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=84279"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}