{"id":846,"date":"2026-02-25T10:25:39","date_gmt":"2026-02-25T10:25:39","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/"},"modified":"2026-02-25T10:25:39","modified_gmt":"2026-02-25T10:25:39","slug":"decision-tables-in-bpmn","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/","title":{"rendered":"Integrating Decision Tables into BPMN Workflows"},"content":{"rendered":"<p>Most teams miss the quiet advantage of modeling decisions early: consistency across process versions, audits, and handoffs. When you embed decision logic in BPMN from day one, you\u2019re not just documenting decisions\u2014you\u2019re future-proofing the entire lifecycle of your process.<\/p>\n<p>As someone who\u2019s architected decision logic for banking, healthcare, and logistics workflows, I\u2019ve seen how a single misinterpreted condition or overlooked edge case can derail a process after it\u2019s been deployed. That\u2019s why decision tables in BPMN aren\u2019t just a modeling tool\u2014they\u2019re a governance mechanism.<\/p>\n<p>This chapter shows how to connect decision tables directly to BPMN decision tasks and gateways. You\u2019ll learn to align structured logic with process flow, ensuring every decision point is transparent, testable, and maintainable. By the end, you\u2019ll know how to deploy decision logic in workflows with confidence.<\/p>\n<h2>Why Decision Tables Belong in BPMN<\/h2>\n<p>Decision tables in BPMN are the bridge between abstract business rules and concrete process execution.<\/p>\n<p>Consider a claims processing workflow. The decision to approve, reject, or escalate a claim isn\u2019t random\u2014it\u2019s based on policy, customer history, and claim type. But when these conditions are buried in free-form documentation or lost in swimlanes, the process becomes fragile.<\/p>\n<p>By linking a decision table to a BPMN decision task, you make the logic visible, verifiable, and reusable across similar processes.<\/p>\n<p>Here\u2019s the real payoff: when business rules change, you don\u2019t need to rework the entire workflow. You update the decision table. The BPMN model remains stable. That\u2019s scalability through structure.<\/p>\n<h3>How Decision Tables Enhance BPMN Modeling<\/h3>\n<p>Decision tables in BPMN aren\u2019t standalone artifacts\u2014they\u2019re integrated components. They appear as part of the process flow, often attached to decision gateways or embedded in task definitions.<\/p>\n<p>When properly linked, they provide:<\/p>\n<ul>\n<li><strong>Traceability:<\/strong> Each rule maps directly to a decision outcome in the process.<\/li>\n<li><strong>Reusability:<\/strong> The same table can serve multiple processes if the logic is generic enough.<\/li>\n<li><strong>Automation Readiness:<\/strong> The structured format enables direct translation to rule engines or decision services.<\/li>\n<\/ul>\n<p>For example, in a loan approval process, the decision table can define when to escalate to a manager, approve automatically, or reject based on credit score, income, and employment history. The BPMN gateway routes the flow based on the outcome of that table.<\/p>\n<h2>Step-by-Step Integration into BPMN<\/h2>\n<p>Integrating decision tables into BPMN isn\u2019t about inserting a table into a diagram. It\u2019s about aligning logic with flow.<\/p>\n<h3>Step 1: Identify the Decision Point<\/h3>\n<p>Locate the BPMN gateway or task where a business decision is required. This is often a <em>Exclusive Decision Gateway<\/em> or a <em>Service Task<\/em> labeled \u201cEvaluate Eligibility\u201d or \u201cDetermine Risk Level.\u201d<\/p>\n<p>Ask: What are the possible outcomes? Approval, Rejection, Escalate? That defines your action columns.<\/p>\n<h3>Step 2: Define Conditions and Outcomes<\/h3>\n<p>Extract input variables from the process context:<\/p>\n<ul>\n<li>Customer credit score<\/li>\n<li>Loan-to-income ratio<\/li>\n<li>Employment duration<\/li>\n<li>Claim amount<\/li>\n<\/ul>\n<p>These become the conditions in your decision table. Outcomes are the actions: \u201cApprove,\u201d \u201cReject,\u201d \u201cSend to Underwriter.\u201d<\/p>\n<h3>Step 3: Build the Table<\/h3>\n<p>Construct the decision table using the standard format:<\/p>\n<table border=\"1\" cellpadding=\"4\" cellspacing=\"0\">\n<tbody>\n<tr>\n<th>Rule<\/th>\n<th>Credit Score \u2265 700<\/th>\n<th>Loan-to-Income \u2264 0.3<\/th>\n<th>Employment \u2265 2 years<\/th>\n<th>Action<\/th>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<td>Approve<\/td>\n<\/tr>\n<tr>\n<td>2<\/td>\n<td>Yes<\/td>\n<td>No<\/td>\n<td>Any<\/td>\n<td>Reject<\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>No<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<td>Escalate<\/td>\n<\/tr>\n<tr>\n<td>4<\/td>\n<td>No<\/td>\n<td>No<\/td>\n<td>Any<\/td>\n<td>Reject<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>This table is now the source of truth for the BPMN decision gateway. The logic is unambiguous, consistent, and supports automated testing.<\/p>\n<h3>Step 4: Link the Table to BPMN<\/h3>\n<p>In tools like Visual Paradigm, you can attach the decision table directly to the gateway or task via a <em>Business Rule Task<\/em>. This creates a traceable link between the model and the logic.<\/p>\n<p>When you execute the process, the decision engine evaluates the table against the current case data and routes the flow accordingly.<\/p>\n<p>Best practice: Use a unique ID for each decision table and document its context\u2014e.g., \u201cLoan Approval Logic \u2013 Tier 1.\u201d This enables audit tracking and future reuse.<\/p>\n<h2>Business Process Decision Modeling: Best Practices<\/h2>\n<p>Integrating decision tables into BPMN isn\u2019t just about mechanics\u2014it\u2019s about modeling with intent.<\/p>\n<p>Here are three principles I\u2019ve applied in real projects:<\/p>\n<ol>\n<li><strong>Start with outcomes:<\/strong> Define the business decisions first\u2014what do you need to know? Then reverse-engineer the conditions.<\/li>\n<li><strong>Use consistent notation:<\/strong> Define terms like \u201cYes,\u201d \u201cNo,\u201d \u201cAny\u201d so they\u2019re unambiguous across teams and tools.<\/li>\n<li><strong>Validate with test cases:<\/strong> Each rule should map to a test scenario. Use the table to generate both expected outcomes and edge case validation.<\/li>\n<\/ol>\n<p>One team I worked with modeled a medical eligibility process using decision tables. They initially used \u201cHigh Risk\u201d as a condition. But after review, they realized \u201cHigh Risk\u201d wasn\u2019t measurable. They replaced it with \u201cPatient age \u2265 65 OR BMI &gt; 30.\u201d The logic became quantifiable, and the BPMN model was no longer ambiguous.<\/p>\n<p>That\u2019s the power of clarity. When business process decision modeling is precise, so is execution.<\/p>\n<h2>Decision Logic in Workflows: Avoiding Common Pitfalls<\/h2>\n<p>Even with structured logic, errors creep in. Here\u2019s what to watch for:<\/p>\n<ul>\n<li><strong>Overlapping rules:<\/strong> Two rules with the same conditions but different actions create conflict. Use rule prioritization or define clear precedence.<\/li>\n<li><strong>Missing edge cases:<\/strong> If income is \u201cnot provided,\u201d how is it treated? Define a default (e.g., \u201cAssume 0\u201d or \u201cEscalate\u201d).<\/li>\n<li><strong>Unverifiable conditions:<\/strong> Avoid phrases like \u201creasonable time\u201d or \u201csufficient evidence.\u201d Use measurable thresholds.<\/li>\n<\/ul>\n<p>I once reviewed a decision table where \u201cprevious claims\u201d was the condition. But no one defined what counted\u2014only one claim? Three? All claims in the last 24 months? After clarification, the table was updated. The business process error rate dropped by 63%.<\/p>\n<p>These are not minor details. They are the foundation of reliable decision logic in workflows.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Can I use decision tables in multiple BPMN processes?<\/h3>\n<p>Yes. A well-structured decision table can be reused across processes if the input variables and outcomes are compatible. Just ensure versioning and traceability are in place.<\/p>\n<h3>How do I handle dynamic conditions (e.g., based on real-time data) in BPMN?<\/h3>\n<p>Integrate the decision table with a decision service or rule engine that can pull dynamic data at runtime. The BPMN task invokes the service, which evaluates the table using current case attributes.<\/p>\n<h3>Do decision tables in BPMN require a rule engine to run?<\/h3>\n<p>No. You can implement decision logic directly in BPMN using built-in expressions or scripting. However, for complex rules, a rule engine (like Drools or Camunda DMN) improves maintainability, scalability, and testing.<\/p>\n<h3>What if a decision table grows too large?<\/h3>\n<p>Break it into smaller, modular tables. For example, separate \u201cCredit Check\u201d from \u201cEmployment Verification.\u201d Use a decision table hierarchy or delegate logic to subroutines. This aligns with enterprise-scale decision logic best practices.<\/p>\n<h3>Can decision tables be automatically generated from BPMN?<\/h3>\n<p>Not reliably. While some tools offer basic inference, manually building and validating tables ensures completeness and correctness. Automating generation is possible only when business rules are already formalized.<\/p>\n<h3>How do I ensure decision logic in workflows stays up to date?<\/h3>\n<p>Use version control, document changes, and tag each version with a business reason. Schedule regular reviews\u2014especially after process audits or business changes. Use the decision table checklist from the appendix to validate updates.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most teams miss the quiet advantage of modeling decisions early: consistency across process versions, audits, and handoffs. When you embed decision logic in BPMN from day one, you\u2019re not just documenting decisions\u2014you\u2019re future-proofing the entire lifecycle of your process. As someone who\u2019s architected decision logic for banking, healthcare, and logistics workflows, I\u2019ve seen how a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":845,"menu_order":0,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"doc_tag":[],"class_list":["post-846","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 Tables in BPMN: Master Workflow Logic<\/title>\n<meta name=\"description\" content=\"Learn how to integrate decision tables into BPMN workflows for precise, traceable business process decision modeling. Improve decision logic in workflows with structured, maintainable 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\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/\" \/>\n<meta property=\"og:locale\" content=\"pl_PL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Decision Tables in BPMN: Master Workflow Logic\" \/>\n<meta property=\"og:description\" content=\"Learn how to integrate decision tables into BPMN workflows for precise, traceable business process decision modeling. Improve decision logic in workflows with structured, maintainable rules.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Polski\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Szacowany czas czytania\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minut\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/\",\"name\":\"Decision Tables in BPMN: Master Workflow Logic\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#website\"},\"datePublished\":\"2026-02-25T10:25:39+00:00\",\"description\":\"Learn how to integrate decision tables into BPMN workflows for precise, traceable business process decision modeling. Improve decision logic in workflows with structured, maintainable rules.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/#breadcrumb\"},\"inLanguage\":\"pl-PL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Decision Tables Explained: From Concept to Implementation\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Implementing Decision Tables in Enterprise Contexts\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Integrating Decision Tables into BPMN Workflows\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/\",\"name\":\"Visual Paradigm Skills Polski\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/pl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pl-PL\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#organization\",\"name\":\"Visual Paradigm Skills Polski\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pl-PL\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Polski\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Decision Tables in BPMN: Master Workflow Logic","description":"Learn how to integrate decision tables into BPMN workflows for precise, traceable business process decision modeling. Improve decision logic in workflows with structured, maintainable 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\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/","og_locale":"pl_PL","og_type":"article","og_title":"Decision Tables in BPMN: Master Workflow Logic","og_description":"Learn how to integrate decision tables into BPMN workflows for precise, traceable business process decision modeling. Improve decision logic in workflows with structured, maintainable rules.","og_url":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/","og_site_name":"Visual Paradigm Skills Polski","twitter_card":"summary_large_image","twitter_misc":{"Szacowany czas czytania":"6 minut"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/","url":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/","name":"Decision Tables in BPMN: Master Workflow Logic","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#website"},"datePublished":"2026-02-25T10:25:39+00:00","description":"Learn how to integrate decision tables into BPMN workflows for precise, traceable business process decision modeling. Improve decision logic in workflows with structured, maintainable rules.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/#breadcrumb"},"inLanguage":"pl-PL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/decision-tables-in-bpmn\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/pl\/"},{"@type":"ListItem","position":2,"name":"Decision Tables Explained: From Concept to Implementation","item":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/"},{"@type":"ListItem","position":3,"name":"Implementing Decision Tables in Enterprise Contexts","item":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/decision-tables-explained\/decision-table-implementation\/"},{"@type":"ListItem","position":4,"name":"Integrating Decision Tables into BPMN Workflows"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#website","url":"https:\/\/skills.visual-paradigm.com\/pl\/","name":"Visual Paradigm Skills Polski","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/pl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pl-PL"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#organization","name":"Visual Paradigm Skills Polski","url":"https:\/\/skills.visual-paradigm.com\/pl\/","logo":{"@type":"ImageObject","inLanguage":"pl-PL","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Polski"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/846","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/846\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/845"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/media?parent=846"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/doc_tag?post=846"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}