{"id":878,"date":"2026-02-25T10:26:06","date_gmt":"2026-02-25T10:26:06","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/"},"modified":"2026-02-25T10:26:06","modified_gmt":"2026-02-25T10:26:06","slug":"epc-modeling-loops-iterative-processes","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/","title":{"rendered":"Modeling Iterative Processes: Loops and Repetitive Tasks in EPC"},"content":{"rendered":"<p>Looping in EPC modeling isn\u2019t a deviation\u2014it\u2019s a necessity. Many new modelers assume that EPCs must be linear, but real-world processes often involve feedback, retries, or iterative validation steps. The key insight is that EPC modeling loops aren\u2019t about breaking the rules\u2014they\u2019re about applying them correctly.<\/p>\n<p>My experience has taught me that the most common modeling mistake isn\u2019t complexity\u2014it\u2019s misunderstanding how feedback works in event-driven logic. When a process requires repetition, treating it as a linear sequence leads to confusion, blind spots, and flawed automation. Instead, we use EPC\u2019s feedback mechanism to model iteration with precision.<\/p>\n<p>This chapter shows you how to represent recursive workflows, retry logic, and cyclic validation using the EPC notation. You\u2019ll learn to structure iterative EPC models so that feedback loops are explicit, traceable, and aligned with business events. By the end, you\u2019ll be able to model an EPC feedback process that\u2019s not just correct\u2014but maintainable and reusable.<\/p>\n<h2>Understanding EPC Feedback Loops<\/h2>\n<p>At its core, an EPC feedback loop is a process where the outcome of one step feeds back into a prior event, creating a cycle. This isn\u2019t a flaw\u2014it\u2019s how many business processes truly function.<\/p>\n<p>For example, a customer support ticket might require multiple rounds of clarification before resolution. Each failed attempt triggers a return to the \u201cRequest clarification\u201d event, not a new one. This is an EPC cycle example that mirrors reality.<\/p>\n<p>The loop is not a flaw in logic\u2014it\u2019s a feature of event-driven modeling. The return path must be anchored to a valid event. You cannot loop from a function back to another function. Only events can trigger new process chains.<\/p>\n<h3>How to Represent a Feedback Loop in EPC<\/h3>\n<p>Here\u2019s the correct way to draw an EPC feedback loop:<\/p>\n<ol>\n<li>Identify the event that triggers the loop (e.g., \u201cCustomer not satisfied\u201d)<\/li>\n<li>Link this event to the function that initiates feedback (e.g., \u201cRequest clarification\u201d)<\/li>\n<li>Draw the feedback path back to the original event that started the process<\/li>\n<li>Use a dashed connector (or a named feedback arrow) to indicate the loop<\/li>\n<\/ol>\n<p>Do not connect functions to events directly in a loop. The feedback must be event-triggered. This enforces event-state consistency\u2014the cornerstone of EPC logic.<\/p>\n<h2>Common Loop Patterns in EPC Modeling<\/h2>\n<p>There are three recurring feedback structures in EPC modeling. Recognizing them prevents over-engineering and ensures clarity.<\/p>\n<h3>1. Validation Loop (Retry Until Success)<\/h3>\n<p>Used when a task must be repeated until a condition is met.<\/p>\n<p><strong>Example:<\/strong> A bank verifies ID documents. If the image is blurry, the system returns to the \u201cSubmit ID\u201d event.<\/p>\n<p><strong>Structure:<\/strong><\/p>\n<ul>\n<li>\u201cSubmit ID\u201d \u2192 \u201cVerify document\u201d \u2192 \u201cIs ID valid?\u201d (XOR gate)<\/li>\n<li>\u201cNo\u201d \u2192 \u201cRequest new submission\u201d \u2192 \u201cSubmit ID\u201d (feedback loop)<\/li>\n<li>\u201cYes\u201d \u2192 \u201cProceed to verification\u201d<\/li>\n<\/ul>\n<p>This is a classic iterative EPC model. The loop ends only when the condition is satisfied.<\/p>\n<h3>2. Approval Loop (Escalation)<\/h3>\n<p>When a decision point requires escalation after a time or failure.<\/p>\n<p><strong>Example:<\/strong> A purchase order requires approval. If approval is not given within 48 hours, it escalates to a manager.<\/p>\n<p><strong>Structure:<\/strong><\/p>\n<ul>\n<li>\u201cSubmit request\u201d \u2192 \u201cAssign approver\u201d \u2192 \u201cWait for approval\u201d<\/li>\n<li>If timeout or \u201cNot approved\u201d \u2192 \u201cEscalate to manager\u201d \u2192 \u201cAssign manager\u201d<\/li>\n<li>\u201cManager approval\u201d \u2192 \u201cProcess request\u201d<\/li>\n<\/ul>\n<p>Here, the feedback loop is time-based and event-triggered by a timeout event.<\/p>\n<h3>3. Correction Loop (Error Recovery)<\/h3>\n<p>Used when an error is detected and must be corrected before continuing.<\/p>\n<p><strong>Example:<\/strong> A system detects incorrect data during transaction processing. The user must fix it before retrying.<\/p>\n<p><strong>Structure:<\/strong><\/p>\n<ul>\n<li>\u201cProcess transaction\u201d \u2192 \u201cIs data valid?\u201d<\/li>\n<li>\u201cNo\u201d \u2192 \u201cCorrect data\u201d \u2192 \u201cReprocess transaction\u201d<\/li>\n<li>\u201cYes\u201d \u2192 \u201cConfirm transaction\u201d<\/li>\n<\/ul>\n<p>This is a feedback process where the correction event becomes the new trigger.<\/p>\n<h2>Best Practices for EPC Modeling Loops<\/h2>\n<p>Modeling loops correctly isn\u2019t just about syntax\u2014it\u2019s about clarity and maintainability.<\/p>\n<ul>\n<li><strong>Anchor loops to events, not functions.<\/strong> Only events can trigger new process chains. Functions are actions, not triggers.<\/li>\n<li><strong>Use clear labels for feedback paths.<\/strong> Dashed lines with \u201cLoop\u201d or \u201cRetry\u201d annotations prevent confusion.<\/li>\n<li><strong>Limit loop depth.<\/strong> More than three loops in a single path increases cognitive load. Break complex workflows into sub-processes.<\/li>\n<li><strong>Validate loop termination.<\/strong> Every iterative EPC model must have a clear exit condition. Infinite loops are not business logic\u2014they\u2019re modeling errors.<\/li>\n<li><strong>Document loop purpose.<\/strong> Add a note explaining why the loop exists: e.g., \u201cRepeats until customer confirms.\u201d<\/li>\n<\/ul>\n<p>These rules aren\u2019t arbitrary. They stem from decades of EPC modeling in enterprise systems\u2014where ambiguity leads to failed integrations and process breakdowns.<\/p>\n<h2>Common Pitfalls and How to Avoid Them<\/h2>\n<p>Even experienced modelers fall into traps when designing loops. Here\u2019s what to watch for\u2014and how to fix it.<\/p>\n<table>\n<tbody>\n<tr>\n<th>Pitfall<\/th>\n<th>Why It\u2019s Wrong<\/th>\n<th>Fix<\/th>\n<\/tr>\n<tr>\n<td>Looping from function to function<\/td>\n<td>Breaks EPC logic\u2014functions aren\u2019t triggers<\/td>\n<td>Return to an event; ensure every loop starts with an event<\/td>\n<\/tr>\n<tr>\n<td>Unlabeled feedback paths<\/td>\n<td>Creates ambiguity in reviews and automation<\/td>\n<td>Label with \u201cRetry\u201d, \u201cEscalate\u201d, or \u201cCorrect data\u201d<\/td>\n<\/tr>\n<tr>\n<td>Missing loop exit condition<\/td>\n<td>Can imply infinite loops, violating business logic<\/td>\n<td>Add a \u201cMax attempts\u201d event or time-based trigger<\/td>\n<\/tr>\n<tr>\n<td>Overusing loops in one diagram<\/td>\n<td>Reduces readability and increases error risk<\/td>\n<td>Break into sub-processes or use reusable component diagrams<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>One client once modeled a loan approval process with five feedback loops. The diagram was unreadable. We broke it into a main process and a reusable \u201cValidate Credit\u201d sub-process with loop logic. The clarity improved instantly.<\/p>\n<h2>EPC Feedback Process: A Real-World Example<\/h2>\n<p>Consider a loan application workflow.<\/p>\n<p><strong>Events:<\/strong><\/p>\n<ul>\n<li>\u201cApplication submitted\u201d<\/li>\n<li>\u201cCredit check required\u201d<\/li>\n<li>\u201cApplicant not eligible\u201d<\/li>\n<li>\u201cApprove loan\u201d<\/li>\n<\/ul>\n<p><strong>Functions:<\/strong><\/p>\n<ul>\n<li>\u201cCollect documents\u201d<\/li>\n<li>\u201cVerify credit score\u201d<\/li>\n<li>\u201cRequest additional info\u201d<\/li>\n<li>\u201cSend approval notice\u201d<\/li>\n<\/ul>\n<p><strong>Feedback structure:<\/strong><\/p>\n<ol>\n<li>\u201cApplication submitted\u201d \u2192 \u201cCollect documents\u201d<\/li>\n<li>\u2192 \u201cVerify credit score\u201d<\/li>\n<li>\u2014 If score is low \u2192 \u201cApplicant not eligible\u201d \u2192 loop back to \u201cCollect documents\u201d<\/li>\n<li>\u2014 If score is acceptable \u2192 \u201cSend approval notice\u201d<\/li>\n<\/ol>\n<p>This is a clean EPC cycle example. The loop is only triggered by the \u201cApplicant not eligible\u201d event, which re-enters the process at \u201cCollect documents.\u201d<\/p>\n<p>Notice how this avoids duplicating events and keeps the logic traceable. This is how an iterative EPC model should look\u2014simple, consistent, and business-aligned.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Can I have multiple feedback loops in one EPC diagram?<\/h3>\n<p>Yes, but only if each loop is triggered by a distinct event and clearly separated. Overlapping loops increase complexity. Use sub-processes when more than two feedback paths exist.<\/p>\n<h3>How do I handle time-based loops in EPC?<\/h3>\n<p>Use a timeout event as the loop trigger. For example, \u201cWait 48 hours\u201d \u2192 \u201cNo approval\u201d \u2192 \u201cEscalate.\u201d This keeps the loop event-driven and traceable.<\/p>\n<h3>Is there a limit to how many times a loop can repeat in EPC?<\/h3>\n<p>There\u2019s no hard limit, but the process must have a termination condition. Add a \u201cMax retry count\u201d event (e.g., \u201c3 attempts\u201d) to prevent infinite looping.<\/p>\n<h3>Can I model a loop using a function instead of an event?<\/h3>\n<p>No. EPC modeling loops require an event as the trigger. Connecting a function directly to a prior event violates event-state consistency and breaks the logic. Always return to an event.<\/p>\n<h3>How do I make an iterative EPC model easier to read?<\/h3>\n<p>Use dashed arrows for feedback loops, label them clearly, and break complex loops into sub-processes. Avoid crossing lines. Visual clarity reduces errors during review and automation.<\/p>\n<h3>Should I use EPC feedback process for customer support workflows?<\/h3>\n<p>Absolutely. Support tickets often require multiple iterations of information gathering. An EPC feedback process models this exactly\u2014\u201cRequest clarification\u201d \u2192 \u201cRespond\u201d \u2192 \u201cIs issue resolved?\u201d \u2192 \u201cNo\u201d \u2192 loop back. This is a perfect EPC cycle example.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Looping in EPC modeling isn\u2019t a deviation\u2014it\u2019s a necessity. Many new modelers assume that EPCs must be linear, but real-world processes often involve feedback, retries, or iterative validation steps. The key insight is that EPC modeling loops aren\u2019t about breaking the rules\u2014they\u2019re about applying them correctly. My experience has taught me that the most common [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":874,"menu_order":3,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"doc_tag":[],"class_list":["post-878","docs","type-docs","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>EPC Modeling Loops: Mastering Iterative Process Design<\/title>\n<meta name=\"description\" content=\"Learn how to model EPC cycle example workflows using iterative EPC model patterns. Master EPC feedback process logic for accurate, scalable business process design.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"EPC Modeling Loops: Mastering Iterative Process Design\" \/>\n<meta property=\"og:description\" content=\"Learn how to model EPC cycle example workflows using iterative EPC model patterns. Master EPC feedback process logic for accurate, scalable business process design.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Deutsch\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"6\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/\",\"name\":\"EPC Modeling Loops: Mastering Iterative Process Design\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#website\"},\"datePublished\":\"2026-02-25T10:26:06+00:00\",\"description\":\"Learn how to model EPC cycle example workflows using iterative EPC model patterns. Master EPC feedback process logic for accurate, scalable business process design.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"EPC Diagram Fundamentals: A Beginner\u2019s Guide to Process Modeling\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building Your First EPC Models\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Modeling Iterative Processes: Loops and Repetitive Tasks in EPC\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/\",\"name\":\"Visual Paradigm Skills Deutsch\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#organization\",\"name\":\"Visual Paradigm Skills Deutsch\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/wp-content\/uploads\/sites\/4\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/de\/wp-content\/uploads\/sites\/4\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Deutsch\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"EPC Modeling Loops: Mastering Iterative Process Design","description":"Learn how to model EPC cycle example workflows using iterative EPC model patterns. Master EPC feedback process logic for accurate, scalable business process design.","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:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/","og_locale":"de_DE","og_type":"article","og_title":"EPC Modeling Loops: Mastering Iterative Process Design","og_description":"Learn how to model EPC cycle example workflows using iterative EPC model patterns. Master EPC feedback process logic for accurate, scalable business process design.","og_url":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/","og_site_name":"Visual Paradigm Skills Deutsch","twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"6\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/","url":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/","name":"EPC Modeling Loops: Mastering Iterative Process Design","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/#website"},"datePublished":"2026-02-25T10:26:06+00:00","description":"Learn how to model EPC cycle example workflows using iterative EPC model patterns. Master EPC feedback process logic for accurate, scalable business process design.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/epc-modeling-loops-iterative-processes\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/de\/"},{"@type":"ListItem","position":2,"name":"EPC Diagram Fundamentals: A Beginner\u2019s Guide to Process Modeling","item":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/"},{"@type":"ListItem","position":3,"name":"Building Your First EPC Models","item":"https:\/\/skills.visual-paradigm.com\/de\/docs\/epc-diagram-fundamentals\/epc-modeling-tutorial\/"},{"@type":"ListItem","position":4,"name":"Modeling Iterative Processes: Loops and Repetitive Tasks in EPC"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/de\/#website","url":"https:\/\/skills.visual-paradigm.com\/de\/","name":"Visual Paradigm Skills Deutsch","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/de\/#organization","name":"Visual Paradigm Skills Deutsch","url":"https:\/\/skills.visual-paradigm.com\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/skills.visual-paradigm.com\/de\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/de\/wp-content\/uploads\/sites\/4\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/de\/wp-content\/uploads\/sites\/4\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Deutsch"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs\/878","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs\/878\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs\/874"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/media?parent=878"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/doc_tag?post=878"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}