{"id":407,"date":"2026-02-25T10:17:27","date_gmt":"2026-02-25T10:17:27","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/"},"modified":"2026-02-25T10:17:27","modified_gmt":"2026-02-25T10:17:27","slug":"bpmn-parallel-flow-conditional-gateways","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/","title":{"rendered":"Parallel and Conditional Flows Explained"},"content":{"rendered":"<p>When you see a team pause mid-conversation to clarify whether a decision point uses AND or XOR, you know they\u2019ve moved beyond copying templates. They\u2019re thinking\u2014truly thinking\u2014about logic flow. That moment of clarity is where real mastery begins. It\u2019s not about drawing shapes. It\u2019s about understanding how decisions split and merge, and when each type of gateway applies.<\/p>\n<p>My advice? Start with one rule: every decision must serve a purpose. Don\u2019t add gateways just because they \u201clook right.\u201d Let every branching point answer a real question\u2014what\u2019s the condition? What happens if it\u2019s true or false? That mindset transforms flow diagrams from artwork into actionable models.<\/p>\n<p>Here, you\u2019ll learn how to use BPMN gateway patterns to represent parallel and conditional flows with precision. You\u2019ll see real examples, avoid common mistakes, and gain the confidence to model complex business logic\u2014without overcomplicating it.<\/p>\n<h2>Understanding Gateway Types: AND, OR, and XOR<\/h2>\n<p>Gateways are the decision points of your BPMN diagram. They determine how control flows from one step to the next, based on conditions or triggers.<\/p>\n<h3>AND Gateway: When All Paths Must Execute<\/h3>\n<p>An AND gateway splits flow into two or more parallel branches. All branches must complete before the process can continue.<\/p>\n<p>This is ideal for tasks that must occur simultaneously, like initiating a background check and sending a welcome email after a new hire onboards.<\/p>\n<ul>\n<li>Use AND gateway when every condition must be true.<\/li>\n<li>Common in parallel processing, approvals, or system triggers.<\/li>\n<li>Always use the <strong>parallel flow BPMN<\/strong> pattern when multiple tasks start at once.<\/li>\n<\/ul>\n<h3>OR Gateway: When Any Path May Trigger<\/h3>\n<p>An OR gateway lets flow continue if any one condition is met. It\u2019s less common and more complex because it requires careful handling of implicit or explicit conditions.<\/p>\n<p>Use OR only when you\u2019re explicitly modeling a choice where only one path should execute\u2014like a customer choosing \u201crefund\u201d or \u201creplace\u201d in a support case.<\/p>\n<ul>\n<li>OR gateways are not used for simple yes\/no decisions.<\/li>\n<li>They require clear, documented conditions to avoid ambiguity.<\/li>\n<li>Best reserved for complex decision logic where exclusivity is intentional.<\/li>\n<\/ul>\n<h3>XOR Gateway: When Only One Path May Proceed<\/h3>\n<p>XOR stands for \u201cexclusive.\u201d Only one outgoing sequence flow can trigger, based on a condition. It\u2019s the most common type for decision points.<\/p>\n<p>Use XOR when you need a strict choice: \u201cIs the customer active?\u201d \u2192 Yes \u2192 Continue. No \u2192 Escalate.<\/p>\n<ul>\n<li>Use XOR for every typical decision: yes\/no, pass\/fail, available\/unavailable.<\/li>\n<li>Always label the outgoing flow with the condition (e.g., \u201cYes\u201d or \u201cCustomer Active\u201d).<\/li>\n<li>Never use XOR for parallel execution.<\/li>\n<\/ul>\n<h2>Mastering Sequence Flow BPMN: From Start to End<\/h2>\n<p>Sequence flow BPMN defines the order in which activities happen. It\u2019s the backbone of your diagram.<\/p>\n<p>Each flow starts at an event, activity, or gateway and connects to the next. But not all flows are equal\u2014some are conditional, some are sequential.<\/p>\n<h3>Rules for Valid Sequence Flow<\/h3>\n<ul>\n<li>Sequence flow should always go from left to right or top to bottom for readability.<\/li>\n<li>Never draw flows that cross without a clear junction point.<\/li>\n<li>Every sequence flow must connect to a valid element (event, task, gateway).<\/li>\n<li>Always use solid lines with arrowheads to represent flow.<\/li>\n<\/ul>\n<h3>Common Mistakes in Sequence Flow<\/h3>\n<ul>\n<li>Connecting a gateway directly to a task without a flow.<\/li>\n<li>Using multiple gateways to split a task that should be sequential.<\/li>\n<li>Forgetting to label conditions on XOR gateways.<\/li>\n<\/ul>\n<p>When a flow feels tangled or hard to trace, ask: \u201cCan someone new understand this in less than 30 seconds?\u201d If not, simplify.<\/p>\n<h2>Practical Example: Onboarding a New Employee<\/h2>\n<p>Let\u2019s walk through a real-life scenario using BPMN gateways.<\/p>\n<ol>\n<li>Start event: \u201cNew Employee Hired\u201d<\/li>\n<li>Task: \u201cSet up email and access\u201d<\/li>\n<li>AND gateway: Split flow into two parallel paths<\/li>\n<li>Path 1: \u201cRun background check\u201d<\/li>\n<li>Path 2: \u201cSend welcome email\u201d<\/li>\n<li>Both paths converge at an AND gateway<\/li>\n<li>Final task: \u201cAssign onboarding buddy\u201d<\/li>\n<li>End event: \u201cOnboarding Complete\u201d<\/li>\n<\/ol>\n<p>This example shows a clean parallel flow BPMN design. Both tasks run independently but must finish before the next step begins.<\/p>\n<h2>When to Use Which Gateway: Decision Tree<\/h2>\n<p>Choosing the right gateway isn\u2019t guesswork. Use this decision tree to guide your design.<\/p>\n<table border=\"1\" cellpadding=\"4\" cellspacing=\"0\">\n<tbody>\n<tr>\n<th>Question<\/th>\n<th>Answer<\/th>\n<th>Gateway Type<\/th>\n<\/tr>\n<tr>\n<td>Do all branches need to complete before continuing?<\/td>\n<td>Yes<\/td>\n<td>AND<\/td>\n<\/tr>\n<tr>\n<td>Do only one path need to execute?<\/td>\n<td>Yes<\/td>\n<td>XOR<\/td>\n<\/tr>\n<tr>\n<td>Can multiple paths trigger, but not all?<\/td>\n<td>Yes<\/td>\n<td>OR (use with caution)<\/td>\n<\/tr>\n<tr>\n<td>Is the decision based on a single true\/false condition?<\/td>\n<td>Yes<\/td>\n<td>XOR<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>This table is your quick reference. Use it to check your gateways before finalizing your diagram.<\/p>\n<h2>Best Practices for BPMN Gateway Patterns<\/h2>\n<p>Even experienced modellers make small mistakes. Avoid these traps:<\/p>\n<ul>\n<li>Never use AND gateways to model sequential logic. That\u2019s what sequence flow is for.<\/li>\n<li>Always label XOR conditions clearly. \u201cYes\u201d or \u201cNo\u201d is not enough\u2014use \u201cCustomer Verified\u201d or \u201cCheck Passed\u201d.<\/li>\n<li>Keep gateways at the intersection of flows\u2014don\u2019t place them in the middle of a long path.<\/li>\n<li>Use swimlanes to assign responsibilities for each flow path.<\/li>\n<li>Validate your model using Visual Paradigm\u2019s built-in checker to catch unconnected flows or missing gateways.<\/li>\n<\/ul>\n<h2>Frequently Asked Questions<\/h2>\n<h3>What\u2019s the difference between AND and XOR gateways in BPMN?<\/h3>\n<p>AND gateways split flow into multiple branches that all must complete before continuing. XOR gateways allow only one outgoing path to execute based on a condition. Use AND for parallel work, XOR for exclusive choices.<\/p>\n<h3>Can I use BPMN conditional flow without a gateway?<\/h3>\n<p>No. Sequence flow BPMN only connects elements. Conditional logic requires a gateway to determine which flow to take. Without a gateway, the flow is always sequential.<\/p>\n<h3>Why use OR gateways if XOR is more common?<\/h3>\n<p>OR gateways are used when multiple conditions could apply and flow should continue if any is true. But they\u2019re rare and risky\u2014ambiguity can lead to incorrect execution. Use XOR or AND instead unless you have a clear need.<\/p>\n<h3>How do I model parallel flow BPMN in Visual Paradigm?<\/h3>\n<p>Use the AND gateway symbol. Drag the gateway after a task, then connect two or more outgoing flows to separate tasks. The model will auto-validate that both branches are connected to the same AND join point.<\/p>\n<h3>Do gateways always need to be followed by a task?<\/h3>\n<p>No. A gateway can connect to another gateway, event, or even a sub-process. But ensure the logic makes sense. For example, an AND split can lead to two OR gateways if the conditions are independent.<\/p>\n<h3>What happens if I forget to close a parallel flow BPMN?<\/h3>\n<p>If a process starts a parallel flow with an AND gateway but doesn\u2019t have a matching AND join, the model is invalid. The workflow can\u2019t proceed correctly, and tools like Visual Paradigm will flag it as an error. Always pair every AND split with an AND join.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you see a team pause mid-conversation to clarify w [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":402,"menu_order":4,"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-407","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>BPMN Parallel Flow: Master Conditional &amp; Parallel Logic<\/title>\n<meta name=\"description\" content=\"Learn how to model BPMN parallel flow and conditional logic using AND, OR, and XOR gateways. Master sequence flow BPMN and gateway patterns for accurate, professional process diagrams.\" \/>\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\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BPMN Parallel Flow: Master Conditional &amp; Parallel Logic\" \/>\n<meta property=\"og:description\" content=\"Learn how to model BPMN parallel flow and conditional logic using AND, OR, and XOR gateways. Master sequence flow BPMN and gateway patterns for accurate, professional process diagrams.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/\" \/>\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\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/\",\"name\":\"BPMN Parallel Flow: Master Conditional & Parallel Logic\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#website\"},\"datePublished\":\"2026-02-25T10:17:27+00:00\",\"description\":\"Learn how to model BPMN parallel flow and conditional logic using AND, OR, and XOR gateways. Master sequence flow BPMN and gateway patterns for accurate, professional process diagrams.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"BPMN Fundamentals for Beginners\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building Realistic Process Models\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Parallel and Conditional Flows Explained\"}]},{\"@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":"BPMN Parallel Flow: Master Conditional & Parallel Logic","description":"Learn how to model BPMN parallel flow and conditional logic using AND, OR, and XOR gateways. Master sequence flow BPMN and gateway patterns for accurate, professional process diagrams.","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\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/","og_locale":"zh_CN","og_type":"article","og_title":"BPMN Parallel Flow: Master Conditional & Parallel Logic","og_description":"Learn how to model BPMN parallel flow and conditional logic using AND, OR, and XOR gateways. Master sequence flow BPMN and gateway patterns for accurate, professional process diagrams.","og_url":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/","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\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/","url":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/","name":"BPMN Parallel Flow: Master Conditional & Parallel Logic","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/#website"},"datePublished":"2026-02-25T10:17:27+00:00","description":"Learn how to model BPMN parallel flow and conditional logic using AND, OR, and XOR gateways. Master sequence flow BPMN and gateway patterns for accurate, professional process diagrams.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/bpmn-parallel-flow-conditional-gateways\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/cn\/"},{"@type":"ListItem","position":2,"name":"BPMN Fundamentals for Beginners","item":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/"},{"@type":"ListItem","position":3,"name":"Building Realistic Process Models","item":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/bpmn-fundamentals-for-beginners\/bpmn-process-modeling\/"},{"@type":"ListItem","position":4,"name":"Parallel and Conditional Flows Explained"}]},{"@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\/407","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\/407\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs\/402"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/media?parent=407"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/doc_tag?post=407"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}