{"id":861,"date":"2026-02-25T10:25:45","date_gmt":"2026-02-25T10:25:45","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/"},"modified":"2026-02-25T10:25:45","modified_gmt":"2026-02-25T10:25:45","slug":"healthcare-decision-tables-rule-modeling","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/","title":{"rendered":"Healthcare Eligibility Rule Management"},"content":{"rendered":"<p>Every year, thousands of patient treatment decisions hinge on rules that are poorly documented, inconsistently applied, or impossible to verify. The root cause? Lack of structured logic in decision-making workflows. Most teams don\u2019t realize that a simple shift\u2014from ad hoc logic to formal decision table modeling\u2014eliminates 80% of eligibility errors, reduces audit risks, and accelerates system integration.<\/p>\n<p>I&#8217;ve guided dozens of healthcare IT and compliance teams through this transformation. The insight is simple: when conditions and actions are laid out in rows and rules in columns, the complexity collapses into clarity. This chapter walks you through modeling real-world medical eligibility decision tables with precision, ensuring regulatory compliance and operational accuracy.<\/p>\n<p>You\u2019ll learn how to define clinical eligibility criteria, map complex dependencies, and validate logic across multiple scenarios. By the end, you\u2019ll be able to design decision tables that are not just correct\u2014but maintainable, auditable, and ready for integration into electronic health record (EHR) systems and automated workflows.<\/p>\n<h2>Why Healthcare Eligibility Requires Structured Logic<\/h2>\n<p>Eligibility for treatments, insurance coverage, or clinical trials isn\u2019t determined by a single variable. It\u2019s shaped by dozens of interlocking conditions: age, diagnosis, procedure type, co-morbidities, prior treatment history, and regional regulations.<\/p>\n<p>When these rules are coded in plain text, conditionals, or unstructured logic, it\u2019s easy to miss edge cases\u2014like a patient under 18 with a rare disease who requires prior authorization. That\u2019s where healthcare rule modeling with decision tables shines.<\/p>\n<p>Decision tables force you to confront every possible combination upfront. They make implicit assumptions explicit, reduce ambiguity, and provide a single source of truth for developers, compliance officers, and clinicians.<\/p>\n<h3>Key Drivers for Using Decision Tables in Healthcare<\/h3>\n<ul>\n<li><strong>Regulatory Compliance:<\/strong> Audits require traceable, consistent application of rules. Decision tables provide that audit trail.<\/li>\n<li><strong>Interoperability:<\/strong> EHR systems, claims processing engines, and clinical decision support tools all benefit from standardized rule formats.<\/li>\n<li><strong>Scalability:<\/strong> As new treatments, drugs, or regulations emerge, decision tables can be updated without rewriting entire logic blocks.<\/li>\n<li><strong>Team Alignment:<\/strong> Clinicians, IT teams, and compliance officers can review and validate rules using a shared visual model.<\/li>\n<\/ul>\n<h2>Step-by-Step: Building a Medical Eligibility Decision Table<\/h2>\n<p>Let\u2019s walk through a real-world example: determining eligibility for a high-cost cancer treatment, based on clinical guidelines and payer policy.<\/p>\n<h3>Step 1: Define the Decision and Inputs<\/h3>\n<p>Start with a clear decision statement:<\/p>\n<p><em>\u201cIs the patient eligible for Treatment X?\u201d<\/em><\/p>\n<p>Identify the input variables:<\/p>\n<ul>\n<li>Diagnosis (e.g., metastatic breast cancer, non-small cell lung cancer)<\/li>\n<li>Age (yrs)<\/li>\n<li>Previous Treatments (e.g., hormonal therapy, chemo, targeted therapy)<\/li>\n<li>ECOG Performance Status (0\u20131)<\/li>\n<li>Insurance Type (e.g., Medicare, Commercial, Medicaid)<\/li>\n<\/ul>\n<p>Normalize values: e.g., \u201cECOG 0\u20131\u201d as valid; \u201cECOG 2 or higher\u201d as ineligible.<\/p>\n<h3>Step 2: Structure Conditions and Actions<\/h3>\n<p>Build the decision table with:<\/p>\n<ul>\n<li><strong>Conditions<\/strong> in rows: Each condition must be unambiguous and testable.<\/li>\n<li><strong>Actions<\/strong> in the rightmost column: What happens if the rule matches?<\/li>\n<li><strong>Rules<\/strong> as columns: Each column represents a unique combination of conditions.<\/li>\n<\/ul>\n<p>Here\u2019s a simplified example:<\/p>\n<table border=\"1\" cellpadding=\"4\" cellspacing=\"0\">\n<tbody>\n<tr>\n<th>Rule ID<\/th>\n<th>Diagnosis<\/th>\n<th>Age<\/th>\n<th>Previous Treatments<\/th>\n<th>ECOG<\/th>\n<th>Insurance<\/th>\n<th>Action<\/th>\n<\/tr>\n<tr>\n<td>R1<\/td>\n<td>metastatic breast cancer<\/td>\n<td>&gt;= 18<\/td>\n<td>no prior targeted therapy<\/td>\n<td>0\u20131<\/td>\n<td>Commercial<\/td>\n<td>Eligible for Treatment X<\/td>\n<\/tr>\n<tr>\n<td>R2<\/td>\n<td>non-small cell lung cancer<\/td>\n<td>&gt;= 18<\/td>\n<td>no prior chemo<\/td>\n<td>0\u20131<\/td>\n<td>Medicare<\/td>\n<td>Eligible for Treatment X<\/td>\n<\/tr>\n<tr>\n<td>R3<\/td>\n<td>any<\/td>\n<td>&lt; 18<\/td>\n<td>any<\/td>\n<td>0\u20131<\/td>\n<td>any<\/td>\n<td>Not eligible (underage)<\/td>\n<\/tr>\n<tr>\n<td>R4<\/td>\n<td>any<\/td>\n<td>&gt;= 18<\/td>\n<td>has prior targeted therapy<\/td>\n<td>0\u20131<\/td>\n<td>any<\/td>\n<td>Not eligible (prior treatment)<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h3>Step 3: Validate Completeness and Consistency<\/h3>\n<p>Use these checks:<\/p>\n<ul>\n<li><strong>Check for missing combinations:<\/strong> Are all age, diagnosis, and insurance types covered?<\/li>\n<li><strong>Watch for overlaps:<\/strong> Could Rule R1 and R2 apply to the same patient? If yes, define a priority order.<\/li>\n<li><strong>Verify mutual exclusivity:<\/strong> Can multiple rules apply? If so, ensure actions don\u2019t conflict.<\/li>\n<\/ul>\n<p>I once worked with a team who missed a critical gap: patients with ECOG 2 under 65 were not flagged as ineligible. The decision table caught this during validation\u2014saving a costly mispayment.<\/p>\n<h3>Step 4: Integrate into Automation and Compliance<\/h3>\n<p>Once validated, the decision table becomes the foundation for:<\/p>\n<ul>\n<li>Rule engine implementation (e.g., Drools, IBM OPL)<\/li>\n<li>Testing scripts: Each rule becomes a test case.<\/li>\n<li>BPMN integration: Used as a decision task in workflow automation.<\/li>\n<li>Documentation: Exported as a compliance artifact for auditors.<\/li>\n<\/ul>\n<h2>Advanced Patterns for Complex Healthcare Scenarios<\/h2>\n<p>Not all eligibility rules are linear. Some require conditional sequencing, exception clauses, or hierarchical logic.<\/p>\n<h3>Pattern 1: Nested Decision Tables (Sub-Tables)<\/h3>\n<p>When eligibility depends on a sequence of conditions, break the logic into sub-tables.<\/p>\n<p>For example:<\/p>\n<ul>\n<li><strong>Primary Table:<\/strong> Determines if the patient qualifies for a clinical trial.<\/li>\n<li><strong>Sub-Table:<\/strong> If yes, applies eligibility rules for the specific trial (e.g., mutation status, prior treatment).<\/li>\n<\/ul>\n<p>This modular approach prevents bloated tables and enhances readability.<\/p>\n<h3>Pattern 2: Default Rule Handling<\/h3>\n<p>When most cases are \u201celigible\u201d but exceptions exist, use a \u201cdefault\u201d rule:<\/p>\n<pre><code>Rule ID: R99 (Default)\nConditions:\n  - All conditions met except:\n    - Not in R1\u2013R4\nAction:\n  - Eligible for Treatment X (default case)<\/code><\/pre>\n<p>This reduces the number of explicit rules and improves maintainability.<\/p>\n<h2>Common Pitfalls and How to Avoid Them<\/h2>\n<p>Even with structured modeling, mistakes happen. Here are the top three I\u2019ve seen in healthcare rule modeling:<\/p>\n<ol>\n<li><strong>Vague conditions:<\/strong> \u201cPatient is stable\u201d is not testable. Replace with \u201cECOG 0\u20131\u201d or \u201cno active disease progression.\u201d<\/li>\n<li><strong>Overlapping rules:<\/strong> Two rules may apply to the same patient. Always define priority (e.g., by diagnosis, insurance).<\/li>\n<li><strong>Missing edge cases:<\/strong> Consider patients with multiple comorbidities, dual insurance, or changing statuses.<\/li>\n<\/ol>\n<p>Always ask: <em>\u201cWhat if the patient is 17 years and 364 days old?\u201d<\/em> That\u2019s where real-world logic breaks\u2014and decision tables catch it.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>How do decision tables improve compliance in healthcare systems?<\/h3>\n<p>Decision tables provide a complete, auditable record of eligibility logic. Every rule is traceable, making it easy to demonstrate that decisions were made consistently and in line with policy and regulatory standards.<\/p>\n<h3>Can decision tables handle dynamic eligibility rules based on real-time data?<\/h3>\n<p>Yes. When integrated with rule engines or EHR systems, decision tables can evaluate real-time inputs\u2014such as lab results, EHR status, or prior authorization codes\u2014without altering the table structure.<\/p>\n<h3>What\u2019s the difference between medical eligibility decision tables and general rule modeling?<\/h3>\n<p>Medical eligibility decision tables focus on clinical, regulatory, and insurance-specific criteria. They require special attention to medical terminologies (e.g., SNOMED, ICD-10), treatment sequences, and prior authorization workflows not typically found in other domains.<\/p>\n<h3>How do I ensure healthcare decision tables remain maintainable over time?<\/h3>\n<p>Use consistent naming, version control, and documentation. Assign ownership to a governance team. Review and update tables quarterly or whenever regulations change. Use visual tools like Visual Paradigm to track changes.<\/p>\n<h3>What tools support healthcare rule modeling with decision tables?<\/h3>\n<p>Visual Paradigm, IBM Operational Decision Manager (ODM), Drools, and Camunda offer decision table editors with validation, simulation, and integration with BPMN workflows. Choose one that supports export to code or rule engine formats.<\/p>\n<h3>How many rules should a healthcare decision table contain?<\/h3>\n<p>Keep it under 20\u201325 rules for readability. If you exceed that, split into sub-tables or use hierarchical decision models. Larger tables are harder to verify and maintain.<\/p>\n<p>Decision tables are not just a documentation tool. They are a strategic asset for healthcare systems\u2014ensuring care is delivered fairly, consistently, and in compliance with evolving regulations. Whether you&#8217;re automating prior authorizations, managing treatment eligibility, or aligning clinical and financial workflows, structured decision logic is the foundation of reliable, auditable healthcare software.<\/p>\n<p>Start small. Model one rule at a time. Build confidence. Then scale. Your next audit, your next deployment, and your next patient will thank you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Every year, thousands of patient treatment decisions hinge on rules that are poorly documented, inconsistently applied, or impossible to verify. The root cause? Lack of structured logic in decision-making workflows. Most teams don\u2019t realize that a simple shift\u2014from ad hoc logic to formal decision table modeling\u2014eliminates 80% of eligibility errors, reduces audit risks, and accelerates [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":859,"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-861","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>Healthcare Decision Tables: Rule Modeling Made Clear<\/title>\n<meta name=\"description\" content=\"Master healthcare eligibility rule management using structured decision tables. Learn to model complex medical eligibility logic with clarity, consistency, and traceability for accurate automation and compliance.\" \/>\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-case-studies\/healthcare-decision-tables-rule-modeling\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Healthcare Decision Tables: Rule Modeling Made Clear\" \/>\n<meta property=\"og:description\" content=\"Master healthcare eligibility rule management using structured decision tables. Learn to model complex medical eligibility logic with clarity, consistency, and traceability for accurate automation and compliance.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/\" \/>\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-case-studies\/healthcare-decision-tables-rule-modeling\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/\",\"name\":\"Healthcare Decision Tables: Rule Modeling Made Clear\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#website\"},\"datePublished\":\"2026-02-25T10:25:45+00:00\",\"description\":\"Master healthcare eligibility rule management using structured decision tables. Learn to model complex medical eligibility logic with clarity, consistency, and traceability for accurate automation and compliance.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/#breadcrumb\"},\"inLanguage\":\"pt-PT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/#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\":\"Real-World Case Studies\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Healthcare Eligibility Rule Management\"}]},{\"@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":"Healthcare Decision Tables: Rule Modeling Made Clear","description":"Master healthcare eligibility rule management using structured decision tables. Learn to model complex medical eligibility logic with clarity, consistency, and traceability for accurate automation and compliance.","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-case-studies\/healthcare-decision-tables-rule-modeling\/","og_locale":"pt_PT","og_type":"article","og_title":"Healthcare Decision Tables: Rule Modeling Made Clear","og_description":"Master healthcare eligibility rule management using structured decision tables. Learn to model complex medical eligibility logic with clarity, consistency, and traceability for accurate automation and compliance.","og_url":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/","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-case-studies\/healthcare-decision-tables-rule-modeling\/","url":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/","name":"Healthcare Decision Tables: Rule Modeling Made Clear","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/#website"},"datePublished":"2026-02-25T10:25:45+00:00","description":"Master healthcare eligibility rule management using structured decision tables. Learn to model complex medical eligibility logic with clarity, consistency, and traceability for accurate automation and compliance.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/#breadcrumb"},"inLanguage":"pt-PT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/healthcare-decision-tables-rule-modeling\/#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":"Real-World Case Studies","item":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/decision-tables-explained\/decision-table-case-studies\/"},{"@type":"ListItem","position":4,"name":"Healthcare Eligibility Rule Management"}]},{"@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\/861","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\/861\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs\/859"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/media?parent=861"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/doc_tag?post=861"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}