{"id":584,"date":"2018-07-04T00:13:18","date_gmt":"2018-07-03T22:13:18","guid":{"rendered":"https:\/\/staging.sql.marcus-belz.de\/?p=584"},"modified":"2026-05-07T01:06:39","modified_gmt":"2026-05-06T23:06:39","slug":"inline-comments-in-complex-sql-statements","status":"publish","type":"post","link":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en","title":{"rendered":"Inline Comments in complex SQL statements"},"content":{"rendered":"<h2>Overview<\/h2>\n<p>Documentation should be an inherent part of any database development project. Virtually everybody would agree with this. However, documentation is usually the first goal to be a victim of project pressure. \u201cIf you want to know what the code does, have a look at the code.\u201d This is a very common view on missing documentation. But, not everybody is capable of write SQL statements or even read SQL statements. Pressure in projects is often a poor excuse for missing documentation. As of my experience, the main reason for missing or incomplete documentation is as simple as that: No one likes to write a documentation.<\/p>\n<p>Inline documentation is a special form of documentation. Any code should contain a minimum of Inline documentation, especially when a separate documentation is not available. If a reasonable inline documentation is missing too, then the application is nearly not maintainable when the developer is no longer working for the company.<\/p>\n<p>At the time of development of a SQL statement, the developer may have clarified all essential questions and the knowledge in his or her mind. However, this knowledge is fleeting. After just a few weeks, it is already difficult for her to understand complex statements. The situation in a multi-developer project is even more problematic.<\/p>\n<p>This article introduces an uncommon but powerful approach for inline documentation: a parallel inline documentation.<\/p>\n<h2>Type of inline comments<\/h2>\n<ul>\n<li><\/li>\n<\/ul>\n<p>Single line comments start with a double minus. Any code or text on the right side of this sequence is regarded by SQL Server as a comment. The sequence must not necessarily start at the beginning of the line. The sequence can be located at any position within a line.<\/p>\n<pre style=\"padding-left: 40px;\">-- Single Line Comment<\/pre>\n<p>To ease the effort for commenting multiple lines by using this syntax, SQL Server Management Studio (SSMS) offers two powerful short cuts:<\/p>\n<ul>\n<li><strong>Ctrl+K+C <\/strong>(with <strong>C<\/strong> for Comment)<\/li>\n<li><strong>Ctrl+K+U<\/strong> (with U for Uncomment)<\/li>\n<\/ul>\n<p>The second syntax for commenting multiple lines starts with a slash followed by an asterisk as an initiating sequence and ends with the reverse string as the closing sequence: an asterisk followed by a slash:<\/p>\n<pre style=\"padding-left: 40px;\">\/*\nBlock Kommentar\n*\/<\/pre>\n<p>Any code between the initiating and a closing sequence is regarded by SQL Server as a comment.<\/p>\n<p>The initiating and the closing sequence can be located anywhere in the code. An initiating sequence must have a closing sequence.<\/p>\n<p>Both comments have in common that comments are by default displayed with green font color<\/p>\n<p>As so often &#8230; developers argue whether one or the other syntax serves best for adding inline documentation.<\/p>\n<p>I prefer the single line syntax for the following reasons:<\/p>\n<ul>\n<li>Each line that is prefixed with the single line sequence can be directly identified as a sequence. When using the second syntax you may identify a single line as a commented line solely by the font color. With that the single line syntax distinguishes any comment clearly from any uncommented code without paying attention to the font color.<\/li>\n<li>Using the column editor (see <strong>Functional Design (Aesthetics) of SQL<\/strong>) makes it very easy to apply this syntax to multiple lines in one step.<\/li>\n<li>Additionally, the single line syntax serves best as a structuring element within a large SQ statement.<\/li>\n<\/ul>\n<h2>Examples<\/h2>\n<p>This chapter provides three examples for inline documentation:<\/p>\n<ul>\n<li>No uniform usage of inline documentation<\/li>\n<li>Parallel inline documentation<\/li>\n<li>Template for Inline Documentation<\/li>\n<\/ul>\n<h3>No uniform usage of inline documentation<\/h3>\n<p>The following example shows an inline documentation, that can be often found. There is neither a uniform usage of either syntaxes nor is there a uniform indentation of comments. All comments extend to the entire line. Despite a good formatting of the actual statement, this medium-complex statement is difficult to read due to the unstructured inline documentation. The complexity of the SQL statement lies in the use of a recursive common table expression (CTE) and the corresponding documentation of this feature and its use. The statement can be executed in the database <strong>AdventureWorksDW2017<\/strong>.<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001.png\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-607 size-large\" src=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001-457x1024.png\" alt=\"\" width=\"457\" height=\"1024\" srcset=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001-457x1024.png 457w, https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001-134x300.png 134w, https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001.png 614w\" sizes=\"auto, (max-width: 457px) 100vw, 457px\" \/><\/a><\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001.txt\" target=\"_blank\" rel=\"noopener noreferrer\">Source<\/a><\/p>\n<h3>Parallel inline documentation<\/h3>\n<p>A reengineered version of the same statement includes a parallel inline documentation. A parallel inline documentation is characterized by the fact that a block for the inline documentation is provided on the right behind the statement. This inline documentation uses the single line syntax. The commenting sequence strings are left justified across all lines.<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140002.png\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-603 size-large\" src=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140002-1011x1024.png\" alt=\"\" width=\"1011\" height=\"1024\" srcset=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140002.png 1011w, https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140002-296x300.png 296w, https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140002-768x778.png 768w\" sizes=\"auto, (max-width: 1011px) 100vw, 1011px\" \/><\/a><\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140002.txt\" target=\"_blank\" rel=\"noopener noreferrer\">Source<\/a><\/p>\n<p>A parallel inline documentation can be described as follows:<\/p>\n<ul>\n<li>The actual SQL statements is compact.<\/li>\n<li>The SQL statement is not interrupted by any inline documentation and does not harm the readability.<\/li>\n<li>If a comment refers to the line of code on the left side, this direct link is indicated by using a special sequence of characters (e.g. <strong>&gt;&gt;<\/strong>).<\/li>\n<li>Any comment that requires a longer explanation appears to be mor readable when using bullet point (e.g. <strong>#<\/strong>).<\/li>\n<li>The length of a line including the comment should not be too long to avoid. Any line, that can not be displayed fully on the screen requires the developer to navigate horizontally. Horizontal navigation is much more difficult to perform compared to a vertical navigation using the mouse wheel or the <strong>page up<\/strong> and <strong>page down<\/strong><\/li>\n<\/ul>\n<h3>Template for inline documentation<\/h3>\n<p>The following example shows a full blown inline documentation of a SQL statement including comments on how to use the parallel inline documentation.<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140003.png\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-605 size-full\" src=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140003.png\" alt=\"\" width=\"945\" height=\"768\" srcset=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140003.png 945w, https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140003-300x244.png 300w, https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140003-768x624.png 768w\" sizes=\"auto, (max-width: 945px) 100vw, 945px\" \/><\/a><\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140003.txt\" target=\"_blank\" rel=\"noopener noreferrer\">Source<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Overview Documentation should be an inherent part of any database development project. Virtually everybody would agree with this. However, documentation is usually the first goal to be a victim of project pressure. \u201cIf you want to know what the code does, have a look at the code.\u201d This is a very common view on missing &#8230; <a title=\"Inline Comments in complex SQL statements\" class=\"read-more\" href=\"https:\/\/staging.sql.marcus-belz.de\/?p=584&#038;lang=en\" aria-label=\"Mehr Informationen \u00fcber Inline Comments in complex SQL statements\">Weiterlesen<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[106,108],"tags":[148,150,144,134],"class_list":["post-584","post","type-post","status-publish","format-standard","hentry","category-all-languages-en","category-english-en","tag-column-editor-en","tag-format-en","tag-multi-developer-environment-en","tag-t-sql-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Inline Comments in complex SQL statements - Just another SQL 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:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Inline Comments in complex SQL statements - Just another SQL blog\" \/>\n<meta property=\"og:description\" content=\"Overview Documentation should be an inherent part of any database development project. Virtually everybody would agree with this. However, documentation is usually the first goal to be a victim of project pressure. \u201cIf you want to know what the code does, have a look at the code.\u201d This is a very common view on missing ... Weiterlesen\" \/>\n<meta property=\"og:url\" content=\"https:\/\/staging.sql.marcus-belz.de\/?p=584&amp;lang=en\" \/>\n<meta property=\"og:site_name\" content=\"Just another SQL blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-03T22:13:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-06T23:06:39+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001-457x1024.png\" \/>\n<meta name=\"author\" content=\"marcus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Geschrieben von\" \/>\n\t<meta name=\"twitter:data1\" content=\"marcus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en\"},\"author\":{\"name\":\"marcus\",\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/#\\\/schema\\\/person\\\/98ab042e47d7286f64530ee18f20f675\"},\"headline\":\"Inline Comments in complex SQL statements\",\"datePublished\":\"2018-07-03T22:13:18+00:00\",\"dateModified\":\"2026-05-06T23:06:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en\"},\"wordCount\":876,\"image\":{\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/post00140001-457x1024.png\",\"keywords\":[\"Column Editor\",\"Format\",\"Multi Developer Environment\",\"T-SQL\"],\"articleSection\":[\"All Languages\",\"English\"],\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en\",\"url\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en\",\"name\":\"Inline Comments in complex SQL statements - Just another SQL blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/post00140001-457x1024.png\",\"datePublished\":\"2018-07-03T22:13:18+00:00\",\"dateModified\":\"2026-05-06T23:06:39+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/#\\\/schema\\\/person\\\/98ab042e47d7286f64530ee18f20f675\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en#primaryimage\",\"url\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/post00140001.png\",\"contentUrl\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/post00140001.png\",\"width\":614,\"height\":1376},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?p=584&lang=en#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Inline Comments in complex SQL statements\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/#website\",\"url\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/\",\"name\":\"Just another SQL blog\",\"description\":\"Marcus Belz \u00b7 SQL Server \u00b7 ETL \u00b7 Datenqualit\u00e4t\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/#\\\/schema\\\/person\\\/98ab042e47d7286f64530ee18f20f675\",\"name\":\"marcus\",\"url\":\"https:\\\/\\\/staging.sql.marcus-belz.de\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Inline Comments in complex SQL statements - Just another SQL 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:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en","og_locale":"de_DE","og_type":"article","og_title":"Inline Comments in complex SQL statements - Just another SQL blog","og_description":"Overview Documentation should be an inherent part of any database development project. Virtually everybody would agree with this. However, documentation is usually the first goal to be a victim of project pressure. \u201cIf you want to know what the code does, have a look at the code.\u201d This is a very common view on missing ... Weiterlesen","og_url":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en","og_site_name":"Just another SQL blog","article_published_time":"2018-07-03T22:13:18+00:00","article_modified_time":"2026-05-06T23:06:39+00:00","og_image":[{"url":"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001-457x1024.png","type":"","width":"","height":""}],"author":"marcus","twitter_card":"summary_large_image","twitter_misc":{"Geschrieben von":"marcus","Gesch\u00e4tzte Lesezeit":"4\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en#article","isPartOf":{"@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en"},"author":{"name":"marcus","@id":"https:\/\/staging.sql.marcus-belz.de\/#\/schema\/person\/98ab042e47d7286f64530ee18f20f675"},"headline":"Inline Comments in complex SQL statements","datePublished":"2018-07-03T22:13:18+00:00","dateModified":"2026-05-06T23:06:39+00:00","mainEntityOfPage":{"@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en"},"wordCount":876,"image":{"@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en#primaryimage"},"thumbnailUrl":"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001-457x1024.png","keywords":["Column Editor","Format","Multi Developer Environment","T-SQL"],"articleSection":["All Languages","English"],"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en","url":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en","name":"Inline Comments in complex SQL statements - Just another SQL blog","isPartOf":{"@id":"https:\/\/staging.sql.marcus-belz.de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en#primaryimage"},"image":{"@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en#primaryimage"},"thumbnailUrl":"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001-457x1024.png","datePublished":"2018-07-03T22:13:18+00:00","dateModified":"2026-05-06T23:06:39+00:00","author":{"@id":"https:\/\/staging.sql.marcus-belz.de\/#\/schema\/person\/98ab042e47d7286f64530ee18f20f675"},"breadcrumb":{"@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en#primaryimage","url":"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001.png","contentUrl":"https:\/\/staging.sql.marcus-belz.de\/wp-content\/uploads\/2018\/07\/post00140001.png","width":614,"height":1376},{"@type":"BreadcrumbList","@id":"https:\/\/staging.sql.marcus-belz.de\/?p=584&lang=en#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/staging.sql.marcus-belz.de\/"},{"@type":"ListItem","position":2,"name":"Inline Comments in complex SQL statements"}]},{"@type":"WebSite","@id":"https:\/\/staging.sql.marcus-belz.de\/#website","url":"https:\/\/staging.sql.marcus-belz.de\/","name":"Just another SQL blog","description":"Marcus Belz \u00b7 SQL Server \u00b7 ETL \u00b7 Datenqualit\u00e4t","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/staging.sql.marcus-belz.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/staging.sql.marcus-belz.de\/#\/schema\/person\/98ab042e47d7286f64530ee18f20f675","name":"marcus","url":"https:\/\/staging.sql.marcus-belz.de\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/posts\/584","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=584"}],"version-history":[{"count":9,"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/posts\/584\/revisions"}],"predecessor-version":[{"id":952,"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/posts\/584\/revisions\/952"}],"wp:attachment":[{"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=584"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=584"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/staging.sql.marcus-belz.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=584"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}