{"id":10541,"date":"2020-04-09T09:45:22","date_gmt":"2020-04-09T12:45:22","guid":{"rendered":"http:\/\/kb.elipse.com.br\/en\/?p=10541"},"modified":"2020-04-09T09:45:22","modified_gmt":"2020-04-09T12:45:22","slug":"kb-106987-subtracting-record-values-in-a-table-field","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/","title":{"rendered":"KB-106987: Subtracting record values in a table Field."},"content":{"rendered":"<h3>Question:<\/h3>\n<p style=\"text-align: justify;\">There is a table field that receives the tag whose value is the total sum of a certain variable in the system; however, I need to subtract these record values in the Field, not to sum them. How can I calculate this?<\/p>\n<blockquote><p><strong>NOTE<\/strong>: The solution proposed in this article, which uses LAG analytic function (Transact-SQL), applies to<a href=\"https:\/\/www.microsoft.com\/pt-br\/download\/details.aspx?id=29062\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>\u00a0SQL Server 2012<\/strong><\/a> and higher; for other versions, or other databases, there is an alternative solution, published at the end of this article.<\/p><\/blockquote>\n<h3>Solution:<\/h3>\n<p style=\"text-align: justify;\">In this case, we can use the <a href=\"https:\/\/docs.microsoft.com\/pt-br\/sql\/t-sql\/functions\/analytic-functions-transact-sql?view=sql-server-ver15\">analytic function<\/a> <em><strong>LAG (Transact-SQL)<\/strong><\/em>, which accesses data from a previous line in the same set of results. This function is a new feature from\u00a0<strong>SQL Server 2012<\/strong>; you can use it in a SELECT instruction, which compares values on the current line to values on the previous one.<\/p>\n<h4 style=\"text-align: justify;\">Syntax<\/h4>\n<p><em>LAG (scalar_expression [,offset] [,default])<br \/>\n<\/em><em>\u00a0 \u00a0 \u00a0 \u00a0OVER ( [ partition_by_clause ] order_by_clause )<\/em><em><br \/>\n<\/em><\/p>\n<h4 style=\"text-align: justify;\">Arguments<\/h4>\n<p style=\"text-align: justify;\"><em>scalar_expression<\/em><br \/>\nThis is the value to be returned based on the specified shift. This is an any-type expression, which returns a single value (scalar).\u00a0 <em>scalar_expression<\/em> can&#8217;t be an analytic function.<\/p>\n<p style=\"text-align: justify;\"><em>offset<\/em><br \/>\nThis is the number of lines behind the current line from where you can retrieve a value. If not specified, default is 1. <em>offset<\/em> can be a column, a subquery, or any other expression evaluated for a positive integer, or then implicitly converted to <strong>bigint<\/strong>. However, <em>offset<\/em> can&#8217;t have a negative value or be an analytic function.<\/p>\n<p style=\"text-align: justify;\"><em>default<\/em><br \/>\nThis is the value to be returned when\u00a0 <em>offset<\/em> is beyond the partition scope. If a default value is not specified, then it returns NULL. <em>default<\/em> can be a column, a subquery, or any other expression, but it can&#8217;t be an analytic function. Therefore,\u00a0 <em>default<\/em> must be compatible to scalar_expression.<\/p>\n<p style=\"text-align: justify;\"><em>OVER ( [ partition_by_clause ] order_by_clause )<\/em><br \/>\n<span style=\"text-decoration: underline;\"><em>partition_by_clause<\/em><\/span> divides the set of results produced by the FROM clause in partitions to which the function is applied. If not specified, then the function will handle all lines in the results set as a single group.<\/p>\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><em>order_by_clause<\/em><\/span> determines the data order before the function is applies. If <em>partition_by_clause<\/em> is specified, then it will determine the data order in the partition. order_by_clause is mandatory. For further information, check <a href=\"https:\/\/docs.microsoft.com\/pt-br\/sql\/t-sql\/queries\/select-over-clause-transact-sql?view=sql-server-ver15\">OVER Clause (Transact-SQL)<\/a>.<\/p>\n<h3><\/h3>\n<h3>Example:<\/h3>\n<h4>1. Firstly: create the table:<\/h4>\n<pre><span style=\"color: #0000ff;\">CREATE TABLE<\/span> Hist_1 (\r\nE3TimeStamp <span style=\"color: #0000ff;\">datetime<\/span> not null,\r\nSE_10F03 <span style=\"color: #0000ff;\">int<\/span> not null,\r\nP1F01 <span style=\"color: #0000ff;\">int<\/span> not null,\r\nP2F01 <span style=\"color: #0000ff;\">int<\/span> not null\r\n)<\/pre>\n<h4>2. Then: insert values:<\/h4>\n<pre><span style=\"color: #0000ff;\">INSERT INTO<\/span> Hist_1\r\n(E3TimeStamp,\r\nSE_10F03,\r\nP1F01,\r\nP2F01)\r\n<span style=\"color: #0000ff;\">VALUES<\/span>\r\n(<span style=\"color: #ff0000;\">'17-01-2020 15:34:00'<\/span>, 425, 182, 345),\r\n(<span style=\"color: #ff0000;\">'17-01-2020 15:38:00'<\/span>, 445, 189, 356),\r\n(<span style=\"color: #ff0000;\">'17-01-2020 15:42:00'<\/span>, 465, 199, 360),\r\n(<span style=\"color: #ff0000;\">'17-01-2020 15:48:00'<\/span>, 485, 203, 394),\r\n(<span style=\"color: #ff0000;\">'17-01-2020 15:52:00'<\/span>, 502, 206, 454),\r\n(<span style=\"color: #ff0000;\">'17-01-2020 15:56:00'<\/span>, 506, 209, 480)<\/pre>\n<h4>3. After that: return previously inserted data:<\/h4>\n<pre><span style=\"color: #0000ff;\">SELECT<\/span> * <span style=\"color: #0000ff;\">FROM<\/span> Hist_1<\/pre>\n<p style=\"text-align: center;\"><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2020\/01\/9768\/1.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-9776\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2020\/01\/9768\/1.png\" alt=\"\" width=\"332\" height=\"136\" \/><\/a><\/p>\n<h4>4. Finally: use LAG function to retrieve the difference between registers:<\/h4>\n<pre><span style=\"color: #0000ff;\">SELECT<\/span> Hist_1.E3TimeStamp,\r\n<span style=\"color: #ff00ff;\">\u00a0 \u00a0 \u00a0 \u00a0 ISNULL<\/span>((Hist_1.SE_10F03 - <span style=\"color: #ff00ff;\">LAG<\/span>(Hist_1.SE_10F03,1) <span style=\"color: #0000ff;\">OVER<\/span> (<span style=\"color: #0000ff;\">ORDER BY<\/span> Hist_1.E3TimeStamp <span style=\"color: #0000ff;\">ASC<\/span>)) ,0) <span style=\"color: #0000ff;\">as<\/span> SE_10F03,\r\n<span style=\"color: #ff00ff;\">\u00a0 \u00a0 \u00a0 \u00a0 ISNULL<\/span>((Hist_1.P1F01 - <span style=\"color: #ff00ff;\">LAG<\/span>(Hist_1.P1F01,1) <span style=\"color: #0000ff;\">OVER<\/span> (<span style=\"color: #0000ff;\">ORDER BY<\/span> Hist_1.E3TimeStamp <span style=\"color: #0000ff;\">ASC<\/span>)) ,0) <span style=\"color: #0000ff;\">as<\/span> P1F01,\r\n<span style=\"color: #ff00ff;\">\u00a0 \u00a0 \u00a0 \u00a0 ISNULL<\/span>((Hist_1.P2F01 - <span style=\"color: #ff00ff;\">LAG<\/span>(Hist_1.P2F01,1) <span style=\"color: #0000ff;\">OVER<\/span> (<span style=\"color: #0000ff;\">ORDER BY<\/span> Hist_1.E3TimeStamp <span style=\"color: #0000ff;\">ASC<\/span>)) ,0) <span style=\"color: #0000ff;\">as<\/span> P2F01\r\n<span style=\"color: #0000ff;\">FROM<\/span> Hist_1\r\n<span style=\"color: #0000ff;\">ORDER BY<\/span> Hist_1.E3TimeStamp <span style=\"color: #0000ff;\">ASC<\/span><\/pre>\n<p style=\"text-align: center;\"><a href=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2020\/01\/9768\/2.png\"><img loading=\"lazy\" class=\"alignnone size-full wp-image-9777\" src=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2020\/01\/9768\/2.png\" alt=\"\" width=\"333\" height=\"140\" \/><\/a><\/p>\n<p>Another possible solution would be to use the following SQL syntax:<\/p>\n<pre><span style=\"color: #0000ff;\">SELECT   <\/span>E3TimeStamp\r\n        ,[SE_10F03]\r\n        ,[SE_10F03] - (\r\n          <span style=\"color: #0000ff;\">SELECT<\/span> <span style=\"color: #0000ff;\">TOP<\/span> 1 [SE_10F03]\r\n          <span style=\"color: #0000ff;\">FROM<\/span> [Hist_1] b\r\n          <span style=\"color: #0000ff;\">WHERE<\/span> a.E3TimeStamp > b.E3TimeStamp\r\n          <span style=\"color: #0000ff;\">ORDER<\/span> <span style=\"color: #0000ff;\">BY<\/span> b.E3TimeStamp <span style=\"color: #0000ff;\">DESC<\/span>) <span style=\"color: #0000ff;\">as<\/span> Diff\r\n<span style=\"color: #0000ff;\">FROM<\/span> [Hist_1] a<\/pre>\n<h3><strong><br \/>\nRelated Articles:<\/strong><\/h3>\n<hr \/>\n<ul>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/structure-query-language-sql-introduction\/\" target=\"_blank\" rel=\"noopener noreferrer\">Structure Query Language (SQL): Introduction.<\/a><\/li>\n<li><a href=\"https:\/\/kb.elipse.com.br\/en\/using-databases-in-e3-introduction\/\" target=\"_blank\" rel=\"noopener noreferrer\">Using Databases in E3: Introduction.<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Question: There is a table field that receives the tag whose value is the total sum of a certain variable in the system; however, I need to subtract these record&hellip;<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[735,743,730],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Subtract record values in a table Field in Elipse E3.<\/title>\n<meta name=\"description\" content=\"This article illustrates how to subtract the record values on a table Field in Elipse E3 via LAG analyctic function (Transact-SQL).\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Subtract record values in a table Field in Elipse E3.\" \/>\n<meta property=\"og:description\" content=\"This article illustrates how to subtract the record values on a table Field in Elipse E3 via LAG analyctic function (Transact-SQL).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2020-04-09T12:45:22+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2020\/01\/9768\/1.png\" \/>\n<meta name=\"author\" content=\"D\u00e9lio Damin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"D\u00e9lio Damin\" \/>\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:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/\"},\"author\":{\"name\":\"D\u00e9lio Damin\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\"},\"headline\":\"KB-106987: Subtracting record values in a table Field.\",\"datePublished\":\"2020-04-09T12:45:22+00:00\",\"dateModified\":\"2020-04-09T12:45:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/\"},\"wordCount\":436,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"DataBases\",\"E3Query\",\"Elipse E3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/\",\"name\":\"Subtract record values in a table Field in Elipse E3.\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2020-04-09T12:45:22+00:00\",\"dateModified\":\"2020-04-09T12:45:22+00:00\",\"description\":\"This article illustrates how to subtract the record values on a table Field in Elipse E3 via LAG analyctic function (Transact-SQL).\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"KB-106987: Subtracting record values in a table Field.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\",\"name\":\"D\u00e9lio Damin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"caption\":\"D\u00e9lio Damin\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/delio\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Subtract record values in a table Field in Elipse E3.","description":"This article illustrates how to subtract the record values on a table Field in Elipse E3 via LAG analyctic function (Transact-SQL).","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:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/","og_locale":"en_US","og_type":"article","og_title":"Subtract record values in a table Field in Elipse E3.","og_description":"This article illustrates how to subtract the record values on a table Field in Elipse E3 via LAG analyctic function (Transact-SQL).","og_url":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2020-04-09T12:45:22+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/wp-content\/uploads\/2020\/01\/9768\/1.png"}],"author":"D\u00e9lio Damin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"D\u00e9lio Damin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/"},"author":{"name":"D\u00e9lio Damin","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778"},"headline":"KB-106987: Subtracting record values in a table Field.","datePublished":"2020-04-09T12:45:22+00:00","dateModified":"2020-04-09T12:45:22+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/"},"wordCount":436,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["DataBases","E3Query","Elipse E3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/","url":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/","name":"Subtract record values in a table Field in Elipse E3.","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2020-04-09T12:45:22+00:00","dateModified":"2020-04-09T12:45:22+00:00","description":"This article illustrates how to subtract the record values on a table Field in Elipse E3 via LAG analyctic function (Transact-SQL).","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/kb-106987-subtracting-record-values-in-a-table-field\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"KB-106987: Subtracting record values in a table Field."}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778","name":"D\u00e9lio Damin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","caption":"D\u00e9lio Damin"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/delio\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/10541"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=10541"}],"version-history":[{"count":3,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/10541\/revisions"}],"predecessor-version":[{"id":10546,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/10541\/revisions\/10546"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=10541"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=10541"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=10541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}