{"id":7993,"date":"2025-11-29T08:39:38","date_gmt":"2025-11-29T07:39:38","guid":{"rendered":"https:\/\/web-dev-weissblau.de\/microconsult\/?p=7993"},"modified":"2026-02-13T05:18:49","modified_gmt":"2026-02-13T04:18:49","slug":"were-building-a-machine-and-integrating-the-iot-right-from-the-start","status":"publish","type":"post","link":"https:\/\/www.microconsult.de\/en\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/","title":{"rendered":"We&#039;re building a machine \u2013 and integrating the IoT right into it!"},"content":{"rendered":"<h2>Joking aside \u2013 how can IoT methods be used effectively in mechanical engineering?<\/h2>\n<p style=\"text-align: left;\" align=\"center\">Author: Robert Schachner, RST Industrie Automation GmbH or Embedded4You eV.<\/p>\n<h3>Contribution \u2013 Embedded Software Engineering Congress 2016<\/h3>\n<p><strong>IoT \u2013 the \u201eInternet of Things\u201c and \u201eIndustry 4.0\u201c: These two buzzwords are currently haunting events and trade fairs everywhere. What&#039;s said often sounds promising; the ultimate goal, the great success, is announced. However, it usually remains just a collection of buzzwords whose deeper meaning remains elusive. This presentation clarifies what lies behind these concepts and uses a machine as an example to demonstrate how these technologies can be implemented effectively.<\/strong><\/p>\n<h2>\u00a0Forms of communication<\/h2>\n<h3><strong>1. The process data model<\/strong><\/h3>\n<p>The image (<a title=\"We are building a machine\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/11\/ind_4.0_wir_bauen_eine_maschine_rst_schachner.pdf\" target=\"_blank\" rel=\"noopener\">PDF<\/a>The diagram shows the communication model found in every PLC controller. A global memory \u2013 the process data model \u2013 serves as a storage location for all process parameters (process variables or flags). Electrical signals are cyclically input and output via various I\/O functions.<\/p>\n<p>A control program accesses these process variables, processes the data, and writes process variables back into the process data model.<\/p>\n<p>Since this method overwrites the &quot;old&quot; value in each update phase, only the most up-to-date process variables are always available. Real-time control, as well as real-time regulation, can thus be implemented universally and easily. However, this simple and elegant approach becomes a disadvantage when multiple values or status messages (e.g., commands or error messages) are written to a process variable faster than they can be read from the remote system.<\/p>\n<p>Important information is lost because it is overwritten too quickly. In such situations, the model fails.<\/p>\n<h3>2. Message-based communication<\/h3>\n<p>This type of communication is almost always behind the &quot;IoT&quot; discussion. At first glance, both communication methods sound very similar. However, upon closer examination, it becomes clear that the two methods differ fundamentally in their impact. In the message-based communication model, messages are serialized, and as in the example above (<a title=\"We are building a machine\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/11\/ind_4.0_wir_bauen_eine_maschine_rst_schachner.pdf\" target=\"_blank\" rel=\"noopener\">PDF<\/a>) distributed to other clients via a central intermediary, the so-called broker. In contrast to the process data model, the focus here is on reliable delivery.\u00a0<strong>all<\/strong>\u00a0Information \u2013 overwriting values that have not yet been retrieved is no longer possible. The system offers advantages and disadvantages; for example, implementing controllers is extremely difficult.<\/p>\n<p>Besides the usual addressing, where the sender specifies the recipient (request\/response), there is the publish\/subscribe mechanism, which is something entirely new in the embedded world. The sender (publisher) no longer addresses their message to a specific recipient, but simply makes it available under a unique topic. Any recipient (subscriber) can then subscribe to this topic as needed and will subsequently receive all relevant information from the broker until they unsubscribe. Thus, sender and recipient are no longer directly connected; this enables the distribution of information as needed.<\/p>\n<p>To return to the IoT terminology, this has essentially created a &quot;cloud&quot;\u2014a universal storage location for data that can be made available to any number of participants. Contrary to popular belief, this cloud doesn&#039;t have to be located on the internet; it can also function as a so-called &quot;private cloud&quot; within a machine control system. This ensures data security.<\/p>\n<h2>Application in machine control<\/h2>\n<p>With this knowledge, we now want to develop strategies for modern machine control. The reference architecture model RAMI4.0, proposed by the VDI and ZVEI, can also be considered in this context.<\/p>\n<p>With the process data model already described, we again rely on the methodology currently used to implement control in almost every machine. Whether a high-level language, structured text, function block diagram, or a model-based approach is used as the programming method is independent of the communication model and depends primarily on the programmer&#039;s skills. When using PLC technology, the only requirement is that the hardware is integrated into an open operating system. With middleware platforms like Gamma V, the integrated process data model can be used with virtually any embedded hardware on a Linux or Windows operating system.<\/p>\n<p>It is also advantageous to reuse existing I\/O concepts. Up to this point, our considerations have remained within the standard environment. Now, we want to demonstrate how effectively and elegantly broker architectures can enhance traditional control systems. We will present two examples to illustrate this.<\/p>\n<h3>Example 1: Error Management<\/h3>\n<p>In traditional control systems, this issue is implemented very differently. Often, only process variables are used for temporarily storing error values. However, if two error messages are generated in quick succession, the older one can be overwritten if it is not read quickly enough; frequently, only the most recent error message reaches the application. As a workaround, flags can be created; however, in the worst case, this leads to hundreds of flags, each assigned an error number. Thus, one dilemma is avoided by creating another.<\/p>\n<p>This can be solved much more elegantly using message-based communication methods.<\/p>\n<p>The control systems (Control 1 \u2013 Control 3,\u00a0<a title=\"We are building a machine\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/11\/ind_4.0_wir_bauen_eine_maschine_rst_schachner.pdf\" target=\"_blank\" rel=\"noopener\">PDF<\/a>These correspond to the previously described classic architecture, but each has been extended to include a messaging client. This client allows error messages to be sent via the Client RPC API. These messages can contain various details via properties, such as error number, error class, date and time, etc. Within the communication model, each controller now acts as a so-called publisher, making its error messages available via a topic (for example, &quot;ERROR&quot;).<\/p>\n<p>The broker can run either on a dedicated computer or \u2013 in a multi-broker concept \u2013 distributed as a separate instance on each participating computer. It then distributes the data received from publishers on the &quot;ERROR&quot; topic to the various subscribers.<\/p>\n<p>This data is then received and processed by services registered as subscribers on the network. Thanks to the previously described separation between senders and receivers, any service can be connected to process the error data. These services communicate exclusively with the topic &quot;ERROR,&quot; completely independent of the publishers and other subscribers. As illustrated, a wide variety of applications can be programmed to perform universal tasks such as archiving or, for example, to send emails or SMS messages to service technicians in case of an error. The architecture even allows for any number of error visualizations to run on the machine or on remote terminals, all of which can be operated independently.<\/p>\n<p>This creates a cross-computer fault management system whose flexibility and simplicity are unmatched by any other technology. Entire machines with their dedicated controllers can now be networked without further configuration, and their services can be used centrally. Thus, in an entire machine hall, only a single central UMTS interface is needed to notify the service technician.<\/p>\n<h3>Example 2: Ad-hoc networking of machine parts<\/h3>\n<p>Machines are now mostly networked via fieldbuses. Depending on the number of connections, networking can involve considerable configuration effort and a corresponding potential for errors.<\/p>\n<p>The publish\/subscribe mechanism also offers a highly elegant alternative here. As shown in Figure 4 (<a title=\"We are building a machine\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/11\/ind_4.0_wir_bauen_eine_maschine_rst_schachner.pdf\" target=\"_blank\" rel=\"noopener\">PDF<\/a>As shown in the diagram, application A, for example, generates a part number and the corresponding status signal &quot;PartReady&quot; via the docked RFID reader. As a publisher, this information is made available on the network. Other machine parts connected to the network can then subscribe to this and any other information as subscribers. In this example, system 2, as a subscriber, receives the information about which part (PartNumber) is ready for pickup and when (PartReady).<\/p>\n<p>This creates a private cloud through which individual machine components exchange information. Machine components can now automatically assemble themselves into a networked machine \u2013 solely via the relevant topics. Since a complex overall system may require managing a large number of topics, it is important to structure the topic names uniformly within a topology or even an ontology.<\/p>\n<p>Message-based communication offers many more possibilities for making control systems more effective. Therefore, in addition to the points briefly summarized here, the presentation will also highlight strategies for networking with production networks and, as a practical example, discuss a successfully implemented machine control system in detail.<\/p>\n<p><a title=\"We are building a machine (PDF)\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/11\/ind_4.0_wir_bauen_eine_maschine_rst_schachner.pdf\" target=\"_blank\" rel=\"noopener\"><strong>Download the article as a PDF<\/strong><\/a><\/p>\n<hr \/>\n<h2>IoT \/ Industry 4.0 \u2013 our training courses &amp; coaching<\/h2>\n<p><strong>Do you want to bring yourself up to date with the latest technology?<\/strong><\/p>\n<p>Then find out more\u00a0<a title=\"System and hardware development training and coaching\" href=\"https:\/\/www.microconsult.de\/en\/all-training-dates-complete-overview\/\" target=\"_blank\" rel=\"noopener\"><strong>here<\/strong>\u00a0<\/a>MircoConsult offers training courses\/seminars\/workshops and individual coaching on the topics of IoT\/Industry 4.0\/system and hardware development.<\/p>\n<p><strong>Training &amp; coaching on the other topics in our portfolio can be found here.\u00a0<a title=\"Training &amp; Consulting - all topics\" href=\"https:\/\/www.microconsult.de\/en\/training-beratung\/\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/strong><\/p>\n<hr \/>\n<h2>IoT \/ Industry 4.0 \u2013 Expertise<\/h2>\n<p>Valuable expertise in IoT\/Industry 4.0\/system and hardware development is available.\u00a0<a title=\"Systems and Hardware Engineering\" href=\"https:\/\/www.microconsult.de\/en\/system-and-hardware-development\/\" target=\"_blank\" rel=\"noopener\"><strong>here<\/strong>\u00a0<\/a>Available for you to download free of charge.<\/p>\n<p><a title=\"Systems and Hardware Engineering\" href=\"https:\/\/www.microconsult.de\/en\/system-and-hardware-development\/\" target=\"_blank\" rel=\"noopener\"><strong>To the specialist information<\/strong><\/a><\/p>\n<p><strong>You can find expertise on other topics in our portfolio here. <a title=\"Technical information\" href=\"https:\/\/www.microconsult.de\/en\/specialist-knowledge\/\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/strong><\/p>","protected":false},"excerpt":{"rendered":"<p>Scherz beiseite &#8211; wie kann man IoT-Methoden im Maschinenbau sinnvoll nutzen? Autor: Robert Schachner, RST Industrie Automation GmbH bzw. Embedded4You e.V. Beitrag &#8211; Embedded Software Engineering Kongress 2016 IoT &#8211; das &#8222;Internet of Things&#8220; und &#8222;Industrie 4.0&#8220;: Diese zwei Gespenster geistern derzeit \u00fcberall durch Veranstaltungen und Messen. Das Gesagte klingt dann oft verhei\u00dfungsvoll; das Ziel [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-7993","post","type-post","status-publish","format-standard","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Wir bauen eine Maschine - und bauen das IoT gleich mit ein! - MicroConsult Academy GmbH<\/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:\/\/www.microconsult.de\/en\/were-building-a-machine-and-integrating-the-iot-right-from-the-start\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wir bauen eine Maschine - und bauen das IoT gleich mit ein! - MicroConsult Academy GmbH\" \/>\n<meta property=\"og:description\" content=\"Scherz beiseite &#8211; wie kann man IoT-Methoden im Maschinenbau sinnvoll nutzen? Autor: Robert Schachner, RST Industrie Automation GmbH bzw. Embedded4You e.V. Beitrag &#8211; Embedded Software Engineering Kongress 2016 IoT &#8211; das &#8222;Internet of Things&#8220; und &#8222;Industrie 4.0&#8220;: Diese zwei Gespenster geistern derzeit \u00fcberall durch Veranstaltungen und Messen. Das Gesagte klingt dann oft verhei\u00dfungsvoll; das Ziel [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microconsult.de\/en\/were-building-a-machine-and-integrating-the-iot-right-from-the-start\/\" \/>\n<meta property=\"og:site_name\" content=\"MicroConsult Academy GmbH\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-29T07:39:38+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-13T04:18:49+00:00\" \/>\n<meta name=\"author\" content=\"weissblau media\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"weissblau media\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/\"},\"author\":{\"name\":\"weissblau media\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\"},\"headline\":\"Wir bauen eine Maschine &#8211; und bauen das IoT gleich mit ein!\",\"datePublished\":\"2025-11-29T07:39:38+00:00\",\"dateModified\":\"2026-02-13T04:18:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/\"},\"wordCount\":1401,\"commentCount\":0,\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/\",\"url\":\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/\",\"name\":\"Wir bauen eine Maschine - und bauen das IoT gleich mit ein! - MicroConsult Academy GmbH\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#website\"},\"datePublished\":\"2025-11-29T07:39:38+00:00\",\"dateModified\":\"2026-02-13T04:18:49+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.microconsult.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Wir bauen eine Maschine &#8211; und bauen das IoT gleich mit ein!\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#website\",\"url\":\"https:\\\/\\\/www.microconsult.de\\\/\",\"name\":\"MicroConsult Academy GmbH\",\"description\":\"Professionelle Schulungen, Beratung und Projektunterst\u00fctzung\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.microconsult.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\",\"name\":\"weissblau media\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"caption\":\"weissblau media\"},\"sameAs\":[\"https:\\\/\\\/www.microconsult.de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"We&#039;re building a machine \u2013 and integrating the IoT right into it! \u2013 MicroConsult Academy GmbH","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:\/\/www.microconsult.de\/en\/were-building-a-machine-and-integrating-the-iot-right-from-the-start\/","og_locale":"en_GB","og_type":"article","og_title":"Wir bauen eine Maschine - und bauen das IoT gleich mit ein! - MicroConsult Academy GmbH","og_description":"Scherz beiseite &#8211; wie kann man IoT-Methoden im Maschinenbau sinnvoll nutzen? Autor: Robert Schachner, RST Industrie Automation GmbH bzw. Embedded4You e.V. Beitrag &#8211; Embedded Software Engineering Kongress 2016 IoT &#8211; das &#8222;Internet of Things&#8220; und &#8222;Industrie 4.0&#8220;: Diese zwei Gespenster geistern derzeit \u00fcberall durch Veranstaltungen und Messen. Das Gesagte klingt dann oft verhei\u00dfungsvoll; das Ziel [&hellip;]","og_url":"https:\/\/www.microconsult.de\/en\/were-building-a-machine-and-integrating-the-iot-right-from-the-start\/","og_site_name":"MicroConsult Academy GmbH","article_published_time":"2025-11-29T07:39:38+00:00","article_modified_time":"2026-02-13T04:18:49+00:00","author":"weissblau media","twitter_card":"summary_large_image","twitter_misc":{"Written by":"weissblau media","Estimated reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/#article","isPartOf":{"@id":"https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/"},"author":{"name":"weissblau media","@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a"},"headline":"Wir bauen eine Maschine &#8211; und bauen das IoT gleich mit ein!","datePublished":"2025-11-29T07:39:38+00:00","dateModified":"2026-02-13T04:18:49+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/"},"wordCount":1401,"commentCount":0,"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/","url":"https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/","name":"We&#039;re building a machine \u2013 and integrating the IoT right into it! \u2013 MicroConsult Academy GmbH","isPartOf":{"@id":"https:\/\/www.microconsult.de\/#website"},"datePublished":"2025-11-29T07:39:38+00:00","dateModified":"2026-02-13T04:18:49+00:00","author":{"@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a"},"breadcrumb":{"@id":"https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.microconsult.de\/wir-bauen-eine-maschine-und-bauen-das-iot-gleich-mit-ein\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microconsult.de\/"},{"@type":"ListItem","position":2,"name":"Wir bauen eine Maschine &#8211; und bauen das IoT gleich mit ein!"}]},{"@type":"WebSite","@id":"https:\/\/www.microconsult.de\/#website","url":"https:\/\/www.microconsult.de\/","name":"MicroConsult Academy GmbH","description":"Professional training, consulting and project support","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microconsult.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a","name":"weissblau media","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","caption":"weissblau media"},"sameAs":["https:\/\/www.microconsult.de"]}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7993","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/comments?post=7993"}],"version-history":[{"count":7,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7993\/revisions"}],"predecessor-version":[{"id":11661,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7993\/revisions\/11661"}],"wp:attachment":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/media?parent=7993"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/categories?post=7993"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/tags?post=7993"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}