{"id":1699,"date":"2026-02-25T10:44:55","date_gmt":"2026-02-25T10:44:55","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/"},"modified":"2026-02-25T10:44:55","modified_gmt":"2026-02-25T10:44:55","slug":"activity-diagram-example-order-fulfillment","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/","title":{"rendered":"Example: Modeling a Business Process with Activities"},"content":{"rendered":"<p>Activity diagrams are not just about flowcharts\u2014they\u2019re a powerful way to model real-world business logic with precision. When you see an activity diagram example for order fulfillment, you\u2019re not just drawing steps\u2014you\u2019re capturing decision points, responsibilities, and parallel operations in a single, visual blueprint.<\/p>\n<p>Most beginners assume activity diagrams are only for software logic. But in reality, they reflect how work flows across departments\u2014sales, warehouse, shipping\u2014making them ideal for modeling business processes.<\/p>\n<p>I\u2019ve seen teams skip this step and later struggle with unclear handoffs, missed exceptions, or duplicated work. By learning to model order fulfillment UML example with swimlanes, you gain clarity that saves time, reduces errors, and becomes a shared language across teams.<\/p>\n<p>Here, you\u2019ll walk through a full beginner activity diagram project using Visual Paradigm\u2019s swimlane tools\u2014complete with decision nodes, parallel flows, and export-ready formatting. No jargon, no fluff\u2014just a practical, step-by-step guide you can apply immediately.<\/p>\n<h2>Why Use Activity Diagrams for Business Processes?<\/h2>\n<p>Activity diagrams are especially effective when modeling business processes because they clearly show:<\/p>\n<ul>\n<li><strong>Control flow<\/strong> between steps<\/li>\n<li><strong>Decision points<\/strong> with conditions<\/li>\n<li><strong>Parallel tasks<\/strong> that run simultaneously<\/li>\n<li><strong>Responsibility allocation<\/strong> via swimlanes<\/li>\n<\/ul>\n<p>Unlike sequence diagrams that focus on object interactions, activity diagrams emphasize workflow. This makes them perfect for stakeholders who need to understand how a process works, not just how objects communicate.<\/p>\n<p>When you\u2019re building a beginner activity diagram project, start with a simple, real-world process\u2014like order fulfillment. This keeps the focus on understanding the structure, not getting lost in complexity.<\/p>\n<h2>Step-by-Step: Creating Your First Activity Diagram<\/h2>\n<h3>1. Define the Scope and Start\/End Points<\/h3>\n<p>Begin by identifying the start and end of your process. For an order fulfillment workflow, the start is typically:<\/p>\n<ul>\n<li><em>Order received from customer<\/em><\/li>\n<\/ul>\n<p>The end point is:<\/p>\n<ul>\n<li><em>Order shipped and confirmation sent<\/em><\/li>\n<\/ul>\n<p>These anchors keep your diagram focused and avoid unnecessary branches. Always define the initial trigger and final outcome before adding any actions.<\/p>\n<h3>2. Break Down Key Activities<\/h3>\n<p>Now, list the main actions in order. For order fulfillment, these might include:<\/p>\n<ol>\n<li>Verify order details<\/li>\n<li>Check inventory availability<\/li>\n<li>Reserve stock<\/li>\n<li>Prepare packaging<\/li>\n<li>Generate shipping label<\/li>\n<li>Ship order<\/li>\n<li>Send confirmation email<\/li>\n<\/ol>\n<p>Each action should be a single verb \u2014 not a sentence. This keeps the diagram clean and focused on workflow.<\/p>\n<h3>3. Add Decision Nodes and Guards<\/h3>\n<p>Not every order can be fulfilled. Introduce decision nodes to handle variations:<\/p>\n<ul>\n<li>Is inventory available?<\/li>\n<li>If yes \u2192 proceed to reserve stock<\/li>\n<li>If no \u2192 notify customer and cancel order<\/li>\n<\/ul>\n<p>Use guards to clarify conditions. For example:<\/p>\n<pre><code>Inventory Available? [Yes] \u2192 Reserve Stock\nInventory Available? [No] \u2192 Notify Customer<\/code><\/pre>\n<p>Guards make it clear when each flow path is taken. This is where many beginners make the mistake of using text boxes instead of proper decision nodes.<\/p>\n<h3>4. Use Swimlanes to Assign Responsibility<\/h3>\n<p>This is where activity diagram example becomes truly powerful. Swimlanes represent roles or departments. Draw vertical lanes for:<\/p>\n<ul>\n<li><strong>Sales Team<\/strong>: Receives order, verifies details<\/li>\n<li><strong>Warehouse<\/strong>: Checks inventory, reserves stock, packages<\/li>\n<li><strong>Shipping<\/strong>: Generates label, ships order<\/li>\n<li><strong>Customer Service<\/strong>: Sends confirmation, handles queries<\/li>\n<\/ul>\n<p>Place each activity in the appropriate lane. This makes who does what instantly clear\u2014especially to non-technical stakeholders.<\/p>\n<p>I once worked on a project where the shipping team didn\u2019t know when to start packaging. After adding swimlanes, the workflow gap became obvious. That\u2019s the power of visual clarity.<\/p>\n<h3>5. Model Parallel Flows for Efficiency<\/h3>\n<p>Some steps can happen at the same time:<\/p>\n<ul>\n<li>While the warehouse packs the order, the shipping team generates the label.<\/li>\n<li>After shipping, the customer service team sends the confirmation.<\/li>\n<\/ul>\n<p>Use fork and join nodes to represent this:<\/p>\n<ul>\n<li><strong>Fork<\/strong> \u2192 splits one flow into two parallel paths<\/li>\n<li><strong>Join<\/strong> \u2192 synchronizes parallel flows back into one<\/li>\n<\/ul>\n<p>For example:<\/p>\n<pre><code>Order packaged\n    \u2502\n    \u25bc\n[ Fork ] \u2192 Package preparation\n           \u2502\n           \u25bc\n       Generate label\n           \u2502\n           \u25bc\n[ Join ] \u2192 Ship order<\/code><\/pre>\n<p>Parallel flows reduce cycle time and help identify bottlenecks.<\/p>\n<h2>Common Mistakes to Avoid in Your Activity Diagram Project<\/h2>\n<p>Even experienced users make these errors. Watch out for:<\/p>\n<ul>\n<li><strong>Overloading a single node<\/strong>: Avoid long descriptions. Keep actions concise and atomic.<\/li>\n<li><strong>Ignoring swimlanes<\/strong>: Without them, processes become ambiguous\u2014\u201cWho does this?\u201d<\/li>\n<li><strong>Using too many decision nodes<\/strong>: Keep conditionals simple. If you have more than 3\u20134, consider splitting into sub-processes.<\/li>\n<li><strong>Missing merge nodes<\/strong>: After branches, always use a merge node to rejoin flows.<\/li>\n<li><strong>Using arrows without structure<\/strong>: Let the layout guide the flow. Avoid crossing lines.<\/li>\n<\/ul>\n<p>One of the biggest pitfalls in a beginner activity diagram project is trying to model everything at once. Start small\u2014focus on the core path, then expand with exceptions and parallel tasks.<\/p>\n<h2>Exporting and Sharing Your Diagram<\/h2>\n<p>Once complete, export your activity diagram example in multiple formats:<\/p>\n<ul>\n<li><strong>PNG<\/strong>: For reports, presentations, or documentation<\/li>\n<li><strong>PDF<\/strong>: For printing or sharing with stakeholders<\/li>\n<li><strong>SVG<\/strong>: For web use or scalable diagrams<\/li>\n<\/ul>\n<p>Visual Paradigm makes this easy with one-click export options. You can also add notes, highlights, or annotations to emphasize key logic points.<\/p>\n<p>When sharing, label the diagram clearly: \u201cOrder Fulfillment Workflow \u2013 Activity Diagram Example (Beginner Activity Diagram Project).\u201d This helps others understand its purpose immediately.<\/p>\n<h2>Real-World Application: Business Process Activity Diagram in Action<\/h2>\n<p>Let\u2019s say your team is designing a retail app. The business wants to know how long it takes to fulfill an order after checkout.<\/p>\n<p>By modeling this with an activity diagram example, you uncover that warehouse preparation takes longer than expected\u2014because it\u2019s done manually. The solution? Introduce automation in the \u201cPrepare packaging\u201d step.<\/p>\n<p>This insight didn\u2019t come from code or requirements documents. It came from visualizing the process. That\u2019s the real value of activity diagrams.<\/p>\n<p>For teams using agile, this diagram becomes a living document. Update it after each sprint, track improvements, and share changes with the product owner.<\/p>\n<h2>Conclusion<\/h2>\n<p>Modeling a business process with an activity diagram example isn\u2019t just about drawing shapes\u2014it\u2019s about gaining clarity, improving communication, and identifying inefficiencies early.<\/p>\n<p>By using swimlanes, decision nodes, and parallel flows, you create a blueprint that\u2019s both accurate and accessible. Whether you\u2019re building a beginner activity diagram project or refining a complex workflow, this method scales with your needs.<\/p>\n<p>Start with order fulfillment UML example. Use Visual Paradigm\u2019s tools to organize, validate, and export. You\u2019ll not only learn how to draw the diagram\u2014you\u2019ll learn how to think in workflows.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>What is the best tool for creating an activity diagram example?<\/h3>\n<p>Visual Paradigm is ideal for beginners. Its drag-and-drop interface, built-in swimlane support, and export options make it easy to create, edit, and share activity diagrams without prior experience.<\/p>\n<h3>How do I keep my activity diagram clean and readable?<\/h3>\n<p>Use clear labels, avoid crossing lines, group related steps, and apply swimlanes. Limit decision nodes to key points\u2014don\u2019t break every task into a decision. Keep the flow top-to-bottom or left-to-right for consistency.<\/p>\n<h3>Can I use activity diagrams for non-technical stakeholders?<\/h3>\n<p>Absolutely. Activity diagrams use simple symbols and real-world actions. With clear swimlanes and minimal jargon, even non-technical teams can understand the workflow and spot bottlenecks.<\/p>\n<h3>When should I use activity diagrams instead of flowcharts?<\/h3>\n<p>Activity diagrams are a modern, standardized extension of flowcharts. They support advanced features like swimlanes, parallel flows, and decision guards\u2014making them more powerful and better suited for software and business process modeling.<\/p>\n<h3>How do I represent retries or exceptions in an activity diagram?<\/h3>\n<p>Model exceptions as alternate flows. Use decision nodes to check conditions like \u201cIs the shipment tracking number generated?\u201d If not, loop back to the previous step. You can also use a separate path with a note like \u201cException: Failed to generate label.\u201d<\/p>\n<h3>What\u2019s the difference between a business process activity diagram and a use case diagram?<\/h3>\n<p>Use case diagrams focus on <em>what<\/em> a system does from a user\u2019s perspective. Activity diagrams focus on <em>how<\/em> that work is done\u2014breaking down the steps, decisions, and responsibilities involved. Use both: use cases define the goal, activity diagrams show how to achieve it.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Activity diagrams are not just about flowcharts\u2014they\u2019re a powerful way to model real-world business logic with precision. When you see an activity diagram example for order fulfillment, you\u2019re not just drawing steps\u2014you\u2019re capturing decision points, responsibilities, and parallel operations in a single, visual blueprint. Most beginners assume activity diagrams are only for software logic. But [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1695,"menu_order":3,"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-1699","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>Activity Diagram Example: Order Fulfillment Process<\/title>\n<meta name=\"description\" content=\"Learn how to model a business process with an activity diagram example using swimlanes and UML best practices. Perfect for beginners mastering order fulfillment UML example and activity diagram project workflows.\" \/>\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\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/\" \/>\n<meta property=\"og:locale\" content=\"pt_PT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Activity Diagram Example: Order Fulfillment Process\" \/>\n<meta property=\"og:description\" content=\"Learn how to model a business process with an activity diagram example using swimlanes and UML best practices. Perfect for beginners mastering order fulfillment UML example and activity diagram project workflows.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Portugu\u00eas\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Tempo estimado de leitura\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/\",\"name\":\"Activity Diagram Example: Order Fulfillment Process\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#website\"},\"datePublished\":\"2026-02-25T10:44:55+00:00\",\"description\":\"Learn how to model a business process with an activity diagram example using swimlanes and UML best practices. Perfect for beginners mastering order fulfillment UML example and activity diagram project workflows.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/#breadcrumb\"},\"inLanguage\":\"pt-PT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pt\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"UML Basics: Diagrams for Beginners\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Activity Diagrams for Process Visualization\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Example: Modeling a Business Process with Activities\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/\",\"name\":\"Visual Paradigm Skills Portugu\u00eas\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/pt\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pt-PT\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#organization\",\"name\":\"Visual Paradigm Skills Portugu\u00eas\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pt-PT\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pt\/wp-content\/uploads\/sites\/9\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/pt\/wp-content\/uploads\/sites\/9\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Portugu\u00eas\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pt\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Activity Diagram Example: Order Fulfillment Process","description":"Learn how to model a business process with an activity diagram example using swimlanes and UML best practices. Perfect for beginners mastering order fulfillment UML example and activity diagram project workflows.","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\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/","og_locale":"pt_PT","og_type":"article","og_title":"Activity Diagram Example: Order Fulfillment Process","og_description":"Learn how to model a business process with an activity diagram example using swimlanes and UML best practices. Perfect for beginners mastering order fulfillment UML example and activity diagram project workflows.","og_url":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/","og_site_name":"Visual Paradigm Skills Portugu\u00eas","twitter_card":"summary_large_image","twitter_misc":{"Tempo estimado de leitura":"7 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/","url":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/","name":"Activity Diagram Example: Order Fulfillment Process","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/#website"},"datePublished":"2026-02-25T10:44:55+00:00","description":"Learn how to model a business process with an activity diagram example using swimlanes and UML best practices. Perfect for beginners mastering order fulfillment UML example and activity diagram project workflows.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/#breadcrumb"},"inLanguage":"pt-PT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/activity-diagram-example-order-fulfillment\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/pt\/"},{"@type":"ListItem","position":2,"name":"UML Basics: Diagrams for Beginners","item":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/"},{"@type":"ListItem","position":3,"name":"Activity Diagrams for Process Visualization","item":"https:\/\/skills.visual-paradigm.com\/pt\/docs\/uml-basics-diagrams-for-beginners\/uml-activity-diagram\/"},{"@type":"ListItem","position":4,"name":"Example: Modeling a Business Process with Activities"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/pt\/#website","url":"https:\/\/skills.visual-paradigm.com\/pt\/","name":"Visual Paradigm Skills Portugu\u00eas","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/pt\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pt-PT"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/pt\/#organization","name":"Visual Paradigm Skills Portugu\u00eas","url":"https:\/\/skills.visual-paradigm.com\/pt\/","logo":{"@type":"ImageObject","inLanguage":"pt-PT","@id":"https:\/\/skills.visual-paradigm.com\/pt\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/pt\/wp-content\/uploads\/sites\/9\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/pt\/wp-content\/uploads\/sites\/9\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Portugu\u00eas"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/pt\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs\/1699","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs\/1699\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/docs\/1695"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/media?parent=1699"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pt\/wp-json\/wp\/v2\/doc_tag?post=1699"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}