{"id":836,"date":"2026-02-25T10:25:35","date_gmt":"2026-02-25T10:25:35","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/"},"modified":"2026-02-25T10:25:35","modified_gmt":"2026-02-25T10:25:35","slug":"decision-table-structure","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/","title":{"rendered":"Structure and Core Components"},"content":{"rendered":"<p>Most beginners start with flowcharts or decision trees when modeling business logic. That\u2019s natural. But they often discover too late that these approaches become unwieldy with complexity. Flowcharts grow tangled. Decision trees become unmanageable in branching depth. The real breakthrough comes when you shift to a structured, tabular format\u2014where rules are columns, and conditions and actions are rows. This is the foundation of decision table structure.<\/p>\n<p>Over two decades of working with business analysts, architects, and developers has taught me one truth: clarity in decision logic isn\u2019t about visualization\u2014it\u2019s about structure. The decision table structure I\u2019ll walk you through isn\u2019t just a notation. It\u2019s a disciplined method to ensure completeness, eliminate ambiguity, and scale rule management. You\u2019ll learn how to build models that are readable by humans, automatable by systems, and maintainable over time.<\/p>\n<h2>Why Columns Are for Rules, and Rows for Conditions and Actions<\/h2>\n<p>Let\u2019s begin with the core principle: **rules as columns**, and **conditions and actions as rows**. This may seem backward at first, but it\u2019s intentional and powerful.<\/p>\n<p>Each column represents a unique decision rule\u2014each a distinct scenario based on combinations of input conditions. Breaking rules into columns allows you to see every possible path side by side.<\/p>\n<p>Conditions appear in rows above the action section. They define the input states that trigger a rule. Actions appear below\u2014what happens when those conditions are met.<\/p>\n<p>This arrangement makes it easier to validate: you can scan each column to check if all conditions are logically consistent and whether actions align with the rule&#8217;s intent.<\/p>\n<h3>The Power of Compartments<\/h3>\n<p>A well-structured decision table is divided into four distinct compartments:<\/p>\n<ul>\n<li><strong>Decision name<\/strong> \u2014 A short, descriptive label for the rule set.<\/li>\n<li><strong>Conditions<\/strong> \u2014 The inputs or attributes that define the state of the system.<\/li>\n<li><strong>Actions<\/strong> \u2014 The operations or outcomes triggered when conditions are met.<\/li>\n<li><strong>Rules<\/strong> \u2014 The individual columns that combine conditions and actions.<\/li>\n<\/ul>\n<p>These compartments aren\u2019t arbitrary. They create a mental model that maps directly to how business logic is evaluated: <em>what is the state? What should happen?<\/em><\/p>\n<p>When you use decision table compartments correctly, you avoid missing edge cases. For example, in an insurance underwriting table, you\u2019ll see how each combination of age, medical history, and lifestyle is tested. The compartment structure forces you to list every relevant condition and assess it across all possible values.<\/p>\n<h2>Decision Table Conditions and Actions: Precision Matters<\/h2>\n<p>Conditions must be atomic and mutually exclusive. Never write \u201cAge is 18 or older\u201d and \u201cAge is over 65\u201d as separate conditions\u2014this leads to overlap and confusion. Instead, define them as discrete, non-overlapping states: \u201cAge &lt; 25\u201d, \u201cAge 25\u201364\u201d, \u201cAge \u2265 65\u201d.<\/p>\n<p>Actions should be precise, unambiguous verbs: \u201cApprove application\u201d, \u201cRequest additional documents\u201d, \u201cReject application with reason X\u201d. Avoid vague terms like \u201cHandle case\u201d or \u201cTake next step\u201d.<\/p>\n<p>Here\u2019s a real-world example from my work in credit scoring:<\/p>\n<table>\n<tbody>\n<tr>\n<th>Condition<\/th>\n<td>Income \u2265 $75,000<\/td>\n<td>Debt-to-Income Ratio \u2264 36%<\/td>\n<td>Bank Account Age \u2265 12 months<\/td>\n<\/tr>\n<tr>\n<td>Rule 1<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>Rule 2<\/td>\n<td>Yes<\/td>\n<td>No<\/td>\n<td>Yes<\/td>\n<\/tr>\n<tr>\n<td>Action<\/td>\n<td>Approve<\/td>\n<td>Request additional documentation<\/td>\n<td>Refer to underwriter<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>This example shows how decision table conditions and actions are aligned with clear, testable logic. Every rule is traceable, and every outcome is predictable.<\/p>\n<h2>Decision Table Rules Columns: How to Build Them Correctly<\/h2>\n<p>Every decision table must answer a single question: <em>What\u2019s the decision?<\/em>. Whether it\u2019s \u201cShould this claim be paid?\u201d or \u201cIs this user eligible for a discount?\u201d<\/p>\n<p>Then, for each rule column, systematically combine all possible values of the conditions. This is where decision table rules columns become powerful.<\/p>\n<p>If you have three conditions\u2014each with two values (Yes\/No)\u2014you\u2019ll have 2\u00d72\u00d72 = 8 rules. That\u2019s not just a count\u2014it\u2019s a test of completeness.<\/p>\n<p>Here\u2019s a checklist for building correct decision table rules columns:<\/p>\n<ol>\n<li>Identify all input variables.<\/li>\n<li>Define each condition\u2019s valid values (e.g., \u201cHigh\u201d, \u201cMedium\u201d, \u201cLow\u201d).<\/li>\n<li>Generate all combinations using a systematic method (e.g., binary counting or truth table logic).<\/li>\n<li>Eliminate impossible or redundant combinations early.<\/li>\n<li>Ensure every column maps to a valid business outcome.<\/li>\n<\/ol>\n<p>Never skip the combination phase. I\u2019ve seen teams skip it and end up with gaps\u2014like missing a scenario where income is high but debt is too high. That\u2019s an error that surfaces after deployment.<\/p>\n<h2>Notation and Clarity: Avoid Common Pitfalls<\/h2>\n<p>Notation matters. Use consistent, plain language across all conditions and actions.<\/p>\n<p>Never use abbreviations without definition. \u201cM\u201d for \u201cMarried\u201d might be clear to you\u2014but not to someone reviewing the table six months later.<\/p>\n<p>Avoid ambiguity in conditions. \u201cGood credit\u201d is subjective. Instead, define: \u201cCredit Score \u2265 700\u201d.<\/p>\n<p>Use standardized symbols:<\/p>\n<ul>\n<li><code>Y<\/code> for Yes<\/li>\n<li><code>N<\/code> for No<\/li>\n<li><code>-<\/code> or <code>\u2013<\/code> for \u201cdon\u2019t care\u201d or \u201cirrelevant\u201d<\/li>\n<\/ul>\n<p>But be cautious: \u201cDon\u2019t care\u201d should only be used when the outcome doesn\u2019t depend on that condition. Overusing it leads to confusion and hidden logic.<\/p>\n<h2>Decision Table Compartments: A Visual and Analytical Framework<\/h2>\n<p>The four compartments aren\u2019t just for layout\u2014they\u2019re a diagnostic tool.<\/p>\n<p>When reviewing a decision table, ask:<\/p>\n<ul>\n<li>Is the decision clearly named?<\/li>\n<li>Are all conditions clearly defined and mutually exclusive?<\/li>\n<li>Do actions correspond to rules?<\/li>\n<li>Are all combinations covered?<\/li>\n<li>Are there overlapping or conflicting rules?<\/li>\n<\/ul>\n<p>This framework is how you catch errors early. In a health care eligibility table, I once found a rule where \u201cMedicaid status = Yes\u201d led to \u201cApprove\u201d, but another rule with \u201cMedicaid status = No\u201d also said \u201cApprove\u201d. That wasn\u2019t a logic error\u2014it was a redundancy. Fixing it saved the team from over-issuing benefits.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>What is the standard structure of a decision table?<\/h3>\n<p>The standard structure places rules as columns, conditions and actions as rows. The table is divided into four compartments: decision name, conditions, actions, and rules. This format ensures clarity, completeness, and consistency.<\/p>\n<h3>How do I define decision table rules columns?<\/h3>\n<p>Define rules columns by generating all valid combinations of conditions. Use a systematic approach like binary counting or truth table generation. Each column must represent a single, unique decision path.<\/p>\n<h3>Why are decision table conditions and actions critical?<\/h3>\n<p>Conditions define the input states that trigger decisions. Actions define the output behavior. When these are ambiguous or incomplete, the logic becomes unreliable. Clear, atomic conditions and precise actions ensure that rules are predictable and testable.<\/p>\n<h3>Can decision table compartments be rearranged?<\/h3>\n<p>No\u2014rearranging compartments breaks the logical flow. The standard order (decision, conditions, actions, rules) is designed for human and system processing. Deviating from it increases cognitive load and risk of error.<\/p>\n<h3>What are common mistakes in decision table structure?<\/h3>\n<p>Common mistakes include overlapping conditions, missing combinations, ambiguous language, inconsistent notation, and using \u201cdon\u2019t care\u201d where logic depends on the value. Always validate with a completeness and consistency checklist.<\/p>\n<h3>How can I use decision table compartments to improve governance?<\/h3>\n<p>Compartments enforce structure, making it easier to audit, trace, and version control. They enable clear ownership\u2014conditions by business analysts, actions by developers, and rules by test leads. This separation supports compliance and maintainability.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most beginners start with flowcharts or decision trees when modeling business logic. That\u2019s natural. But they often discover too late that these approaches become unwieldy with complexity. Flowcharts grow tangled. Decision trees become unmanageable in branching depth. The real breakthrough comes when you shift to a structured, tabular format\u2014where rules are columns, and conditions and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":834,"menu_order":1,"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-836","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>Decision Table Structure: The Complete Guide<\/title>\n<meta name=\"description\" content=\"Master decision table structure with this expert guide. Learn how to organize rules as columns, conditions and actions as rows, and visualize complex logic with clarity and precision.\" \/>\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\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Decision Table Structure: The Complete Guide\" \/>\n<meta property=\"og:description\" content=\"Master decision table structure with this expert guide. Learn how to organize rules as columns, conditions and actions as rows, and visualize complex logic with clarity and precision.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Portugu\u00eas\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tempo estimado de leitura\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/\",\"name\":\"Decision Table Structure: The Complete Guide\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#website\"},\"datePublished\":\"2026-02-25T10:25:35+00:00\",\"description\":\"Master decision table structure with this expert guide. Learn how to organize rules as columns, conditions and actions as rows, and visualize complex logic with clarity and precision.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/#breadcrumb\"},\"inLanguage\":\"pt-PT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pt\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Decision Tables Explained: From Concept to Implementation\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Foundations of Decision Table Modeling\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Structure and Core Components\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/\",\"name\":\"Visual Paradigm Skills Portugu\u00eas\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/pt\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-PT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#organization\",\"name\":\"Visual Paradigm Skills Portugu\u00eas\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-PT\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/wp-content\/uploads\/sites\/9\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/pt\/wp-content\/uploads\/sites\/9\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Portugu\u00eas\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Decision Table Structure: The Complete Guide","description":"Master decision table structure with this expert guide. Learn how to organize rules as columns, conditions and actions as rows, and visualize complex logic with clarity and precision.","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\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/","og_locale":"pt_PT","og_type":"article","og_title":"Decision Table Structure: The Complete Guide","og_description":"Master decision table structure with this expert guide. Learn how to organize rules as columns, conditions and actions as rows, and visualize complex logic with clarity and precision.","og_url":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/","og_site_name":"Visual Paradigm Skills Portugu\u00eas","twitter_card":"summary_large_image","twitter_misc":{"Tempo estimado de leitura":"6 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/","url":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/","name":"Decision Table Structure: The Complete Guide","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/#website"},"datePublished":"2026-02-25T10:25:35+00:00","description":"Master decision table structure with this expert guide. Learn how to organize rules as columns, conditions and actions as rows, and visualize complex logic with clarity and precision.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/#breadcrumb"},"inLanguage":"pt-PT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-structure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/pt\/"},{"@type":"ListItem","position":2,"name":"Decision Tables Explained: From Concept to Implementation","item":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/"},{"@type":"ListItem","position":3,"name":"Foundations of Decision Table Modeling","item":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-basics\/"},{"@type":"ListItem","position":4,"name":"Structure and Core Components"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/pt\/#website","url":"https:\/\/skills.visual-paradigm.com\/pt\/","name":"Visual Paradigm Skills Portugu\u00eas","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/pt\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-PT"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/pt\/#organization","name":"Visual Paradigm Skills Portugu\u00eas","url":"https:\/\/skills.visual-paradigm.com\/pt\/","logo":{"@type":"ImageObject","inLanguage":"pt-PT","@id":"https:\/\/skills.visual-paradigm.com\/pt\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/pt\/wp-content\/uploads\/sites\/9\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/pt\/wp-content\/uploads\/sites\/9\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Portugu\u00eas"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs\/836","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs\/836\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs\/834"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/media?parent=836"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/doc_tag?post=836"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}