{"id":9445,"date":"2019-11-19T10:42:39","date_gmt":"2019-11-19T13:42:39","guid":{"rendered":"http:\/\/kb.elipse.com.br\/en\/?p=9445"},"modified":"2023-07-06T15:14:51","modified_gmt":"2023-07-06T18:14:51","slug":"demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/","title":{"rendered":"Demo application: MQTT driver commnicating with Mosquitto MQTT Broker."},"content":{"rendered":"<div align=\"justify\">\n<h2>Introduction<\/h2>\n<p>In this article, we&#8217;ll create a demo environment for the basic configurations of an MQTT driver communicating with a Mosquitto MQTT Broker, with a client (MQTT Lens) connected for testing purposes in MQTT messages publication\/subscription scenarios.<\/p>\n<h2 align=\"left\"><b>MQTT (Message Queue Telemetry Transport) protocol<br \/>\n<\/b><\/h2>\n<p>The MQTT protocol, projected for light messages transportation, is one of the main network protocols for Internet of Things (IoT) devices. With MQTT, the device can &#8220;listen&#8221; and be notified only when one of the variables changes. Therefore, the connection remains open, but data will only be transmitted when necessary, which helps save battery and bandwidth, and improve real-time resources as a whole.<\/p>\n<p>In this protocol, the communication hub is the MQTT Broker, which is responsible for managing all messages between senders and receivers. The MQTT protocol sets up two types of entities on the network: one message broker and several clients. The broker is a server that receivers all clients&#8217; messages, and then routes these messages to clients of relevant destinatons. A client is any device that can interact with the broker and then receive messages; examples are IoT sensors in the field, or devices in a data center processing the IoT data.<\/p>\n<\/div>\n<div align=\"justify\">\n<p>The communication sequence is the following:<\/p>\n<ol>\n<li>Firstly, the client connects to the broker. It can subscribe to any message &#8220;topic&#8221; in the broker.<\/li>\n<li>Then, the client publiches all messages from a topic, sending both the message and the topic to the broker.<\/li>\n<li>After that, the broker routes the message to all clients subscribed to this topic.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h2 align=\"left\"><b>Installing the Mosquitto MQTT Broker <\/b><\/h2>\n<p>1. First of all, download it from the Download section at <a href=\"https:\/\/mosquitto.org\/download\/\" target=\"_blank\" rel=\"noopener noreferrer\">Mosquitto.org<\/a>. In this example, we&#8217;ll use the\u00a0 <strong><a href=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/03\/3776\/mosquitto-1.6.2-install-windows-x86.zip\">mosquitto-1.6.2-install-windows-x86<\/a><\/strong> installer, which is the native compilation\u00a0 applicable to Windows Vista or higher.<\/p>\n<p>2. Then, run the downloaded file, select the <b>Service <\/b>component, and click <b>Next<\/b>.<\/p>\n<\/div>\n<div align=\"justify\"><\/div>\n<div align=\"justify\">\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/2.png\" alt=\"\" width=\"516\" height=\"403\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>3.\u00a0 After that, select the location for the installation and click <b>Install<\/b>.<\/p>\n<\/div>\n<div align=\"justify\"><\/div>\n<div align=\"justify\">\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/3.png\" alt=\"\" width=\"516\" height=\"403\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>4. The next step is to start the <strong>Mosquitto Broker <\/strong>service, via Control Panel&#8211;Administrative Tools&#8211;Services (services.msc).<\/p>\n<\/div>\n<div align=\"justify\"><\/div>\n<div align=\"justify\">\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/4A.png\" alt=\"\" width=\"550\" height=\"442\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>5. To check whether the broker is working, use\u00a0 netstat -an command from the prompt.<\/p>\n<\/div>\n<div align=\"justify\"><\/div>\n<div align=\"justify\">\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/5.png\" alt=\"\" width=\"550\" height=\"281\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<h2 align=\"left\"><b>Testing with MQTTlens client<br \/>\n<\/b><\/h2>\n<p>The MQTT Lens is a Chrome extension that is used for connecting to the MQTT Broker.<\/p>\n<p><strong>Note:<\/strong> Any other MQTT client can be used (e.g.: <a href=\"https:\/\/mqttx.app\/\">MQTT X<\/a>, <a href=\"https:\/\/mqtt-explorer.com\/\">MQTT Explorer<\/a>, etc.).<\/p>\n<p>1. To add the extension, you must first access <a href=\"https:\/\/chrome.google.com\/webstore\/detail\/mqttlens\/hemojaaeigabkbcookmlgmdigohjobjm\" target=\"_blank\" rel=\"noopener noreferrer\">this link<\/a>.<\/p>\n<p>2. After installing it, click the <a href=\"https:\/\/chrome.google.com\/webstore\/\" target=\"_blank\" rel=\"noopener noreferrer\">installation or initialization app<\/a> and run the add-on.<\/p>\n<p>3. Then, add the connection to the broker.<\/p>\n<\/div>\n<div align=\"justify\"><\/div>\n<div align=\"justify\">\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/6.png\" alt=\"\" width=\"550\" height=\"575\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>4. By clicking <strong>Add a new connection<\/strong>, you will access a new screen; there, you&#8217;ll need to type the publication and subscription data in order to test the broker.<\/p>\n<\/div>\n<div align=\"justify\"><\/div>\n<div align=\"justify\">\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/7A.png\" alt=\"\" width=\"549\" height=\"374\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>&nbsp;<\/p>\n<pre><b>Subscribe: <\/b>Plant-1\/Sensor-001\/Data\/#\r\n<b>Publish: <\/b>Plant-1\/Sensor-001\/Data\/\r\n<b>Message: <\/b>{\"Temperature\":25,\"Humidity\":44}\r\n<\/pre>\n<p>5. In the example above, notice that the\u00a0 # symbol in the <b>Subscribe <\/b>box will subscribe all the contents available in <b>Plant-1\/Sensor-001\/Data\/<\/b> topic.<\/p>\n<p>6.\u00a0 For further information about the message, click <b>Message Details<\/b>, which is right next to the message.<\/p>\n<\/div>\n<div align=\"justify\"><\/div>\n<div align=\"justify\">\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/8.png\" alt=\"\" width=\"550\" height=\"282\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p><b>\u00a0<\/b><\/p>\n<h2 align=\"left\"><b>Setting up the MQTT driver to communicate with Mosquitto <\/b><b>Broker <\/b><\/h2>\n<p>1. First of all: in order to to receive the message from the broker, you&#8217;ll need to create the following JSON template for the driver to extract the message:<\/p>\n<pre>{\"Temperature\":\"E3VAL\",\u00a0 \"Humidity\":\"E3VAL\"}<\/pre>\n<p>2. After that, access the <b>Ethernet<\/b> tab and type the IP address and the port being used by the broker.<\/p>\n<p>3. Since the keyword used in the template for the extracted values is E3VAL, you&#8217;ll need to create a two-element block tag to receive one value per item.<\/p>\n<p>4. Then, go to the tag&#8217;s <strong>Item<\/strong> parameter and and specify the topic and template (<i><b>Plant-1\/Sensor-001\/Data\/;Plant<\/b><\/i>) desired.<\/p>\n<\/div>\n<div align=\"justify\"><\/div>\n<div align=\"justify\">\n<div align=\"center\"><img loading=\"lazy\" title=\"\" src=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/9A.png\" alt=\"\" width=\"549\" height=\"417\" align=\"Baseline\" border=\"0\" \/><\/div>\n<p>The attached demo application was developed with Elipse E3 v4.8.300.<\/p>\n<h2>Attachments:<\/h2>\n<p><a href=\"\/wp-content\/uploads\/2019\/03\/App-3.zip\">App.zip<\/a><br \/>\n<a href=\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/03\/3776\/mosquitto-1.6.2-install-windows-x86.zip\">Mosquitto-1.6.2-install-windows-x86.zip<\/a><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this article, we&#8217;ll create a demo environment for the basic configurations of an MQTT driver communicating with a Mosquitto MQTT Broker, with a client (MQTT Lens) connected for&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":[733,977,730],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>MQTT driver commnicating with Broker Mosquitto MQTT.<\/title>\n<meta name=\"description\" content=\"This article illustrates the communication between an MQTT driver and a Mosquitto MQTT Broker, with a connected client in publication\/subscription scenarios\" \/>\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\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MQTT driver commnicating with Broker Mosquitto MQTT.\" \/>\n<meta property=\"og:description\" content=\"This article illustrates the communication between an MQTT driver and a Mosquitto MQTT Broker, with a connected client in publication\/subscription scenarios\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/\" \/>\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-11-19T13:42:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-06T18:14:51+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/2.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=\"5 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\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/\"},\"author\":{\"name\":\"D\u00e9lio Damin\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\"},\"headline\":\"Demo application: MQTT driver commnicating with Mosquitto MQTT Broker.\",\"datePublished\":\"2019-11-19T13:42:39+00:00\",\"dateModified\":\"2023-07-06T18:14:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/\"},\"wordCount\":613,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Demo Application\",\"MQTT Driver\",\"Elipse E3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/\",\"name\":\"MQTT driver commnicating with Broker Mosquitto MQTT.\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2019-11-19T13:42:39+00:00\",\"dateModified\":\"2023-07-06T18:14:51+00:00\",\"description\":\"This article illustrates the communication between an MQTT driver and a Mosquitto MQTT Broker, with a connected client in publication\/subscription scenarios\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Demo application: MQTT driver commnicating with Mosquitto MQTT Broker.\"}]},{\"@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":"MQTT driver commnicating with Broker Mosquitto MQTT.","description":"This article illustrates the communication between an MQTT driver and a Mosquitto MQTT Broker, with a connected client in publication\/subscription scenarios","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\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/","og_locale":"en_US","og_type":"article","og_title":"MQTT driver commnicating with Broker Mosquitto MQTT.","og_description":"This article illustrates the communication between an MQTT driver and a Mosquitto MQTT Broker, with a connected client in publication\/subscription scenarios","og_url":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2019-11-19T13:42:39+00:00","article_modified_time":"2023-07-06T18:14:51+00:00","og_image":[{"url":"http:\/\/kb.elipse.com.br\/pt-br\/images\/ID5487\/2.png"}],"author":"D\u00e9lio Damin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"D\u00e9lio Damin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/"},"author":{"name":"D\u00e9lio Damin","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778"},"headline":"Demo application: MQTT driver commnicating with Mosquitto MQTT Broker.","datePublished":"2019-11-19T13:42:39+00:00","dateModified":"2023-07-06T18:14:51+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/"},"wordCount":613,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Demo Application","MQTT Driver","Elipse E3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/","url":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/","name":"MQTT driver commnicating with Broker Mosquitto MQTT.","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2019-11-19T13:42:39+00:00","dateModified":"2023-07-06T18:14:51+00:00","description":"This article illustrates the communication between an MQTT driver and a Mosquitto MQTT Broker, with a connected client in publication\/subscription scenarios","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/demo-application-mqtt-driver-commnicating-with-mosquitto-mqtt-broker\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Demo application: MQTT driver commnicating with Mosquitto MQTT Broker."}]},{"@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\/9445"}],"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=9445"}],"version-history":[{"count":8,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/9445\/revisions"}],"predecessor-version":[{"id":14985,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/9445\/revisions\/14985"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=9445"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=9445"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=9445"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}