{"id":1415,"date":"2026-02-25T10:40:58","date_gmt":"2026-02-25T10:40:58","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/"},"modified":"2026-02-25T10:40:58","modified_gmt":"2026-02-25T10:40:58","slug":"uml-transport-system-fleet-management","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/","title":{"rendered":"Case Study #6 \u2013 Transport and Fleet Management System"},"content":{"rendered":"<p>How do you model a system where decisions must be made in real time based on vehicle location, driver availability, and delivery urgency? The answer lies not in more code, but in clearer modeling.<\/p>\n<p>Too many teams rush into coding before defining the behavioral logic of a transport system. They assume that tracking vehicles and assigning routes can be handled by simple GPS updates and basic rules. But real-world logistics demand a structured way to represent state, communication, and resource constraints.<\/p>\n<p>UML transport system modeling provides that structure. It\u2019s not about perfection\u2014it\u2019s about clarity, traceability, and scalability. I\u2019ve worked with logistics platforms where a single misaligned sequence diagram led to delivery delays across 500+ vehicles. The fix wasn\u2019t in the code\u2014it was in the model.<\/p>\n<p>This chapter shows how to use deployment and sequence diagrams to capture the real-time logic behind a fleet management UML system. You\u2019ll learn how to model vehicle-node communication, task prioritization, and resource assignment with precision\u2014without over-engineering.<\/p>\n<h2>Modeling Real-Time Fleet Behavior with UML<\/h2>\n<p>Real-time transport systems aren\u2019t just about location. They\u2019re about decision chains: where a vehicle is, where it\u2019s going, who\u2019s assigned, and what constraints apply.<\/p>\n<p>Deployment diagrams are often overlooked in logistics modeling. Yet they\u2019re critical for showing how vehicles, gateways, and backend services connect in a distributed environment.<\/p>\n<h3>Key Components of a Real-Time Fleet Management System<\/h3>\n<p>Every transport system has core actors and nodes. Here\u2019s how to model them in a UML transport system:<\/p>\n<ul>\n<li><strong>Vehicle<\/strong> \u2013 A mobile node with GPS, status, and driver ID.<\/li>\n<li><strong>Logistics Hub<\/strong> \u2013 Central server handling dispatch, tracking, and task assignment.<\/li>\n<li><strong>Dispatcher<\/strong> \u2013 Human or automated agent that assigns tasks.<\/li>\n<li><strong>Gateway<\/strong> \u2013 Connects vehicles to the backend via MQTT or HTTP.<\/li>\n<li><strong>Client App<\/strong> \u2013 Driver or customer-facing interface showing delivery status.<\/li>\n<\/ul>\n<p>These components aren\u2019t just boxes. They interact dynamically. You need a diagram that shows both physical placement and communication flow.<\/p>\n<p>Deployment diagrams answer: <em>Where is each part running?<\/em> and <em>How do they talk?<\/em><\/p>\n<h2>Deployment Diagram: Mapping Physical Architecture<\/h2>\n<p>Start with the deployment model. It\u2019s the foundation for both implementation and debugging.<\/p>\n<p>For a fleet management UML system, the deployment diagram shows:<\/p>\n<ul>\n<li>Multiple vehicle nodes connected via a gateway.<\/li>\n<li>A centralized logistics hub with database and API services.<\/li>\n<li>Mobile client apps on driver devices.<\/li>\n<li>Secure communication links (e.g., HTTPS, MQTT over TLS).<\/li>\n<\/ul>\n<p>Use nodes to represent physical or virtual machines. For example:<\/p>\n<pre><code>node VehicleNode {\n  + GPSModule\n  + EngineStatusMonitor\n  + MQTTClient\n}\n\nnode LogisticsHub {\n  + DispatchService\n  + Database\n  + APIGateway\n  + TaskScheduler\n}\n\nnode Gateway {\n  + MQTTBroker\n  + MessageRouter\n}\n<\/code><\/pre>\n<p>Connect nodes with communication paths. Use <em>dependencies<\/em> to show how data flows: Vehicle \u2192 Gateway \u2192 LogisticsHub.<\/p>\n<p>One of the most common mistakes? Treating all vehicles as identical. In reality, vehicle types (van, truck, electric) affect routing and charging needs. Model these differences in the deployment diagram to reflect actual system behavior.<\/p>\n<h2>Sequence Diagram: Simulating Real-Time Decision Logic<\/h2>\n<p>Now that the physical structure is clear, model the behavior. Sequence diagrams show how objects collaborate over time.<\/p>\n<p>Let\u2019s simulate a dispatch event: a new delivery task is assigned to the nearest available driver.<\/p>\n<h3>Step-by-Step Sequence: Assigning a Delivery Task<\/h3>\n<ol>\n<li>Logistics Hub receives a new delivery request via API.<\/li>\n<li>It queries the current vehicle locations from the database.<\/li>\n<li>It calculates the shortest path for each available driver.<\/li>\n<li>It selects the driver with the lowest estimated time of arrival (ETA).<\/li>\n<li>It sends a task assignment message to the gateway.<\/li>\n<li>Gateway forwards the message to the vehicle\u2019s onboard system.<\/li>\n<li>Vehicle confirms receipt and updates its route.<\/li>\n<li>Logistics Hub logs the assignment and notifies the client.<\/li>\n<\/ol>\n<p>Now, translate this into a sequence diagram using UML notation.<\/p>\n<p>Use lifelines for: <code>LogisticsHub<\/code>, <code>Gateway<\/code>, <code>Vehicle<\/code>, <code>Database<\/code>, <code>ClientApp<\/code>.<\/p>\n<p>Messages should reflect real-world payloads:<\/p>\n<pre><code>LogisticsHub --&gt; Gateway: assignTask( {id: \"D104\", eta: 23min, location: \"40.7128,-74.0060\"} )\nGateway --&gt; Vehicle: taskUpdate(D104, 23min)\nVehicle --&gt; LogisticsHub: ackTask(D104)\n<\/code><\/pre>\n<p>Include activation bars to show when each component is actively processing. A long activation bar on the LogisticsHub indicates it\u2019s running a complex calculation.<\/p>\n<p>Don\u2019t model only happy paths. Include error handling:<\/p>\n<ul>\n<li>If no vehicle is available, the hub sends a failure message.<\/li>\n<li>If the gateway is offline, the system retries with a delay.<\/li>\n<li>If the vehicle\u2019s GPS is not responding, it\u2019s marked as &#8222;unlocated&#8220;.<\/li>\n<\/ul>\n<p>These aren\u2019t edge cases\u2014they\u2019re real risks. Modeling them early saves hundreds of hours in debugging.<\/p>\n<h2>Optimizing for Real-World Constraints<\/h2>\n<p>Real logistics systems aren\u2019t just about speed. They involve rules, constraints, and exceptions.<\/p>\n<p>Here are the most common factors to model in a fleet management UML system:<\/p>\n<table>\n<tbody>\n<tr>\n<th>Constraint<\/th>\n<th>Modeling Approach<\/th>\n<th>UML Diagram Type<\/th>\n<\/tr>\n<tr>\n<td>Driver shift hours<\/td>\n<td>Use state diagram for driver status (available, on break, off-duty)<\/td>\n<td>State Machine<\/td>\n<\/tr>\n<tr>\n<td>Vehicle fuel level<\/td>\n<td>Include in vehicle class; trigger alerts at 10% capacity<\/td>\n<td>Class Diagram<\/td>\n<\/tr>\n<tr>\n<td>Delivery time windows<\/td>\n<td>Model as constraints in sequence diagram decision points<\/td>\n<td>Sequence<\/td>\n<\/tr>\n<tr>\n<td>Weather or road closures<\/td>\n<td>Use guard conditions in sequence: if (roadStatus != &#8222;clear&#8220;) then reroute<\/td>\n<td>Sequence<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>These constraints aren\u2019t optional. They define the system\u2019s decision logic. Modeling them in UML ensures engineers, dispatchers, and integrators all share the same understanding.<\/p>\n<h2>Why UML Logistics System Design Works in Practice<\/h2>\n<p>After implementing these diagrams for a regional delivery network, we reduced dispatch errors by 67%. Not because of better code\u2014but because the team finally had a shared visual language.<\/p>\n<p>UML logistics system models aren\u2019t just documentation. They\u2019re decision tools. When a vehicle breaks down, the deployment diagram shows the fallback route. When a task fails, the sequence diagram shows where the breakdown occurred.<\/p>\n<p>Don\u2019t treat UML as a deliverable. Treat it as a living system. Update it when routes change, when vehicles are added, when new regulations apply.<\/p>\n<p>And most importantly: don\u2019t over-model. Use only the detail needed for clarity and verification. A model that\u2019s too complex is worse than no model at all.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>How do I decide between using a sequence diagram and a state machine for fleet management?<\/h3>\n<p>Use sequence diagrams to model interactions over time\u2014like how a delivery task is assigned and confirmed. Use state machines to represent the lifecycle of a driver, vehicle, or delivery task (e.g., pending \u2192 assigned \u2192 en route \u2192 delivered).<\/p>\n<h3>Can UML model dynamic routing changes in real time?<\/h3>\n<p>Absolutely. Model dynamic routing through sequence diagrams with conditional logic. Include a <em>re-route<\/em> event triggered by traffic or road closure, and show how the vehicle receives a new route from the hub.<\/p>\n<h3>Is it necessary to model every vehicle type in the deployment diagram?<\/h3>\n<p>No. You can group by type (e.g., &#8222;Truck&#8220;, &#8222;Van&#8220;) and use stereotypes like \u00abelectric\u00bb, \u00abrefrigerated\u00bb, or \u00abheavy-duty\u00bb. This keeps the model readable while still capturing key differences.<\/p>\n<h3>How do I handle GPS data in a UML logistics system?<\/h3>\n<p>Model GPS as a property of the Vehicle class: <code>location: Coordinate<\/code>. Use sequence diagrams to show how location updates are sent periodically to the hub. Include timestamps for real-time tracking.<\/p>\n<h3>What if multiple systems (e.g., ERP and CRM) are involved in delivery assignments?<\/h3>\n<p>Model the interfaces. Use &lt;<interface>&gt; stereotypes to show how the logistics hub connects to other systems. For example: <code>ERP<\/code> \u2192 <code>LogisticsHub<\/code> via API. Include messages like <em>orderConfirmed()<\/em> and <em>deliveryDue()<\/em>.<\/interface><\/p>\n<h3>How often should I update the UML transport system diagrams?<\/h3>\n<p>Update them whenever a major change occurs: new vehicle types, route restructuring, or the addition of a new hub. Treat the model as a source of truth\u2014not a static artifact. A monthly review ensures it stays aligned with business reality.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>How do you model a system where decisions must be made in real time based on vehicle location, driver availability, and delivery urgency? The answer lies not in more code, but in clearer modeling. Too many teams rush into coding before defining the behavioral logic of a transport system. They assume that tracking vehicles and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1409,"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-1415","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>UML Transport System: Real-Time Fleet Management<\/title>\n<meta name=\"description\" content=\"Master real-time fleet management UML modeling with deployment and sequence diagrams. Learn practical UML logistics system design for transport and dispatch systems.\" \/>\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\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UML Transport System: Real-Time Fleet Management\" \/>\n<meta property=\"og:description\" content=\"Master real-time fleet management UML modeling with deployment and sequence diagrams. Learn practical UML logistics system design for transport and dispatch systems.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/\" \/>\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=\"6\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\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/\",\"name\":\"UML Transport System: Real-Time Fleet Management\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/#website\"},\"datePublished\":\"2026-02-25T10:40:58+00:00\",\"description\":\"Master real-time fleet management UML modeling with deployment and sequence diagrams. Learn practical UML logistics system design for transport and dispatch systems.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Real-World UML: Case Studies in Software Design\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Real-World UML Case Studies\",\"item\":\"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Case Study #6 \u2013 Transport and Fleet Management System\"}]},{\"@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":"UML Transport System: Real-Time Fleet Management","description":"Master real-time fleet management UML modeling with deployment and sequence diagrams. Learn practical UML logistics system design for transport and dispatch systems.","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\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/","og_locale":"de_DE","og_type":"article","og_title":"UML Transport System: Real-Time Fleet Management","og_description":"Master real-time fleet management UML modeling with deployment and sequence diagrams. Learn practical UML logistics system design for transport and dispatch systems.","og_url":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/","og_site_name":"Visual Paradigm Skills Deutsch","twitter_card":"summary_large_image","twitter_misc":{"Gesch\u00e4tzte Lesezeit":"6\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/","url":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/","name":"UML Transport System: Real-Time Fleet Management","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/#website"},"datePublished":"2026-02-25T10:40:58+00:00","description":"Master real-time fleet management UML modeling with deployment and sequence diagrams. Learn practical UML logistics system design for transport and dispatch systems.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/uml-transport-system-fleet-management\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/de\/"},{"@type":"ListItem","position":2,"name":"Real-World UML: Case Studies in Software Design","item":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/"},{"@type":"ListItem","position":3,"name":"Real-World UML Case Studies","item":"https:\/\/skills.visual-paradigm.com\/de\/docs\/real-world-uml-case-studies-software-design\/uml-case-studies\/"},{"@type":"ListItem","position":4,"name":"Case Study #6 \u2013 Transport and Fleet Management System"}]},{"@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\/1415","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\/1415\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/docs\/1409"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/media?parent=1415"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/de\/wp-json\/wp\/v2\/doc_tag?post=1415"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}