{"id":2055,"date":"2014-02-15T11:00:33","date_gmt":"2014-02-15T16:00:33","guid":{"rendered":"http:\/\/sqlity.net\/en\/?p=2055"},"modified":"2014-11-13T13:16:37","modified_gmt":"2014-11-13T18:16:37","slug":"undoing-a-deny","status":"publish","type":"post","link":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/","title":{"rendered":"How to undo a DENY"},"content":{"rendered":"<div>\n<h3>Introduction<\/h3>\n<p>\nYesterday I showed you that a <a href=\"http:\/\/sqlity.net\/en\/2051\/deny-vs-revoke-5\/\"><span class=\"tt\">DENY<\/span> is durable<\/a>, meaning a <span class=\"tt\">DENY<\/span> gets persisted by SQL Server the same way a <span class=\"tt\">GRANT<\/span> does. If you have used the <span class=\"tt\">DENY<\/span> statement before, or maybe while reading yesterday's post, you might have had the question what you can do if you change your mind on a <span class=\"tt\">DENY<\/span> and what to undo it now.\n<\/p>\n<h3>Undoing a DENY<\/h3>\n<p>\nOne way to deal with this is to just <span class=\"tt\">GRANT<\/span> the same permission, as successive <span class=\"tt\">GRANT<\/span> and <span class=\"tt\">DENY<\/span> statements overwrite each other. However that might have other side effects down the road that you do not want, especially if you are dealing with roles.\n<\/p>\n<p>\nYou could go and <span class=\"tt\">REVOKE<\/span> the <span class=\"tt\">GRANT<\/span> after you used it to overwrite the <span class=\"tt\">DENY<\/span>. However, there is a much simpler way. I said yesterday that a <span class=\"tt\">DENY<\/span> is stored in the same permissions list that a <span class=\"tt\">GRANT<\/span> would be stored in. The only difference between the two is actually just a \"state\" value on the entry, that is either \"G\" for <span class=\"tt\">GRANT<\/span> or \"D\" for <span class=\"tt\">DENY<\/span>. That means that you can <span class=\"tt\">REVOKE<\/span> a <span class=\"tt\">DENY<\/span> the same way you <span class=\"tt\">REVOKE<\/span> a <span class=\"tt\">GRANT<\/span>.\n<\/p>\n<p>\nSo far you might have had the impression that a <span class=\"tt\">REVOKE<\/span> always reduces permissions. But that is not actually accurate. Instead, the <span class=\"tt\">REVOKE<\/span> statement removes an entry from SQL Server's internal permissions list, no matter if that entry was a <span class=\"tt\">GRANT<\/span> or a <span class=\"tt\">DENY<\/span>. So after executing a <span class=\"tt\">REVOKE<\/span> the target principal might just have more permissions than before.\n<\/p>\n<h3>REVOKE a DENY<\/h3>\n<p>\nLet's look at an example. First I am going to create our schema, table and user that we have become accustomed to over the last few posts:\n<\/p>\n<div>\n[sql]\nCREATE LOGIN TestLogin1 WITH PASSWORD='********', CHECK_POLICY = OFF;<br \/>\nCREATE USER TestUser1 FOR LOGIN TestLogin1;<br \/>\nGO<br \/>\nCREATE SCHEMA TestSchema1;<br \/>\nGO<br \/>\nCREATE TABLE TestSchema1.tst(id INT);<br \/>\nINSERT INTO TestSchema1.tst VALUES(42);<br \/>\n[\/sql]\n<\/div>\n<p>\nNow we can use a <span class=\"tt\">DENY SELECT<\/span> on the schema to override a <span class=\"tt\">GRANT SELECT<\/span> on the table:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.jpg\" alt=\"DENY and GRANT together in action.\" width=\"763\" height=\"437\" class=\"aligncenter size-full wp-image-2057\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.jpg 763w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action-300x171.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action-150x85.jpg 150w\" sizes=\"auto, (max-width: 763px) 100vw, 763px\" \/><\/a>\n<\/p>\n<p>\nSo far this is not surprising. Now let's see what happens if we <span class=\"tt\">REVOKE SELECT<\/span> on the schema from our user:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/REVOKE_causing_access_to_be_granted.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/REVOKE_causing_access_to_be_granted.jpg\" alt=\"REVOKE can be used to undo a DENY.\" width=\"763\" height=\"437\" class=\"aligncenter size-full wp-image-2056\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/REVOKE_causing_access_to_be_granted.jpg 763w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/REVOKE_causing_access_to_be_granted-300x171.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/REVOKE_causing_access_to_be_granted-150x85.jpg 150w\" sizes=\"auto, (max-width: 763px) 100vw, 763px\" \/><\/a>\n<\/p>\n<p>\nBecause the <span class=\"tt\">REVOKE<\/span> removed the existing <span class=\"tt\">DENY<\/span>, <span class=\"tt\">TestUser1<\/span> can now access the table.\n<\/p>\n<p>\n- Let that sink in for a second. -\n<\/p>\n<p>\nThe <span class=\"tt\">REVOKE<\/span> actually increased the active permissions for <span class=\"tt\">TestUser1<\/span> as it removed the preexisting <span class=\"tt\">DENY<\/span>. Also, there is no way to tell just by looking at the <span class=\"tt\">REVOKE<\/span> statement itself. The syntax to remove a granted permission is exactly the same as the syntax to remove a denied permission.\n<\/p>\n<p>\nWhen revoking permissions you need to therefore always pay attention to actually revoking the intended permission. Just executing a <span class=\"tt\">REVOKE<\/span> might otherwise have the totally opposite effect of what you were looking for.\n<\/p>\n<h3>Summary<\/h3>\n<p>\nThe <span class=\"tt\">REVOKE<\/span> statement can be used to remove not only prior grants but also prior denies. That means that executing a <span class=\"tt\">REVOKE<\/span> statement can effectively increase the active permissions.\n<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Undoing a DENY that has become obsolete is actually quite simple. Read on to see how you can remove a DENY the same way you would remove a GRANT.<\/p>\n<p> <a href=\"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/\">[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_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_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}},"categories":[5,34],"tags":[],"class_list":["post-2055","post","type-post","status-publish","format-standard","hentry","category-general","category-security"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to undo a DENY - sqlity.net<\/title>\n<meta name=\"description\" content=\"Undoing a DENY that has become obsolete is actually quite simple. As a DENY is stored just like a GRANT you can use the same mechanism to remove it: REVOKE\" \/>\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\/2055\/undoing-a-deny\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to undo a DENY - sqlity.net\" \/>\n<meta property=\"og:description\" content=\"Undoing a DENY that has become obsolete is actually quite simple. As a DENY is stored just like a GRANT you can use the same mechanism to remove it: REVOKE\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/\" \/>\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-15T16:00:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-11-13T18:16:37+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.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=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/\"},\"author\":{\"name\":\"Sebastian Meine\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"headline\":\"How to undo a DENY\",\"datePublished\":\"2014-02-15T16:00:33+00:00\",\"dateModified\":\"2014-11-13T18:16:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/\"},\"wordCount\":566,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/DENY_and_GRANT_in_action.jpg\",\"articleSection\":[\"General\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/\",\"url\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/\",\"name\":\"How to undo a DENY - sqlity.net\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/DENY_and_GRANT_in_action.jpg\",\"datePublished\":\"2014-02-15T16:00:33+00:00\",\"dateModified\":\"2014-11-13T18:16:37+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"description\":\"Undoing a DENY that has become obsolete is actually quite simple. As a DENY is stored just like a GRANT you can use the same mechanism to remove it: REVOKE\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/#primaryimage\",\"url\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/DENY_and_GRANT_in_action.jpg\",\"contentUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/DENY_and_GRANT_in_action.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/2055\\\/undoing-a-deny\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sqlity.net\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to undo a DENY\"}]},{\"@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 undo a DENY - sqlity.net","description":"Undoing a DENY that has become obsolete is actually quite simple. As a DENY is stored just like a GRANT you can use the same mechanism to remove it: REVOKE","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\/2055\/undoing-a-deny\/","og_locale":"en_US","og_type":"article","og_title":"How to undo a DENY - sqlity.net","og_description":"Undoing a DENY that has become obsolete is actually quite simple. As a DENY is stored just like a GRANT you can use the same mechanism to remove it: REVOKE","og_url":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/","og_site_name":"sqlity.net","article_publisher":"https:\/\/www.facebook.com\/sqlity.net","article_published_time":"2014-02-15T16:00:33+00:00","article_modified_time":"2014-11-13T18:16:37+00:00","og_image":[{"url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/#article","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/"},"author":{"name":"Sebastian Meine","@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"headline":"How to undo a DENY","datePublished":"2014-02-15T16:00:33+00:00","dateModified":"2014-11-13T18:16:37+00:00","mainEntityOfPage":{"@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/"},"wordCount":566,"commentCount":0,"image":{"@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.jpg","articleSection":["General","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/","url":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/","name":"How to undo a DENY - sqlity.net","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/#primaryimage"},"image":{"@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.jpg","datePublished":"2014-02-15T16:00:33+00:00","dateModified":"2014-11-13T18:16:37+00:00","author":{"@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"description":"Undoing a DENY that has become obsolete is actually quite simple. As a DENY is stored just like a GRANT you can use the same mechanism to remove it: REVOKE","breadcrumb":{"@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/#primaryimage","url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.jpg","contentUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/DENY_and_GRANT_in_action.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/sqlity.net\/en\/2055\/undoing-a-deny\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sqlity.net\/en\/"},{"@type":"ListItem","position":2,"name":"How to undo a DENY"}]},{"@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-x9","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/2055","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=2055"}],"version-history":[{"count":0,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/2055\/revisions"}],"wp:attachment":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/media?parent=2055"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/categories?post=2055"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/tags?post=2055"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}