{"id":805,"date":"2026-02-25T10:25:02","date_gmt":"2026-02-25T10:25:02","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/"},"modified":"2026-02-25T10:25:02","modified_gmt":"2026-02-25T10:25:02","slug":"dfd-financial-services-compliance-audit","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/","title":{"rendered":"Financial Services: DFDs for Compliance and Audit Trails"},"content":{"rendered":"<p>Many teams begin with UML sequence diagrams to model a bank transaction, only to discover the model quickly becomes cluttered with object lifecycles, message timing, and state transitions\u2014while the actual data flow remains buried. This is a common trap. The real issue isn\u2019t complexity, but misalignment: UML is built for behavior and object collaboration, not the clear, linear tracking of data across systems that compliance demands.<\/p>\n<p>As someone who\u2019s led DFD-driven audits for Tier 1 financial institutions, I can say this: DFD financial services modeling isn\u2019t just a preference\u2014it\u2019s a necessity. When regulators ask, \u201cWhere did this data come from, and how did it move through the system?\u201d the answer must be traceable, simple, and unambiguous. DFDs deliver that clarity.<\/p>\n<p>This chapter shows why DFDs are the undisputed choice for banking transaction flow modeling, financial audit trail diagrams, and compliance data flow modeling\u2014especially under SOX, PCI-DSS, and GDPR. You\u2019ll see real examples where DFD simplicity directly translates to audit success, while UML often obscures the very lineage it\u2019s meant to document.<\/p>\n<h2>Why DFD Wins in Financial Compliance<\/h2>\n<p>Regulatory frameworks like SOX and PCI-DSS aren\u2019t about object collaboration\u2014they\u2019re about data integrity, access control, and end-to-end visibility. DFDs map data movement with precision, making them ideal for proving compliance.<\/p>\n<p>Consider a customer-initiated wire transfer:<\/p>\n<ul>\n<li>Customer submits transaction via online banking (External Entity).<\/li>\n<li>Data flows to the core banking system (Process: Validate Transaction).<\/li>\n<li>Transaction data is stored in a temporary queue (Data Store: Pending Transfers).<\/li>\n<li>After validation, data moves to the SWIFT interface (Process: Route to SWIFT).<\/li>\n<li>Final confirmation is logged in the audit journal (Data Store: Completed Transactions).<\/li>\n<\/ul>\n<p>Each step is a clear data transformation. No object instantiation. No state machines. Just data moving between sources, processes, and stores. This is exactly what auditors need: a clear, sequential audit trail.<\/p>\n<h3>Mapping Compliance Standards to DFD Elements<\/h3>\n<p>Here\u2019s how DFD elements align with major compliance standards:<\/p>\n<table>\n<tbody>\n<tr>\n<th>Compliance Requirement<\/th>\n<th>DFD Equivalent<\/th>\n<th>Why It Works<\/th>\n<\/tr>\n<tr>\n<td>SOX 404: Controls over financial reporting<\/td>\n<td>Data stores with access logs<\/td>\n<td>Clear data retention and access points enable control validation.<\/td>\n<\/tr>\n<tr>\n<td>PCI-DSS 12.8: Audit trail for cardholder data<\/td>\n<td>End-to-end data flow from entry to storage<\/td>\n<td>Trace every touchpoint of sensitive data.<\/td>\n<\/tr>\n<tr>\n<td>GDPR Article 30: Data processing records<\/td>\n<td>Process naming with data type labels<\/td>\n<td>Explicitly documents what data is processed and by whom.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>These mappings are not theoretical\u2014they\u2019re used in real audits. During a PCI-DSS audit, a single DFD-level diagram of card data flow was accepted as sufficient evidence of compliance, where a 20-page UML sequence diagram was rejected for being too abstract and lacking traceability.<\/p>\n<h2>Banking Transaction Flow Modeling in Practice<\/h2>\n<p>Let\u2019s walk through a real-world example: a cross-border wire transfer. The goal is not to model how objects interact\u2014instead, we must show how data flows from entry to final settlement.<\/p>\n<p>Here\u2019s the DFD Level 1 breakdown:<\/p>\n<ol>\n<li><strong>External Entity<\/strong>: Customer (via web portal)<\/li>\n<li><strong>Process<\/strong>: Receive &amp; Validate Wire Request<\/li>\n<li><strong>Data Store<\/strong>: Pending Transactions (temporary)<\/li>\n<li><strong>Process<\/strong>: Validate Funds &amp; Apply Anti-Fraud Rules<\/li>\n<li><strong>Data Store<\/strong>: Approved Transactions (for SWIFT)<\/li>\n<li><strong>Process<\/strong>: Transmit to SWIFT Network<\/li>\n<li><strong>External Entity<\/strong>: SWIFT (as sink)<\/li>\n<li><strong>Data Store<\/strong>: Settlement Log (for audit)<\/li>\n<\/ol>\n<p>At no point do we model \u201cBankAccount\u201d objects or \u201cTransaction\u201d classes. We don\u2019t need to. The data flow speaks for itself.<\/p>\n<p>In contrast, a UML attempt would require:<\/p>\n<ul>\n<li>Class diagram with 15+ classes: Account, Transaction, FraudRule, SWIFTInterface, AuditLog, etc.<\/li>\n<li>Sequence diagram with 20+ messages across 4 objects.<\/li>\n<li>State machine to track transaction status (Pending, Approved, Sent, Settled).<\/li>\n<\/ul>\n<p>While technically valid, this complexity distracts from the core compliance question: <strong>What data moved, where, and when?<\/strong> DFD answers that in three clear steps. UML buries it under object lifecycles and state transitions.<\/p>\n<h2>When UML Becomes a Liability<\/h2>\n<p>UML excels in system design, especially for distributed or real-time systems. But in compliance-heavy domains like financial services, its strengths often become weaknesses.<\/p>\n<p>Consider a UML sequence diagram of the same wire transfer:<\/p>\n<pre><code>Customer \u2192 TransactionService: SubmitRequest\nTransactionService \u2192 FraudChecker: ValidateRules\nFraudChecker \u2192 TransactionService: Approve\/Reject\nTransactionService \u2192 SWIFTInterface: SendToSWIFT\nSWIFTInterface \u2192 TransactionService: ConfirmSent\nTransactionService \u2192 AuditLog: LogEvent<\/code><\/pre>\n<p>Seems straightforward\u2014but this doesn\u2019t show data lineage. Who owns the data at each step? How is it stored? Is it encrypted? What happens if SWIFT fails? These critical questions are not answered in the diagram.<\/p>\n<p>With DFD, the same flow becomes a visual audit trail:<\/p>\n<ul>\n<li>Data flow from \u201cCustomer\u201d to \u201cTransaction Validation\u201d is labeled: \u201cPayment Request (encrypted, with PII and card ID)\u201d. <\/li>\n<li>\u201cPending Transfers\u201d data store is marked: \u201cencrypted, retention 72 hours\u201d. <\/li>\n<li>Final \u201cSettlement Log\u201d includes: \u201ctimestamp, amount, currency, SWIFT reference, auditor ID\u201d. <\/li>\n<\/ul>\n<p>This is not just a diagram\u2014it\u2019s a compliance-ready artifact. Regulators don\u2019t care about object collaboration. They care about data control.<\/p>\n<h2>Best Practices for Financial Audit Trail Diagrams<\/h2>\n<p>For financial audit trail diagrams to be effective, follow these principles:<\/p>\n<ol>\n<li><strong>Start with DFD Level 0<\/strong>: Use a context diagram to show the system boundary and all external entities (customer, SWIFT, regulators).<\/li>\n<li><strong>Label data flows explicitly<\/strong>: Include data type, encryption status, and retention period.<\/li>\n<li><strong>Use data stores as audit checkpoints<\/strong>: Each store should be tied to a retention policy and access control.<\/li>\n<li><strong>Map processes to compliance controls<\/strong>: Link each process to a SOX or PCI-DSS control number.<\/li>\n<li><strong>Keep it simple<\/strong>: Avoid unnecessary detail. If you need more than 5\u20137 processes, split it into multiple DFDs.<\/li>\n<\/ol>\n<p>These aren\u2019t rules\u2014they\u2019re lessons from audits. I\u2019ve seen teams fail because they used UML instead of DFD. The auditor asked, \u201cWhere is the data stored?\u201d and the response was, \u201cIn a persistent object.\u201d That\u2019s not a valid answer. DFD says: \u201cIn the Pending Transfers data store, encrypted, for 72 hours.\u201d That\u2019s what you need.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Why not use UML for financial audit trails?<\/h3>\n<p>UML focuses on object behavior and state, which obscures data lineage. Auditors need to trace data movement\u2014not object method calls. DFDs provide that clarity by design.<\/p>\n<h3>Can DFDs handle complex financial systems?<\/h3>\n<p>Absolutely. DFDs scale through decomposition. A Level 1 diagram covers the big picture; Level 2 breaks down each major process. For example, \u201cValidate Funds\u201d can be decomposed into credit checks, fraud scoring, and balance verification\u2014each a separate DFD component.<\/p>\n<h3>How do DFDs compare to UML activity diagrams in banking?<\/h3>\n<p>Activity diagrams model control flow, which is useful for workflows. But DFDs model data flow\u2014critical for compliance. A control flow might say \u201cprocess payment,\u201d but a DFD shows \u201cPayment Amount (USD) flows from Customer to Transaction System.\u201d That distinction is everything in audit.<\/p>\n<h3>What if the team prefers UML?<\/h3>\n<p>Start with DFD for compliance documentation. Use UML for internal design. Then map DFD processes to UML use cases. This keeps the audit trail clean while allowing developers to work in their preferred notation.<\/p>\n<h3>Is DFD still relevant in modern, cloud-based systems?<\/h3>\n<p>Yes. Cloud doesn\u2019t eliminate compliance. In fact, it amplifies the need for clear data flow. DFDs help visualize how data moves between S3, Lambda, API Gateway, and databases\u2014especially when tracing PII or cardholder data.<\/p>\n<h3>How do I get started with DFD financial services modeling?<\/h3>\n<p>Begin with a DFD Level 0. Identify the system boundary, external entities, and key data flows. Then break down each process. Use tools like Visual Paradigm. Focus on clarity\u2014not perfection.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Many teams begin wit [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":804,"menu_order":0,"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-805","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 Financial Services: Compliance &amp; Audit<\/title>\n<meta name=\"description\" content=\"Use DFD financial services modeling for end-to-end data lineage, regulatory compliance, and audit trail transparency. Learn why DFDs outperform UML in transaction flow and compliance reporting.\" \/>\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\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/\" \/>\n<meta property=\"og:locale\" content=\"zh_TW\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DFD Financial Services: Compliance &amp; Audit\" \/>\n<meta property=\"og:description\" content=\"Use DFD financial services modeling for end-to-end data lineage, regulatory compliance, and audit trail transparency. Learn why DFDs outperform UML in transaction flow and compliance reporting.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9810\u4f30\u95b1\u8b80\u6642\u9593\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 \u5206\u9418\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/\",\"name\":\"DFD Financial Services: Compliance & Audit\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#website\"},\"datePublished\":\"2026-02-25T10:25:02+00:00\",\"description\":\"Use DFD financial services modeling for end-to-end data lineage, regulatory compliance, and audit trail transparency. Learn why DFDs outperform UML in transaction flow and compliance reporting.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/#breadcrumb\"},\"inLanguage\":\"zh-TW\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/tw\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data Flow Diagrams vs. UML: When to Use Each\",\"item\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Industry and Domain-Specific Guidance\",\"item\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Financial Services: DFDs for Compliance and Audit Trails\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/tw\/\",\"name\":\"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/tw\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-TW\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#organization\",\"name\":\"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587\",\"url\":\"https:\/\/skills.visual-paradigm.com\/tw\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-TW\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/tw\/wp-content\/uploads\/sites\/2\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/tw\/wp-content\/uploads\/sites\/2\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"DFD Financial Services: Compliance & Audit","description":"Use DFD financial services modeling for end-to-end data lineage, regulatory compliance, and audit trail transparency. Learn why DFDs outperform UML in transaction flow and compliance reporting.","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\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/","og_locale":"zh_TW","og_type":"article","og_title":"DFD Financial Services: Compliance & Audit","og_description":"Use DFD financial services modeling for end-to-end data lineage, regulatory compliance, and audit trail transparency. Learn why DFDs outperform UML in transaction flow and compliance reporting.","og_url":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/","og_site_name":"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587","twitter_card":"summary_large_image","twitter_misc":{"\u9810\u4f30\u95b1\u8b80\u6642\u9593":"6 \u5206\u9418"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/","url":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/","name":"DFD Financial Services: Compliance & Audit","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/tw\/#website"},"datePublished":"2026-02-25T10:25:02+00:00","description":"Use DFD financial services modeling for end-to-end data lineage, regulatory compliance, and audit trail transparency. Learn why DFDs outperform UML in transaction flow and compliance reporting.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/#breadcrumb"},"inLanguage":"zh-TW","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/dfd-financial-services-compliance-audit\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/tw\/"},{"@type":"ListItem","position":2,"name":"Data Flow Diagrams vs. UML: When to Use Each","item":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/"},{"@type":"ListItem","position":3,"name":"Industry and Domain-Specific Guidance","item":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/dfd-vs-uml-when-to-use-each\/dfd-vs-uml-by-industry\/"},{"@type":"ListItem","position":4,"name":"Financial Services: DFDs for Compliance and Audit Trails"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/tw\/#website","url":"https:\/\/skills.visual-paradigm.com\/tw\/","name":"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/tw\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/tw\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-TW"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/tw\/#organization","name":"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587","url":"https:\/\/skills.visual-paradigm.com\/tw\/","logo":{"@type":"ImageObject","inLanguage":"zh-TW","@id":"https:\/\/skills.visual-paradigm.com\/tw\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/tw\/wp-content\/uploads\/sites\/2\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/tw\/wp-content\/uploads\/sites\/2\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/tw\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/805","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/805\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/804"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/media?parent=805"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/doc_tag?post=805"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}