{"id":1951,"date":"2014-02-02T11:00:44","date_gmt":"2014-02-02T16:00:44","guid":{"rendered":"http:\/\/sqlity.net\/en\/?p=1951"},"modified":"2014-11-13T13:18:52","modified_gmt":"2014-11-13T18:18:52","slug":"revoke-undoing-granted-permissions","status":"publish","type":"post","link":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/","title":{"rendered":"REVOKE: How to Undo Granted Permissions"},"content":{"rendered":"<div>\n<h3>Introduction<\/h3>\n<p>\nOver the last days we have been learning about the <a href=\"http:\/\/sqlity.net\/en\/1875\/grant-permissions-t-sql\/\"><span class=\"tt\">GRANT<\/span><\/a> statement. Today we are going to investigate, what we can do to remove a privilege that had been granted before.\n<\/p>\n<p>\nThe <span class=\"tt\">REVOKE<\/span> statement does exactly what we are looking for: It removes an existing permission. Let's look at an example.\n<\/p>\n<h3>REVOKE Example<\/h3>\n<p>\nFirst we need a table to grant a permission on and a user to grant the permission to:\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 TABLE dbo.tst1(id INT, col1 INT);<br \/>\nINSERT INTO dbo.tst1 VALUES(42, 1);<br \/>\n[\/sql]\n<\/div>\n<p>\nWith those two in place, we can grant a simple <span class=\"tt\">SELECT<\/span> privilege on <span class=\"tt\">dbo.tst<\/span> to <span class=\"tt\">TestUser1<\/span>.\n<\/p>\n<div>\n[sql]\nGRANT SELECT ON OBJECT::dbo.tst1 TO TestUser1;<br \/>\n[\/sql]\n<\/div>\n<p>\nIf you need a refresher on the <span class=\"tt\">GRANT<\/span> statement, check out <a href=\"http:\/\/sqlity.net\/en\/1875\/grant-permissions-t-sql\/\">How to GRANT Permissions in T-SQL<\/a>.\n<\/p>\n<p>\nWith that permission in place, <span class=\"tt\">TestUser<\/span> can now <span class=\"tt\">SELECT<\/span> from <span class=\"tt\">dbo.tst<\/span>:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.jpg\" alt=\"SELECT works after a GRANT\" width=\"718\" height=\"452\" class=\"aligncenter size-full wp-image-1952\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.jpg 718w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT-300x188.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT-150x94.jpg 150w\" sizes=\"auto, (max-width: 718px) 100vw, 718px\" \/><\/a>\n<\/p>\n<p>\nNow, if we decide that <span class=\"tt\">TestUser1<\/span> should not have <span class=\"tt\">SELECT<\/span> access to our table anymore, we can use the <span class=\"tt\">REVOKE<\/span> statement. The syntax of the <span class=\"tt\">REVOKE<\/span> statement is very similar to the one of the <span class=\"tt\">GRANT<\/span> statement:\n<\/p>\n<div>\n[sql]\nREVOKE SELECT ON OBJECT::dbo.tst1 FROM TestUser1;<br \/>\n[\/sql]\n<\/div>\n<p>\nThe only real difference to the <span class=\"tt\">GRANT<\/span> statement is the keyword <span class=\"tt\">FROM<\/span> instead of <span class=\"tt\">TO<\/span> in front of the grantee. However, even though it does not follow proper English grammar, SQL Server does allow <span class=\"tt\">TO<\/span> to be used instead of <span class=\"tt\">FROM<\/span> like this:\n<\/p>\n<div>\n[sql]\nREVOKE SELECT ON OBJECT::dbo.tst1 TO TestUser1;<br \/>\n[\/sql]\n<\/div>\n<p>\nThat syntax from, while it does look a little odd, makes automatically generating scripts a little easier.\n<\/p>\n<p>\nThe <span class=\"tt\">REVOKE<\/span> statement causes a previously granted identical privilege to be revoked. It works only on the same privilege on the same securable for the same grantee. Revoking for example an <span class=\"tt\">UPDATE<\/span> privilege does not have any effect on an existing <span class=\"tt\">SELECT<\/span> or <span class=\"tt\">INSERT<\/span> permission.\n<\/p>\n<p>\nAfter executing the above <span class=\"tt\">REVOKE<\/span> statement, <span class=\"tt\">TestUser1<\/span> does not have access to <span class=\"tt\">dbo.tst1<\/span> anymore:\n<\/p>\n<p>\n<a href=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_does_not_work_anymore_after_REVOKE.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_does_not_work_anymore_after_REVOKE.jpg\" alt=\"SELECT does not work anymore after a matching REVOKE\" width=\"716\" height=\"452\" class=\"aligncenter size-full wp-image-1954\" srcset=\"https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_does_not_work_anymore_after_REVOKE.jpg 716w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_does_not_work_anymore_after_REVOKE-300x189.jpg 300w, https:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_does_not_work_anymore_after_REVOKE-150x94.jpg 150w\" sizes=\"auto, (max-width: 716px) 100vw, 716px\" \/><\/a>\n<\/p>\n<h3>Summary<\/h3>\n<p>\nThe <span class=\"tt\">REVOKE<\/span> statement can be used to undo the action of a <span class=\"tt\">GRANT<\/span> statement. It revokes a privilege from a grantee, but only if that exact privilege was granted to the same grantee before.\n<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>If you have a security principal with a specific permission and you want to remove that permission from that principal, you can use the REVOKE statement. Read on to get all the details on how to use it.<\/p>\n<p> <a href=\"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/\">[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,38,58,15],"class_list":["post-1951","post","type-post","status-publish","format-standard","hentry","category-general","category-security","tag-grant","tag-permission","tag-revoke","tag-security-2","tag-security-management","tag-sql-server"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>REVOKE: How to Undo Granted Permissions - sqlity.net<\/title>\n<meta name=\"description\" content=\"If you want to remove an existing permission in SQL Server you can use the REVOKE statement. REVOKE can be used to undo any action of the GRANT statement.\" \/>\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\/1951\/revoke-undoing-granted-permissions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"REVOKE: How to Undo Granted Permissions - sqlity.net\" \/>\n<meta property=\"og:description\" content=\"If you want to remove an existing permission in SQL Server you can use the REVOKE statement. REVOKE can be used to undo any action of the GRANT statement.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/\" \/>\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-02T16:00:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-11-13T18:18:52+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.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\\\/1951\\\/revoke-undoing-granted-permissions\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/\"},\"author\":{\"name\":\"Sebastian Meine\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"headline\":\"REVOKE: How to Undo Granted Permissions\",\"datePublished\":\"2014-02-02T16:00:44+00:00\",\"dateModified\":\"2014-11-13T18:18:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/\"},\"wordCount\":434,\"commentCount\":1,\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/SELECT_works_after_a_GRANT.jpg\",\"keywords\":[\"GRANT\",\"Permission\",\"REVOKE\",\"security\",\"security management\",\"SQL Server\"],\"articleSection\":[\"General\",\"Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/\",\"url\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/\",\"name\":\"REVOKE: How to Undo Granted Permissions - sqlity.net\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/SELECT_works_after_a_GRANT.jpg\",\"datePublished\":\"2014-02-02T16:00:44+00:00\",\"dateModified\":\"2014-11-13T18:18:52+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/#\\\/schema\\\/person\\\/bcffd8c572bc2f1bd10fdba80135e53c\"},\"description\":\"If you want to remove an existing permission in SQL Server you can use the REVOKE statement. REVOKE can be used to undo any action of the GRANT statement.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/#primaryimage\",\"url\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/SELECT_works_after_a_GRANT.jpg\",\"contentUrl\":\"http:\\\/\\\/sqlity.net\\\/wp-content\\\/uploads\\\/2014\\\/02\\\/SELECT_works_after_a_GRANT.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sqlity.net\\\/en\\\/1951\\\/revoke-undoing-granted-permissions\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sqlity.net\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"REVOKE: How to Undo Granted Permissions\"}]},{\"@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":"REVOKE: How to Undo Granted Permissions - sqlity.net","description":"If you want to remove an existing permission in SQL Server you can use the REVOKE statement. REVOKE can be used to undo any action of the GRANT statement.","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\/1951\/revoke-undoing-granted-permissions\/","og_locale":"en_US","og_type":"article","og_title":"REVOKE: How to Undo Granted Permissions - sqlity.net","og_description":"If you want to remove an existing permission in SQL Server you can use the REVOKE statement. REVOKE can be used to undo any action of the GRANT statement.","og_url":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/","og_site_name":"sqlity.net","article_publisher":"https:\/\/www.facebook.com\/sqlity.net","article_published_time":"2014-02-02T16:00:44+00:00","article_modified_time":"2014-11-13T18:18:52+00:00","og_image":[{"url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.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\/1951\/revoke-undoing-granted-permissions\/#article","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/"},"author":{"name":"Sebastian Meine","@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"headline":"REVOKE: How to Undo Granted Permissions","datePublished":"2014-02-02T16:00:44+00:00","dateModified":"2014-11-13T18:18:52+00:00","mainEntityOfPage":{"@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/"},"wordCount":434,"commentCount":1,"image":{"@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.jpg","keywords":["GRANT","Permission","REVOKE","security","security management","SQL Server"],"articleSection":["General","Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/","url":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/","name":"REVOKE: How to Undo Granted Permissions - sqlity.net","isPartOf":{"@id":"https:\/\/sqlity.net\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/#primaryimage"},"image":{"@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/#primaryimage"},"thumbnailUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.jpg","datePublished":"2014-02-02T16:00:44+00:00","dateModified":"2014-11-13T18:18:52+00:00","author":{"@id":"https:\/\/sqlity.net\/en\/#\/schema\/person\/bcffd8c572bc2f1bd10fdba80135e53c"},"description":"If you want to remove an existing permission in SQL Server you can use the REVOKE statement. REVOKE can be used to undo any action of the GRANT statement.","breadcrumb":{"@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/#primaryimage","url":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.jpg","contentUrl":"http:\/\/sqlity.net\/wp-content\/uploads\/2014\/02\/SELECT_works_after_a_GRANT.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/sqlity.net\/en\/1951\/revoke-undoing-granted-permissions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sqlity.net\/en\/"},{"@type":"ListItem","position":2,"name":"REVOKE: How to Undo Granted Permissions"}]},{"@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-vt","jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/1951","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=1951"}],"version-history":[{"count":0,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/posts\/1951\/revisions"}],"wp:attachment":[{"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/media?parent=1951"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/categories?post=1951"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sqlity.net\/en\/wp-json\/wp\/v2\/tags?post=1951"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}