{"id":865,"date":"2026-02-25T10:25:46","date_gmt":"2026-02-25T10:25:46","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/"},"modified":"2026-02-25T10:25:46","modified_gmt":"2026-02-25T10:25:46","slug":"decision-table-integration","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/","title":{"rendered":"Integrating Decision Tables into Daily Modeling Practice"},"content":{"rendered":"<p>Processing a loan application is not just about checking credit scores. It\u2019s about managing a cascade of conditions: income level, employment history, debt-to-income ratio, and co-signer status. Most teams attempt this with flowcharts, but they quickly become tangled. I\u2019ve seen teams spend hours reworking logic only to miss edge cases like \u201cself-employed with irregular income.\u201d The real issue isn\u2019t complexity\u2014it\u2019s the lack of structured integration.<\/p>\n<p>Decision table integration isn\u2019t about adding another diagram. It\u2019s about anchoring logic in a format that\u2019s both human-readable and machine-actionable. When you integrate decision tables early into your workflow, you eliminate rework, reduce ambiguity, and enable traceability across teams.<\/p>\n<p>This chapter guides you through embedding decision table integration into real-world modeling routines\u2014within BPMN, requirements, and governance. You\u2019ll learn how to transition from isolated tables to living documentation that evolves with your process.<\/p>\n<h2>Embedding Decision Tables in BPMN Workflows<\/h2>\n<p>BPMN gateways are powerful, but they can\u2019t capture complex business logic on their own. The missing link is decision table integration at the decision task level.<\/p>\n<p>When you place a decision table directly within a BPMN task, you\u2019re not just annotating\u2014it\u2019s a live, executable model. Every condition in the table maps to a path in the flow. The action determines the outcome: approve, reject, escalate.<\/p>\n<p>Here\u2019s how to do it:<\/p>\n<ol>\n<li>Identify decision points in your process\u2014like \u201cAssess Credit Risk\u201d or \u201cDetermine Eligibility.\u201d<\/li>\n<li>Create a decision table with inputs aligned to process variables (e.g., credit_score, income, employment_tenure).<\/li>\n<li>Assign the table to the BPMN task as a <code>decision requirement<\/code> or <code>decision service<\/code>.<\/li>\n<li>Link the table to the gateway using an <code>input data<\/code> and <code>output decision<\/code> element.<\/li>\n<li>Use tooling like Visual Paradigm to auto-generate decision logic and validate rule coverage.<\/li>\n<\/ol>\n<p>By doing this, you ensure that every time the process runs, the logic is consistent and auditable. It\u2019s not just a diagram\u2014it\u2019s a governance layer.<\/p>\n<h3>Why Integrating Decision Tables with BPMN Works Better<\/h3>\n<p>Decision tables in modeling workflow offer more than clarity\u2014they reduce the gap between business intent and execution. A common mistake is treating decision tables as static documents. Instead, treat them as dynamic components of the process.<\/p>\n<p>Consider this example: a healthcare eligibility check. Without integration, the decision logic lives in a separate document. With integration, the table is embedded in the workflow, updated when policy rules change, and automatically tested during process simulation.<\/p>\n<p>Using decision tables with BPMN isn\u2019t just best practice\u2014it\u2019s a requirement for scalable automation.<\/p>\n<h2>Using Decision Tables in Requirements and Testing<\/h2>\n<p>Business requirements often fail because they\u2019re vague. \u201cApprove if the applicant has good credit\u201d is ambiguous. Decision table integration transforms such statements into testable, measurable logic.<\/p>\n<p>Each rule in the table becomes a test case. If you define three rules for credit eligibility, you have three test scenarios\u2014one per column.<\/p>\n<p>This is how you derive test coverage directly from business rules:<\/p>\n<table>\n<tbody>\n<tr>\n<th>Rule<\/th>\n<th>Credit Score \u2265 700<\/th>\n<th>Debt-to-Income \u2264 36%<\/th>\n<th>Employed &gt; 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>No<\/td>\n<td>Yes<\/td>\n<td>Yes<\/td>\n<td>Review<\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>Yes<\/td>\n<td>No<\/td>\n<td>No<\/td>\n<td>Reject<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Now, every combination is a test case. You can automate this in test frameworks using the same logic. This is decision tables in modeling workflow at its most effective.<\/p>\n<p>When requirements are modeled with decision tables, you eliminate \u201cI think you mean\u2026\u201d conversations. You have a single source of truth.<\/p>\n<h2>Establishing Governance Through Daily Integration<\/h2>\n<p>Decision table integration isn\u2019t just a modeling technique. It\u2019s a governance strategy.<\/p>\n<p>Teams that adopt it daily see faster onboarding, fewer defects, and higher audit readiness. But it doesn\u2019t happen by accident. You need consistent routines:<\/p>\n<ul>\n<li><strong>Start every sprint<\/strong> with a review of decision logic. Update tables as business rules evolve.<\/li>\n<li>Use decision tables as <strong>acceptance criteria<\/strong> for user stories. If the table isn\u2019t complete, the story isn\u2019t done.<\/li>\n<li>Perform <strong>rule validation<\/strong> before deployment. Check for overlaps, gaps, and contradictions.<\/li>\n<li>Store tables in version-controlled repositories. Link them to requirements, BPMN models, and test suites.<\/li>\n<li>Hold <strong>monthly review sessions<\/strong> to simplify complex tables, identify redundancies, and update documentation.<\/li>\n<\/ul>\n<p>These aren\u2019t optional steps. They\u2019re the foundation of sustainable decision modeling.<\/p>\n<h3>Integrating Decision Tables with BPMN: Key Benefits<\/h3>\n<ul>\n<li>Reduces miscommunication between business and IT<\/li>\n<li>Enables automated testing from business rules<\/li>\n<li>Improves maintainability during system evolution<\/li>\n<li>Supports audit trails and compliance reporting<\/li>\n<li>Facilitates reuse across multiple processes<\/li>\n<\/ul>\n<h2>Common Pitfalls and How to Avoid Them<\/h2>\n<p>Even with strong intent, decision table integration can fail. These are the most frequent mistakes I\u2019ve seen in real projects:<\/p>\n<ul>\n<li><strong>Overloading tables with too many conditions<\/strong> \u2192 Break large tables into modular components. Use decision table hierarchies.<\/li>\n<li><strong>Using ambiguous language in actions<\/strong> \u2192 Define actions using precise verbs: \u201csend to underwriting,\u201d \u201cblock application,\u201d \u201cnotify customer.\u201d<\/li>\n<li><strong>Not validating rule coverage<\/strong> \u2192 Use automated tools to detect missing combinations (e.g., \u201cIs there a rule for low income and high debt?\u201d).<\/li>\n<li><strong>Treating decision tables as static<\/strong> \u2192 Update them with every business rule change. Treat them as living documents.<\/li>\n<li><strong>Isolating decision tables from workflows<\/strong> \u2192 Always link tables to BPMN tasks, requirements, or test plans.<\/li>\n<\/ul>\n<p>These aren\u2019t just tips\u2014they\u2019re hard-won lessons from enterprise-scale implementations.<\/p>\n<h2>Next Steps: Make It a Habit<\/h2>\n<p>Decision table integration isn\u2019t a one-off task. It\u2019s a daily practice. Start small: pick one process, link one decision table to a BPMN task, and validate it with your team. Then expand.<\/p>\n<p>Every time you refine a rule, document it. Every time you change a condition, trace the impact. This builds a culture where logic is transparent, consistent, and trustworthy.<\/p>\n<p>Over time, you\u2019ll have a repository of reusable, validated decision logic that scales across departments and systems.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>What does decision table integration mean in practice?<\/h3>\n<p>It means embedding decision logic into your core modeling workflows\u2014BPMN diagrams, requirements documents, test plans\u2014so it\u2019s not just documented but live, traceable, and executable.<\/p>\n<h3>How do I integrate decision tables with BPMN?<\/h3>\n<p>Create a decision task or gateway, assign a decision table as its input, map variables to conditions, and link the output to process paths. Use tools like Visual Paradigm to automate validation and simulation.<\/p>\n<h3>Can decision tables be used for testing?<\/h3>\n<p>Yes. Each rule in a decision table is a test case. You can generate automated test scripts directly from the table structure, ensuring full coverage of business logic.<\/p>\n<h3>Are decision tables in modeling workflow suitable for agile teams?<\/h3>\n<p>Yes. They help clarify acceptance criteria, reduce rework, and ensure every sprint delivers fully tested logic. They are especially valuable for complex domains like finance or healthcare.<\/p>\n<h3>What if my decision table grows too large?<\/h3>\n<p>Break it into modular components. Use hierarchical decision tables: one master table calls out to sub-tables for specific conditions. This supports scalability and reuse.<\/p>\n<h3>How do I ensure decision table integration stays consistent across teams?<\/h3>\n<p>Establish a standard template, enforce naming conventions, use version control, and conduct regular reviews. Embed the table into your CI\/CD pipeline for automated validation.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Processing a loan application is not just about checking credit scores. It\u2019s about managing a cascade of conditions: income level, employment history, debt-to-income ratio, and co-signer status. Most teams attempt this with flowcharts, but they quickly become tangled. I\u2019ve seen teams spend hours reworking logic only to miss edge cases like \u201cself-employed with irregular income.\u201d [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":863,"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-865","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 Integration Made Practical<\/title>\n<meta name=\"description\" content=\"Learn how to embed decision table integration into daily modeling workflows, BPMN processes, and enterprise governance for consistent, scalable decision logic.\" \/>\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\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/\" \/>\n<meta property=\"og:locale\" content=\"ru_RU\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Decision Table Integration Made Practical\" \/>\n<meta property=\"og:description\" content=\"Learn how to embed decision table integration into daily modeling workflows, BPMN processes, and enterprise governance for consistent, scalable decision logic.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills \u0420\u0443\u0441\u0441\u043a\u0438\u0439\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u041f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 \u043c\u0438\u043d\u0443\u0442\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/\",\"name\":\"Decision Table Integration Made Practical\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/#website\"},\"datePublished\":\"2026-02-25T10:25:46+00:00\",\"description\":\"Learn how to embed decision table integration into daily modeling workflows, BPMN processes, and enterprise governance for consistent, scalable decision logic.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/#breadcrumb\"},\"inLanguage\":\"ru-RU\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/ru\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Decision Tables Explained: From Concept to Implementation\",\"item\":\"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Conclusion and Practical Resources\",\"item\":\"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Integrating Decision Tables into Daily Modeling Practice\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/ru\/\",\"name\":\"Visual Paradigm Skills \u0420\u0443\u0441\u0441\u043a\u0438\u0439\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/ru\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ru-RU\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/#organization\",\"name\":\"Visual Paradigm Skills \u0420\u0443\u0441\u0441\u043a\u0438\u0439\",\"url\":\"https:\/\/skills.visual-paradigm.com\/ru\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ru-RU\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/ru\/wp-content\/uploads\/sites\/10\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/ru\/wp-content\/uploads\/sites\/10\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills \u0420\u0443\u0441\u0441\u043a\u0438\u0439\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/ru\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Decision Table Integration Made Practical","description":"Learn how to embed decision table integration into daily modeling workflows, BPMN processes, and enterprise governance for consistent, scalable decision logic.","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\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/","og_locale":"ru_RU","og_type":"article","og_title":"Decision Table Integration Made Practical","og_description":"Learn how to embed decision table integration into daily modeling workflows, BPMN processes, and enterprise governance for consistent, scalable decision logic.","og_url":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/","og_site_name":"Visual Paradigm Skills \u0420\u0443\u0441\u0441\u043a\u0438\u0439","twitter_card":"summary_large_image","twitter_misc":{"\u041f\u0440\u0438\u043c\u0435\u0440\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f":"6 \u043c\u0438\u043d\u0443\u0442"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/","url":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/","name":"Decision Table Integration Made Practical","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/ru\/#website"},"datePublished":"2026-02-25T10:25:46+00:00","description":"Learn how to embed decision table integration into daily modeling workflows, BPMN processes, and enterprise governance for consistent, scalable decision logic.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/#breadcrumb"},"inLanguage":"ru-RU","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/decision-table-integration\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/ru\/"},{"@type":"ListItem","position":2,"name":"Decision Tables Explained: From Concept to Implementation","item":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/"},{"@type":"ListItem","position":3,"name":"Conclusion and Practical Resources","item":"https:\/\/skills.visual-paradigm.com\/ru\/docs\/decision-tables-explained\/decision-table-learning-summary\/"},{"@type":"ListItem","position":4,"name":"Integrating Decision Tables into Daily Modeling Practice"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/ru\/#website","url":"https:\/\/skills.visual-paradigm.com\/ru\/","name":"Visual Paradigm Skills \u0420\u0443\u0441\u0441\u043a\u0438\u0439","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/ru\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/ru\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ru-RU"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/ru\/#organization","name":"Visual Paradigm Skills \u0420\u0443\u0441\u0441\u043a\u0438\u0439","url":"https:\/\/skills.visual-paradigm.com\/ru\/","logo":{"@type":"ImageObject","inLanguage":"ru-RU","@id":"https:\/\/skills.visual-paradigm.com\/ru\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/ru\/wp-content\/uploads\/sites\/10\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/ru\/wp-content\/uploads\/sites\/10\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills \u0420\u0443\u0441\u0441\u043a\u0438\u0439"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/ru\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/ru\/wp-json\/wp\/v2\/docs\/865","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/ru\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/ru\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/ru\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/ru\/wp-json\/wp\/v2\/docs\/865\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/ru\/wp-json\/wp\/v2\/docs\/863"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/ru\/wp-json\/wp\/v2\/media?parent=865"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/ru\/wp-json\/wp\/v2\/doc_tag?post=865"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}