{"id":1620,"date":"2026-02-25T10:43:55","date_gmt":"2026-02-25T10:43:55","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/"},"modified":"2026-02-25T10:43:55","modified_gmt":"2026-02-25T10:43:55","slug":"sysml-automotive-aerospace-use-cases","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/","title":{"rendered":"SysML for Automotive and Aerospace Use Cases"},"content":{"rendered":"<p>One of the least discussed but most powerful advantages of modeling early with SysML is the ability to catch design flaws during the conceptual phase\u2014before they become costly, safety-critical failures. This is especially true in automotive and aerospace engineering, where a single oversight can lead to catastrophic outcomes. I\u2019ve seen teams spend months refining hardware after a simulation revealed a flaw that could have been identified during the initial block decomposition stage.<\/p>\n<p>With over two decades in systems engineering, I\u2019ve come to believe that the real value of SysML isn\u2019t just in its diagrams\u2014it\u2019s in the discipline it enforces: clarity, traceability, and consistency across safety-critical domains.<\/p>\n<p>This chapter walks you through how SysML automotive and aerospace teams integrate structure and behavior modeling to manage complexity, enforce safety constraints, and ensure compliance. You\u2019ll learn how to decompose subsystems, trace safety requirements, and apply SysML safety modeling techniques using real-world examples.<\/p>\n<h2>Why SysML Excels in Automotive and Aerospace Systems<\/h2>\n<p>Automotive and aerospace systems are inherently complex\u2014mechanical, electrical, software, and safety-critical all in one. Without a unified modeling language, these domains suffer from misaligned interfaces, untraceable requirements, and fragmented communication between teams.<\/p>\n<p>SysML provides a common language. It allows mechanical, software, and safety engineers to collaborate using the same model\u2014each viewing the system through their lens while maintaining a single source of truth.<\/p>\n<p>Consider a modern electric vehicle (EV) battery management system. The software team needs to understand thermal thresholds, the mechanical team must know cooling channel layouts, and the safety team must verify that over-temperature triggers are properly linked to fail-safe actions. SysML enables this through integration of Block Definition Diagrams (BDD), Internal Block Diagrams (IBD), and activity diagrams.<\/p>\n<ul>\n<li>Use <strong>Block Definition Diagrams<\/strong> to define subsystems like Battery Pack, Thermal Module, and Control Unit.<\/li>\n<li>Use <strong>Internal Block Diagrams<\/strong> to show how coolant flows between components and how sensors connect to control logic.<\/li>\n<li>Use <strong>Activity Diagrams<\/strong> to model the thermal regulation workflow.<\/li>\n<\/ul>\n<p>When these are integrated, the model becomes more than documentation\u2014it becomes a verification-ready artifact.<\/p>\n<h2>Decomposing Systems with SysML Automotive Example<\/h2>\n<p>Let\u2019s take a real-world example: modeling a Level 2 ADAS (Advanced Driver Assistance System) in a high-end vehicle.<\/p>\n<p>Start with a BDD. Define the top-level system: <code>ADAS Controller<\/code>. Then decompose it into components: <code>Camera Sensor<\/code>, <code>Radars<\/code>, <code>Compute Unit<\/code>, and <code>Actuator<\/code>.<\/p>\n<p>Now, drill down into the <code>Compute Unit<\/code>. Use an IBD to show how data from sensors flows into processing nodes: <code>Object Detection Engine<\/code>, <code>Path Planning Module<\/code>, and <code>Decision Logic<\/code>.<\/p>\n<p>Link these with object flows. For example:<\/p>\n<pre><code>Camera Sensor \u2192 Object Detection Engine \u2192 Decision Logic \u2192 Actuator<\/code><\/pre>\n<p>This flow isn\u2019t just architectural\u2014it\u2019s a foundation for test case generation. Every edge in the IBD can be mapped to a simulation or hardware-in-the-loop (HIL) test.<\/p>\n<p>One of the most common mistakes beginners make is treating BDDs as static diagrams. They\u2019re not. They evolve. As the vehicle\u2019s ADAS features expand, the model must reflect new sensors, new data fusion logic, and updated safety thresholds.<\/p>\n<h3>Best Practices for Subsystem Decomposition<\/h3>\n<p>Decomposition should reflect real engineering layers, not just arbitrary splits. Here\u2019s how to do it right:<\/p>\n<ol>\n<li><strong>Start with system boundaries<\/strong>: Define what the system is and what it interacts with (e.g., vehicle controller, driver input).<\/li>\n<li><strong>Use allocation to link functions to components<\/strong>: If a function like \u201cdetect pedestrian\u201d exists, allocate it to the <code>Object Detection Engine<\/code> in the IBD.<\/li>\n<li><strong>Model interfaces explicitly<\/strong>: Don\u2019t assume data flows. Define interface ports and their types (e.g., <code>ImageStream<\/code>, <code>ControlSignal<\/code>).<\/li>\n<li><strong>Validate with real data<\/strong>: Check that input\/output types match what sensors and actuators actually produce.<\/li>\n<\/ol>\n<p>This level of rigor prevents the \u201cI thought it was connected\u201d failures that plague many vehicle software debug cycles.<\/p>\n<h2>SysML Safety Modeling: From Requirements to Verification<\/h2>\n<p>Safety is not an afterthought. In aerospace and automotive systems, it must be modeled from day one.<\/p>\n<p>SysML supports <strong>functional safety modeling<\/strong> through the use of <strong>requirements diagrams<\/strong> and <strong>constraint blocks<\/strong>. For example, in an autonomous aircraft, you might have a safety requirement:<\/p>\n<p><em>\u201cThe autopilot must initiate a controlled descent if the altitude falls below 500 ft and no pilot input is detected within 3 seconds.\u201d<\/em><\/p>\n<p>Model this in SysML by:<\/p>\n<ol>\n<li>Defining a <code>Requirement<\/code> with ID <code>REQ-SAF-001<\/code>.<\/li>\n<li>Creating a <code>ConstraintBlock<\/code> named <code>AltitudeControlLogic<\/code> that defines the condition: <code>altitude &lt; 500 ft AND pilotInput = false AND timer &gt; 3 sec<\/code>.<\/li>\n<li>Allocating this requirement to the <code>Autopilot Control Module<\/code> via an <em>allocation<\/em> relationship.<\/li>\n<li>Using a <code>Parametric Diagram<\/code> to define performance thresholds and verify that the logic triggers within the required time window.<\/li>\n<\/ol>\n<p>Now, every time the model is updated, you can validate that the safety logic still holds. This is what I call <strong>living safety<\/strong>\u2014where the model is not just a design document but an active verifier of safety-critical behavior.<\/p>\n<h3>Modeling Safety in Aerospace: The SysML Aerospace Example<\/h3>\n<p>Consider a drone flight controller in a cargo delivery system. It must detect wind gusts and adjust thrust accordingly. A failed response can lead to loss of control.<\/p>\n<p>Using SysML, you can model:<\/p>\n<ul>\n<li>A <strong>State Machine Diagram<\/strong> showing flight states: <code>Takeoff<\/code>, <code>Hovering<\/code>, <code>Cruising<\/code>, <code>Wind Disturbance Detected<\/code>, <code>Stabilization<\/code>, <code>Landing<\/code>.<\/li>\n<li>An <strong>Activity Diagram<\/strong> to show the sequence: sensor reads wind anomaly \u2192 compare to threshold \u2192 activate thrust correction \u2192 verify stabilization.<\/li>\n<li>A <strong>Parametric Diagram<\/strong> to define the maximum allowable deviation before triggering a response (e.g., <code>maxWindDeviation = 15 m\/s<\/code>).<\/li>\n<\/ul>\n<p>These diagrams are not just for design\u2014they\u2019re inputs for simulation and formal verification tools. They empower engineers to test thousands of failure scenarios before a prototype is built.<\/p>\n<h2>Integrating SysML with Real-World Tools<\/h2>\n<p>While the theory is powerful, execution matters. In practice, I\u2019ve found that tool choice significantly affects model adoption and quality.<\/p>\n<p>Visual Paradigm, for example, supports full SysML 1.6 compliance, including:<\/p>\n<ul>\n<li>Automatic validation of allocation and traceability.<\/li>\n<li>Real-time traceability matrices between requirements and diagrams.<\/li>\n<li>Export to documentation templates (PDF, Word) with auto-generated tables.<\/li>\n<\/ul>\n<p>Use these features to generate reports for audits. For aerospace, you\u2019ll often need to prove compliance with DO-178C. For automotive, ISO 26262. SysML models are the foundation for such compliance evidence.<\/p>\n<h2>Key Takeaways<\/h2>\n<ul>\n<li>SysML automotive modeling reduces miscommunication by providing a shared, traceable model across disciplines.<\/li>\n<li>Decomposition using BDD and IBD helps uncover integration risks early.<\/li>\n<li>SysML safety modeling, especially through constraint blocks and parametric diagrams, enables proactive failure detection.<\/li>\n<li>Real-world examples like ADAS and flight controllers show how SysML transforms abstract requirements into testable, verifiable logic.<\/li>\n<\/ul>\n<p>Start with a single subsystem\u2014like the battery or braking system\u2014and build from there. The model will grow with your understanding.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>What are the main differences between SysML in automotive and aerospace modeling?<\/h3>\n<p>Both domains use SysML for safety, traceability, and integration. The difference lies in scale and certification. Aerospace systems often require stricter verification (e.g., DO-178C), while automotive systems focus on functional safety (ISO 26262). The modeling techniques are similar, but aerospace models often include more formal logic and redundancy checks.<\/p>\n<h3>How do I model safety-critical behavior in SysML?<\/h3>\n<p>Use a combination of <strong>state machine diagrams<\/strong> for system states, <strong>activity diagrams<\/strong> for workflows, and <strong>constraint blocks<\/strong> to define thresholds. Link these to <strong>requirements<\/strong> and use <strong>parametric diagrams<\/strong> to verify performance. Always allocate safety functions to components for traceability.<\/p>\n<h3>Can SysML be used for embedded software in automotive systems?<\/h3>\n<p>Absolutely. SysML supports embedded software modeling through <strong>component diagrams<\/strong> and <strong>internal block diagrams<\/strong>. You can model software as a component, define interfaces, and show how it interacts with hardware (e.g., ECUs). Use <strong>activity diagrams<\/strong> to model execution flow and <strong>state machines<\/strong> for reactive logic.<\/p>\n<h3>What\u2019s the best way to validate a SysML safety model?<\/h3>\n<p>Use simulation tools that accept SysML models. Visual Paradigm integrates with MATLAB\/Simulink, allowing you to generate test cases directly from the model. For formal verification, use tools like AADL or SPARK. Always validate under edge cases\u2014like sensor failure or delayed inputs.<\/p>\n<h3>How often should I update my SysML model during development?<\/h3>\n<p>Update the model with every design decision. Don\u2019t wait for the final version. The model should evolve in parallel with the system. Use version control and maintain a change log. A model that doesn&#8217;t reflect reality becomes misleading.<\/p>\n<h3>Is SysML suitable for small teams or startups?<\/h3>\n<p>Yes. Even small teams benefit from SysML\u2019s structure. Start simple: model one subsystem with BDD, IBD, and a few key requirements. As the system grows, the model scales too. It prevents rework and ensures clarity from day one.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the least discussed but most powerful advantages of modeling early with SysML is the ability to catch design flaws during the conceptual phase\u2014before they become costly, safety-critical failures. This is especially true in automotive and aerospace engineering, where a single oversight can lead to catastrophic outcomes. I\u2019ve seen teams spend months refining hardware [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1617,"menu_order":2,"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-1620","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 Automotive: Modeling Safety &amp; Systems<\/title>\n<meta name=\"description\" content=\"Learn how SysML automotive and aerospace modeling enhances system safety, traceability, and subsystem decomposition. Master real-world use cases with practical examples and best practices.\" \/>\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\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SysML Automotive: Modeling Safety &amp; Systems\" \/>\n<meta property=\"og:description\" content=\"Learn how SysML automotive and aerospace modeling enhances system safety, traceability, and subsystem decomposition. Master real-world use cases with practical examples and best practices.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Deutsch\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data1\" content=\"7\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/\",\"name\":\"SysML Automotive: Modeling Safety & Systems\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#website\"},\"datePublished\":\"2026-02-25T10:43:55+00:00\",\"description\":\"Learn how SysML automotive and aerospace modeling enhances system safety, traceability, and subsystem decomposition. Master real-world use cases with practical examples and best practices.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SysML Essentials for Beginners\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Practical Application and Real-World Scenarios\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"SysML for Automotive and Aerospace Use Cases\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/\",\"name\":\"Visual Paradigm Skills Deutsch\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/de\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#organization\",\"name\":\"Visual Paradigm Skills Deutsch\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/wp-content\/uploads\/sites\/4\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/de\/wp-content\/uploads\/sites\/4\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Deutsch\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SysML Automotive: Modeling Safety & Systems","description":"Learn how SysML automotive and aerospace modeling enhances system safety, traceability, and subsystem decomposition. Master real-world use cases with practical examples and best practices.","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\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/","og_locale":"de_DE","og_type":"article","og_title":"SysML Automotive: Modeling Safety & Systems","og_description":"Learn how SysML automotive and aerospace modeling enhances system safety, traceability, and subsystem decomposition. Master real-world use cases with practical examples and best practices.","og_url":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/","og_site_name":"Visual Paradigm Skills Deutsch","twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"7\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/","url":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/","name":"SysML Automotive: Modeling Safety & Systems","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/#website"},"datePublished":"2026-02-25T10:43:55+00:00","description":"Learn how SysML automotive and aerospace modeling enhances system safety, traceability, and subsystem decomposition. Master real-world use cases with practical examples and best practices.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-automotive-aerospace-use-cases\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/de\/"},{"@type":"ListItem","position":2,"name":"SysML Essentials for Beginners","item":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/"},{"@type":"ListItem","position":3,"name":"Practical Application and Real-World Scenarios","item":"https:\/\/skills.visual-paradigm.com\/de\/docs\/sysml-essentials-for-beginners\/sysml-examples\/"},{"@type":"ListItem","position":4,"name":"SysML for Automotive and Aerospace Use Cases"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/de\/#website","url":"https:\/\/skills.visual-paradigm.com\/de\/","name":"Visual Paradigm Skills Deutsch","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/de\/#organization","name":"Visual Paradigm Skills Deutsch","url":"https:\/\/skills.visual-paradigm.com\/de\/","logo":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/skills.visual-paradigm.com\/de\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/de\/wp-content\/uploads\/sites\/4\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/de\/wp-content\/uploads\/sites\/4\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Deutsch"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs\/1620","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs\/1620\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs\/1617"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/media?parent=1620"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/doc_tag?post=1620"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}