{"id":523,"date":"2026-02-25T10:19:29","date_gmt":"2026-02-25T10:19:29","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/"},"modified":"2026-02-25T10:19:29","modified_gmt":"2026-02-25T10:19:29","slug":"cmmn-insurance-claim-adaptive-modeling","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/","title":{"rendered":"Insurance Claim and Risk Adjustment"},"content":{"rendered":"<p>One of the most common misconceptions in insurance case management is treating claim processing as a linear workflow. I\u2019ve seen teams spend months designing rigid BPMN flows only to find they break at the first unexpected document or medical report. The truth is, insurance claims are inherently unpredictable. That\u2019s where CMMN shines \u2014 not as a replacement for structure, but as a framework that embraces ambiguity.<\/p>\n<p>The key insight? Not every claim follows the same path. Some require immediate risk adjustment. Others stall on missing documentation. A few demand expert review. CMMN insurance claim modeling isn\u2019t about defining every step in advance \u2014 it\u2019s about setting up the right conditions to handle what comes next.<\/p>\n<p>This chapter walks through a real-world CMMN claim example to demonstrate how to design a flexible, event-driven case plan that adapts to actual business events. You&#8217;ll learn how to model actor responsibilities, document dependencies, approval thresholds, and risk triggers \u2014 all within a single, maintainable diagram.<\/p>\n<h2>Core Components of a CMMN Insurance Claim Model<\/h2>\n<h3>Defining the Case Plan Structure<\/h3>\n<p>Start by defining the case as a single, adaptive entity. The case plan model should reflect the claim lifecycle, not a rigid sequence. Use stages to group related tasks and events.<\/p>\n<p>Common stages for insurance claims include:<\/p>\n<ul>\n<li><strong>Claim Submission<\/strong> \u2013 Initial intake, data capture, policy validation<\/li>\n<li><strong>Document Collection<\/strong> \u2013 Gathering medical reports, police reports, repair estimates<\/li>\n<li><strong>Risk Assessment<\/strong> \u2013 Evaluating claim legitimacy and risk profile<\/li>\n<li><strong>Adjustment &amp; Approval<\/strong> \u2013 Determining settlement amount and authorization<\/li>\n<li><strong>Payout or Denial<\/strong> \u2013 Final decision and communication<\/li>\n<\/ul>\n<p>Each stage is a container for tasks and milestones. The power lies in not forcing every claim through every stage \u2014 some may skip directly to review if the risk is low.<\/p>\n<h3>Modeling Case Actors and Responsibilities<\/h3>\n<p>Insurance claims involve multiple actors: the claimant, adjuster, medical reviewer, risk analyst, and claims manager. In CMMN, these are modeled as <em>human services<\/em> or <em>actors<\/em> assigned to tasks.<\/p>\n<p>Assign tasks dynamically based on conditions. For example:<\/p>\n<ul>\n<li>If the claim amount exceeds $10,000 \u2192 assign to Senior Adjuster<\/li>\n<li>If medical report is pending \u2192 assign to Medical Reviewer<\/li>\n<li>If claim involves a totaled vehicle \u2192 trigger repair estimate task<\/li>\n<\/ul>\n<p>Use <em>case file items<\/em> to capture actor decisions. A <code>claimStatus<\/code> item can store whether the claim is \u201cPending\u201d, \u201cUnder Review\u201d, or \u201cApproved\u201d.<\/p>\n<h3>Using Sentries to Drive Dynamic Behavior<\/h3>\n<p>Sentries are the heartbeat of CMMN. They trigger task activation based on events or conditions.<\/p>\n<p>For example:<\/p>\n<ul>\n<li><strong>Entry Sentries<\/strong> on the <em>Risk Assessment<\/em> stage: Activate only when all documents are uploaded and policy is valid.<\/li>\n<li><strong>Event Sentries<\/strong>: If a medical report is submitted, activate the <em>Medical Review<\/em> task.<\/li>\n<li><strong>Conditional Sentries<\/strong>: If claim type is \u201caccident\u201d AND damage exceeds $5,000 \u2192 escalate to Risk Analyst.<\/li>\n<\/ul>\n<p>These sentries are not just triggers \u2014 they\u2019re decision points that adapt the case path in real time.<\/p>\n<h2>Designing a CMMN Claim Example: A Step-by-Step Workflow<\/h2>\n<h3>Step 1: Set Up the Case Plan<\/h3>\n<p>Create a case named <code>InsuranceClaim<\/code>. Define these stages:<\/p>\n<ol>\n<li>Claim Intake<\/li>\n<li>Document Collection<\/li>\n<li>Risk Adjustment<\/li>\n<li>Adjustment Approval<\/li>\n<li>Payout or Denial<\/li>\n<\/ol>\n<p>Each stage contains tasks and milestones. Use visual modeling tools like Visual Paradigm to organize the layout clearly.<\/p>\n<h3>Step 2: Define Case File Items<\/h3>\n<p>Create the following items in the case file:<\/p>\n<table>\n<tbody>\n<tr>\n<th>Item<\/th>\n<th>Type<\/th>\n<th>Usage<\/th>\n<\/tr>\n<tr>\n<td>claimAmount<\/td>\n<td>Number<\/td>\n<td>Determines risk level and approval path<\/td>\n<\/tr>\n<tr>\n<td>claimType<\/td>\n<td>String (e.g., accident, theft, fire)<\/td>\n<td>Triggers specific review rules<\/td>\n<\/tr>\n<tr>\n<td>status<\/td>\n<td>String (Pending, Under Review, Approved, Denied)<\/td>\n<td>Tracks progress<\/td>\n<\/tr>\n<tr>\n<td>documentsSubmitted<\/td>\n<td>Boolean<\/td>\n<td>Used in sentry conditions<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>These items are referenced in sentry conditions and task assignments.<\/p>\n<h3>Step 3: Implement Conditional Task Activation<\/h3>\n<p>Here\u2019s how a typical sentry might look:<\/p>\n<pre><code>\n[Stage: Risk Adjustment]\n  [Task: Risk Assessment]\n    Entry Condition: \n      claimAmount &gt; 5000 AND claimType = \"accident\"\n    Event Condition:\n      documentType = \"medicalReport\" AND status = \"submitted\"\n<\/code><\/pre>\n<p>When both conditions are met, the task activates. If the claim is under $5,000, the risk adjustment may be auto-approved.<\/p>\n<h3>Step 4: Handle Escalations via Milestones<\/h3>\n<p>Use milestones to define key decision points:<\/p>\n<ul>\n<li><strong>Milestone: Document Complete<\/strong> \u2013 All required documents are uploaded<\/li>\n<li><strong>Milestone: Risk Threshold Met<\/strong> \u2013 Claim exceeds $7,500<\/li>\n<li><strong>Milestone: Final Approval<\/strong> \u2013 All reviewers have signed off<\/li>\n<\/ul>\n<p>These milestones are not tasks. They\u2019re signals that help determine the next stage. For example, if <code>status = \"approved\"<\/code> and <code>milestone: Final Approval<\/code> is reached, the claim proceeds to payout.<\/p>\n<h2>Insurance Modeling CMMN: Real-World Trade-offs<\/h2>\n<h3>Flexibility vs. Control: Finding the Balance<\/h3>\n<p>One of the biggest challenges I\u2019ve seen is over-modeling. Teams want to anticipate every possible scenario, leading to complex sentry conditions and tangled logic.<\/p>\n<p>My advice: Model only what you can reasonably monitor. For example, don\u2019t create 15 different document types unless necessary. Use generic <code>document<\/code> items with <code>type<\/code> and <code>status<\/code> fields instead.<\/p>\n<p>Also, avoid setting too many entry conditions. If a stage requires 5 conditions, you risk blocking the case when one field is missing. Instead, use event-based activation for non-critical tasks.<\/p>\n<h3>When to Use CMMN vs. BPMN<\/h3>\n<p>Not every insurance task needs CMMN. For example:<\/p>\n<ul>\n<li><strong>BPMN<\/strong> is ideal for automated workflows like \u201cnotify customer after payout\u201d<\/li>\n<li><strong>CMMN<\/strong> is better for \u201cassess claim risk\u201d \u2014 where decisions depend on unstructured data<\/li>\n<\/ul>\n<p>Integrate both. Use CMMN for adaptive parts and BPMN for structured subprocesses.<\/p>\n<h3>Validating Your CMMN Model<\/h3>\n<p>Run simulations to test edge cases:<\/p>\n<ul>\n<li>What if the claimant submits only partial documents?<\/li>\n<li>What if the medical report arrives after the adjuster has already approved?<\/li>\n<li>How does the system handle duplicate claims?<\/li>\n<\/ul>\n<p>Use tools that support dynamic simulation to test multiple claim paths. Build test cases for high-risk scenarios \u2014 not just the ideal flow.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>What is a CMMN claim example used for in insurance?<\/h3>\n<p>A CMMN claim example demonstrates how to model adaptive case workflows \u2014 from claim submission to payout \u2014 using event-driven tasks and dynamic decision logic. It shows how different claim types, amounts, and documents trigger distinct paths.<\/p>\n<h3>How does CMMN modeling help with risk adjustment in insurance?<\/h3>\n<p>CMMN allows risk adjustment to be modeled as a conditional task triggered by claim amount, type, or document status. Sentries evaluate risk thresholds dynamically, enabling automatic escalation or manual review based on real-time data.<\/p>\n<h3>Can I use CMMN for both simple and complex claims?<\/h3>\n<p>Absolutely. CMMN handles both. Simple claims may follow a direct path: submit \u2192 verify \u2192 approve \u2192 payout. Complex claims activate multiple stages and tasks based on sentry conditions \u2014 such as medical review or legal hold.<\/p>\n<h3>Is CMMN insurance claim modeling suitable for automation?<\/h3>\n<p>Yes \u2014 but only when integrated with other standards. CMMN defines the adaptive logic. Use DMN for decision rules (e.g., \u201cIs claim eligible for settlement?\u201d) and BPMN for automated handoffs (e.g., \u201cNotify customer via email\u201d).<\/p>\n<h3>How do I avoid over-modeling in CMMN insurance claim workflows?<\/h3>\n<p>Start with the core stages. Add tasks and sentries only when business events require them. Use case file items to capture state rather than hardcoding conditions. Test with realistic scenarios \u2014 if you need more than 3\u20134 sentry conditions per task, re-evaluate the design.<\/p>\n<h3>What tools support CMMN modeling for insurance?<\/h3>\n<p>Visual Paradigm, Camunda, and IBM BPM support CMMN modeling. Choose one with simulation, validation, and integration capabilities. I recommend Visual Paradigm for its clean interface and strong CMMN support, especially when building insurance modeling CMMN diagrams.<\/p>\n<h2>Key Takeaways<\/h2>\n<ul>\n<li>CMMN insurance claim modeling thrives on adaptability, not linearity.<\/li>\n<li>Use stages, sentries, and case file items to manage complexity.<\/li>\n<li>Insurance modeling CMMN is not about automating every step \u2014 it\u2019s about enabling expert judgment.<\/li>\n<li>Integrate CMMN with DMN for decision logic and BPMN for execution.<\/li>\n<li>Test real-world scenarios to validate your model \u2014 not just ideal flows.<\/li>\n<\/ul>\n<p>Mastering CMMN insurance claim modeling isn\u2019t about memorizing rules. It\u2019s about building a responsive system that guides, not dictates \u2014 empowering adjusters, reviewers, and managers to do their best work when it matters most.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the most common misconceptions in insurance case [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":521,"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-523","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>CMMN Insurance Claim: Adaptive Case Modeling<\/title>\n<meta name=\"description\" content=\"Master CMMN insurance claim modeling with practical examples, decision logic, and real-world workflows. Learn to manage risk adjustment, document reviews, and approval flows using CMMN.\" \/>\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\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CMMN Insurance Claim: Adaptive Case Modeling\" \/>\n<meta property=\"og:description\" content=\"Master CMMN insurance claim modeling with practical examples, decision logic, and real-world workflows. Learn to manage risk adjustment, document reviews, and approval flows using CMMN.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/\",\"name\":\"CMMN Insurance Claim: Adaptive Case Modeling\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#website\"},\"datePublished\":\"2026-02-25T10:19:29+00:00\",\"description\":\"Master CMMN insurance claim modeling with practical examples, decision logic, and real-world workflows. Learn to manage risk adjustment, document reviews, and approval flows using CMMN.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CMMN Explained: A Practical Guide for Modelers\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Real-World Case Studies and Exercises\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Insurance Claim and Risk Adjustment\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/\",\"name\":\"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/cn\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#organization\",\"name\":\"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/wp-content\/uploads\/sites\/3\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/cn\/wp-content\/uploads\/sites\/3\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CMMN Insurance Claim: Adaptive Case Modeling","description":"Master CMMN insurance claim modeling with practical examples, decision logic, and real-world workflows. Learn to manage risk adjustment, document reviews, and approval flows using CMMN.","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\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/","og_locale":"zh_CN","og_type":"article","og_title":"CMMN Insurance Claim: Adaptive Case Modeling","og_description":"Master CMMN insurance claim modeling with practical examples, decision logic, and real-world workflows. Learn to manage risk adjustment, document reviews, and approval flows using CMMN.","og_url":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/","og_site_name":"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587","twitter_card":"summary_large_image","twitter_misc":{"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"6 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/","url":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/","name":"CMMN Insurance Claim: Adaptive Case Modeling","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/#website"},"datePublished":"2026-02-25T10:19:29+00:00","description":"Master CMMN insurance claim modeling with practical examples, decision logic, and real-world workflows. Learn to manage risk adjustment, document reviews, and approval flows using CMMN.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/cmmn-insurance-claim-adaptive-modeling\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/cn\/"},{"@type":"ListItem","position":2,"name":"CMMN Explained: A Practical Guide for Modelers","item":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/"},{"@type":"ListItem","position":3,"name":"Real-World Case Studies and Exercises","item":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/cmmn-explained-practical-guide-for-modelers\/cmmn-case-study\/"},{"@type":"ListItem","position":4,"name":"Insurance Claim and Risk Adjustment"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/cn\/#website","url":"https:\/\/skills.visual-paradigm.com\/cn\/","name":"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/cn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/cn\/#organization","name":"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587","url":"https:\/\/skills.visual-paradigm.com\/cn\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/skills.visual-paradigm.com\/cn\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/cn\/wp-content\/uploads\/sites\/3\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/cn\/wp-content\/uploads\/sites\/3\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs\/523","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs\/523\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs\/521"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/media?parent=523"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/doc_tag?post=523"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}