{"id":515,"date":"2026-02-25T10:19:26","date_gmt":"2026-02-25T10:19:26","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/"},"modified":"2026-02-25T10:19:26","modified_gmt":"2026-02-25T10:19:26","slug":"cmmn-step-by-step-build-first-case","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/","title":{"rendered":"Building Your First Case Step-by-Step"},"content":{"rendered":"<p>Creating your first CMMN model isn\u2019t about memorizing syntax\u2014it\u2019s about learning to think in terms of adaptive workflows. Most beginners assume CMMN is just another flowchart, but it isn\u2019t. It\u2019s a framework for managing complex, knowledge-intensive work where tasks emerge based on events, decisions, and human judgment.<\/p>\n<p>What surprises most new modelers is that CMMN doesn\u2019t demand a rigid path. Instead, it allows multiple routes, delayed triggers, and state-based progression\u2014exactly what you need when handling cases like insurance claims, support tickets, or legal reviews.<\/p>\n<p>In this guide, you\u2019ll walk through building a real CMMN model in Visual Paradigm, starting from a blank canvas. By the end, you\u2019ll have a working case plan that reflects real-world unpredictability, all guided by a consistent, methodical approach. No shortcuts. No fluff. Just clarity.<\/p>\n<h2>Step 1: Start with a Real-World Scenario<\/h2>\n<p>Begin with a clear, concrete problem. A common CMMN beginner example is a <strong>customer support ticket handling case<\/strong>. The goal is to manage a request that evolves based on incoming information\u2014escalations, missing documents, or new user feedback.<\/p>\n<p>This case is adaptive. You don\u2019t know upfront how many steps it will take or what will trigger the next action. That\u2019s where CMMN excels.<\/p>\n<ul>\n<li>Identify the <strong>case type<\/strong>\u2014e.g., &#8220;Customer Support Ticket.&#8221;<\/li>\n<li>Name the <strong>case plan<\/strong>\u2014e.g., &#8220;Support Case Management.&#8221;<\/li>\n<li>Decide the <strong>initial state<\/strong>\u2014e.g., &#8220;New Ticket Received.&#8221;<\/li>\n<\/ul>\n<p>Use Visual Paradigm\u2019s <strong>New Case Plan Model<\/strong> wizard. Select the <strong>CMMN<\/strong> profile, and you\u2019re ready to begin.<\/p>\n<h2>Step 2: Define the Case Structure with Stages and Tasks<\/h2>\n<p>CMMN organizes work into <strong>stages<\/strong>\u2014high-level phases of a case. Think of them as milestones, not fixed steps.<\/p>\n<p>For our support ticket case, define these stages:<\/p>\n<ol>\n<li><strong>Ticket Received<\/strong> \u2013 Initial intake and triage.<\/li>\n<li><strong>Information Gathering<\/strong> \u2013 Request missing data from the user.<\/li>\n<li><strong>Problem Analysis<\/strong> \u2013 Technical investigation.<\/li>\n<li><strong>Resolution and Follow-Up<\/strong> \u2013 Fix deployment and user confirmation.<\/li>\n<\/ol>\n<p>Open the <strong>Case Plan Model<\/strong> and drag the <strong>Stage<\/strong> element onto the canvas. Label each one clearly. Then, within each stage, add relevant <strong>Human Task<\/strong> or <strong>Business Process Task<\/strong> elements.<\/p>\n<p>Example: In &#8220;Information Gathering,&#8221; add a task called &#8220;Request missing details via email.&#8221; Set it as a <strong>Manual Task<\/strong>\u2014you\u2019ll assign it to a support agent later.<\/p>\n<h3>Choose the Right Task Type<\/h3>\n<p>Not all tasks are the same. Use these guidelines:<\/p>\n<table>\n<tbody>\n<tr>\n<th>Task Type<\/th>\n<th>When to Use<\/th>\n<th>Example<\/th>\n<\/tr>\n<tr>\n<td>Human Task<\/td>\n<td>Requires person input<\/td>\n<td>Review customer document<\/td>\n<\/tr>\n<tr>\n<td>Business Process Task<\/td>\n<td>Automated subprocess<\/td>\n<td>Run automated diagnostic script<\/td>\n<\/tr>\n<tr>\n<td>Service Task<\/td>\n<td>Integration with external system<\/td>\n<td>Fetch user account from CRM<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>When in doubt, start with a Human Task. It\u2019s the most flexible and reflects real-world dependency.<\/p>\n<h2>Step 3: Add Events with Sentries<\/h2>\n<p>Sentries are the heartbeat of CMMN. They define when a stage or task becomes <strong>available<\/strong> (entry criteria) or when a case can <strong>progress<\/strong> (exit criteria).<\/p>\n<p>For example, in &#8220;Information Gathering,&#8221; the stage shouldn\u2019t start until the user has provided their email and issue description.<\/p>\n<p>Right-click the <strong>Stage<\/strong> \u2192 <strong>Add Entry Criterion<\/strong>. Set the condition to:<\/p>\n<pre><code>ticket.email != null AND ticket.issueDescription != null<\/code><\/pre>\n<p>Now, the task won\u2019t become active until both values are present. This is a <strong>direct way to model dynamic triggers<\/strong>\u2014no need to predefine the path.<\/p>\n<p>You can also use <strong>event-based sentries<\/strong>. For instance, add an event such as \u201cEmail Received from User\u201d to trigger the next task. This makes your model truly reactive to real-world changes.<\/p>\n<h3>Best Practices for Sentries<\/h3>\n<ul>\n<li>Use <strong>simple Boolean conditions<\/strong> for clarity. Avoid complex logic in entry criteria.<\/li>\n<li>Test sentries with sample data\u2014many beginners miss that a sentry can be false even when the case is active.<\/li>\n<li>Combine conditions with <code>AND<\/code> and <code>OR<\/code>\u2014but keep them readable.<\/li>\n<\/ul>\n<h2>Step 4: Model Case File Items<\/h2>\n<p>The <strong>Case File<\/strong> is where all data about the case lives. It\u2019s not just a list\u2014it\u2019s a dynamic repository that evolves as tasks complete.<\/p>\n<p>Define key items:<\/p>\n<ul>\n<li><strong>Customer Name<\/strong> \u2013 String, input from user.<\/li>\n<li><strong>Email Address<\/strong> \u2013 String, validated.<\/li>\n<li><strong>Issue Description<\/strong> \u2013 Text, updated during investigation.<\/li>\n<li><strong>Resolution Status<\/strong> \u2013 Enum: \u201cPending,\u201d \u201cResolved,\u201d \u201cEscalated.\u201d<\/li>\n<\/ul>\n<p>In Visual Paradigm, go to the <strong>Case File<\/strong> section and create these as <strong>Item Definition<\/strong> elements. Then link them to the appropriate tasks.<\/p>\n<p>Example: Associate the \u201cEmail Address\u201d item with the \u201cRequest missing details\u201d task. When the user replies, update the item directly.<\/p>\n<h3>Data Flow Tip<\/h3>\n<p>Don\u2019t expose raw case file items in every task. Only reference what\u2019s needed. This keeps the model clean and maintainable\u2014especially as case complexity grows.<\/p>\n<h2>Step 5: Validate and Test the Model<\/h2>\n<p>Now that the structure is in place, validate your CMMN model for consistency. Visual Paradigm\u2019s built-in <strong>Validation Rules<\/strong> will catch issues like:<\/p>\n<ul>\n<li>Unconnected tasks.<\/li>\n<li>Missing sentry conditions.<\/li>\n<li>Circular dependencies.<\/li>\n<\/ul>\n<p>Run a <strong>Simulation<\/strong> to test real-world scenarios. For example:<\/p>\n<ol>\n<li>Simulate a new ticket with no email.<\/li>\n<li>Observe whether \u201cInformation Gathering\u201d stays inactive.<\/li>\n<li>Add the email, and verify the stage becomes available.<\/li>\n<li>Check that the task triggers only when all entry criteria are met.<\/li>\n<\/ol>\n<p>Simulation is where your CMMN modeling guide earns its value. It turns theory into tangible confidence.<\/p>\n<h2>Common Pitfalls and How to Avoid Them<\/h2>\n<h3>Over-Engineering the Case File<\/h3>\n<p>Beginners often add every possible field to the case file. Avoid this. Only include data that\u2019s actually used in tasks or sentries. Too many items lead to confusion and maintenance overhead.<\/p>\n<h3>Misusing Stages as Fixed Steps<\/h3>\n<p>Stages are not milestones you must follow in order. They can be revisited. If a case escalates, you might return to \u201cInformation Gathering.\u201d Treat stages as <strong>state containers<\/strong>, not rigid phases.<\/p>\n<h3>Forgetting Exit Criteria<\/h3>\n<p>Each stage should have an exit condition. If missing, the case can\u2019t progress beyond that point. Always define what completes a stage\u2014usually a task completion or a specific event.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>How do I start a CMMN beginner example in Visual Paradigm?<\/h3>\n<p>Begin with a new case plan model. Define a clear case name (e.g., &#8220;Support Ticket&#8221;), add stages that represent key phases, and use human tasks with event-based sentries. Focus on one scenario at a time. Keep it simple.<\/p>\n<h3>What\u2019s the difference between a CMMN task and a BPMN task?<\/h3>\n<p>BPMN tasks are part of a fixed flow. CMMN tasks are <strong>conditional<\/strong>\u2014they activate only when their sentry conditions are met. CMMN tasks are event-driven and adaptive; BPMN tasks are sequential and predictable.<\/p>\n<h3>Can I use CMMN without automation?<\/h3>\n<p>Absolutely. CMMN is designed for human-centric, knowledge-intensive work. You can model case logic without automation\u2014just define tasks, stages, and triggers. The model becomes a visual workflow guide for teams, not a runtime engine.<\/p>\n<h3>How do I handle case escalation in CMMN?<\/h3>\n<p>Use a <strong>milestone<\/strong> to represent escalation. For example, create a milestone named \u201cEscalated to Senior Support\u201d with an event-based sentry like \u201cticket.age &gt; 72 hours AND resolutionStatus == &#8216;Pending&#8217;.\u201d Then, add a task under a new stage like \u201cEscalated Review.\u201d<\/p>\n<h3>Why should I follow a CMMN modeling guide instead of using BPMN?<\/h3>\n<p>BPMN excels for structured, predictable processes. CMMN shines for cases where the path isn\u2019t known in advance\u2014like legal reviews, insurance claims, or support tickets. Use CMMN when you need flexibility, event-driven control, and human judgment at scale.<\/p>\n<h3>Is simulation necessary for a simple CMMN model?<\/h3>\n<p>No, but it\u2019s highly recommended. Even simple models can hide logic flaws. Simulation helps you test edge cases\u2014like what happens if the user never replies?\u2014and ensures your sentries behave as intended.<\/p>\n<h2>Final Thoughts<\/h2>\n<p>Building your first CMMN case step by step is less about tools and more about mindset. You\u2019re learning to model uncertainty\u2014not eliminate it. The goal isn\u2019t to force a straight line. It\u2019s to create a system where decisions emerge from context, events, and human judgment.<\/p>\n<p>Each task, sentry, and case file item builds a living model. Not a static diagram. A guide that adapts as real business events unfold.<\/p>\n<p>Now that you\u2019ve completed this CMMN step by step journey, you\u2019re ready to model your next case\u2014more confidently, more clearly, and with less fear of the unknown.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Creating your first  [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":513,"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-515","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 Step by Step: Build Your First Case<\/title>\n<meta name=\"description\" content=\"Master CMMN step by step with this practical, hands-on guide. Learn to build your first case model in Visual Paradigm using real-world examples and expert modeling techniques.\" \/>\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\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/\" \/>\n<meta property=\"og:locale\" content=\"zh_TW\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CMMN Step by Step: Build Your First Case\" \/>\n<meta property=\"og:description\" content=\"Master CMMN step by step with this practical, hands-on guide. Learn to build your first case model in Visual Paradigm using real-world examples and expert modeling techniques.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9810\u4f30\u95b1\u8b80\u6642\u9593\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 \u5206\u9418\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/\",\"name\":\"CMMN Step by Step: Build Your First Case\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#website\"},\"datePublished\":\"2026-02-25T10:19:26+00:00\",\"description\":\"Master CMMN step by step with this practical, hands-on guide. Learn to build your first case model in Visual Paradigm using real-world examples and expert modeling techniques.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/#breadcrumb\"},\"inLanguage\":\"zh-TW\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/tw\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CMMN Explained: A Practical Guide for Modelers\",\"item\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Practical Modeling Series\",\"item\":\"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Building Your First Case Step-by-Step\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/tw\/\",\"name\":\"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/tw\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-TW\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#organization\",\"name\":\"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587\",\"url\":\"https:\/\/skills.visual-paradigm.com\/tw\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-TW\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/tw\/wp-content\/uploads\/sites\/2\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/tw\/wp-content\/uploads\/sites\/2\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/tw\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CMMN Step by Step: Build Your First Case","description":"Master CMMN step by step with this practical, hands-on guide. Learn to build your first case model in Visual Paradigm using real-world examples and expert modeling techniques.","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\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/","og_locale":"zh_TW","og_type":"article","og_title":"CMMN Step by Step: Build Your First Case","og_description":"Master CMMN step by step with this practical, hands-on guide. Learn to build your first case model in Visual Paradigm using real-world examples and expert modeling techniques.","og_url":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/","og_site_name":"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587","twitter_card":"summary_large_image","twitter_misc":{"\u9810\u4f30\u95b1\u8b80\u6642\u9593":"7 \u5206\u9418"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/","url":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/","name":"CMMN Step by Step: Build Your First Case","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/tw\/#website"},"datePublished":"2026-02-25T10:19:26+00:00","description":"Master CMMN step by step with this practical, hands-on guide. Learn to build your first case model in Visual Paradigm using real-world examples and expert modeling techniques.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/#breadcrumb"},"inLanguage":"zh-TW","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/cmmn-step-by-step-build-first-case\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/tw\/"},{"@type":"ListItem","position":2,"name":"CMMN Explained: A Practical Guide for Modelers","item":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/"},{"@type":"ListItem","position":3,"name":"Practical Modeling Series","item":"https:\/\/skills.visual-paradigm.com\/tw\/docs\/cmmn-explained-practical-guide-for-modelers\/practical-modeling-series\/"},{"@type":"ListItem","position":4,"name":"Building Your First Case Step-by-Step"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/tw\/#website","url":"https:\/\/skills.visual-paradigm.com\/tw\/","name":"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/tw\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/tw\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-TW"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/tw\/#organization","name":"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587","url":"https:\/\/skills.visual-paradigm.com\/tw\/","logo":{"@type":"ImageObject","inLanguage":"zh-TW","@id":"https:\/\/skills.visual-paradigm.com\/tw\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/tw\/wp-content\/uploads\/sites\/2\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/tw\/wp-content\/uploads\/sites\/2\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills \u7e41\u9ad4\u4e2d\u6587"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/tw\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/515","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/515\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/513"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/media?parent=515"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/doc_tag?post=515"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}