{"id":838,"date":"2026-02-25T10:25:35","date_gmt":"2026-02-25T10:25:35","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/"},"modified":"2026-02-25T10:25:35","modified_gmt":"2026-02-25T10:25:35","slug":"decision-table-conditions-actions","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/","title":{"rendered":"Writing Clear Conditions and Actions"},"content":{"rendered":"<p>Consider a bank\u2019s loan approval process. The decision depends on factors like income, credit score, and employment history. A poorly phrased condition like \u201cGood credit\u201d introduces ambiguity\u2014what qualifies as good? By contrast, a well-defined condition such as \u201cCredit score \u2265 650\u201d removes subjectivity and ensures consistent interpretation across teams.<\/p>\n<p>My experience building decision tables for insurance, finance, and healthcare systems has taught me that vague or inconsistent language in conditions and actions is the leading cause of misaligned logic, incorrect implementations, and audit failures.<\/p>\n<p>This chapter delivers actionable techniques for crafting conditions and actions that are unambiguous, consistent, and ready for implementation. You\u2019ll learn how to define variables, normalize expressions, and use precise language to build decision logic that stands the test of time and scale.<\/p>\n<h2>Why Clarity in Conditions and Actions Matters<\/h2>\n<p>Decision tables are only as good as the precision of their components. Ambiguity creeps in when conditions rely on subjective phrasing like \u201chigh income\u201d or \u201crecent employment.\u201d These expressions vary between stakeholders and lead to inconsistent rule interpretation.<\/p>\n<p>Clear conditions and actions are the foundation of traceable, testable, and maintainable business rules. They enable seamless integration into BPMN workflows, software requirements, and automated rule engines.<\/p>\n<p>When conditions are precise, actions become predictable. When actions are unambiguous, implementation teams know exactly what to code. This avoids rework, reduces disputes, and accelerates delivery.<\/p>\n<h2>Best Practices for Writing Decision Table Conditions<\/h2>\n<h3>Define Variables Early and Consistently<\/h3>\n<p>Every condition must reference clearly defined variables. Do not assume shared understanding.<\/p>\n<p>For example, instead of using \u201ccustomer has a loan,\u201d define the variable as:<\/p>\n<ul>\n<li><strong>HasActiveLoan<\/strong> \u2014 Boolean: true if the customer has a loan that is not paid off.<\/li>\n<li><strong>CreditScore<\/strong> \u2014 Integer: ranges from 300 to 850.<\/li>\n<li><strong>MonthlyIncome<\/strong> \u2014 Decimal: gross monthly income in local currency.<\/li>\n<\/ul>\n<p>These definitions should appear in a glossary or metadata section, referenced by all decision tables.<\/p>\n<h3>Use Uniform Expression Patterns<\/h3>\n<p>Standardize how comparisons and ranges are expressed. Avoid mixing formats like:<\/p>\n<ul>\n<li>\u201cIncome &gt; 50,000\u201d<\/li>\n<li>\u201cMonthly income is more than 50K\u201d<\/li>\n<li>\u201cGreater than 50,000\u201d<\/li>\n<\/ul>\n<p>Instead, adopt a single format: <strong>\u201cMonthlyIncome \u2265 50,000\u201d<\/strong>. This reduces cognitive load and prevents misreading during validation.<\/p>\n<h3>Normalize Logical and Linguistic Variants<\/h3>\n<p>Users often express conditions using natural language variations. Normalize them to a consistent structure.<\/p>\n<p>For instance, the following are equivalent:<\/p>\n<ul>\n<li>\u201cCredit score is less than 600\u201d<\/li>\n<li>\u201cCredit score under 600\u201d<\/li>\n<li>\u201cCredit score below 600\u201d<\/li>\n<li>\u201cCredit score is smaller than 600\u201d<\/li>\n<\/ul>\n<p>Standardize all to: <strong>CreditScore &lt; 600<\/strong>.<\/p>\n<h3>Use Boolean Logic with Care<\/h3>\n<p>Combine conditions logically using AND, OR, and NOT\u2014but never assume clarity. Always group complex expressions using parentheses.<\/p>\n<p>Example:<\/p>\n<pre><code>HasActiveLoan = false AND CreditScore &lt; 600 OR OverduePayments &gt; 2<\/code><\/pre>\n<p>This is ambiguous. Use:<\/p>\n<pre><code>(HasActiveLoan = false AND CreditScore &lt; 600) OR (OverduePayments &gt; 2)<\/code><\/pre>\n<p>Even better, break complex conditions into simpler sub-conditions if possible.<\/p>\n<h2>Best Practices for Writing Decision Table Actions<\/h2>\n<h3>Make Actions Verbs-First and Outcome-Focused<\/h3>\n<p>Actions should start with a clear verb and describe a concrete outcome. Avoid vague or passive phrasing.<\/p>\n<p>Weak:<\/p>\n<ul>\n<li>\u201cConsider rejection\u201d<\/li>\n<li>\u201cReview application\u201d<\/li>\n<\/ul>\n<p>Strong:<\/p>\n<ul>\n<li>\u201cReject application\u201d<\/li>\n<li>\u201cForward to underwriter\u201d<\/li>\n<li>\u201cApprove loan with 5% interest\u201d<\/li>\n<\/ul>\n<p>The verb communicates intent. The remainder specifies the action\u2019s scope or conditionality.<\/p>\n<h3>Define Action Parameters Explicitly<\/h3>\n<p>If an action depends on a value, specify it clearly.<\/p>\n<p>Instead of:<\/p>\n<ul>\n<li>\u201cApprove\u201d<\/li>\n<\/ul>\n<p>Use:<\/p>\n<ul>\n<li>\u201cApprove loan with interest rate of 4.5%\u201d<\/li>\n<li>\u201cApprove loan with 5-year term\u201d<\/li>\n<\/ul>\n<p>These are actionable and traceable. They can be directly mapped to code or workflow steps.<\/p>\n<h3>Avoid Ambiguous or Overloaded Verbs<\/h3>\n<p>Phrases like \u201chandle the case\u201d or \u201cprocess request\u201d are too vague. They don\u2019t define what happens.<\/p>\n<p>Instead, use verbs that reflect actual system behavior:<\/p>\n<ul>\n<li>\u201cSend denial notice via email\u201d<\/li>\n<li>\u201cSubmit to credit bureau for scoring\u201d<\/li>\n<li>\u201cSchedule review in 30 days\u201d<\/li>\n<\/ul>\n<p>Each of these triggers a specific action in the system.<\/p>\n<h2>Common Pitfalls and How to Avoid Them<\/h2>\n<p>Even with best intentions, teams introduce flaws in decision table conditions and actions. Here are the most frequent issues\u2014and how to fix them.<\/p>\n<table border=\"1\" cellpadding=\"4\" cellspacing=\"0\">\n<tbody>\n<tr>\n<th>Pitfall<\/th>\n<th>Impact<\/th>\n<th>Solution<\/th>\n<\/tr>\n<tr>\n<td>Using subjective terms like \u201chigh income\u201d or \u201crecent employment\u201d<\/td>\n<td>Creates inconsistency across reviewers and systems<\/td>\n<td>Define thresholds: \u201cMonthlyIncome \u2265 70,000\u201d<\/td>\n<\/tr>\n<tr>\n<td>Combining multiple actions in one line<\/td>\n<td>Hard to test and debug; violates single responsibility<\/td>\n<td>Break into separate actions: \u201cSend email\u201d, \u201cLog decision\u201d<\/td>\n<\/tr>\n<tr>\n<td>Using inconsistent variable names across tables<\/td>\n<td>Breaks traceability and causes implementation errors<\/td>\n<td>Enforce a shared variable dictionary<\/td>\n<\/tr>\n<tr>\n<td>Overusing \u201cother\u201d or \u201cdefault\u201d conditions<\/td>\n<td>Misses edge cases; leads to untested logic<\/td>\n<td>Define all possible combinations explicitly or label as \u201cinvalid\u201d<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>These pitfalls are not failures of intelligence\u2014they\u2019re symptoms of poor process. Implementing a review checklist reduces their likelihood.<\/p>\n<h2>Validation and Review: The Final Gate<\/h2>\n<p>Crafting good conditions and actions is only half the battle. You must validate them.<\/p>\n<p>Use this checklist before finalizing any decision table:<\/p>\n<ol>\n<li>Are all variables defined in a shared glossary?<\/li>\n<li>Do all conditions use the same expression format?<\/li>\n<li>Are actions verb-driven and outcome-specific?<\/li>\n<li>Do all conditions and actions avoid subjective language?<\/li>\n<li>Have you double-checked negations (e.g., \u201cnot approved\u201d) for clarity?<\/li>\n<\/ol>\n<p>Run a simple \u201creadability test\u201d: Have a non-technical stakeholder read a rule and explain it. If they can\u2019t, the rule needs rewriting.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>How do I ensure consistency when multiple people write decision tables?<\/h3>\n<p>Establish a standard variable dictionary and syntax guide. Use shared templates in tools like Visual Paradigm. Require peer review for all new tables. This turns individual instinct into collective discipline.<\/p>\n<h3>Can I use natural language in decision table actions?<\/h3>\n<p>Only if it\u2019s unambiguous and consistently formatted. Prefer structured phrasing: \u201cApprove loan with interest rate X\u201d over \u201cGive approval.\u201d Natural language can be useful in prototypes, but real-world tables must be precise.<\/p>\n<h3>What if a condition depends on a complex calculation?<\/h3>\n<p>Define the calculation as a separate variable. For example:<\/p>\n<ul>\n<li><strong>DebtToIncomeRatio<\/strong> = TotalMonthlyDebts \/ MonthlyIncome<\/li>\n<\/ul>\n<p>Then use: \u201cDebtToIncomeRatio \u2264 0.4\u201d in your condition. This keeps the condition readable and testable.<\/p>\n<h3>How do I handle edge cases like null or invalid values?<\/h3>\n<p>Address them explicitly. Add a condition like:<\/p>\n<ul>\n<li>\u201cMonthlyIncome = null\u201d \u2192 \u201cFlag for manual review\u201d<\/li>\n<\/ul>\n<p>Never assume default values. Document how missing inputs are handled.<\/p>\n<h3>Is it okay to use abbreviations in conditions and actions?<\/h3>\n<p>Only if they are defined and universally accepted. For example, \u201cCIC\u201d (Credit Information Center) is acceptable only if defined. Avoid \u201ccust,\u201d \u201cloan,\u201d or \u201capp\u201d as stand-ins. Clarity trumps brevity in decision logic.<\/p>\n<h3>How often should I review decision table conditions and actions?<\/h3>\n<p>Review every time business rules evolve, or at least annually. Update conditions to reflect new policies, and retire obsolete actions. Treat decision tables as living documents, not static artifacts.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Consider a bank\u2019s loan approval process. The decision depends on factors like income, credit score, and employment history. A poorly phrased condition like \u201cGood credit\u201d introduces ambiguity\u2014what qualifies as good? By contrast, a well-defined condition such as \u201cCredit score \u2265 650\u201d removes subjectivity and ensures consistent interpretation across teams. My experience building decision tables for [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":834,"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-838","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>Writing Clear Decision Table Conditions and Actions<\/title>\n<meta name=\"description\" content=\"Master the art of writing precise, unambiguous decision table conditions and actions. Learn best practices for variable definition, normalization, and language clarity to ensure logic accuracy and maintainability in business rules.\" \/>\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\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Writing Clear Decision Table Conditions and Actions\" \/>\n<meta property=\"og:description\" content=\"Master the art of writing precise, unambiguous decision table conditions and actions. Learn best practices for variable definition, normalization, and language clarity to ensure logic accuracy and maintainability in business rules.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/\" \/>\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=\"5 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\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/\",\"name\":\"Writing Clear Decision Table Conditions and Actions\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#website\"},\"datePublished\":\"2026-02-25T10:25:35+00:00\",\"description\":\"Master the art of writing precise, unambiguous decision table conditions and actions. Learn best practices for variable definition, normalization, and language clarity to ensure logic accuracy and maintainability in business rules.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Decision Tables Explained: From Concept to Implementation\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Foundations of Decision Table Modeling\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Writing Clear Conditions and Actions\"}]},{\"@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":"Writing Clear Decision Table Conditions and Actions","description":"Master the art of writing precise, unambiguous decision table conditions and actions. Learn best practices for variable definition, normalization, and language clarity to ensure logic accuracy and maintainability in business rules.","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\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/","og_locale":"es_ES","og_type":"article","og_title":"Writing Clear Decision Table Conditions and Actions","og_description":"Master the art of writing precise, unambiguous decision table conditions and actions. Learn best practices for variable definition, normalization, and language clarity to ensure logic accuracy and maintainability in business rules.","og_url":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/","og_site_name":"Visual Paradigm Skills Espa\u00f1ol","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"5 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/","url":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/","name":"Writing Clear Decision Table Conditions and Actions","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/#website"},"datePublished":"2026-02-25T10:25:35+00:00","description":"Master the art of writing precise, unambiguous decision table conditions and actions. Learn best practices for variable definition, normalization, and language clarity to ensure logic accuracy and maintainability in business rules.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-conditions-actions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/es\/"},{"@type":"ListItem","position":2,"name":"Decision Tables Explained: From Concept to Implementation","item":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/"},{"@type":"ListItem","position":3,"name":"Foundations of Decision Table Modeling","item":"https:\/\/skills.visual-paradigm.com\/es\/docs\/decision-tables-explained\/decision-table-basics\/"},{"@type":"ListItem","position":4,"name":"Writing Clear Conditions and Actions"}]},{"@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\/838","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\/838\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs\/834"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/media?parent=838"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/doc_tag?post=838"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}