{"id":396,"date":"2026-02-25T10:17:21","date_gmt":"2026-02-25T10:17:21","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/"},"modified":"2026-02-25T10:17:21","modified_gmt":"2026-02-25T10:17:21","slug":"bpmn-diagram-structure","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/","title":{"rendered":"Anatomy of a BPMN Diagram"},"content":{"rendered":"<p>Most people think BPMN is about making pretty pictures. The truth? It\u2019s about structure. The moment you abandon consistent layout and flow rules, your diagrams become confusing, even if they look correct. That\u2019s why the first rule of BPMN isn\u2019t \u201cdraw it neatly\u201d\u2014it\u2019s \u201cunderstand how it holds together.\u201d Every BPMN diagram follows a grammar, just like a sentence. Events, activities, gateways\u2014they\u2019re not random shapes. They\u2019re pieces of a system that must connect logically, unambiguously, and with purpose.<\/p>\n<p>I\u2019ve seen diagrams where the flow jumps between lanes without reason, or where gateways have no clear exit. These aren\u2019t mistakes\u2014they\u2019re symptoms of a deeper issue: not understanding the BPMN model structure. Once you learn how the diagram is built from the ground up, you\u2019ll stop guessing and start modeling with confidence.<\/p>\n<p>This chapter teaches you how to read and build BPMN diagrams that work\u2014not just look good. You\u2019ll understand process diagram anatomy, see how BPMN components interact, and recognize what makes a model valid. By the end, you\u2019ll be able to create diagrams that communicate clearly across teams, regardless of technical background.<\/p>\n<h2>Core Elements of a BPMN Diagram<\/h2>\n<p>BPMN diagrams are built from a small set of essential elements. They may seem simple, but their combinations form the foundation of every process map. Let\u2019s break them down.<\/p>\n<h3>Events: Triggers and Outcomes<\/h3>\n<p>Events mark the start, end, or interruption of a process. They\u2019re shown as circles and come in three types:<\/p>\n<ul>\n<li><strong>Start Event<\/strong> \u2013 Represents the beginning of a process. It can be a message, timer, or error trigger.<\/li>\n<li><strong>Intermediate Event<\/strong> \u2013 Occurs during the process. It may signal an exception, a time delay, or a message.<\/li>\n<li><strong>End Event<\/strong> \u2013 Marks the completion of the process. It can be a normal end, an error, or a cancellation.<\/li>\n<\/ul>\n<p>Each event has a symbol. For example, a start event with a circle and a clock means \u201cstart on a timer,\u201d while a circle with a bell means \u201cstart on message receipt.\u201d These distinctions are vital\u2014misidentifying a start event can break the entire logic.<\/p>\n<h3>Activities: Work to Be Done<\/h3>\n<p>Activities represent tasks or work items. They\u2019re shown as rounded rectangles and are the backbone of any process.<\/p>\n<p>There are three main types:<\/p>\n<ol>\n<li><strong>Task<\/strong> \u2013 A single work item, like \u201cVerify customer ID.\u201d<\/li>\n<li><strong>Sub-Process<\/strong> \u2013 A group of tasks that can be collapsed or expanded. Use this to manage complexity.<\/li>\n<li><strong>Transaction<\/strong> \u2013 A special type of sub-process that can be interrupted by events.<\/li>\n<\/ol>\n<p>When modeling, always ask: Is this a single action, or a sequence of steps? If it\u2019s multiple steps, consider using a sub-process. This keeps the top-level diagram clean and readable.<\/p>\n<h3>Gateways: Decision Points<\/h3>\n<p>Gateways control the flow. They are diamond-shaped and determine how the process continues based on conditions.<\/p>\n<p>Three main types:<\/p>\n<ul>\n<li><strong>Exclusive (XOR)<\/strong> \u2013 Only one path is taken.<\/li>\n<li><strong>Parallel (AND)<\/strong> \u2013 All outgoing paths are taken.<\/li>\n<li><strong>Inclusive (OR)<\/strong> \u2013 One or more paths can be taken.<\/li>\n<\/ul>\n<p>Use XOR for choices like \u201cIs the customer a new user?\u201d Use AND when multiple approvals are required. OR is ideal when some conditions may apply, but not all.<\/p>\n<h2>Structural Layout: The Grammar of BPMN<\/h2>\n<p>Just like a sentence has subject, verb, and object, a BPMN diagram has a structure that must follow rules. These aren\u2019t arbitrary\u2014they\u2019re designed to prevent ambiguity.<\/p>\n<h3>Process Flow: From Start to End<\/h3>\n<p>Every BPMN diagram must begin with a start event and end with an end event. Sequence flows\u2014solid lines with arrows\u2014connect elements in the order they occur.<\/p>\n<p>Start with one element: the start event. Then add activities and gateways in logical order. Only when the flow reaches an end event is the process complete. If you see a process with no end event, or multiple start events, it\u2019s invalid.<\/p>\n<h3>Swimlanes: Assigning Responsibility<\/h3>\n<p>Swimlanes (or lanes) divide the diagram by role, department, or participant. They\u2019re essential when modeling interactions across teams.<\/p>\n<p>Each lane contains activities assigned to a specific actor. For example, one lane might say \u201cCustomer,\u201d another \u201cSupport Team.\u201d This makes responsibility clear, especially in collaborative processes like order fulfillment or loan approvals.<\/p>\n<p>Always label lanes clearly. A swimlane without a label is like a department without a name\u2014useless.<\/p>\n<h3>Message Flow: Communication Across Diagrams<\/h3>\n<p>Message flows represent communication between participants in a collaboration diagram. They\u2019re dashed lines with an open arrow.<\/p>\n<p>Use message flow when a process sends a message to another process. For example, \u201cSend order confirmation\u201d from sales to delivery. This shows external communication, not internal flow.<\/p>\n<p>Remember: use sequence flow for internal process steps. Use message flow for inter-process communication.<\/p>\n<h2>Key Rules for Valid BPMN Model Structure<\/h2>\n<p>Even with the right elements, a diagram isn\u2019t valid without proper structure. These rules are non-negotiable.<\/p>\n<ul>\n<li><strong>One start event per process<\/strong> \u2013 A process can only start once.<\/li>\n<li><strong>At least one end event<\/strong> \u2013 Every process must end.<\/li>\n<li><strong>Sequence flows must connect<\/strong> \u2013 Every activity or event must be reachable from a sequence flow.<\/li>\n<li><strong>Gateways must have at least two outgoing flows<\/strong> \u2013 A gateway with only one output breaks logic.<\/li>\n<li><strong>No unconnected elements<\/strong> \u2013 Everything must be part of the flow.<\/li>\n<\/ul>\n<p>These aren\u2019t suggestions. They\u2019re the foundation of BPMN. Break them, and your model becomes ambiguous or impossible to execute.<\/p>\n<h2>How to Read a BPMN Diagram: A Step-by-Step Guide<\/h2>\n<p>Reading a BPMN diagram isn\u2019t about memorizing symbols\u2014it\u2019s about following the logic. Here\u2019s how to approach any diagram:<\/p>\n<ol>\n<li><strong>Identify the start event<\/strong> \u2013 Find the beginning. What triggers the process?<\/li>\n<li><strong>Follow the sequence flow<\/strong> \u2013 Trace each step. What must happen next?<\/li>\n<li><strong>Check gateways<\/strong> \u2013 At every diamond, ask: \u201cWhat determines which path to take?\u201d<\/li>\n<li><strong>Locate end events<\/strong> \u2013 Where does the process conclude? Is it a normal end, error, or cancellation?<\/li>\n<li><strong>Review swimlanes<\/strong> \u2013 Who is responsible for each step?<\/li>\n<\/ol>\n<p>Apply this checklist to any diagram, and you\u2019ll avoid misreading workflows. It\u2019s the same method I use when reviewing client models\u2014no exceptions.<\/p>\n<h2>BPMN Components: A Summary Table<\/h2>\n<p>Here\u2019s a quick reference for the core BPMN components.<\/p>\n<table>\n<tbody>\n<tr>\n<th>Component<\/th>\n<th>Visual<\/th>\n<th>Use Case<\/th>\n<th>Key Rule<\/th>\n<\/tr>\n<tr>\n<td>Start Event<\/td>\n<td>Circle with symbol<\/td>\n<td>Begin process<\/td>\n<td>Only one per process<\/td>\n<\/tr>\n<tr>\n<td>Activity<\/td>\n<td>Round rectangle<\/td>\n<td>Work to be done<\/td>\n<td>Can be a task or sub-process<\/td>\n<\/tr>\n<tr>\n<td>Gateway<\/td>\n<td>Diamond<\/td>\n<td>Decision or branching<\/td>\n<td>Must have \u22652 outgoing flows<\/td>\n<\/tr>\n<tr>\n<td>End Event<\/td>\n<td>Circle with outline<\/td>\n<td>End of process<\/td>\n<td>Must exist<\/td>\n<\/tr>\n<tr>\n<td>Sequence Flow<\/td>\n<td>Black solid line<\/td>\n<td>Internal process flow<\/td>\n<td>Connects events, activities, gateways<\/td>\n<\/tr>\n<tr>\n<td>Message Flow<\/td>\n<td>Dashed line with arrow<\/td>\n<td>Inter-process communication<\/td>\n<td>Used in collaboration diagrams<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Can I use multiple start events in a BPMN diagram?<\/h3>\n<p>No. A BPMN process can only have one start event. If you need multiple entry points, model them as separate processes or use gateways with message events.<\/p>\n<h3>What\u2019s the difference between sequence flow and message flow?<\/h3>\n<p>Sequence flow shows internal process logic\u2014what happens next. Message flow shows communication between processes. Use sequence flow for steps within a process. Use message flow when one process sends a message to another.<\/p>\n<h3>How do I handle exceptions in BPMN?<\/h3>\n<p>Use boundary events. These are attached to activities and trigger when an error occurs. For example, a boundary event on \u201cProcess payment\u201d can trigger if the payment fails. This is part of the BPMN standard for exception handling.<\/p>\n<h3>Why do my gateways look different in different tools?<\/h3>\n<p>Some tools use different symbols to represent the same gateway type. Always check the label or icon. For example, an XOR gateway may be a plain diamond, while an AND gateway has a \u201c+\u201d inside. The label should clarify the type.<\/p>\n<h3>Do I need to use swimlanes in every diagram?<\/h3>\n<p>No. Swimlanes are only needed when modeling roles or responsibilities. For simple processes, you can omit them. But if you\u2019re modeling a cross-functional workflow, swimlanes are essential.<\/p>\n<h3>Can I model a loop in BPMN?<\/h3>\n<p>Yes. Use a loop marker on an activity. This indicates the step repeats until a condition is met. For example, \u201cReview document\u201d might loop until approved. Always pair it with a condition to avoid infinite loops.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Most people think BPMN is about making pretty pictures. The truth? It\u2019s about structure. The moment you abandon consistent layout and flow rules, your diagrams become confusing, even if they look correct. That\u2019s why the first rule of BPMN isn\u2019t \u201cdraw it neatly\u201d\u2014it\u2019s \u201cunderstand how it holds together.\u201d Every BPMN diagram follows a grammar, just [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":395,"menu_order":0,"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-396","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 Diagram Structure Explained<\/title>\n<meta name=\"description\" content=\"Learn the anatomy of a BPMN diagram with clear explanations of BPMN model structure, process diagram anatomy, and BPMN components. Master the foundational grammar of BPMN for accurate, professional process modeling.\" \/>\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\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"BPMN Diagram Structure Explained\" \/>\n<meta property=\"og:description\" content=\"Learn the anatomy of a BPMN diagram with clear explanations of BPMN model structure, process diagram anatomy, and BPMN components. Master the foundational grammar of BPMN for accurate, professional process modeling.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Fran\u00e7ais\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/\",\"name\":\"BPMN Diagram Structure Explained\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#website\"},\"datePublished\":\"2026-02-25T10:17:21+00:00\",\"description\":\"Learn the anatomy of a BPMN diagram with clear explanations of BPMN model structure, process diagram anatomy, and BPMN components. Master the foundational grammar of BPMN for accurate, professional process modeling.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"BPMN Fundamentals for Beginners\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"BPMN Basics\u2014Symbols, Structure, and Syntax\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Anatomy of a BPMN Diagram\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/\",\"name\":\"Visual Paradigm Skills Fran\u00e7ais\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/fr\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#organization\",\"name\":\"Visual Paradigm Skills Fran\u00e7ais\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/wp-content\/uploads\/sites\/6\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/fr\/wp-content\/uploads\/sites\/6\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Fran\u00e7ais\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"BPMN Diagram Structure Explained","description":"Learn the anatomy of a BPMN diagram with clear explanations of BPMN model structure, process diagram anatomy, and BPMN components. Master the foundational grammar of BPMN for accurate, professional process modeling.","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\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/","og_locale":"fr_FR","og_type":"article","og_title":"BPMN Diagram Structure Explained","og_description":"Learn the anatomy of a BPMN diagram with clear explanations of BPMN model structure, process diagram anatomy, and BPMN components. Master the foundational grammar of BPMN for accurate, professional process modeling.","og_url":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/","og_site_name":"Visual Paradigm Skills Fran\u00e7ais","twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/","url":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/","name":"BPMN Diagram Structure Explained","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/#website"},"datePublished":"2026-02-25T10:17:21+00:00","description":"Learn the anatomy of a BPMN diagram with clear explanations of BPMN model structure, process diagram anatomy, and BPMN components. Master the foundational grammar of BPMN for accurate, professional process modeling.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/bpmn-diagram-structure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/fr\/"},{"@type":"ListItem","position":2,"name":"BPMN Fundamentals for Beginners","item":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/"},{"@type":"ListItem","position":3,"name":"BPMN Basics\u2014Symbols, Structure, and Syntax","item":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/bpmn-fundamentals-for-beginners\/bpmn-symbols\/"},{"@type":"ListItem","position":4,"name":"Anatomy of a BPMN Diagram"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/fr\/#website","url":"https:\/\/skills.visual-paradigm.com\/fr\/","name":"Visual Paradigm Skills Fran\u00e7ais","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/fr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/fr\/#organization","name":"Visual Paradigm Skills Fran\u00e7ais","url":"https:\/\/skills.visual-paradigm.com\/fr\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/skills.visual-paradigm.com\/fr\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/fr\/wp-content\/uploads\/sites\/6\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/fr\/wp-content\/uploads\/sites\/6\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Fran\u00e7ais"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs\/396","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs\/396\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs\/395"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/media?parent=396"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/doc_tag?post=396"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}