{"id":3692,"date":"2019-03-25T17:45:31","date_gmt":"2019-03-25T20:45:31","guid":{"rendered":"http:\/\/xexeu.elipse.com.br\/pt\/using-elipse-powers-alarm-filters\/"},"modified":"2020-01-20T17:12:29","modified_gmt":"2020-01-20T20:12:29","slug":"using-elipse-powers-alarm-filters","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/","title":{"rendered":"Using Elipse Power&#8217;s Alarm Filters."},"content":{"rendered":"<div align=\"justify\">\n<p>Operating under a concept of filter similar to the one in E3Alarm, Elipse Power&#8217;s Alarm Filters allows you to query a series of alarms statistics, among which we can mention a customized counter. This feature has been a part of Elipse Power since version 4.7.<\/p>\n<p>The demo application discussed below, developed with Elipse Power version 4.7, contains three modeled substations. Their breakers&#8217; and switches&#8217; commands, measurements, and alarms have already been set up. Single-line screens are accessed from a menu screen. Menu buttons must be animated as follows:<\/p>\n<ul>\n<li>Whenever a user in COS group logs into the system, menu buttons must blink when a high-voltage alarm is active and unacknowledged.<\/li>\n<li>Whenever a user in Operator group logs into the system, menu buttons must blink when a low-voltage alarm is active and unacknowledged.<\/li>\n<\/ul>\n<p>Since alarms have no preset field to return objects&#8217; voltage, the first step is to create a user field reporting the voltage in each alarm&#8217;s parent object (breakers or switches, for example). To do so, follow these procedures:<\/p>\n<p><b>1.<\/b>\u00a0 On the Alarm Server&#8217;s <b>User Fields <\/b>tab, set up <i>UserFiled1 <\/i>as <b>BaseVoltage<\/b>. This field&#8217;s source won&#8217;t be set up at the Alarms Server, because sources pertain to their own alarms (that is, they won&#8217;t receive the value set up at the Alarms Server).<\/p>\n<p><b>2. <\/b>Set up the <b>BaseVoltage <\/b>field&#8217;s source in each alarm individually. To do so, access the <b>User fields<\/b> tab of the discrete alarms added to breakers&#8217;\/switches&#8217; <b>BreakerPosition\/SwitchPosition<\/b> measurements, and set up <b>BaseVoltage<\/b>&#8216;s source to retrieve its parents&#8217; <i>BaseVoltage <\/i>property. The resulting expression is:<\/p>\n<p><span style=\"font-family: Courier New;\">@(Device).BaseVoltage<\/span><\/p>\n<p>The figure below illustrates how to set up the window associated to each alarm:<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5355EN\/Picture_1.png\" alt=\"\" width=\"449\" height=\"519\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p><b>NOTE<\/b>: You must configure the sources added to all <b>BreakerPosition\/SwitchPosition<\/b> discrete measurements. This can be done via scripts or manually.<\/p>\n<p>The second step is to implement the animation for each substation&#8217;s buttons. To do so will require the statistics pertaining each substation&#8217;s active and unacknowledged alarms; additionally, all alarms must be filtered by their parent object&#8217;s voltage (69 kV or 13,8 kV). To develop this filter, use the Alarm Filter as follows:<\/p>\n<p><b>1.<\/b>\u00a0 Create three Alarm Filters in the Viewer: <b>SE1_Filter<\/b>, <b>SE2_Filter<\/b>, and <b>SE3_Filter<\/b>.<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5355EN\/Picture_2.png\" alt=\"\" width=\"254\" height=\"317\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p><b>2.<\/b> Set up each object&#8217;s <i>AreaFilter <\/i>property as SE1, SE2, and SE3, respectively.<\/p>\n<p><b>3.<\/b> Alarm Filters feature a property called <i>ActiveAlarms<\/i>, which returns the number of alarms still active inside a given Area. To animate the button&#8217;s background color, create a digital link in each button&#8217;s <i>BackColor <\/i>property to test each filter&#8217;s <i>ActiveAlarms <\/i>property (value must be higher than 0). From there, set up the following expression in <i>BackColor <\/i>property&#8217;s <b>Source <\/b>field:<br \/>\n<span style=\"font-family: Courier New;\"><br \/>\nViewer.SE1_Filter.ActiveAlarms > 0<\/span><\/p>\n<p>The figure below illustrates this expression:<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5355EN\/Picture_3.png\" alt=\"\" width=\"500\" height=\"460\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p><b>4.<\/b> Click <i>BackColor <\/i>property&#8217;s <b>Connection <\/b>field and set up a digital link, as illustrated in the figure below:<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5355EN\/Picture_4.png\" alt=\"\" width=\"500\" height=\"362\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p><b>5.<\/b>\u00a0 From this point on, the button will blink whenever there is an active alarm in the Area. Repeat these procedures for all buttons on menu screen, will their respective alarm filters.<\/p>\n<p>The last step is to develop a script that tests to which group each user is logged (<b>COS <\/b>or <b>Operator<\/b>); from then on, set up the filters in each Alarm Filter created in the Viewer.<\/p>\n<p><b>1.<\/b> The Viewer&#8217;s <i>OnLogin <\/i>event contains a script that opens a frame. First, use <i>IsMemberOfGroup <\/i>method to establish to which group the user belongs:<\/p>\n<div align=\"left\"><span style=\"font-family: Courier New;\">If IsUserMemberOfGroup(&#8220;COS&#8221;, User) Then <\/span><br \/>\n<span style=\"font-family: Courier New;\">Else <\/span><br \/>\n<span style=\"font-family: Courier New;\">End if<\/span><\/div>\n<p><b>2.<\/b> Then, set up the alarms at the Alarm Filter according to their voltage levels. To do so, use <i>CustomFilter <\/i>property:<\/p>\n<div align=\"left\"><span style=\"font-family: Courier New;\">If IsUserMemberOfGroup(&#8220;COS&#8221;, User) Then<\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0 Item(&#8220;SE1_Filter&#8221;).CustomFilter = &#8220;BaseVoltage = 69&#8221;<\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0 Item(&#8220;SE2_Filter&#8221;).CustomFilter = &#8220;BaseVoltage = 69&#8221;<\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0 Item(&#8220;SE3_Filter&#8221;).CustomFilter = &#8220;BaseVoltage = 69&#8221;<\/span><br \/>\n<span style=\"font-family: Courier New;\">Else <\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0 Item(&#8220;SE1_Filter&#8221;).CustomFilter = &#8220;BaseVoltage = 13.8&#8221;<\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0 Item(&#8220;SE2_Filter&#8221;).CustomFilter = &#8220;BaseVoltage = 13.8&#8221;<\/span><br \/>\n<span style=\"font-family: Courier New;\">\u00a0 Item(&#8220;SE3_Filter&#8221;).CustomFilter = &#8220;BaseVoltage = 13.8&#8221;<\/span><br \/>\n<span style=\"font-family: Courier New;\">End if<\/span><br \/>\n<span style=\"font-family: Courier New;\">Application.GetFrame(&#8220;_top&#8221;).OpenScreen &#8220;Frame1&#8221;,0<\/span><\/div>\n<p><b>3.<\/b> The final script will look as follows:<\/p>\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5355EN\/Picture_5.png\" alt=\"\" width=\"500\" height=\"394\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>Finally, run the application and test its new features.<\/p>\n<p><b>NOTES: <\/b><\/p>\n<ul>\n<li><b>User<\/b>: elipse1 <b>Password<\/b>: elipse <b>Group<\/b>: COS<\/li>\n<li><b>User<\/b>: elipse2 <b>Password<\/b>: elipse <b>Group <\/b>: Operator<\/li>\n<li>This application was developed with Elipse Power version 4.<\/li>\n<\/ul>\n<\/div>\n<p>&nbsp;<\/p>\n<h3>Attachments:<\/h3>\n<p><a href=\"\/wp-content\/uploads\/2019\/03\/Initial_App.zip\">Initial_App.zip<\/a><br \/>\n<a href=\"\/wp-content\/uploads\/2019\/03\/Final_App.zip\">Final_App.zip<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Operating under a concept of filter similar to the one in E3Alarm, Elipse Power&#8217;s Alarm Filters allows you to query a series of alarms statistics, among which we can mention&hellip;<\/p>\n","protected":false},"author":13,"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":[825],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Using Elipse Power&#039;s Alarm Filters. - 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-elipse-powers-alarm-filters\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Elipse Power&#039;s Alarm Filters.\" \/>\n<meta property=\"og:description\" content=\"Operating under a concept of filter similar to the one in E3Alarm, Elipse Power&#8217;s Alarm Filters allows you to query a series of alarms statistics, among which we can mention&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/\" \/>\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:45:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-01-20T20:12:29+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5355EN\/Picture_1.png\" \/>\n<meta name=\"author\" content=\"Eduardo Grazziotin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Eduardo Grazziotin\" \/>\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-elipse-powers-alarm-filters\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/\"},\"author\":{\"name\":\"Eduardo Grazziotin\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/f9fc2442228f8cc06308387a6725ef03\"},\"headline\":\"Using Elipse Power&#8217;s Alarm Filters.\",\"datePublished\":\"2019-03-25T20:45:31+00:00\",\"dateModified\":\"2020-01-20T20:12:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/\"},\"wordCount\":666,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Elipse Power\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/\",\"name\":\"[:pt]Using Elipse Power's Alarm Filters.[:] - Elipse Knowledgebase\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-03-25T20:45:31+00:00\",\"dateModified\":\"2020-01-20T20:12:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Elipse Power&#8217;s Alarm Filters.\"}]},{\"@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\/f9fc2442228f8cc06308387a6725ef03\",\"name\":\"Eduardo Grazziotin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/47913ac4c8f427d44c6391bff49b275f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/47913ac4c8f427d44c6391bff49b275f?s=96&d=mm&r=g\",\"caption\":\"Eduardo Grazziotin\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/eduardo\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using Elipse Power's Alarm Filters. - 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-elipse-powers-alarm-filters\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]Using Elipse Power's Alarm Filters.[:] - Elipse Knowledgebase","og_description":"Operating under a concept of filter similar to the one in E3Alarm, Elipse Power&#8217;s Alarm Filters allows you to query a series of alarms statistics, among which we can mention&hellip;","og_url":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-03-25T20:45:31+00:00","article_modified_time":"2020-01-20T20:12:29+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5355EN\/Picture_1.png"}],"author":"Eduardo Grazziotin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Eduardo Grazziotin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/"},"author":{"name":"Eduardo Grazziotin","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/f9fc2442228f8cc06308387a6725ef03"},"headline":"Using Elipse Power&#8217;s Alarm Filters.","datePublished":"2019-03-25T20:45:31+00:00","dateModified":"2020-01-20T20:12:29+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/"},"wordCount":666,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Elipse Power"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/","url":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/","name":"[:pt]Using Elipse Power's Alarm Filters.[:] - Elipse Knowledgebase","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-03-25T20:45:31+00:00","dateModified":"2020-01-20T20:12:29+00:00","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/using-elipse-powers-alarm-filters\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Using Elipse Power&#8217;s Alarm Filters."}]},{"@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\/f9fc2442228f8cc06308387a6725ef03","name":"Eduardo Grazziotin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/47913ac4c8f427d44c6391bff49b275f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/47913ac4c8f427d44c6391bff49b275f?s=96&d=mm&r=g","caption":"Eduardo Grazziotin"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/eduardo\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3692"}],"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\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=3692"}],"version-history":[{"count":2,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3692\/revisions"}],"predecessor-version":[{"id":5188,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/3692\/revisions\/5188"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=3692"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=3692"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=3692"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}