{"id":1974,"date":"2014-02-05T11:00:47","date_gmt":"2014-02-05T16:00:47","guid":{"rendered":"http:\/\/sqlity.net\/en\/?p=1974"},"modified":"2014-11-13T13:18:34","modified_gmt":"2014-11-13T18:18:34","slug":"revoke-grant-option","status":"publish","type":"post","link":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/","title":{"rendered":"How to REVOKE just the GRANT OPTION"},"content":{"rendered":"<div>\n<h3>Introduction<\/h3>\n<p>\nYesterday we talked about what you have to do to <a href=\"http:\/\/sqlity.net\/en\/1967\/revoke-grant-with-grant-option\/\">revoke a permission that was granted specifying the <span class=\"tt\">WITH GRANT OPTION<\/span><\/a>. Today I would like to show you how to remove just the grant option without revoking the permission itself.\n<\/p>\n<h3>REVOKE GRANT OPTION Example<\/h3>\n<p>\nFirst we need to <span class=\"tt\">GRANT<\/span> a grantable permission to <span class=\"tt\">TestUser1<\/span> and then have <span class=\"tt\">TestUser1<\/span> grant that permission to <span class=\"tt\">TestUser2<\/span>. We going to use the same T-SQL batch for this task that you have seen before, for example in <a href=\"http:\/\/sqlity.net\/en\/1967\/revoke-grant-with-grant-option\/\">yesterday's post<\/a>\n<\/p>\n<div>\n[sql]\nGRANT SELECT ON OBJECT::dbo.tst TO TestUser1 WITH GRANT OPTION;<br \/>\nGO<br \/>\nEXECUTE AS USER='TestUser1';<br \/>\n  GRANT SELECT ON OBJECT::dbo.tst TO TestUser2;<br \/>\nREVERT;<br \/>\nGO<br \/>\nEXECUTE AS USER='TestUser2';<br \/>\n  SELECT * FROM dbo.tst AS T;<br \/>\nREVERT;<br \/>\nGO<br \/>\n[\/sql]\n<\/div>\n<p>\nNow with all those permissions in place we can try to revoke just the grant option from <span class=\"tt\">TestUser1<\/span>. For that we need to add the specification <span class=\"tt\">GRANT OPTION FOR<\/span> to the <span class=\"tt\">REVOKE<\/span> statement, right in front of the privilege, like this:\n<\/p>\n<div>\n[sql]\nREVOKE GRANT OPTION FOR SELECT ON OBJECT::dbo.tst FROM TestUser1 CASCADE;<br \/>\n[\/sql]\n<\/div>\n<p>\nAs before, because we are removing the ability for <span class=\"tt\">TestUser1<\/span> to grant the permission, we also have to specify the <span class=\"tt\">CASCADE<\/span> keyword. This will cause all permissions that were granted by <span class=\"tt\">TestUser1<\/span> using this specific permission to be revoked too. Let's see this in action:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg\" alt=\"the GRANT OPTION was revoked successfully.\" width=\"760\" height=\"473\" class=\"aligncenter size-full wp-image-1977\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg 760w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully-300x186.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully-150x93.jpg 150w\" sizes=\"auto, (max-width: 760px) 100vw, 760px\" \/><\/a>\n<\/p>\n<p>\nThe ability to grant was removed successfully. However, the <span class=\"tt\">SELECT<\/span> privilege itself was preserved. <span class=\"tt\">TestUser1<\/span> is still able to select from the table. However, <span class=\"tt\">TestUser2<\/span> is now not so lucky anymore. The <span class=\"tt\">SELECT<\/span> permission was successfully and completely removed from <span class=\"tt\">TestUser2<\/span>:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Cascading_SELECT_privilege_also_removed.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Cascading_SELECT_privilege_also_removed.jpg\" alt=\"Cascading SELECT privileges were also removed.\" width=\"760\" height=\"473\" class=\"aligncenter size-full wp-image-1975\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Cascading_SELECT_privilege_also_removed.jpg 760w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Cascading_SELECT_privilege_also_removed-300x186.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/Cascading_SELECT_privilege_also_removed-150x93.jpg 150w\" sizes=\"auto, (max-width: 760px) 100vw, 760px\" \/><\/a>\n<\/p>\n<h3>Summary<\/h3>\n<p>\nThe <span class=\"tt\">REVOKE GRANT OPTION<\/span> statement can be used to remove just the grant option from a granted permission without revoking the permission itself. Because the ability to grant is removed, SQL Server requires the use of the <span class=\"tt\">CASCADE<\/span> keyword, which causes all permissions that were granted based on this permission to be revoked recursively.\n<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>To remove just the grant option from a permission that has been granted specifying WITH GRANT OPTION , the REVOKE GRANT OPTION statement can be used. Read on to get all the details.<\/p>\n<p> <a href=\"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/\">[more&#8230;]<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[5,34],"tags":[88,50,98,100,38,58,15],"class_list":["post-1974","post","type-post","status-publish","format-standard","hentry","category-general","category-security","tag-grant","tag-permission","tag-revoke","tag-revoke-cascade","tag-security-2","tag-security-management","tag-sql-server"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to REVOKE just the GRANT OPTION - sqlity.net<\/title>\n<meta name=\"description\" content=\"To remove just the grant option from a permission that has been granted specifying WITH GRANT OPTION, the REVOKE GRANT OPTION statement can be used.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to REVOKE just the GRANT OPTION - sqlity.net\" \/>\n<meta property=\"og:description\" content=\"To remove just the grant option from a permission that has been granted specifying WITH GRANT OPTION, the REVOKE GRANT OPTION statement can be used.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/\" \/>\n<meta property=\"og:site_name\" content=\"sqlity.net\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sqlity.net\" \/>\n<meta property=\"article:published_time\" content=\"2014-02-05T16:00:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-11-13T18:18:34+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg\" \/>\n<meta name=\"author\" content=\"Sebastian Meine\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sqlity\" \/>\n<meta name=\"twitter:site\" content=\"@sqlity\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sebastian Meine\" \/>\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:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/\"},\"author\":{\"name\":\"Sebastian Meine\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"headline\":\"How to REVOKE just the GRANT OPTION\",\"datePublished\":\"2014-02-05T16:00:47+00:00\",\"dateModified\":\"2014-11-13T18:18:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/\"},\"wordCount\":366,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/GRANT_OPTION_revoked_successfully.jpg\",\"keywords\":[\"GRANT\",\"Permission\",\"REVOKE\",\"REVOKE CASCADE\",\"security\",\"security management\",\"SQL Server\"],\"articleSection\":[\"General\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/\",\"url\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/\",\"name\":\"How to REVOKE just the GRANT OPTION - sqlity.net\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/GRANT_OPTION_revoked_successfully.jpg\",\"datePublished\":\"2014-02-05T16:00:47+00:00\",\"dateModified\":\"2014-11-13T18:18:34+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"description\":\"To remove just the grant option from a permission that has been granted specifying WITH GRANT OPTION, the REVOKE GRANT OPTION statement can be used.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/#primaryimage\",\"url\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/GRANT_OPTION_revoked_successfully.jpg\",\"contentUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/GRANT_OPTION_revoked_successfully.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1974\\\/revoke-grant-option\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sqlity.net\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to REVOKE just the GRANT OPTION\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/sqlity.net\\\/en\\\/\",\"name\":\"sqlity.net\",\"description\":\"Quality for SQL\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/sqlity.net\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\",\"name\":\"Sebastian Meine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g\",\"caption\":\"Sebastian Meine\"},\"sameAs\":[\"http:\\\/\\\/sqlity.net\",\"https:\\\/\\\/x.com\\\/sqlity\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to REVOKE just the GRANT OPTION - sqlity.net","description":"To remove just the grant option from a permission that has been granted specifying WITH GRANT OPTION, the REVOKE GRANT OPTION statement can be used.","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:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/","og_locale":"en_US","og_type":"article","og_title":"How to REVOKE just the GRANT OPTION - sqlity.net","og_description":"To remove just the grant option from a permission that has been granted specifying WITH GRANT OPTION, the REVOKE GRANT OPTION statement can be used.","og_url":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/","og_site_name":"sqlity.net","article_publisher":"https:\/\/www.facebook.com\/sqlity.net","article_published_time":"2014-02-05T16:00:47+00:00","article_modified_time":"2014-11-13T18:18:34+00:00","og_image":[{"url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg","type":"","width":"","height":""}],"author":"Sebastian Meine","twitter_card":"summary_large_image","twitter_creator":"@sqlity","twitter_site":"@sqlity","twitter_misc":{"Written by":"Sebastian Meine","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/#article","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/"},"author":{"name":"Sebastian Meine","@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"headline":"How to REVOKE just the GRANT OPTION","datePublished":"2014-02-05T16:00:47+00:00","dateModified":"2014-11-13T18:18:34+00:00","mainEntityOfPage":{"@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/"},"wordCount":366,"commentCount":0,"image":{"@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg","keywords":["GRANT","Permission","REVOKE","REVOKE CASCADE","security","security management","SQL Server"],"articleSection":["General","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/","url":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/","name":"How to REVOKE just the GRANT OPTION - sqlity.net","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/#primaryimage"},"image":{"@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg","datePublished":"2014-02-05T16:00:47+00:00","dateModified":"2014-11-13T18:18:34+00:00","author":{"@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"description":"To remove just the grant option from a permission that has been granted specifying WITH GRANT OPTION, the REVOKE GRANT OPTION statement can be used.","breadcrumb":{"@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/#primaryimage","url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg","contentUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/GRANT_OPTION_revoked_successfully.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/sqlity.net\/en\/1974\/revoke-grant-option\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sqlity.net\/en\/"},{"@type":"ListItem","position":2,"name":"How to REVOKE just the GRANT OPTION"}]},{"@type":"WebSite","@id":"https:\/\/sqlity.net\/en\/#website","url":"https:\/\/sqlity.net\/en\/","name":"sqlity.net","description":"Quality for SQL","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sqlity.net\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c","name":"Sebastian Meine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4ab0a6d02dd494849a584a2c3c8bc3bdcef1d0aa5f87e98bf905dbdb9ad2ce3a?s=96&d=mm&r=g","caption":"Sebastian Meine"},"sameAs":["http:\/\/sqlity.net","https:\/\/x.com\/sqlity"]}]}},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p2wXuw-vQ","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/1974","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/comments?post=1974"}],"version-history":[{"count":0,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/1974\/revisions"}],"wp:attachment":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/media?parent=1974"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/categories?post=1974"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/tags?post=1974"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}