{"id":831,"date":"2026-02-25T10:25:15","date_gmt":"2026-02-25T10:25:15","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/"},"modified":"2026-02-25T10:25:15","modified_gmt":"2026-02-25T10:25:15","slug":"dfo-uml-glossary-cross-notation-reference","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/","title":{"rendered":"Cross-Notation Glossary and Mapping Reference"},"content":{"rendered":"<p>Most analysts struggle not with the diagrams themselves, but with the mental shift between two fundamentally different ways of seeing systems. One sees data in motion; the other sees objects in action. The real challenge isn\u2019t learning both notations\u2014it\u2019s understanding how to translate them. This page isn\u2019t a dictionary of symbols. It\u2019s a practical bridge between worlds. In my 20 years working with cross-functional teams, I\u2019ve found that the single biggest barrier to successful modeling isn&#8217;t complexity\u2014it\u2019s confusion over terminology. When a \u00abprocess\u00bb in DFD becomes a \u00abuse case\u00bb in UML, and a \u00abdata store\u00bb becomes a \u00abclass,\u00bb misalignment happens instantly. This glossary resolves that friction. You\u2019ll gain a shared vocabulary to align developers, business analysts, and architects. It\u2019s the essential reference for anyone building models across both DFD and UML.<\/p>\n<h2>Core Mapping: Translating DFD Elements to UML<\/h2>\n<p>Understanding how elements map across notations is the key to seamless collaboration. The same system can be viewed through different lenses. Here\u2019s the foundational mapping.<\/p>\n<h3>DFD Process \u2194 UML Use Case<\/h3>\n<p>A DFD process represents a transformation of data. It takes inputs, applies logic, and produces outputs. In UML, this maps directly to a use case\u2014a goal-driven interaction between a user (actor) and the system. The distinction lies in focus: DFD highlights *what* data changes, UML highlights *why* the interaction happens.<\/p>\n<p>Example: A DFD process labeled \u00abCalculate Customer Balance\u00bb corresponds to a UML use case named \u00abGenerate Account Statement.\u00bb The function is identical, but the stakeholder intent differs.<\/p>\n<h3>DFD Data Store \u2194 UML Class (with Persistence)<\/h3>\n<p>Data stores represent persistent data\u2014files, databases, or queues. In UML, this maps to a class with attributes and persistence. However, not all classes are data stores. Only those with a clear role as a data repository qualify.<\/p>\n<p>Key distinction: A class like \u00abCustomer\u00bb may not be a data store unless it\u2019s the primary repository. A \u00abTransaction Log\u00bb file is a data store. The class representing it in UML must include persistence semantics.<\/p>\n<h3>DFD External Entity \u2194 UML Actor<\/h3>\n<p>External entities are sources or sinks of data. UML\u2019s actors represent roles\u2014typically users or other systems\u2014that initiate interactions. The mapping is direct, but the intent differs.<\/p>\n<p>Example: A \u00abBank\u00bb as an external entity in DFD becomes the \u00abBank\u00bb actor in UML. But the UML actor may also carry responsibilities like \u00abvalidate transaction\u00bb or \u00abtrigger audit,\u00bb which aren\u2019t captured in DFD.<\/p>\n<h3>DFD Data Flow \u2194 UML Message \/ Association<\/h3>\n<p>Data flows are the lifeblood of DFDs. They represent data moving between processes, data stores, and external entities. In UML, this becomes a message in a sequence diagram or an association in a class diagram.<\/p>\n<p>When modeling interactions, a data flow like \u00abCustomer Order\u00bb becomes a message in a sequence diagram: \u00abCustomer sends Order to OrderProcessor.\u00bb In a class diagram, it appears as an association between \u00abCustomer\u00bb and \u00abOrder\u00bb with multiplicity.<\/p>\n<h3>DFD Data Flow (in Context Diagram) \u2194 UML Use Case (in Use Case Diagram)<\/h3>\n<p>At the system boundary, DFD context diagrams show external entities and data flows. UML use case diagrams show actors and use cases. The data flow between a system and an external entity maps to a relationship between actor and use case.<\/p>\n<p>For example, a \u00abSubmit Claim\u00bb data flow from a \u00abPatient\u00bb external entity becomes a \u00abPatient\u00bb actor invoking the \u00abFile Insurance Claim\u00bb use case. The flow direction is preserved.<\/p>\n<h2>Common Confusion Points: Terminology That Misleads<\/h2>\n<p>These terms appear similar but mean different things in context. Confusing them leads to model drift and communication breakdown.<\/p>\n<h3>\u201cProcess\u201d vs. \u201cUse Case\u201d<\/h3>\n<p>Both appear as a rounded rectangle. But a DFD process is *functionally defined*\u2014it transforms data. A UML use case is *goal-oriented*\u2014it describes a user\u2019s objective. A process may not involve a user at all. A use case always involves an actor.<\/p>\n<h3>\u201cData Store\u201d vs. \u201cClass\u201d<\/h3>\n<p>All data stores are classes in UML, but not all classes are data stores. A class like \u00abPayment\u00bb may be a data object, but unless it\u2019s persistent and stored, it doesn\u2019t map directly to a data store. The key is persistence, not just existence.<\/p>\n<h3>\u201cData Flow\u201d vs. \u201cMessage\u201d<\/h3>\n<p>Data flow is a *stateless transfer of data*. Message is a *synchronous or asynchronous request* between objects. A data flow can become a message, but only when the interaction is behaviorally significant. A read from a file is a data flow. Sending an email to trigger a process is a message.<\/p>\n<h2>Visual Paradigm Element Linking Guidance<\/h2>\n<p>When using Visual Paradigm, you can create live links between DFD and UML elements. This ensures consistency and enables traceability.<\/p>\n<ul>\n<li>Link a DFD process to a UML use case using the \u00abTraceability\u00bb feature. Right-click the DFD process \u2192 \u00abCreate Traceability\u00bb \u2192 select the corresponding use case.<\/li>\n<li>Link a DFD data store to a UML class with a \u00abPersistence\u00bb stereotype. In the class, add <code>\u00abpersistence\u00bb<\/code> and link the data store via the \u00abRelated to\u00bb property.<\/li>\n<li>Use cross-diagram navigation: Open a DFD, select a data flow \u2192 click \u00abNavigate to\u00bb \u2192 choose the corresponding UML message or association.<\/li>\n<\/ul>\n<h2>When Mapping Fails: What to Avoid<\/h2>\n<p>Mapping is a tool, not a rule. Misuse leads to oversimplification or over-engineering.<\/p>\n<ul>\n<li><strong>Don\u2019t map every process to a use case.<\/strong> Some processes are internal transformations (e.g., \u00abValidate Input\u00bb) that don\u2019t represent user goals. These belong in UML activity or sequence diagrams, not use case diagrams.<\/li>\n<li><strong>Don\u2019t treat every class as a data store.<\/strong> A class like \u00abOrderItem\u00bb may be part of an object model but not a persistent data store. Only map to data stores if the class represents a file or database table.<\/li>\n<li><strong>Don\u2019t assume one-to-one mapping.<\/strong> A single DFD process can break into multiple UML use cases. A single UML use case may involve multiple DFD processes.<\/li>\n<\/ul>\n<h2>Summary Table: DFD to UML Mapping Reference<\/h2>\n<p>This table is your quick-reference guide for translating between DFD and UML elements.<\/p>\n<table border=\"1\" cellpadding=\"5\" cellspacing=\"0\">\n<thead>\n<tr>\n<th>DFD Element<\/th>\n<th>UML Equivalent<\/th>\n<th>Key Considerations<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Process<\/td>\n<td>Use Case (goal-driven)<\/td>\n<td>Only if the process represents a user goal. Otherwise, use activity or sequence diagram.<\/td>\n<\/tr>\n<tr>\n<td>Data Store<\/td>\n<td>Class with \u00abpersistence\u00bb stereotype<\/td>\n<td>Only if the class is a data repository. Not all classes qualify.<\/td>\n<\/tr>\n<tr>\n<td>External Entity<\/td>\n<td>Actor<\/td>\n<td>Role of user or system. Must be assigned responsibilities.<\/td>\n<\/tr>\n<tr>\n<td>Data Flow<\/td>\n<td>Message (sequence), Association (class)<\/td>\n<td>Represents data transfer. Context determines which UML element.<\/td>\n<\/tr>\n<tr>\n<td>Process (in DFD Level 0)<\/td>\n<td>Use Case (in use case diagram)<\/td>\n<td>High-level interaction. Map to top-level use cases.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Can I use DFD and UML in the same project?<\/h3>\n<p>Yes. In fact, it\u2019s best practice for large systems. Use DFD for data flow analysis in early phases, then UML for detailed design. Maintain traceability between elements.<\/p>\n<h3>Is the DFD UML mapping reference always accurate?<\/h3>\n<p>It\u2019s accurate when applied with context. Mapping is a tool, not a rule. Always validate: Does the UML element reflect the intended behavior and intent of the DFD element?<\/p>\n<h3>How do I handle multiple DFD processes in one UML use case?<\/h3>\n<p>Group them under one use case. Use an activity diagram to show internal logic. The DFD processes map to activities, not separate use cases.<\/p>\n<h3>Can I convert a DFD to UML automatically?<\/h3>\n<p>Tools like Visual Paradigm support basic mapping, but manual validation is essential. Automation helps with structure, not semantics.<\/p>\n<h3>Why is cross notation terminology important in team settings?<\/h3>\n<p>It prevents miscommunication. Business stakeholders think in data flows. Developers think in objects. A shared vocabulary ensures alignment and reduces rework.<\/p>\n<h3>Do I need to learn both DFD and UML to use this glossary?<\/h3>\n<p>Yes. This glossary assumes familiarity with both notations. If you\u2019re learning one, start with it. The glossary helps you transition to the other, not replace it.<\/p>\n<p>Ultimately, the goal of this DFD UML glossary isn\u2019t just to define terms\u2014it\u2019s to build a common language between analysts, architects, and developers. When your team speaks the same modeling dialect, complexity becomes clarity. That\u2019s the real power of unified modeling vocabulary.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most analysts struggle not with the diagrams themselves, but with the mental shift between two fundamentally different ways of seeing systems. One sees data in motion; the other sees objects in action. The real challenge isn\u2019t learning both notations\u2014it\u2019s understanding how to translate them. This page isn\u2019t a dictionary of symbols. It\u2019s a practical bridge [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":827,"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-831","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 UML Glossary: Cross-Notation Mapping Reference<\/title>\n<meta name=\"description\" content=\"Master the unified modeling vocabulary with this DFD UML glossary. Learn cross-notation terminology, mapping reference, and how to align DFD processes with UML use cases for seamless system modeling.\" \/>\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\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"DFD UML Glossary: Cross-Notation Mapping Reference\" \/>\n<meta property=\"og:description\" content=\"Master the unified modeling vocabulary with this DFD UML glossary. Learn cross-notation terminology, mapping reference, and how to align DFD processes with UML use cases for seamless system modeling.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Espa\u00f1ol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/\",\"name\":\"DFD UML Glossary: Cross-Notation Mapping Reference\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#website\"},\"datePublished\":\"2026-02-25T10:25:15+00:00\",\"description\":\"Master the unified modeling vocabulary with this DFD UML glossary. Learn cross-notation terminology, mapping reference, and how to align DFD processes with UML use cases for seamless system modeling.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data Flow Diagrams vs. UML: When to Use Each\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Decision Support Tools and Templates\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Cross-Notation Glossary and Mapping Reference\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/\",\"name\":\"Visual Paradigm Skills Espa\u00f1ol\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/es\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#organization\",\"name\":\"Visual Paradigm Skills Espa\u00f1ol\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/wp-content\/uploads\/sites\/5\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/es\/wp-content\/uploads\/sites\/5\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Espa\u00f1ol\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"DFD UML Glossary: Cross-Notation Mapping Reference","description":"Master the unified modeling vocabulary with this DFD UML glossary. Learn cross-notation terminology, mapping reference, and how to align DFD processes with UML use cases for seamless system modeling.","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\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/","og_locale":"es_ES","og_type":"article","og_title":"DFD UML Glossary: Cross-Notation Mapping Reference","og_description":"Master the unified modeling vocabulary with this DFD UML glossary. Learn cross-notation terminology, mapping reference, and how to align DFD processes with UML use cases for seamless system modeling.","og_url":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/","og_site_name":"Visual Paradigm Skills Espa\u00f1ol","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"7 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/","url":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/","name":"DFD UML Glossary: Cross-Notation Mapping Reference","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/#website"},"datePublished":"2026-02-25T10:25:15+00:00","description":"Master the unified modeling vocabulary with this DFD UML glossary. Learn cross-notation terminology, mapping reference, and how to align DFD processes with UML use cases for seamless system modeling.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/dfo-uml-glossary-cross-notation-reference\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/es\/"},{"@type":"ListItem","position":2,"name":"Data Flow Diagrams vs. UML: When to Use Each","item":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/"},{"@type":"ListItem","position":3,"name":"Decision Support Tools and Templates","item":"https:\/\/skills.visual-paradigm.com\/es\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-decision-tools\/"},{"@type":"ListItem","position":4,"name":"Cross-Notation Glossary and Mapping Reference"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/es\/#website","url":"https:\/\/skills.visual-paradigm.com\/es\/","name":"Visual Paradigm Skills Espa\u00f1ol","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/es\/#organization","name":"Visual Paradigm Skills Espa\u00f1ol","url":"https:\/\/skills.visual-paradigm.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/skills.visual-paradigm.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/es\/wp-content\/uploads\/sites\/5\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/es\/wp-content\/uploads\/sites\/5\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Espa\u00f1ol"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs\/831","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs\/831\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs\/827"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/media?parent=831"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/doc_tag?post=831"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}