{"id":1618,"date":"2026-02-25T10:43:54","date_gmt":"2026-02-25T10:43:54","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/"},"modified":"2026-02-25T10:43:54","modified_gmt":"2026-02-25T10:43:54","slug":"sysml-drone-example-navigation-system","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/","title":{"rendered":"SysML in Action: Modeling a Drone Navigation System"},"content":{"rendered":"<p>At the moment a drone transitions from manual flight to autonomous navigation, the real complexity begins. That\u2019s when structural definitions, behavioral logic, and system-level requirements must align\u2014before a single line of code is written. Many beginners start by sketching control algorithms or designing sensors, but they miss the foundational step: modeling the system\u2019s architecture first. This is where SysML delivers real value\u2014by grounding decisions in traceable, integrated structure and behavior.<\/p>\n<p>Over two decades of modeling complex aerospace and robotics systems taught me: you can\u2019t validate a control algorithm if the system architecture doesn\u2019t reflect the physical and logical distribution of components. This chapter walks through a real-world SysML practical example\u2014the navigation and control subsystem of a small quadcopter drone. We\u2019ll build the model step by step, integrating Block Definition Diagrams (BDD), Internal Block Diagrams (IBD), Activity Diagrams, and Requirements Diagrams.<\/p>\n<p>You\u2019ll learn how to represent sensor fusion, flight logic, and control allocation with precision. You\u2019ll see how to avoid common pitfalls like over-modeling or disconnected requirements. By the end, you\u2019ll have a working model that serves as a blueprint for simulation, testing, and documentation.<\/p>\n<h2>Defining the System: Structure with Block and Internal Block Diagrams<\/h2>\n<p>SysML starts with structure. Without a clear understanding of what components exist and how they connect, behavior modeling becomes speculative.<\/p>\n<p>Begin by identifying the core blocks: <strong>DroneNavigationSystem<\/strong>, <strong>FlightController<\/strong>, <strong>IMU<\/strong>, <strong>GPSModule<\/strong>, and <strong>FlightActuator<\/strong>. These represent the physical and logical entities of the system.<\/p>\n<p>Use a <strong>Block Definition Diagram (BDD)<\/strong> to define the high-level architecture. For the drone, the navigation system is a subsystem of the larger drone, and the flight controller is responsible for processing sensor inputs and commanding actuators.<\/p>\n<p>Next, use an <strong>Internal Block Diagram (IBD)<\/strong> to show how these components are connected via ports and flows.<\/p>\n<ul>\n<li>Port on <em>FlightController<\/em>: <strong>in<\/strong> for <em>IMUData<\/em> and <em>GPSData<\/em><\/li>\n<li>Port on <em>FlightController<\/em>: <strong>out<\/strong> for <em>ControlCommands<\/em><\/li>\n<li>Flow from <em>IMU<\/em> to <em>FlightController<\/em>: <em>AngularVelocity<\/em>, <em>LinearAcceleration<\/em><\/li>\n<li>Flow from <em>GPSModule<\/em> to <em>FlightController<\/em>: <em>Position<\/em>, <em>Velocity<\/em><\/li>\n<li>Flow from <em>FlightController<\/em> to <em>FlightActuator<\/em>: <em>MotorCommands<\/em><\/li>\n<\/ul>\n<p>The IBD ensures that the system\u2019s data and control flows are explicitly defined. This clarity prevents miscommunication between software and hardware teams\u2014a common failure point in drone projects.<\/p>\n<h3>Why This Matters: Avoiding Design Debt Early<\/h3>\n<p>When I worked on a drone prototype at a defense contractor, we skipped the IBD and only defined behaviors. Weeks later, the flight controller couldn\u2019t handle IMU data due to mismatched signal formats. The fix required a full rework. A simple IBD would have caught that early.<\/p>\n<p>Use <strong>allocation<\/strong> to link components to functions. For instance, allocate the <em>FlightController<\/em> to the function \u201cProcess Sensor Data\u201d and to \u201cGenerate Control Commands\u201d.<\/p>\n<h2>Modeling Behavior: Activity and Sequence Diagrams<\/h2>\n<p>The navigation system isn\u2019t just about connections\u2014it\u2019s about logic. This is where Activity Diagrams shine.<\/p>\n<p>Create an <strong>Activity Diagram<\/strong> that captures the core workflow of autonomous navigation:<\/p>\n<ol>\n<li>Initialize sensors (IMU, GPS)<\/li>\n<li>Read IMU data and GPS data<\/li>\n<li>Perform sensor fusion (e.g., Kalman filter)<\/li>\n<li>Compute current position and velocity<\/li>\n<li>Compare with target position<\/li>\n<li>Generate control commands (pitch, roll, yaw, throttle)<\/li>\n<li>Send commands to actuators<\/li>\n<li>Loop back to read new data<\/li>\n<\/ol>\n<p>Use decision nodes to model conditional logic: \u201cIf position error &gt; threshold, adjust control command.\u201d<\/p>\n<p>For temporal interactions\u2014especially between software modules and hardware\u2014use a <strong>Sequence Diagram<\/strong>.<\/p>\n<p>Define lifelines: <em>FlightController<\/em>, <em>IMU<\/em>, <em>GPSModule<\/em>, <em>FlightActuator<\/em>.<\/p>\n<p>Sequence the interactions:<\/p>\n<ul>\n<li>FlightController \u2192 IMU: request data<\/li>\n<li>IMU \u2192 FlightController: return IMU data<\/li>\n<li>FlightController \u2192 GPSModule: request location<\/li>\n<li>GPSModule \u2192 FlightController: return GPS data<\/li>\n<li>FlightController \u2192 FlightActuator: send motor commands<\/li>\n<\/ul>\n<p>This sequence reveals timing dependencies and helps identify bottlenecks. For example, if the GPS update rate is too low, the system may drift\u2014this becomes visible in the diagram.<\/p>\n<h2>Ensuring Correctness: Requirements and Traceability<\/h2>\n<p>Without requirements, your model is just a collection of components. Use a <strong>Requirements Diagram<\/strong> to define system-level goals.<\/p>\n<p>Start with high-level requirements:<\/p>\n<ul>\n<li><strong>R-1<\/strong>: The drone must maintain position within \u00b11 meter of a target waypoint.<\/li>\n<li><strong>R-2<\/strong>: The system must respond to position error within 100 ms.<\/li>\n<li><strong>R-3<\/strong>: The navigation system must operate autonomously for at least 25 minutes on a single charge.<\/li>\n<\/ul>\n<p>Now trace these requirements to model elements.<\/p>\n<p>Link <em>R-1<\/em> to the activity \u201cCompute current position\u201d.<\/p>\n<p>Link <em>R-2<\/em> to the sequence \u201cGenerate control commands\u201d and the timing constraint of 100 ms.<\/p>\n<p>Link <em>R-3<\/em> to the battery power budget, which is derived from the flight controller\u2019s energy consumption and motor usage.<\/p>\n<p>Use the <strong>traceability matrix<\/strong> to verify all requirements are addressed. This is your audit trail.<\/p>\n<h3>Key Insight: Requirements Must Be Verifiable and Testable<\/h3>\n<p>Never model a requirement like \u201cThe system should be accurate.\u201d It\u2019s vague. Instead, define measurable criteria: \u201cPosition error must be &lt; 0.5 m during steady-state flight.\u201d A traceable, verifiable requirement prevents scope creep and supports verification planning.<\/p>\n<h2>Integrating the Model: Allocation and Consistency Checks<\/h2>\n<p>Now comes the crucial integration step: <strong>allocation<\/strong>.<\/p>\n<p>Use the <em>Allocation<\/em> relationship to show where functions and requirements are realized:<\/p>\n<ul>\n<li>Function \u201cProcess Sensor Data\u201d \u2192 allocated to <em>FlightController<\/em><\/li>\n<li>Requirement <em>R-1<\/em> \u2192 allocated to \u201cCompute current position\u201d activity<\/li>\n<li>Constraint \u201c100 ms response time\u201d \u2192 allocated to \u201cGenerate control commands\u201d<\/li>\n<\/ul>\n<p>Check for consistency: every requirement must be linked to at least one behavior. Every behavior must be linked to a component. Every component must be part of a structural system.<\/p>\n<p>Use your modeling tool (like Visual Paradigm) to validate these links. If a requirement isn\u2019t traced, the model is incomplete.<\/p>\n<h2>Best Practices for Practical SysML Modeling<\/h2>\n<p>Based on real-world experience, here are key rules for drone modeling SysML:<\/p>\n<ul>\n<li><strong>Start with structure<\/strong>: Always define blocks and connections before behavior.<\/li>\n<li><strong>Keep diagrams focused<\/strong>: One diagram, one core purpose. Don\u2019t combine BDD and activity logic.<\/li>\n<li><strong>Use meaningful names<\/strong>: Avoid \u201cSystem1\u201d or \u201cBlockA\u201d. Use \u201cIMU\u201d or \u201cFlightActuator\u201d.<\/li>\n<li><strong>Trace early, trace often<\/strong>: A requirement not linked to a behavior is a gap.<\/li>\n<li><strong>Validate with stakeholders<\/strong>: Show the IBD to hardware and software engineers. Does it match their understanding?<\/li>\n<\/ul>\n<h2>Frequently Asked Questions<\/h2>\n<h3>How do I start modeling a drone navigation system with SysML?<\/h3>\n<p>Begin by identifying key blocks: FlightController, IMU, GPSModule, FlightActuator. Create a BDD to define their relationships, then use an IBD to show ports and flows. Then model the behavior using Activity and Sequence Diagrams.<\/p>\n<h3>Can SysML handle sensor fusion and Kalman filtering?<\/h3>\n<p>Yes. While SysML doesn\u2019t model math directly, you can represent the algorithm as a computational activity or use a parametric diagram to define constraints. The flow of sensor data and output commands can be modeled using object flows.<\/p>\n<h3>Why not use UML instead of SysML for this?<\/h3>\n<p>SysML is specifically designed for systems engineering. It adds modeling constructs like requirements, parametric diagrams, and allocation\u2014critical for capturing real-world system behavior and traceability. UML lacks these extensions.<\/p>\n<h3>Is it worth modeling the full drone system in SysML?<\/h3>\n<p>For complex systems, yes. Even modeling the navigation subsystem alone avoids misalignment between teams. For beginners, focus on one subsystem at a time. This is a <strong>SysML practical example<\/strong> that scales.<\/p>\n<h3>What tool should I use for drone modeling SysML?<\/h3>\n<p>Visual Paradigm is strong choice. Visual Paradigm offers a free version with full SysML support, ideal for beginners.<\/p>\n<h3>How do I ensure my SysML model is correct and consistent?<\/h3>\n<p>Use traceability matrices to link requirements to behaviors and components. Validate allocations and ensure all activities are connected to real components. Run automated consistency checks in your tool.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>At the moment a drone transitions from manual flight to autonomous navigation, the real complexity begins. That\u2019s when structural definitions, behavioral logic, and system-level requirements must align\u2014before a single line of code is written. Many beginners start by sketching control algorithms or designing sensors, but they miss the foundational step: modeling the system\u2019s architecture first. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1617,"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-1618","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 Drone Example: Navigation System Modeling<\/title>\n<meta name=\"description\" content=\"Master the SysML drone example: learn how to model a drone\u2019s navigation and control system using structure, behavior, and requirements diagrams. A practical example for beginners.\" \/>\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\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SysML Drone Example: Navigation System Modeling\" \/>\n<meta property=\"og:description\" content=\"Master the SysML drone example: learn how to model a drone\u2019s navigation and control system using structure, behavior, and requirements diagrams. A practical example for beginners.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Espa\u00f1ol\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/\",\"name\":\"SysML Drone Example: Navigation System Modeling\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#website\"},\"datePublished\":\"2026-02-25T10:43:54+00:00\",\"description\":\"Master the SysML drone example: learn how to model a drone\u2019s navigation and control system using structure, behavior, and requirements diagrams. A practical example for beginners.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SysML Essentials for Beginners\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Practical Application and Real-World Scenarios\",\"item\":\"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"SysML in Action: Modeling a Drone Navigation System\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/\",\"name\":\"Visual Paradigm Skills Espa\u00f1ol\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/es\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#organization\",\"name\":\"Visual Paradigm Skills Espa\u00f1ol\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/es\/wp-content\/uploads\/sites\/5\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/es\/wp-content\/uploads\/sites\/5\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Espa\u00f1ol\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/es\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SysML Drone Example: Navigation System Modeling","description":"Master the SysML drone example: learn how to model a drone\u2019s navigation and control system using structure, behavior, and requirements diagrams. A practical example for beginners.","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\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/","og_locale":"es_ES","og_type":"article","og_title":"SysML Drone Example: Navigation System Modeling","og_description":"Master the SysML drone example: learn how to model a drone\u2019s navigation and control system using structure, behavior, and requirements diagrams. A practical example for beginners.","og_url":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/","og_site_name":"Visual Paradigm Skills Espa\u00f1ol","twitter_card":"summary_large_image","twitter_misc":{"Tiempo de lectura":"6 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/","url":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/","name":"SysML Drone Example: Navigation System Modeling","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/#website"},"datePublished":"2026-02-25T10:43:54+00:00","description":"Master the SysML drone example: learn how to model a drone\u2019s navigation and control system using structure, behavior, and requirements diagrams. A practical example for beginners.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/sysml-drone-example-navigation-system\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/es\/"},{"@type":"ListItem","position":2,"name":"SysML Essentials for Beginners","item":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/"},{"@type":"ListItem","position":3,"name":"Practical Application and Real-World Scenarios","item":"https:\/\/skills.visual-paradigm.com\/es\/docs\/sysml-essentials-for-beginners\/sysml-examples\/"},{"@type":"ListItem","position":4,"name":"SysML in Action: Modeling a Drone Navigation System"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/es\/#website","url":"https:\/\/skills.visual-paradigm.com\/es\/","name":"Visual Paradigm Skills Espa\u00f1ol","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/es\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/es\/#organization","name":"Visual Paradigm Skills Espa\u00f1ol","url":"https:\/\/skills.visual-paradigm.com\/es\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/skills.visual-paradigm.com\/es\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/es\/wp-content\/uploads\/sites\/5\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/es\/wp-content\/uploads\/sites\/5\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Espa\u00f1ol"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/es\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs\/1618","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs\/1618\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/docs\/1617"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/media?parent=1618"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/es\/wp-json\/wp\/v2\/doc_tag?post=1618"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}