{"id":2634,"date":"2019-03-25T17:40:30","date_gmt":"2019-03-25T20:40:30","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/using-rmchart-in-e3\/"},"modified":"2019-10-03T13:13:46","modified_gmt":"2019-10-03T16:13:46","slug":"using-rmchart-in-e3","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/","title":{"rendered":"Using RMChart in E3."},"content":{"rendered":"<div style=\"text-align: justify;\">\n<p><span style=\"font-weight: bold; color: #3366ff;\">INTRODUCTION<\/span><\/p>\n<p>The <span style=\"font-weight: bold;\">RMChart <\/span>ActiveX can be used in E3 for graphic visualization of data. In addition, this is the ideal tool for presenting statistical information, since they are loaded into the database and do not need to be displayed in real time.<\/p>\n<p><span style=\"color: #3366ff; font-weight: bold;\">RMCDesigner<\/span><\/p>\n<p>The <span style=\"font-weight: bold;\">RMCDesigner <\/span>is a program that helps create and develop a template file (with .rmc extension) containing the chart&#8217;s initial settings. Although you can create this structure entirely via scripts, <span style=\"font-weight: bold;\">RMCDesigner <\/span>has a friendlier graphical interface, which facilitates your work and provides instant preview of the effects applied.<\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4281\/Figura01.png\" alt=\"\" width=\"500\" height=\"390\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: justify;\">After configuring the RMC file, you will have a chart&#8217;s structure template that ca be used alongside ActiveX in E3. To do so, the RMCDesigner provides a tool to extract the necessary code. You can access it via<span style=\"font-weight: bold;\"> File &#8211; Get Source<\/span>.<\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4281\/Figura02.png\" alt=\"\" width=\"500\" height=\"247\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: justify;\">The language used in E3&#8217;s scripts is VBScript. Alternatively, RMCDesigner&#8217;s ASP language is an option whose syntax is compatible with VBScript. So, we will use the settings below to show you how to extract the code we want.<\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4281\/Figura03.png\" alt=\"\" width=\"256\" height=\"443\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: justify;\">\n<p>After clicking <span style=\"font-weight: bold;\">Ok<\/span>, the code is copied to the Clipboard.<\/p>\n<p><span style=\"color: #3366ff; font-weight: bold;\">Integrating RMChart into E3<\/span><\/p>\n<p>In E3, insert an RMChart object onto a screen by right-clicking it and selecting <span style=\"font-weight: bold;\">Insert &#8211; RMChartX<\/span>. In the screen&#8217;s <span style=\"font-style: italic;\">OnPreShow <\/span>event, create a Script pick and paste the code obtained in RMCDesigner. In the figure below, the code previously generated is shown with its configured properties. As you can see, <span style=\"font-style: italic;\">With <\/span>command requires <span style=\"font-style: italic;\">RMChartX1 <\/span>variable to contain an RMChart object.<\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4281\/Figura04.png\" alt=\"\" width=\"500\" height=\"334\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: justify;\">Therefore, right before the line <span style=\"font-style: italic;\">With RMChartX1<\/span>, insert the definition of the variable receiving the RMChart object that is on screen. Use the AppBrowser to locate it. Also, run <span style=\"font-style: italic;\">Clear()<\/span> method to prevent old data from being loaded into the ActiveX when the application is executed. Example:<\/div>\n<p><span style=\"color: #3366ff; font-style: italic;\">set <\/span><span style=\"font-style: italic;\">RMChartX1 = Item (<\/span><span style=\"color: #ff0000; font-style: italic;\">&#8220;RMChartX1&#8221;<\/span><span style=\"font-style: italic;\">)<\/span><br style=\"font-style: italic;\" \/><span style=\"font-style: italic;\">RMChartX1.Clear ()<\/span><\/p>\n<div style=\"text-align: justify;\">Now, whenever the screen is opened, this script will be executed, setting the chart&#8217;s initial configuration.<br \/>\n<br style=\"font-weight: bold; color: #3366ff;\" \/><span style=\"font-weight: bold; color: #3366ff;\">Loading data into the ActiveX <\/span>At RMChart, each series (data set) displays the <span style=\"font-style: italic;\">Datastring <\/span>property, which contains the values to be drawn. This property requires that the values be separated by asterisks (&#8220;15*39*21*17&#8221;). So, when you have a bar chart, each value represents a bar. Following our example above, we would have:<\/p>\n<\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4281\/Figura05.png\" alt=\"\" width=\"401\" height=\"201\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: justify;\">Suppose we wish to present the total amount of historical alarms per area in this bar chart. To do so, we need to create a query that returns this information. When configuring a query, go to <span style=\"font-weight: bold;\">SQL <\/span>tab and enable the option <span style=\"font-weight: bold;\">Enable SQL&#8217;s direct edition<\/span>. The following code must be input:<\/div>\n<p><span style=\"font-family: Courier New; font-style: italic;\">SELECT Area, Count (ConditionActive) the TotalActiveAlarms<\/span><br style=\"font-family: Courier New; font-style: italic;\" \/><span style=\"font-family: Courier New; font-style: italic;\">FROM Alarms<\/span><br style=\"font-family: Courier New; font-style: italic;\" \/><span style=\"font-family: Courier New; font-style: italic;\">WHERE ConditionActive = 1<\/span><br style=\"font-family: Courier New; font-style: italic;\" \/><span style=\"font-family: Courier New; font-style: italic;\">GROUP BY Area<\/span><\/p>\n<table border=\"1\" width=\"100%\" cellspacing=\"2\" cellpadding=\"2\" align=\"\">\n<tbody>\n<tr>\n<td style=\"font-weight: bold; text-decoration: underline;\">\u00a0Area<\/td>\n<td style=\"font-weight: bold; text-decoration: underline;\">\u00a0TotalActiveAlarms<\/td>\n<\/tr>\n<tr>\n<td>\u00a0TankArea1<\/td>\n<td>\u00a0590<\/td>\n<\/tr>\n<tr>\n<td>\u00a0TankArea2<\/td>\n<td>\u00a0630<\/td>\n<\/tr>\n<tr>\n<td>\u00a0TankArea3<\/td>\n<td>\u00a0740<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&nbsp;<\/p>\n<div style=\"text-align: justify;\">On the screen containing the object RMChart, we must insert the following script:<\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: center;\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4281\/Figura06.png\" alt=\"\" width=\"500\" height=\"250\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<div style=\"text-align: justify;\">\n<p>As seen in the figure, you must create a variable that receives the RMChart object (in this example, <span style=\"font-style: italic;\">RMChartX1<\/span>) and execute the query previously mentioned by using <span style=\"font-style: italic;\">GetADORecordset()<\/span> method.Thus, the query&#8217;s result will be handled via scripts.<\/p>\n<p>A <span style=\"font-style: italic;\">While <\/span>loop will run until the last record of the Recordset, concatenating the values returned according to the syntax of RMChart&#8217;s <span style=\"font-style: italic;\">DataString<\/span> property (590*630*740).Finally, <span style=\"font-style: italic;\">Draw()<\/span> method will perform the graphic design.<\/p>\n<p><span style=\"color: #3366ff; font-weight: bold;\">Final Remarks<\/span><\/p>\n<p>Once you set the template and extract the code via RMCDesigner, the remaining task will belong entirely to E3, which will create and set queries, and then manipulate their results via Recordset. Thus, the data string will be set up, and then passed to the RMChart object.<\/p>\n<p>The RMChart is a great tool for viewing statistical or historical charts. With its aid tool for building the template, your work becomes easier and the application becomes more attractive to the user.<\/p>\n<p><span style=\"font-weight: bold;\">Notes<\/span>:<\/p>\n<\/div>\n<ul style=\"text-align: justify;\">\n<li>The RMCDesigner is not installed alongside E3.This software program and its components can be found for download on the Internet.<\/li>\n<li>Attached, sample application using RMChart developed with E3 3.2 build 248.<\/li>\n<\/ul>\n<div style=\"text-align: justify;\"><span style=\"color: #3366ff; font-weight: bold;\">Reference<\/span>&#8211; VBScript Reference Guide<br \/>\n&#8211; RMChart Guide<br \/>\n&#8211; <a href=\"http:\/\/www.rmcharts.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">www.rmcharts.com<\/a><\/p>\n<\/div>\n<h3>Attachments:<\/h3>\n<p><a href=\"\/wp-content\/uploads\/2019\/03\/AppRMChartEN-US_V1_00.zip\">AppRMChartEN-US_V1_00<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>INTRODUCTION The RMChart ActiveX can be used in E3 for graphic visualization of data. In addition, this is the ideal tool for presenting statistical information, since they are loaded into&hellip;<\/p>\n","protected":false},"author":8,"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":[731],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Using RMChart in E3. - Elipse Knowledgebase<\/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:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using RMChart in E3.\" \/>\n<meta property=\"og:description\" content=\"INTRODUCTION The RMChart ActiveX can be used in E3 for graphic visualization of data. In addition, this is the ideal tool for presenting statistical information, since they are loaded into&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/\" \/>\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=\"2019-03-25T20:40:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-10-03T16:13:46+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4281\/Figura01.png\" \/>\n<meta name=\"author\" content=\"Renan De Rossi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Renan De Rossi\" \/>\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\/using-rmchart-in-e3\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/\"},\"author\":{\"name\":\"Renan De Rossi\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/05f0d8f49e5ffe573156b4bd742c627f\"},\"headline\":\"Using RMChart in E3.\",\"datePublished\":\"2019-03-25T20:40:30+00:00\",\"dateModified\":\"2019-10-03T16:13:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/\"},\"wordCount\":664,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"ActiveX\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/\",\"name\":\"[:pt]Using RMChart in E3.[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:40:30+00:00\",\"dateModified\":\"2019-10-03T16:13:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using RMChart in E3.\"}]},{\"@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\/05f0d8f49e5ffe573156b4bd742c627f\",\"name\":\"Renan De Rossi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/39b08f7b309bb6a0abb90e1f09048d80?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/39b08f7b309bb6a0abb90e1f09048d80?s=96&d=mm&r=g\",\"caption\":\"Renan De Rossi\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/renan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using RMChart in E3. - Elipse Knowledgebase","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\/using-rmchart-in-e3\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]Using RMChart in E3.[:] - Elipse Knowledgebase","og_description":"INTRODUCTION The RMChart ActiveX can be used in E3 for graphic visualization of data. In addition, this is the ideal tool for presenting statistical information, since they are loaded into&hellip;","og_url":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:40:30+00:00","article_modified_time":"2019-10-03T16:13:46+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID4281\/Figura01.png"}],"author":"Renan De Rossi","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Renan De Rossi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/"},"author":{"name":"Renan De Rossi","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/05f0d8f49e5ffe573156b4bd742c627f"},"headline":"Using RMChart in E3.","datePublished":"2019-03-25T20:40:30+00:00","dateModified":"2019-10-03T16:13:46+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/"},"wordCount":664,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["ActiveX"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/","url":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/","name":"[:pt]Using RMChart in E3.[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:40:30+00:00","dateModified":"2019-10-03T16:13:46+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/using-rmchart-in-e3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Using RMChart in E3."}]},{"@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\/05f0d8f49e5ffe573156b4bd742c627f","name":"Renan De Rossi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/39b08f7b309bb6a0abb90e1f09048d80?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/39b08f7b309bb6a0abb90e1f09048d80?s=96&d=mm&r=g","caption":"Renan De Rossi"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/renan\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/2634"}],"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\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=2634"}],"version-history":[{"count":3,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/2634\/revisions"}],"predecessor-version":[{"id":8962,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/2634\/revisions\/8962"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=2634"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=2634"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=2634"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}