{"id":643,"date":"2026-02-25T10:21:36","date_gmt":"2026-02-25T10:21:36","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/"},"modified":"2026-02-25T10:21:36","modified_gmt":"2026-02-25T10:21:36","slug":"illegal-dfd-connections","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/","title":{"rendered":"Illegal or Misleading Connections Between Elements"},"content":{"rendered":"<p>When I first started mentoring junior analysts, one of the most frequent red flags I\u2019d see wasn\u2019t in the logic of the process, but in the connections themselves. A data store linked directly to another data store? An external entity sending data to another external entity? These aren\u2019t just visual glitches\u2014they\u2019re violations of core DFD principles that break the model\u2019s integrity.<\/p>\n<p>These illegal DFD connections aren\u2019t random mistakes. They stem from misunderstanding the fundamental role of processes as transformers of data. Every data flow must begin and end at a process, or at a boundary point\u2014external entity or data store. A flow that skips the process is invisible to the system\u2019s logic. It\u2019s like a river flowing without a source, or a pipe with no pump.<\/p>\n<p>Understanding why these connections are invalid isn\u2019t about memorizing rules\u2014it\u2019s about grasping the purpose of DFDs: to model *what changes*, not just where data lives. You need to see data flow as a story of transformation, not mere movement. When you think this way, the logic becomes intuitive.<\/p>\n<p>Here, you\u2019ll learn not just what to avoid, but why. We\u2019ll walk through three common illegal DFD connections with real-world examples, corrected versions, and the reasoning behind each fix. By the end, you\u2019ll have the confidence to audit your own models with precision.<\/p>\n<h2>Why Certain Data Flows Break the Rules<\/h2>\n<p>Classic DFD theory is clear: data flows must originate from or terminate at a process. Data stores and external entities are passive containers. They don\u2019t generate or consume data\u2014they hold it.<\/p>\n<p>Any flow that goes directly from one data store to another, or from one external entity to another, bypasses this rule. These flows are not just incorrect\u2014they create ambiguity. Who decides when to move data? What triggers the transfer? The model loses its causal logic.<\/p>\n<p>Even more troubling: such flows often hide assumptions. A data store to data store error might imply a behind-the-scenes job, but that job isn\u2019t modeled. This leads to untraceable data movement, which becomes a major source of bugs and audit failures.<\/p>\n<h3>Rule of Thumb: Every Flow Must Touch a Process<\/h3>\n<p>Ask yourself: does this flow begin or end at a process? If not, it\u2019s an invalid DFD data flow.<\/p>\n<p>Even if the flow appears to \u201cmake sense\u201d at first glance\u2014like customer data moving from one database to another\u2014it still violates the principle. The transfer must be triggered by a process. That process could be a batch job, a synchronization routine, or a business rule. But it must exist.<\/p>\n<h2>Common Anti-Patterns and How to Fix Them<\/h2>\n<h3>1. Data Store to Data Store Error<\/h3>\n<p>Imagine a system where customer data is stored in a &#8222;Customer DB&#8221; data store, and a backup is kept in a &#8222;Legacy Archive&#8221; data store. A line connects these two directly. This is a data store to data store error.<\/p>\n<p>Why it fails: Data stores are not active agents. They don\u2019t initiate transfers. Moving data between them requires a process\u2014like &#8222;Sync Customer Data Nightly.&#8221;<\/p>\n<p><strong>Corrected Version:<\/strong><\/p>\n<ul>\n<li>Insert a process: &#8222;<strong>Sync Customer Data Nightly<\/strong>&#8222;<\/li>\n<li>Draw input flow from &#8222;Customer DB&#8221; to the process<\/li>\n<li>Draw output flow from the process to &#8222;Legacy Archive&#8221;<\/li>\n<\/ul>\n<p>Now the flow is traceable. The process defines *when* and *why* the data moves. It can be tested, monitored, and audited.<\/p>\n<h3>2. External to External Flow DFD<\/h3>\n<p>Consider a DFD where a &#8222;Vendor System&#8221; sends data directly to a &#8222;Customer Portal.&#8221; This is an external to external flow DFD\u2014a classic anti-pattern.<\/p>\n<p>Why it fails: External entities are endpoints. They represent sources or sinks of data. Data can&#8217;t move directly between them without a process to mediate the transfer.<\/p>\n<p><strong>Corrected Version:<\/strong><\/p>\n<ul>\n<li>Introduce a process: &#8222;<strong>Process Vendor Data for Customer Portal<\/strong>&#8222;<\/li>\n<li>Draw input flow from &#8222;Vendor System&#8221; to the process<\/li>\n<li>Draw output flow from the process to &#8222;Customer Portal&#8221;<\/li>\n<\/ul>\n<p>Now the data transformation\u2014formatting, validation, enrichment\u2014becomes explicit. This process can be reviewed, optimized, and versioned.<\/p>\n<h3>3. Flows with No Process (Black Box Data)<\/h3>\n<p>Some DFDs show a flow entering or leaving a data store with no process in sight. For example, a flow labeled &#8222;Send Invoice Data&#8221; appears from thin air, ending at a &#8222;Payment DB.&#8221;<\/p>\n<p>This is a classic invalid DFD data flow. The data appears to &#8222;magically&#8221; appear or disappear, which violates the principle of conservation of data. Every data element must be accounted for through a transformation.<\/p>\n<p><strong>Corrected Version:<\/strong><\/p>\n<ul>\n<li>Identify the missing process: &#8222;<strong>Generate and Send Invoice<\/strong>&#8222;<\/li>\n<li>Add it to the diagram<\/li>\n<li>Connect &#8222;Invoice Request&#8221; to the process as input<\/li>\n<li>Connect &#8222;Sent Invoice&#8221; from the process to &#8222;Payment DB&#8221;<\/li>\n<\/ul>\n<p>This ensures the flow is driven by a real business or technical action. It also makes testing and implementation possible.<\/p>\n<h2>Underlying Principles Behind the Rules<\/h2>\n<p>These rules aren\u2019t arbitrary. They stem from four core principles of DFD modeling:<\/p>\n<ol>\n<li><strong>Transformation &gt; Movement<\/strong>: DFDs model changes in data states, not just physical transfers.<\/li>\n<li><strong>Processes are Agents of Change<\/strong>: Only processes can create, modify, or destroy data.<\/li>\n<li><strong>Traceability Matters<\/strong>: Every flow must have a clear origin and purpose.<\/li>\n<li><strong>Separation of Concerns<\/strong>: External entities and data stores are passive; processes are active.<\/li>\n<\/ol>\n<p>When you break these, you lose control. A data store to data store error may seem harmless, but it erases the audit trail of who, when, and why data was moved. That\u2019s a compliance risk.<\/p>\n<h2>Practical Checklist: Spotting Illegal DFD Connections<\/h2>\n<p>Use this checklist when reviewing or creating DFDs:<\/p>\n<ul>\n<li>Does every data flow begin and end at a process, external entity, or data store?<\/li>\n<li>Are there any flows between two data stores? If yes, is there a process mediating the transfer?<\/li>\n<li>Are there any flows between two external entities? If yes, is there a process handling the exchange?<\/li>\n<li>Do all flows have clear input and output processes? Can you name the transformation?<\/li>\n<li>Is there a process that explains how data moves between systems or databases?<\/li>\n<\/ul>\n<p>Apply this checklist during peer reviews. It\u2019s a simple but powerful way to catch issues early.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Can a process have no input flows?<\/h3>\n<p>Yes, but only if it\u2019s generating data from scratch\u2014like a &#8222;Generate Daily Report&#8221; process. Input flows are not required, but output flows must exist. The process must still be clearly defined.<\/p>\n<h3>What if data moves between data stores automatically via a script?<\/h3>\n<p>Even if automatic, the script must be modeled as a process. Otherwise, it&#8217;s invisible to the DFD. Name it &#8222;Run Daily Sync Script&#8221; and connect it to both data stores.<\/p>\n<h3>Why can\u2019t I just draw a flow between data stores to save space?<\/h3>\n<p>Because it hides critical logic. A flow without a process is a black box. You can\u2019t test it, monitor it, or explain it. It defeats the entire purpose of modeling.<\/p>\n<h3>Are there exceptions to the rule?<\/h3>\n<p>Only in rare cases involving system-level integration where the transfer is fully automated and not under business control. Even then, the process should be modeled as a \u201csystem event\u201d to maintain traceability.<\/p>\n<h3>How do I explain this to stakeholders who prefer simple diagrams?<\/h3>\n<p>Frame it as risk reduction. A model with illegal DFD connections may look clean, but it hides where data can be lost, corrupted, or improperly transferred. Transparency builds trust and reduces rework.<\/p>\n<h3>Can a DFD have a loop from a data store back to itself?<\/h3>\n<p>Only if it\u2019s part of a process that retrieves and updates the same store. For example, &#8222;Update Customer Record&#8221; pulls data from the store, modifies it, and writes it back. The flow is not direct\u2014it goes through a process.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When I first started mentoring junior analysts, one of the most frequent red flags I\u2019d see wasn\u2019t in the logic of the process, but in the connections themselves. A data store linked directly to another data store? An external entity sending data to another external entity? These aren\u2019t just visual glitches\u2014they\u2019re violations of core DFD [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":640,"menu_order":2,"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-643","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>Illegal DFD Connections: Fixing Common Flow Errors<\/title>\n<meta name=\"description\" content=\"Learn how to identify and fix illegal DFD connections like data store to data store, external to external flow, and missing process flows. Master data flow integrity with real-world examples and best practices.\" \/>\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\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/\" \/>\n<meta property=\"og:locale\" content=\"pl_PL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Illegal DFD Connections: Fixing Common Flow Errors\" \/>\n<meta property=\"og:description\" content=\"Learn how to identify and fix illegal DFD connections like data store to data store, external to external flow, and missing process flows. Master data flow integrity with real-world examples and best practices.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Polski\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Szacowany czas czytania\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minut\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/\",\"name\":\"Illegal DFD Connections: Fixing Common Flow Errors\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#website\"},\"datePublished\":\"2026-02-25T10:21:36+00:00\",\"description\":\"Learn how to identify and fix illegal DFD connections like data store to data store, external to external flow, and missing process flows. Master data flow integrity with real-world examples and best practices.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/#breadcrumb\"},\"inLanguage\":\"pl-PL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Common DFD Mistakes and How to Avoid Them\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Notation and Diagramming Anti-Patterns\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Illegal or Misleading Connections Between Elements\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/\",\"name\":\"Visual Paradigm Skills Polski\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/pl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pl-PL\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#organization\",\"name\":\"Visual Paradigm Skills Polski\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pl-PL\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Polski\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Illegal DFD Connections: Fixing Common Flow Errors","description":"Learn how to identify and fix illegal DFD connections like data store to data store, external to external flow, and missing process flows. Master data flow integrity with real-world examples and best practices.","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\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/","og_locale":"pl_PL","og_type":"article","og_title":"Illegal DFD Connections: Fixing Common Flow Errors","og_description":"Learn how to identify and fix illegal DFD connections like data store to data store, external to external flow, and missing process flows. Master data flow integrity with real-world examples and best practices.","og_url":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/","og_site_name":"Visual Paradigm Skills Polski","twitter_card":"summary_large_image","twitter_misc":{"Szacowany czas czytania":"6 minut"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/","url":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/","name":"Illegal DFD Connections: Fixing Common Flow Errors","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#website"},"datePublished":"2026-02-25T10:21:36+00:00","description":"Learn how to identify and fix illegal DFD connections like data store to data store, external to external flow, and missing process flows. Master data flow integrity with real-world examples and best practices.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/#breadcrumb"},"inLanguage":"pl-PL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/illegal-dfd-connections\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/pl\/"},{"@type":"ListItem","position":2,"name":"Common DFD Mistakes and How to Avoid Them","item":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/"},{"@type":"ListItem","position":3,"name":"Notation and Diagramming Anti-Patterns","item":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-notation-mistakes\/"},{"@type":"ListItem","position":4,"name":"Illegal or Misleading Connections Between Elements"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#website","url":"https:\/\/skills.visual-paradigm.com\/pl\/","name":"Visual Paradigm Skills Polski","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/pl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pl-PL"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#organization","name":"Visual Paradigm Skills Polski","url":"https:\/\/skills.visual-paradigm.com\/pl\/","logo":{"@type":"ImageObject","inLanguage":"pl-PL","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Polski"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/643","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/643\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/640"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/media?parent=643"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/doc_tag?post=643"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}