{"id":633,"date":"2026-02-25T10:21:32","date_gmt":"2026-02-25T10:21:32","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/"},"modified":"2026-02-25T10:21:32","modified_gmt":"2026-02-25T10:21:32","slug":"dfd-decomposition-depth-inconsistent-detail","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/","title":{"rendered":"Inconsistent Decomposition Depth Across the Model"},"content":{"rendered":"<p>About 6 out of 10 DFDs I\u2019ve reviewed in real-world systems show inconsistent DFD detail levels. One branch may be decomposed to Level 3 with fine-grained steps, while its neighbor remains a single process at Level 1. This imbalance doesn\u2019t just break visual harmony\u2014it creates blind spots.<\/p>\n<p>The core issue is <strong>DFD decomposition depth<\/strong> misalignment. When decomposition depth varies across the model, the system\u2019s logical structure becomes obscured. Stakeholders see different levels of granularity, leading to divergent interpretations.<\/p>\n<p>As a mentor, I\u2019ve seen developers assume a process is \u201ccomplete\u201d simply because it\u2019s not decomposed, only to discover major data flows were omitted in the higher-level view. This isn&#8217;t a notation error. It&#8217;s a modeling philosophy gap.<\/p>\n<p>You gain clarity by learning to choose consistent depth\u2014not rigidly uniform, but deliberately balanced\u2014based on risk, complexity, and audience. This chapter gives you the tools to do just that.<\/p>\n<h2>The Hidden Cost of Uneven DFD Decomposition<\/h2>\n<p>When some processes are decomposed five levels deep and others stay at Level 1, you\u2019re not modeling a system\u2014you\u2019re modeling confusion.<\/p>\n<p>Imagine a hospital system where patient intake is broken into 15 subprocesses, but billing is just one box. That\u2019s a red flag. The risk of missing a critical flow\u2014like lab results triggering a follow-up\u2014is much higher when the path isn\u2019t fully explored.<\/p>\n<p>Evenness of DFD decomposition isn\u2019t about uniformity. It\u2019s about intentional balance. A high-risk process like fraud detection needs deeper exploration than a routine login sequence.<\/p>\n<p>Here\u2019s what happens when you ignore this: someone assumes a process is stable because it\u2019s not broken down. In reality, it may be hiding a data flow gap or a security blind spot.<\/p>\n<h3>Why Inconsistent Detail Creates Blind Spots<\/h3>\n<p>Let\u2019s say you decompose \u201cProcess Order\u201d into 8 steps but leave \u201cGenerate Invoice\u201d untouched. That means you\u2019re implicitly assuming no data movement occurs during invoicing. That\u2019s rarely true.<\/p>\n<p>Stakeholders relying on the high-level view miss critical dependencies. Developers may implement the invoice logic incorrectly. Auditors can\u2019t trace the flow from order to payment.<\/p>\n<p>Evenness of DFD decomposition isn\u2019t about symmetry. It\u2019s about integrity. Every process deserves a level of scrutiny proportional to its impact.<\/p>\n<h2>How to Choose Consistent Decomposition Depth<\/h2>\n<p>Deciding how deep to go is less about rules and more about context. Not every process needs the same depth.<\/p>\n<p>I use a three-part filter: risk, complexity, and stakeholder need. Ask:<\/p>\n<ul>\n<li>Does this process handle sensitive data, financials, or compliance requirements?<\/li>\n<li>Are there multiple inputs, transformations, or decision points?<\/li>\n<li>Will the audience (developers, auditors, executives) need to understand this step?<\/li>\n<\/ul>\n<p>If the answer is yes to any, decompose further.<\/p>\n<h3>Practical Framework: The 3C Rule<\/h3>\n<p>Apply the 3C Rule to every process: <strong>Context, Complexity, and Communication<\/strong>.<\/p>\n<ol>\n<li><strong>Context<\/strong>: Where does this process fit in the bigger picture? High-level functions often need less depth.<\/li>\n<li><strong>Complexity<\/strong>: More steps, decisions, or data sources? Deeper decomposition is warranted.<\/li>\n<li><strong>Communication<\/strong>: Who sees this diagram? Executives need high-level flow; developers need detail.<\/li>\n<\/ol>\n<p>Use this to guide your decisions. A process that\u2019s critical for a regulatory audit should never be a black box.<\/p>\n<h2>When Coarse Modeling is Acceptable<\/h2>\n<p>Not all processes need to be exploded. Sometimes, intentionally keeping a process at a higher level is the right move.<\/p>\n<p>For example, a \u201cSend Notification\u201d process might be left at Level 1 if the mechanism (email, SMS, push) is not relevant to the business logic. The flow is predictable, and the implementation is standardized.<\/p>\n<p>I once worked on a supply chain system where the \u201cNotify Vendor of Delay\u201d process was kept at Level 1. The content of the message was handled by a template engine. The DFD was clearer when we focused on *when* the notification was sent, not *how*.<\/p>\n<p>Acceptable coarseness happens when:<\/p>\n<ul>\n<li>The process is a known, repeatable pattern.<\/li>\n<li>The data transformation is straightforward or standardized.<\/li>\n<li>The process is not a source of risk or failure.<\/li>\n<\/ul>\n<p>When in doubt, err on the side of deeper decomposition. It\u2019s easier to simplify later than to rework a missing flow.<\/p>\n<h2>Strategies for Balancing DFD Depth<\/h2>\n<p>Here are four proven strategies I\u2019ve used in real projects to achieve balancing DFD depth:<\/p>\n<ol>\n<li><strong>Set a maximum depth for high-level diagrams<\/strong>. Limit Level 1 to no more than 6 processes. If there are more, split into logical groups (e.g., \u201cOrder Management\u201d, \u201cPayment Processing\u201d).<\/li>\n<li><strong>Use a depth matrix<\/strong>. Plot each process on a grid of risk vs. complexity. Processes in the high-high quadrant (high risk, high complexity) should be decomposed to Level 3 or deeper.<\/li>\n<li><strong>Apply consistent notation<\/strong>. Use the same numbering convention (e.g., 2.1, 2.1.1) across all branches to reinforce hierarchy and make depth visible.<\/li>\n<li><strong>Document your depth decision logic<\/strong>. Add a short note next to the diagram: \u201cDecomposition depth based on risk and system impact.\u201d This builds trust with reviewers.<\/li>\n<\/ol>\n<p>These strategies aren\u2019t about enforcing uniformity. They\u2019re about creating consistency in intent.<\/p>\n<h3>Example: Balancing Depth in a Customer Onboarding System<\/h3>\n<p>Consider a customer onboarding process with these components:<\/p>\n<table>\n<tbody>\n<tr>\n<th>Process<\/th>\n<th>Decomposition Depth<\/th>\n<th>Reason<\/th>\n<\/tr>\n<tr>\n<td>Verify Identity<\/td>\n<td>Level 2<\/td>\n<td>High risk: fraud detection, regulatory compliance<\/td>\n<\/tr>\n<tr>\n<td>Collect Address<\/td>\n<td>Level 1<\/td>\n<td>Standardized, low risk, no decision logic<\/td>\n<\/tr>\n<tr>\n<td>Validate Credit<\/td>\n<td>Level 3<\/td>\n<td>High impact: affects credit limit, loan approval<\/td>\n<\/tr>\n<tr>\n<td>Send Welcome Email<\/td>\n<td>Level 1<\/td>\n<td>Template-driven, no risk, not decision-critical<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Notice: depth varies\u2014but purposefully. This is evenness of DFD decomposition in action.<\/p>\n<h2>Checklist: Achieving Balanced DFD Depth<\/h2>\n<p>Before finalizing your DFD, run this checklist:<\/p>\n<ul>\n<li>Are all high-risk processes decomposed to at least Level 2?<\/li>\n<li>Are low-complexity processes kept at higher levels unless needed for clarity?<\/li>\n<li>Does the depth align with stakeholder needs? (e.g., auditors need more detail than executives)<\/li>\n<li>Is there a clear rationale for depth differences? (Document it in a note.)<\/li>\n<li>Do all child diagrams trace back to a valid parent process with matching inputs and outputs?<\/li>\n<\/ul>\n<p>If you can\u2019t answer \u201cyes\u201d to all, revisit your decomposition.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Is it acceptable to have different decomposition depths in the same model?<\/h3>\n<p>Yes\u2014provided it\u2019s intentional and justified. Inconsistent DFD detail levels are only a problem when they\u2019re accidental or based on personal preference. When depth reflects risk, complexity, or audience, it\u2019s a strength, not a flaw.<\/p>\n<h3>How deep should a DFD process be decomposed?<\/h3>\n<p>Typically, 2\u20133 levels deep is sufficient. Level 1: major functions. Level 2: core transformations. Level 3: decisions, conditional flows, or complex data operations. Deeper than that usually indicates over-decomposition.<\/p>\n<h3>What if a process is too complex to handle at one level?<\/h3>\n<p>Break it into sub-processes. Use a sub-diagram if the process has internal logic. The goal is to keep each piece understandable, not to force a single path.<\/p>\n<h3>How do I decide whether to decompose a process or not?<\/h3>\n<p>Ask: \u201cIs the logic unclear?\u201d If yes, decompose. \u201cIs this a decision point?\u201d If yes, break it down. \u201cIs it a known pattern?\u201d If yes, keep it high-level.<\/p>\n<h3>Can I decompose some processes to Level 3 and others only to Level 1?<\/h3>\n<p>Absolutely. This is what balanced DFD depth looks like. The key is consistency in intent, not in depth. A high-risk finance process deserves more scrutiny than a standard login flow.<\/p>\n<h3>What happens if I skip decomposition in a high-risk area?<\/h3>\n<p>You risk missing data flows, boundary errors, or untracked transformations. This is a major source of rework, audit failures, and system bugs. Treat it like a black box you can\u2019t verify.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>About 6 out of 10 DFDs I\u2019ve reviewed in real-world systems show inconsistent DFD detail levels. One branch may be decomposed to Level 3 with fine-grained steps, while its neighbor remains a single process at Level 1. This imbalance doesn\u2019t just break visual harmony\u2014it creates blind spots. The core issue is DFD decomposition depth misalignment. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":627,"menu_order":5,"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-633","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>DFD Decomposition Depth: Avoiding Inconsistent Detail<\/title>\n<meta name=\"description\" content=\"Learn how inconsistent DFD decomposition depth creates blind spots and confusion. Master strategies to balance DFD depth by risk, complexity, and stakeholder needs.\" \/>\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\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/\" \/>\n<meta property=\"og:locale\" content=\"vi_VN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DFD Decomposition Depth: Avoiding Inconsistent Detail\" \/>\n<meta property=\"og:description\" content=\"Learn how inconsistent DFD decomposition depth creates blind spots and confusion. Master strategies to balance DFD depth by risk, complexity, and stakeholder needs.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Ti\u1ebfng Vi\u1ec7t\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u01af\u1edbc t\u00ednh th\u1eddi gian \u0111\u1ecdc\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 ph\u00fat\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/\",\"name\":\"DFD Decomposition Depth: Avoiding Inconsistent Detail\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/#website\"},\"datePublished\":\"2026-02-25T10:21:32+00:00\",\"description\":\"Learn how inconsistent DFD decomposition depth creates blind spots and confusion. Master strategies to balance DFD depth by risk, complexity, and stakeholder needs.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/#breadcrumb\"},\"inLanguage\":\"vi\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/vn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Common DFD Mistakes and How to Avoid Them\",\"item\":\"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Leveling and Decomposition Errors\",\"item\":\"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Inconsistent Decomposition Depth Across the Model\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/vn\/\",\"name\":\"Visual Paradigm Skills Ti\u1ebfng Vi\u1ec7t\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/vn\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"vi\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/#organization\",\"name\":\"Visual Paradigm Skills Ti\u1ebfng Vi\u1ec7t\",\"url\":\"https:\/\/skills.visual-paradigm.com\/vn\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"vi\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/vn\/wp-content\/uploads\/sites\/11\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/vn\/wp-content\/uploads\/sites\/11\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Ti\u1ebfng Vi\u1ec7t\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/vn\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"DFD Decomposition Depth: Avoiding Inconsistent Detail","description":"Learn how inconsistent DFD decomposition depth creates blind spots and confusion. Master strategies to balance DFD depth by risk, complexity, and stakeholder needs.","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\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/","og_locale":"vi_VN","og_type":"article","og_title":"DFD Decomposition Depth: Avoiding Inconsistent Detail","og_description":"Learn how inconsistent DFD decomposition depth creates blind spots and confusion. Master strategies to balance DFD depth by risk, complexity, and stakeholder needs.","og_url":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/","og_site_name":"Visual Paradigm Skills Ti\u1ebfng Vi\u1ec7t","twitter_card":"summary_large_image","twitter_misc":{"\u01af\u1edbc t\u00ednh th\u1eddi gian \u0111\u1ecdc":"6 ph\u00fat"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/","url":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/","name":"DFD Decomposition Depth: Avoiding Inconsistent Detail","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/vn\/#website"},"datePublished":"2026-02-25T10:21:32+00:00","description":"Learn how inconsistent DFD decomposition depth creates blind spots and confusion. Master strategies to balance DFD depth by risk, complexity, and stakeholder needs.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/#breadcrumb"},"inLanguage":"vi","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/dfd-decomposition-depth-inconsistent-detail\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/vn\/"},{"@type":"ListItem","position":2,"name":"Common DFD Mistakes and How to Avoid Them","item":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/"},{"@type":"ListItem","position":3,"name":"Leveling and Decomposition Errors","item":"https:\/\/skills.visual-paradigm.com\/vn\/docs\/common-dfd-mistakes-and-how-to-avoid-them\/dfd-decomposition-mistakes\/"},{"@type":"ListItem","position":4,"name":"Inconsistent Decomposition Depth Across the Model"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/vn\/#website","url":"https:\/\/skills.visual-paradigm.com\/vn\/","name":"Visual Paradigm Skills Ti\u1ebfng Vi\u1ec7t","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/vn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/vn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"vi"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/vn\/#organization","name":"Visual Paradigm Skills Ti\u1ebfng Vi\u1ec7t","url":"https:\/\/skills.visual-paradigm.com\/vn\/","logo":{"@type":"ImageObject","inLanguage":"vi","@id":"https:\/\/skills.visual-paradigm.com\/vn\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/vn\/wp-content\/uploads\/sites\/11\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/vn\/wp-content\/uploads\/sites\/11\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Ti\u1ebfng Vi\u1ec7t"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/vn\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/vn\/wp-json\/wp\/v2\/docs\/633","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/vn\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/vn\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/vn\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/vn\/wp-json\/wp\/v2\/docs\/633\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/vn\/wp-json\/wp\/v2\/docs\/627"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/vn\/wp-json\/wp\/v2\/media?parent=633"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/vn\/wp-json\/wp\/v2\/doc_tag?post=633"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}