{"id":837,"date":"2026-02-25T10:25:35","date_gmt":"2026-02-25T10:25:35","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/"},"modified":"2026-02-25T10:25:35","modified_gmt":"2026-02-25T10:25:35","slug":"decision-table-vs-decision-tree","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/","title":{"rendered":"Choosing Decision Tables Over Other Logic Models"},"content":{"rendered":"<p>When modeling business logic, clarity is not optional\u2014it\u2019s foundational. The most effective models are those that make decisions visible, verifiable, and verifiable by both technical and non-technical stakeholders.<\/p>\n<p>Over the past two decades, I\u2019ve worked with teams across finance, healthcare, and logistics who were stuck between choosing between decision trees and decision tables. The truth is: both have strengths, but they serve different purposes.<\/p>\n<p>Decision tables deliver precision in complex, high-coverage environments. They are ideal when you need to express dozens or hundreds of rules with clear input conditions and corresponding actions. Decision trees, on the other hand, shine in scenarios with a small number of branching decisions\u2014where visual flow is more intuitive than tabular structure.<\/p>\n<p>This chapter distills my experience into a practical, real-world comparison. You\u2019ll learn when to choose decision tables over decision trees, how they differ in maintainability, and why decision table benefits over flowcharts are not just theoretical\u2014they\u2019re proven in production systems.<\/p>\n<h2>Understanding the Core Differences<\/h2>\n<h3>Structure and Readability<\/h3>\n<p>Decision tables organize logic in a grid: rules as columns, conditions and actions as rows.<\/p>\n<p>Each column represents a unique decision path\u2014making it easy to see what happens under specific combinations of inputs.<\/p>\n<p>Decision trees, by contrast, represent logic as a hierarchy of nodes and branches. While visually intuitive, they become unwieldy when paths multiply.<\/p>\n<p>Consider this: a decision table with 16 rules can be reviewed in minutes. A tree with 16 leaf nodes may require tracing up to 5 levels deep to verify behavior\u2014exhausting and error-prone.<\/p>\n<h3>Scalability and Maintainability<\/h3>\n<p>As the number of decision variables increases, the number of possible combinations grows exponentially.<\/p>\n<p>With decision tables, you can manage this complexity through structured grouping, masking, and prioritization.<\/p>\n<p>Decision trees, while easy to build for simple decisions, become unmanageable beyond 4\u20135 variables. Each new condition doubles the number of paths. That\u2019s why I\u2019ve seen teams abandon tree-based logic after 10+ decision points.<\/p>\n<p>Decision table comparison reveals a clear advantage: they scale better and allow for better rule reuse.<\/p>\n<h2>When Decision Tables Win: Real-World Scenarios<\/h2>\n<h3>High-Volume Business Rules<\/h3>\n<p>Imagine a credit risk system evaluating applicants based on income, credit score, employment history, debt-to-income ratio, and loan type.<\/p>\n<p>That\u2019s five variables. A decision tree would need 32 leaf nodes. A decision table can express the same logic in 12\u201315 rules\u2014compact, readable, and easier to validate.<\/p>\n<p>More importantly, when business policies change, updating a decision table requires only modifying a few rows, not re-drawing or re-architecting an entire tree.<\/p>\n<h3>Regulated or Auditable Environments<\/h3>\n<p>In healthcare, insurance, or finance, auditability is non-negotiable.<\/p>\n<p>Decision tables provide a clear, auditable trail: each rule is a self-contained statement of conditions and actions. This makes them ideal for compliance reviews.<\/p>\n<p>Decision tree diagrams, while useful for explanation, often lack the traceability needed in regulated systems. They don\u2019t offer the same level of formal validation.<\/p>\n<h3>Integration with Automation and Rule Engines<\/h3>\n<p>Modern rule engines like Drools, IBM ILOG, or Oracle Business Rules parse decision tables directly.<\/p>\n<p>By modeling logic in tabular format, you can export decision tables into code, XML, or JSON with minimal transformation.<\/p>\n<p>Decision trees, by contrast, require complex mapping or custom parsers\u2014adding unnecessary complexity to automation pipelines.<\/p>\n<h2>When Decision Trees Are Still Valid<\/h2>\n<h3>Simple Decision Logic<\/h3>\n<p>For decisions with only two or three variables, decision trees offer better visual intuition.<\/p>\n<p>If you\u2019re explaining a simple eligibility process\u2014e.g., \u201cIs the applicant over 18 and employed?\u201d\u2014a tree may be faster to understand than a table.<\/p>\n<h3>Training and Onboarding<\/h3>\n<p>Decision trees are excellent for onboarding new team members. They show the flow of logic step by step.<\/p>\n<p>But I\u2019ve seen teams rely on trees too long. The moment the number of rules exceeds 10, I recommend transitioning to decision tables\u2014before the model becomes unmanageable.<\/p>\n<h3>Visual Communication with Non-Technical Stakeholders<\/h3>\n<p>Decision trees can be powerful tools for presenting logic to executives or clients.<\/p>\n<p>However, I always recommend using them as a starting point\u2014not the final model. Once the logic is validated, convert it to a decision table for implementation and maintenance.<\/p>\n<h2>Decision Table Benefits Over Flowcharts<\/h2>\n<p>Flowcharts are outdated for complex logic. They\u2019re prone to spaghetti code, tangled lines, and inconsistent notation.<\/p>\n<p>Decision tables eliminate ambiguity. Every rule is complete, unambiguous, and testable. There\u2019s no \u201cjump to\u201d or \u201cconnect to\u201d that can be misinterpreted.<\/p>\n<p>Here\u2019s a practical comparison:<\/p>\n<table border=\"1\" cellpadding=\"4\" cellspacing=\"0\">\n<tbody>\n<tr>\n<th>Model<\/th>\n<th>Best For<\/th>\n<th>Scalability<\/th>\n<th>Maintainability<\/th>\n<th>Validation<\/th>\n<\/tr>\n<tr>\n<td>Decision Table<\/td>\n<td>Complex, multi-condition logic<\/td>\n<td>High<\/td>\n<td>Very High<\/td>\n<td>Easy (automated)<\/td>\n<\/tr>\n<tr>\n<td>Decision Tree<\/td>\n<td>Simple, linear decisions<\/td>\n<td>Moderate (scales poorly)<\/td>\n<td>Moderate<\/td>\n<td>Moderate (manual)<\/td>\n<\/tr>\n<tr>\n<td>Flowchart<\/td>\n<td>Process steps<\/td>\n<td>Low<\/td>\n<td>Low<\/td>\n<td>Hard (tangled)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Decision table comparison shows why they\u2019re the preferred model for enterprise rule systems. They are not just more readable\u2014they\u2019re more reliable and easier to test.<\/p>\n<h2>Practical Guidelines for Choosing the Right Model<\/h2>\n<ol>\n<li><strong>Under 3 conditions? <\/strong>Consider a decision tree for clarity and visualization.<\/li>\n<li><strong>Over 4 conditions or 10+ rules? <\/strong>Use a decision table\u2014your logic will be easier to manage.<\/li>\n<li><strong>Need integration with code or rule engines? <\/strong>Always model in a decision table format.<\/li>\n<li><strong>Working in a regulated environment? <\/strong>Choose decision tables for auditability and traceability.<\/li>\n<li><strong>Onboarding new team members? <\/strong>Start with a tree, then convert to a decision table for execution.<\/li>\n<\/ol>\n<h2>Final Verdict: Why Decision Tables Are the Default Choice<\/h2>\n<p>My rule of thumb is simple: if your logic involves more than three conditions or ten distinct outcomes, start with a decision table.<\/p>\n<p>I\u2019ve seen teams build decision trees for complex claims processing systems\u2014only to realize they had over 50 rules and no way to verify completeness. They had to rework everything in a table format.<\/p>\n<p>Decision table benefits over flowcharts are not marginal\u2014they\u2019re transformative. They reduce ambiguity, eliminate redundancy, and enable automation.<\/p>\n<p>Don\u2019t let outdated tools dictate your logic. Modern systems demand structured, testable, and maintainable models. That\u2019s where decision tables truly shine.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>When should I avoid using a decision table?<\/h3>\n<p>When you have only one or two conditions and a simple decision path. A flowchart or even a simple if-then statement may be clearer.<\/p>\n<h3>Can decision tables be used in agile environments?<\/h3>\n<p>Absolutely. Decision tables are ideal for agile teams. They help define acceptance criteria, clarify user stories, and generate test cases directly from rules.<\/p>\n<h3>How do decision tables improve testing?<\/h3>\n<p>Each row in a decision table is a test case. They guarantee full coverage of input combinations and make it easy to generate automated test scripts.<\/p>\n<h3>Are decision tables harder to learn than flowcharts?<\/h3>\n<p>No. The learning curve is shallow. Once you understand the structure\u2014conditions, actions, rules\u2014most people can read and modify tables within minutes.<\/p>\n<h3>Can decision trees be converted into decision tables?<\/h3>\n<p>Yes. Every path in a decision tree can be mapped to a rule in a decision table. This conversion is often recommended to improve maintainability.<\/p>\n<h3>Do decision tables require special software?<\/h3>\n<p>No. You can build them in Excel, Google Sheets, or even text editors. But tools like Visual Paradigm or Camunda offer built-in support for validation, export, and integration.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When modeling business logic, clarity is not optional\u2014it\u2019s foundational. The most effective models are those that make decisions visible, verifiable, and verifiable by both technical and non-technical stakeholders. Over the past two decades, I\u2019ve worked with teams across finance, healthcare, and logistics who were stuck between choosing between decision trees and decision tables. The truth [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":834,"menu_order":2,"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-837","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 vs Decision Tree: A Practical Comparison<\/title>\n<meta name=\"description\" content=\"Compare decision tables vs decision trees for complex business logic. Learn the decision table benefits over flowcharts and when to use each model for clarity, maintainability, and scalability.\" \/>\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\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Decision Table vs Decision Tree: A Practical Comparison\" \/>\n<meta property=\"og:description\" content=\"Compare decision tables vs decision trees for complex business logic. Learn the decision table benefits over flowcharts and when to use each model for clarity, maintainability, and scalability.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Fran\u00e7ais\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/\",\"name\":\"Decision Table vs Decision Tree: A Practical Comparison\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#website\"},\"datePublished\":\"2026-02-25T10:25:35+00:00\",\"description\":\"Compare decision tables vs decision trees for complex business logic. Learn the decision table benefits over flowcharts and when to use each model for clarity, maintainability, and scalability.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Decision Tables Explained: From Concept to Implementation\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Foundations of Decision Table Modeling\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Choosing Decision Tables Over Other Logic Models\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/\",\"name\":\"Visual Paradigm Skills Fran\u00e7ais\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/fr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#organization\",\"name\":\"Visual Paradigm Skills Fran\u00e7ais\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/wp-content\/uploads\/sites\/6\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/fr\/wp-content\/uploads\/sites\/6\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Fran\u00e7ais\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Decision Table vs Decision Tree: A Practical Comparison","description":"Compare decision tables vs decision trees for complex business logic. Learn the decision table benefits over flowcharts and when to use each model for clarity, maintainability, and scalability.","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\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/","og_locale":"fr_FR","og_type":"article","og_title":"Decision Table vs Decision Tree: A Practical Comparison","og_description":"Compare decision tables vs decision trees for complex business logic. Learn the decision table benefits over flowcharts and when to use each model for clarity, maintainability, and scalability.","og_url":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/","og_site_name":"Visual Paradigm Skills Fran\u00e7ais","twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/","url":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/","name":"Decision Table vs Decision Tree: A Practical Comparison","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/#website"},"datePublished":"2026-02-25T10:25:35+00:00","description":"Compare decision tables vs decision trees for complex business logic. Learn the decision table benefits over flowcharts and when to use each model for clarity, maintainability, and scalability.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/decision-table-vs-decision-tree\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/fr\/"},{"@type":"ListItem","position":2,"name":"Decision Tables Explained: From Concept to Implementation","item":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/"},{"@type":"ListItem","position":3,"name":"Foundations of Decision Table Modeling","item":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/decision-tables-explained\/decision-table-basics\/"},{"@type":"ListItem","position":4,"name":"Choosing Decision Tables Over Other Logic Models"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/fr\/#website","url":"https:\/\/skills.visual-paradigm.com\/fr\/","name":"Visual Paradigm Skills Fran\u00e7ais","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/fr\/#organization","name":"Visual Paradigm Skills Fran\u00e7ais","url":"https:\/\/skills.visual-paradigm.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/skills.visual-paradigm.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/fr\/wp-content\/uploads\/sites\/6\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/fr\/wp-content\/uploads\/sites\/6\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Fran\u00e7ais"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs\/837","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs\/837\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs\/834"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/media?parent=837"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/doc_tag?post=837"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}