{"id":1607,"date":"2026-02-25T10:43:50","date_gmt":"2026-02-25T10:43:50","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/"},"modified":"2026-02-25T10:43:50","modified_gmt":"2026-02-25T10:43:50","slug":"sysml-sequence-diagram-interaction-modeling","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/","title":{"rendered":"Using Sequence Diagrams to Show Interactions"},"content":{"rendered":"<p>When you begin to see system behavior not as isolated functions but as coordinated exchanges across components, you\u2019ve taken a critical step toward true systems thinking. A SysML sequence diagram is the primary tool for visualizing that coordination over time. It captures how parts of a system\u2014whether hardware, software, or human roles\u2014communicate through message passing.<\/p>\n<p>In my two decades of modeling complex aerospace and embedded systems, I\u2019ve found that sequence diagrams are where abstraction meets reality. They\u2019re not just about drawing lines and arrows. They\u2019re about clarifying intent, revealing timing dependencies, and catching missed interactions before deployment.<\/p>\n<p>This chapter walks you through building a reliable sequence diagram from scratch, focusing on real-world modeling principles, avoiding common modeling traps, and ensuring your diagrams support both design and verification. You\u2019ll learn how to model message flow accurately, use lifelines effectively, and apply interaction modeling techniques that scale across system layers.<\/p>\n<h2>Why Sequence Diagrams Matter in SysML<\/h2>\n<p>Sequence diagrams are the backbone of interaction modeling in SysML. They show how objects or parts of a system interact over time to achieve a specific behavior\u2014like a conversation between a user, a control unit, and a sensor during an emergency shutdown.<\/p>\n<p>Unlike activity diagrams, which emphasize control flow, sequence diagrams prioritize temporal ordering. This makes them ideal for understanding timing-critical behaviors, such as response delays, timeouts, or real-time data synchronization.<\/p>\n<p>For instance, when modeling a medical device that must verify patient identity before administering treatment, the sequence diagram reveals exactly when the verification request is sent, when the result is returned, and what happens if the response times out.<\/p>\n<h3>Key Components of a SysML Sequence Diagram<\/h3>\n<p>Every sequence diagram consists of a few core elements:<\/p>\n<ul>\n<li><strong>Lifelines<\/strong> \u2014 vertical dashed lines representing the timeline of an object or part.<\/li>\n<li><strong>Activation bars<\/strong> \u2014 rectangles on lifelines indicating when an object is actively performing an action.<\/li>\n<li><strong>Messages<\/strong> \u2014 arrows indicating communication between lifelines, either synchronous or asynchronous.<\/li>\n<li><strong>Self-messages<\/strong> \u2014 messages sent from an object to itself, often to model internal state changes.<\/li>\n<\/ul>\n<p>These elements are not just notation\u2014they represent real engineering decisions. Each message must correspond to a behavior defined elsewhere, such as an operation in a block or a state transition.<\/p>\n<h2>Step-by-Step: Building a Real-World SysML Sequence Diagram<\/h2>\n<p>Let\u2019s walk through modeling the interaction between a smart thermostat and a heating controller during a temperature override.<\/p>\n<h3>Step 1: Define the System Actors and Parts<\/h3>\n<p>Start by identifying the lifelines involved. In this case:<\/p>\n<ul>\n<li>Thermostat (user interface)<\/li>\n<li>HeatingController (core control logic)<\/li>\n<li>TemperatureSensor (data source)<\/li>\n<\/ul>\n<p>Each becomes a lifeline. Place them side by side in the order of interaction\u2014typically starting with the initiator.<\/p>\n<h3>Step 2: Model the Message Flow<\/h3>\n<p>Now draw the sequence of messages. Use solid arrows for synchronous calls (where sender waits), and open-headed arrows for asynchronous (fire-and-forget).<\/p>\n<p>Example interaction:<\/p>\n<ol>\n<li><strong>Thermostat<\/strong> sends \u00ab\u00a0RequestOverride(temp=22\u00b0C)\u00a0\u00bb to <strong>HeatingController<\/strong>.<\/li>\n<li>Controller checks if override is allowed (e.g., within time window).<\/li>\n<li>Controller sends \u00ab\u00a0VerifyTemperatureSource\u00a0\u00bb to <strong>TemperatureSensor<\/strong>.<\/li>\n<li>Sensor replies with current reading.<\/li>\n<li>Controller processes result and sends \u00ab\u00a0ApplyOverride\u00a0\u00bb back to Thermostat.<\/li>\n<\/ol>\n<p>Each message must be traceable to a defined operation or behavior. Never assume a message exists without a corresponding behavior in the model.<\/p>\n<h3>Step 3: Add Activation Bars<\/h3>\n<p>For each message, draw an activation bar on the receiving lifeline to show when the object is busy. This helps avoid timing confusion and highlights bottlenecks.<\/p>\n<p>For example, the HeatingController\u2019s activation bar should span from the moment it receives the request to when it sends the result. If the verification step involves a delay, that delay is visible in the bar length.<\/p>\n<h3>Step 4: Validate the Model<\/h3>\n<p>Use this checklist to verify your sequence diagram:<\/p>\n<ul>\n<li>Are all lifelines relevant to the behavior being modeled?<\/li>\n<li>Does every message have a documented operation or behavior?<\/li>\n<li>Are activation bars properly aligned with message timing?<\/li>\n<li>Are asynchronous messages clearly marked?<\/li>\n<li>Is the sequence logically correct and consistent with real-world timing?<\/li>\n<\/ul>\n<p>When in doubt, ask: \u201cWould this behavior work in practice?\u201d If the answer is unclear, reconsider the message flow.<\/p>\n<h2>Best Practices for Reliable Interaction Modeling<\/h2>\n<p>Modeling interaction is not just a diagramming task\u2014it\u2019s a design discipline. Here are key insights I\u2019ve learned from years of debugging systems:<\/p>\n<h3>Keep It Focused on a Single Behavior<\/h3>\n<p>A well-built sequence diagram models one behavior at a time. Never try to capture multiple scenarios (e.g., override and auto-tune) in one diagram.<\/p>\n<p>Instead, create a separate diagram for each behavior. This makes the model easier to validate and reuse in verification.<\/p>\n<h3>Use Meaningful Message Names<\/h3>\n<p>A message like \u00ab\u00a0msg1\u00a0\u00bb adds no value. Instead, use clear, verb-based names:<\/p>\n<ul>\n<li>\u201cRequestOverride\u201d<\/li>\n<li>\u201cVerifyThermostatStatus\u201d<\/li>\n<li>\u201cSendEmergencySignal\u201d<\/li>\n<\/ul>\n<p>This improves readability and supports automated traceability.<\/p>\n<h3>Model Time Realistically<\/h3>\n<p>Don\u2019t assume all interactions happen instantly. If a system must wait for a sensor response or a signal to propagate, represent that delay.<\/p>\n<p>You can even annotate message durations using text like \u201c(200ms delay)\u201d or use time constraints in formal modeling tools.<\/p>\n<h3>Link to Other Models<\/h3>\n<p>A sequence diagram is not an isolated artifact. It should connect to:<\/p>\n<ul>\n<li><strong>Block Definition Diagrams (BDD)<\/strong> \u2014 to verify the parts exist.<\/li>\n<li><strong>Activity Diagrams<\/strong> \u2014 to show control flow that leads to the interaction.<\/li>\n<li><strong>Requirements<\/strong> \u2014 to trace the behavior back to a functional requirement.<\/li>\n<\/ul>\n<p>This integration ensures your model remains aligned with system intent.<\/p>\n<h2>Common Pitfalls and How to Avoid Them<\/h2>\n<p>Even experienced modelers make mistakes. Here are the most frequent ones in sequence diagrams:<\/p>\n<table>\n<tbody>\n<tr>\n<th>Pitfall<\/th>\n<th>Why It\u2019s Bad<\/th>\n<th>Fix<\/th>\n<\/tr>\n<tr>\n<td>Overloading with too many lifelines<\/td>\n<td>Reduces clarity and increases cognitive load.<\/td>\n<td>Limit to 4\u20135 key components. Split complex interactions into sub-diagrams.<\/td>\n<\/tr>\n<tr>\n<td>Missing activation bars<\/td>\n<td>Creates ambiguity about timing and concurrency.<\/td>\n<td>Always draw activation bars for every message that triggers an action.<\/td>\n<\/tr>\n<tr>\n<td>Using vague message names<\/td>\n<td>Impedes understanding and traceability.<\/td>\n<td>Use clear, action-oriented verbs and object references.<\/td>\n<\/tr>\n<tr>\n<td>Ignoring asynchronous behavior<\/td>\n<td>Can lead to incorrect assumptions about system responsiveness.<\/td>\n<td>Use open-headed arrows for non-blocking messages.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Remember: clarity is not optional. A model that confuses its audience fails its purpose.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>What\u2019s the difference between a SysML sequence diagram and a UML sequence diagram?<\/h3>\n<p>There is no difference in syntax or semantics. SysML inherits the sequence diagram from UML and uses it identically. The distinction lies in context: SysML uses sequence diagrams to support systems engineering, not just software design.<\/p>\n<h3>Can I model asynchronous interactions in SysML sequence diagrams?<\/h3>\n<p>Absolutely. Use open-headed arrows (e.g., \u00ab\u00a0sendAsync\u00a0\u00bb) to represent asynchronous message flow. This is essential for modeling event-driven systems like IoT devices or distributed control networks.<\/p>\n<h3>How do I ensure my sequence diagram is consistent with other SysML models?<\/h3>\n<p>Use allocation relationships to link the sequence diagram\u2019s parts to blocks in a BDD. Ensure every message corresponds to a defined operation on a block. Then, connect the behavior to a requirements diagram via traceability links.<\/p>\n<h3>Should I model every possible interaction in one diagram?<\/h3>\n<p>No. A single sequence diagram should represent one specific behavior or scenario. Use multiple diagrams for different cases, such as normal operation, error handling, and emergency override.<\/p>\n<h3>How do I model a message that takes time to complete?<\/h3>\n<p>Draw the activation bar to reflect the duration of the action. If you need to specify time limits, add a constraint like \u00ab\u00a0Duration \u2264 500ms\u00a0\u00bb above the activation bar or in a note.<\/p>\n<h3>Can I use sequence diagrams for software-only systems?<\/h3>\n<p>Yes, but with caution. While sequence diagrams are commonly used in software engineering, in SysML they serve a broader role: modeling any system behavior, including physical, mechanical, and human interactions. Use them to model not just API calls, but also sensor feedback loops, control logic, and operator actions.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you begin to see system behavior not as isolated functions but as coordinated exchanges across components, you\u2019ve taken a critical step toward true systems thinking. A SysML sequence diagram is the primary tool for visualizing that coordination over time. It captures how parts of a system\u2014whether hardware, software, or human roles\u2014communicate through message passing. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1601,"menu_order":5,"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-1607","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>SysML Sequence Diagram: Interaction Modeling Made Clear<\/title>\n<meta name=\"description\" content=\"Learn how to use SysML sequence diagrams to model time-based interactions and message flow between system components. Master interaction modeling for robust system design.\" \/>\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\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SysML Sequence Diagram: Interaction Modeling Made Clear\" \/>\n<meta property=\"og:description\" content=\"Learn how to use SysML sequence diagrams to model time-based interactions and message flow between system components. Master interaction modeling for robust system design.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/\" \/>\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=\"6 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\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/\",\"name\":\"SysML Sequence Diagram: Interaction Modeling Made Clear\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/#website\"},\"datePublished\":\"2026-02-25T10:43:50+00:00\",\"description\":\"Learn how to use SysML sequence diagrams to model time-based interactions and message flow between system components. Master interaction modeling for robust system design.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SysML Essentials for Beginners\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Modeling Fundamentals in SysML\",\"item\":\"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Using Sequence Diagrams to Show Interactions\"}]},{\"@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":"SysML Sequence Diagram: Interaction Modeling Made Clear","description":"Learn how to use SysML sequence diagrams to model time-based interactions and message flow between system components. Master interaction modeling for robust system design.","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\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/","og_locale":"fr_FR","og_type":"article","og_title":"SysML Sequence Diagram: Interaction Modeling Made Clear","og_description":"Learn how to use SysML sequence diagrams to model time-based interactions and message flow between system components. Master interaction modeling for robust system design.","og_url":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/","og_site_name":"Visual Paradigm Skills Fran\u00e7ais","twitter_card":"summary_large_image","twitter_misc":{"Dur\u00e9e de lecture estim\u00e9e":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/","url":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/","name":"SysML Sequence Diagram: Interaction Modeling Made Clear","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/#website"},"datePublished":"2026-02-25T10:43:50+00:00","description":"Learn how to use SysML sequence diagrams to model time-based interactions and message flow between system components. Master interaction modeling for robust system design.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/sysml-sequence-diagram-interaction-modeling\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/fr\/"},{"@type":"ListItem","position":2,"name":"SysML Essentials for Beginners","item":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/"},{"@type":"ListItem","position":3,"name":"Modeling Fundamentals in SysML","item":"https:\/\/skills.visual-paradigm.com\/fr\/docs\/sysml-essentials-for-beginners\/sysml-diagrams\/"},{"@type":"ListItem","position":4,"name":"Using Sequence Diagrams to Show Interactions"}]},{"@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\/1607","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\/1607\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/docs\/1601"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/media?parent=1607"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/fr\/wp-json\/wp\/v2\/doc_tag?post=1607"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}