{"id":515010,"date":"2023-08-10T07:36:09","date_gmt":"2023-08-10T05:36:09","guid":{"rendered":"https:\/\/www.devoteam.com\/expert-view\/building-resilient-systems-with-event-driven-architecture\/"},"modified":"2023-08-10T07:36:09","modified_gmt":"2023-08-10T05:36:09","slug":"building-resilient-systems-with-event-driven-architecture","status":"publish","type":"expert-view","link":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/","title":{"rendered":"Building Resilient Systems with Event-Driven Architecture"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\" id=\"h-what-is-event-driven-architecture\"><strong>What is Event-Driven Architecture?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Event-Driven Architecture (<strong>EDA<\/strong>) is a design pattern for software systems that react to significant business activities or events, promoting loose coupling between components while allowing for greater flexibility and scalability. EDA empowers customers to build systems capable of handling a large number of events and messages, integrating various systems and services through a common event-driven interface.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-for-who-can-event-driven-architecture-be-interesting\"><strong>For who can Event-Driven Architecture be interesting?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">EDA is beneficial for customers with requirements to build systems that communicate asynchronously, are scalable, flexible, and loosely coupled. EDA is not limited to specific domains or providers; it can be utilized by any customer whose landscape comprises systems with the aforementioned characteristics that interact with each other.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Furthermore, this architectural pattern proves advantageous when dealing with:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Events triggered by data when there is a state change in the source system or provider.<\/li>\n\n\n\n<li>Immutable events (changed or deleted events).<\/li>\n\n\n\n<li>Events that need to be ordered in the sequence of their creation. In this context, creation refers to the creation\/update\/deletion of an object, representing a change in its state.<\/li>\n\n\n\n<li>Handling a large number of transactions and events.<\/li>\n\n\n\n<li>Sending events across multiple target applications, systems, or consumers.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-technical-deep-dive-of-eda\"><strong>Technical deep dive of EDA<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Below is a simple demonstration of EDA-design pattern:<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><em><img loading=\"lazy\" decoding=\"async\" width=\"587\" height=\"289\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/RBtopVHOx8aHVW4-V0nmx10dBcIVsmD-3SNAjRT8YSIiTNoPSCV0jydb8S6JcYQ8XBJ-h7qj8GA0cLStOcwA5UMkrNfA3HQAOZzIcC7DTDLkYrlER3hZuIQ6jvHdf2-ugaKHOIyz0oAkQe30-bNSbFM.png\"><\/em><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The event broker plays a crucial role as an intermediary between providers and consumers. Providers are unaware of the consumers that subscribe to the events they publish, and likewise, consumers do not need to know the identity of the publisher or provider. When a change occurs in the source&#8217;s state, an event is triggered and published to a topic. Individual queues, listening to the topic, then subscribe to these events.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Certain tools facilitate filtering functionality, allowing different queues to fetch data based on specific interests, such as customer data region-wise. Remarkably, the requirement for the source and target to be operational simultaneously is eliminated. Even if the target system is temporarily down, the events are persisted in the queue and can resume once the target is back online. This loose coupling between the source and target systems enhances flexibility.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The design pattern ensures that every target application interested in a particular event receives it in the order it was triggered. If a need arises for an application to fetch data from multiple queues (e.g., retrieving available materials and their prices from Queue2 and Queue3), there is no need for additional development; simply adding a new consumer to the landscape suffices. This simplicity contributes to a scalable and flexible architecture.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">EDA (Event-Driven Architecture) shares similarities with microservices, as it also offers agility. Within the EDA framework, microservices can act as either the source\/publisher or the target\/consumer, facilitating end-to-end delivery. The publisher can trigger an arbitrary number of events, or even publish entire event streams. Notably, each event is considered unique and sent only once by the broker to its respective consumers.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-user-cases-and-examples-of-eda\"><strong>User cases and examples of EDA&nbsp;<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Here are several use-cases where Event-Driven Architecture (EDA) would be a perfect fit:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>IoT Streaming<\/li>\n\n\n\n<li>Analyzing user visits to websites<\/li>\n\n\n\n<li>Financial trading systems (e.g., updating stock prices)<\/li>\n\n\n\n<li>Healthcare applications (e.g., triggering events when patient vital signs change)<\/li>\n\n\n\n<li>Anomaly detection using water sensors<\/li>\n\n\n\n<li>E-commerce scenarios (e.g., order status updates)<\/li>\n\n\n\n<li>Banking domain<\/li>\n\n\n\n<li>And more.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-conclusion\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Event-Driven Architecture is a design pattern that can be employed in conjunction with microservices or independently, based on specific business requirements. EDA offers numerous advantages, including handling large transaction volumes, promoting loose coupling, ensuring scalability, agility, and building resilient systems. If maintaining the sequence of events is a crucial consideration, then EDA becomes the ideal approach to pursue.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-want-to-know-more-about-eda\"><strong>Want to know more about EDA?<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/nl.devoteam.com\/expert-view\/event-driven-architectures-asyncapi-and-mulesoft\/\" target=\"_blank\" rel=\"noreferrer noopener\">Read more<\/a> about Event-Driven Architectures, AsyncAPI and MuleSoft.<\/li>\n\n\n\n<li><a href=\"https:\/\/nl.devoteam.com\/expert-view\/combining-event-driven-architecture-principles-with-mulesofts-api-led-connectivity-approach\/\" target=\"_blank\" rel=\"noreferrer noopener\">Combining event-driven architecture principles with MuleSoft\u2019s API-led connectivity approach<\/a>.<\/li>\n\n\n\n<li>During <a href=\"https:\/\/nl.devoteam.com\/people\/software-engineering-tech-friday-event-driven-architectures\/\" target=\"_blank\" rel=\"noreferrer noopener\">The Software Engineering Tech Friday<\/a>, we talked about the power of event-driven architectures and the Axon Framework.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">If you have any questions or just want to know more? Please get in touch with us! <\/p>\n\n\n","protected":false},"excerpt":{"rendered":"<p>What is Event-Driven Architecture? Event-Driven Architecture (EDA) is a design pattern for software systems that react to significant business activities or events, promoting loose coupling between components while allowing for greater flexibility and scalability. EDA empowers customers to build systems capable of handling a large number of events and messages, integrating various systems and services [&hellip;]<\/p>\n","protected":false},"featured_media":361444,"template":"","categories":[],"tags":[4317,2729],"industry":[],"class_list":["post-515010","expert-view","type-expert-view","status-publish","has-post-thumbnail","hentry","tag-event-driven-architecture-me","tag-netherlands-me"],"acf":[],"cards":"\n\t<div class=\"single-post-card\">\n\n\t\t<figure class=\"wp-block-post-featured-image\"><a href=\"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/\" target=\"_self\" ><img width=\"2560\" height=\"1760\" src=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg\" class=\"attachment-post-thumbnail size-post-thumbnail wp-post-image\" alt=\"Building Resilient Systems with Event-Driven Architecture\" style=\"aspect-ratio:4\/3;width:100%;object-fit:cover;\" decoding=\"async\" loading=\"lazy\" srcset=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg 2560w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-300x206.jpg 300w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-1024x704.jpg 1024w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-768x528.jpg 768w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-1536x1056.jpg 1536w, https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-2048x1408.jpg 2048w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/a><\/figure>\n\n\t\t\n\t\t<div class=\"wp-block-group is-vertical is-layout-flex wp-container-core-group-is-layout-43282307 wp-block-group-is-layout-flex\">\n\t<p style=\"font-style:normal;font-weight:700\" class=\"has-link-color wp-elements-1 wp-block-lp-post-type has-text-color has-primary-color has-small-font-size\">Expert View<\/p>\n\n\t\t\n\t\t<h3 style=\"font-style:normal;font-weight:400\" class=\"wp-block-post-title has-base-font-size\"><a href=\"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/\" target=\"_self\" >Building Resilient Systems with Event-Driven Architecture<\/a><\/h3><\/div>\n\t\t\n\t<\/div>\n\n","yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.4 (Yoast SEO v28.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Building Resilient Systems with Event-Driven Architecture | Devoteam<\/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:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Building Resilient Systems with Event-Driven Architecture\" \/>\n<meta property=\"og:description\" content=\"What is Event-Driven Architecture? Event-Driven Architecture (EDA) is a design pattern for software systems that react to significant business activities or events, promoting loose coupling between components while allowing for greater flexibility and scalability. EDA empowers customers to build systems capable of handling a large number of events and messages, integrating various systems and services [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/\" \/>\n<meta property=\"og:site_name\" content=\"Devoteam\" \/>\n<meta property=\"og:image\" content=\"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/RBtopVHOx8aHVW4-V0nmx10dBcIVsmD-3SNAjRT8YSIiTNoPSCV0jydb8S6JcYQ8XBJ-h7qj8GA0cLStOcwA5UMkrNfA3HQAOZzIcC7DTDLkYrlER3hZuIQ6jvHdf2-ugaKHOIyz0oAkQe30-bNSbFM.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/building-resilient-systems-with-event-driven-architecture\\\/\",\"url\":\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/building-resilient-systems-with-event-driven-architecture\\\/\",\"name\":\"Building Resilient Systems with Event-Driven Architecture | Devoteam\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/me\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/building-resilient-systems-with-event-driven-architecture\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/building-resilient-systems-with-event-driven-architecture\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg\",\"datePublished\":\"2023-08-10T05:36:09+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/building-resilient-systems-with-event-driven-architecture\\\/#breadcrumb\"},\"inLanguage\":\"en-SA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/building-resilient-systems-with-event-driven-architecture\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-SA\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/building-resilient-systems-with-event-driven-architecture\\\/#primaryimage\",\"url\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg\",\"contentUrl\":\"https:\\\/\\\/devoteam.info\\\/wp-content\\\/uploads\\\/2024\\\/12\\\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg\",\"width\":2560,\"height\":1760},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/building-resilient-systems-with-event-driven-architecture\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/devoteam.info\\\/me\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Expert View\",\"item\":\"https:\\\/\\\/devoteam.info\\\/me\\\/expert-view\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building Resilient Systems with Event-Driven Architecture\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/devoteam.info\\\/me\\\/#website\",\"url\":\"https:\\\/\\\/devoteam.info\\\/me\\\/\",\"name\":\"Devoteam\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/devoteam.info\\\/me\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-SA\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Building Resilient Systems with Event-Driven Architecture | Devoteam","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:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/","og_locale":"en_US","og_type":"article","og_title":"Building Resilient Systems with Event-Driven Architecture","og_description":"What is Event-Driven Architecture? Event-Driven Architecture (EDA) is a design pattern for software systems that react to significant business activities or events, promoting loose coupling between components while allowing for greater flexibility and scalability. EDA empowers customers to build systems capable of handling a large number of events and messages, integrating various systems and services [&hellip;]","og_url":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/","og_site_name":"Devoteam","og_image":[{"url":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/RBtopVHOx8aHVW4-V0nmx10dBcIVsmD-3SNAjRT8YSIiTNoPSCV0jydb8S6JcYQ8XBJ-h7qj8GA0cLStOcwA5UMkrNfA3HQAOZzIcC7DTDLkYrlER3hZuIQ6jvHdf2-ugaKHOIyz0oAkQe30-bNSbFM.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/","url":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/","name":"Building Resilient Systems with Event-Driven Architecture | Devoteam","isPartOf":{"@id":"https:\/\/devoteam.info\/me\/#website"},"primaryImageOfPage":{"@id":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/#primaryimage"},"image":{"@id":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/#primaryimage"},"thumbnailUrl":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg","datePublished":"2023-08-10T05:36:09+00:00","breadcrumb":{"@id":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/#breadcrumb"},"inLanguage":"en-SA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/"]}]},{"@type":"ImageObject","inLanguage":"en-SA","@id":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/#primaryimage","url":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg","contentUrl":"https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg","width":2560,"height":1760},{"@type":"BreadcrumbList","@id":"https:\/\/devoteam.info\/me\/expert-view\/building-resilient-systems-with-event-driven-architecture\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/devoteam.info\/me\/"},{"@type":"ListItem","position":2,"name":"Expert View","item":"https:\/\/devoteam.info\/me\/expert-view\/"},{"@type":"ListItem","position":3,"name":"Building Resilient Systems with Event-Driven Architecture"}]},{"@type":"WebSite","@id":"https:\/\/devoteam.info\/me\/#website","url":"https:\/\/devoteam.info\/me\/","name":"Devoteam","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/devoteam.info\/me\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-SA"}]}},"uagb_featured_image_src":{"full":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1.jpg",2560,1760,false],"thumbnail":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-150x150.jpg",150,150,true],"medium":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-300x206.jpg",300,206,true],"medium_large":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-768x528.jpg",768,528,true],"large":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-1024x704.jpg",1024,704,true],"1536x1536":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-1536x1056.jpg",1536,1056,true],"2048x2048":["https:\/\/devoteam.info\/wp-content\/uploads\/2024\/12\/aron-visuals-bZZp1PmHI0E-unsplash-scaled-1-2048x1408.jpg",2048,1408,true]},"uagb_author_info":{"display_name":"Julien Pawlowski","author_link":"https:\/\/devoteam.info\/me\/author\/"},"uagb_comment_info":0,"uagb_excerpt":"What is Event-Driven Architecture? Event-Driven Architecture (EDA) is a design pattern for software systems that react to significant business activities or events, promoting loose coupling between components while allowing for greater flexibility and scalability. EDA empowers customers to build systems capable of handling a large number of events and messages, integrating various systems and services&hellip;","_links":{"self":[{"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/expert-view\/515010","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/expert-view"}],"about":[{"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/types\/expert-view"}],"version-history":[{"count":0,"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/expert-view\/515010\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/media\/361444"}],"wp:attachment":[{"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/media?parent=515010"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/categories?post=515010"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/tags?post=515010"},{"taxonomy":"industry","embeddable":true,"href":"https:\/\/devoteam.info\/me\/wp-json\/wp\/v2\/industry?post=515010"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}