{"id":972,"date":"2026-02-25T10:33:26","date_gmt":"2026-02-25T10:33:26","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/"},"modified":"2026-02-25T10:33:26","modified_gmt":"2026-02-25T10:33:26","slug":"c4-model-case-studies-real-world-examples","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/","title":{"rendered":"Case Studies: C4 in Small-Scale Projects"},"content":{"rendered":"<p>One of the most common sources of wasted time in early software design is treating architecture as a one-off documentation task rather than an evolving conversation. Teams often spend hours drawing complex diagrams that no one reviews, understand, or update. The real shift isn\u2019t about tools\u2014it\u2019s about recognizing that C4 model case studies aren\u2019t just for large systems. They\u2019re powerful in small projects too. When you start with a simple system context diagram\u2014even for a basic to-do app\u2014you\u2019re not over-engineering. You\u2019re establishing clarity from day one. This chapter shows how applying the C4 model to small project C4 diagrams prevents future rework and improves team alignment.<\/p>\n<p>I\u2019ve seen teams rebuild entire mobile apps because no one had documented how components interacted. A single miscommunication led to duplicated logic and a tangled codebase. The fix? Not rewriting, but starting with a Level 1 C4 diagram. You\u2019ll learn how even modest systems benefit from structured abstraction, and how C4 model real world examples demonstrate that simplicity isn\u2019t a limitation\u2014it\u2019s a strength.<\/p>\n<h2>Why Small Projects Need C4 Too<\/h2>\n<p>It\u2019s tempting to think C4 only applies to enterprise systems. But the truth is, small projects suffer from the same architectural drift\u2014just faster.<\/p>\n<p>Without any formal structure, developers make assumptions. One team built a fitness tracking app using a single monolithic backend. Two months in, they added a new feature: real-time syncing. Without a component diagram, they didn\u2019t realize the notification service was tightly coupled to the workout processor. The fix required a full refactor, costing weeks of effort.<\/p>\n<p>Now, imagine if they\u2019d started with a Level 2 C4 diagram. They would\u2019ve seen the container boundaries and dependencies early. That\u2019s the power of small project C4 diagrams: they expose risks before they become crises.<\/p>\n<h3>Real-World Example: A Todo App with Purpose<\/h3>\n<p>Let\u2019s walk through a simple web-based to-do app. The goal isn\u2019t just to build features\u2014it\u2019s to create a model that communicates intent.<\/p>\n<p><strong>Level 1: System Context<\/strong><\/p>\n<p>The system has one user: a registered user. It interacts with a database and a third-party email service for reminders.<\/p>\n<p>Key insight: The diagram clarifies that the app is not just a &#8222;web app.&#8221; It\u2019s a <em>web application<\/em> with defined external dependencies. This prevents assumptions like \u201cwe\u2019ll just mock the email service\u201d during development.<\/p>\n<p><strong>Level 2: Container Diagram<\/strong><\/p>\n<p>Containers include:\n      <\/p>\n<ul>\n<li>React-based web frontend (hosted on Vercel)<\/li>\n<li>Node.js REST API (hosted on AWS Lambda)<\/li>\n<li>PostgreSQL database (Amazon RDS)<\/li>\n<li>SendGrid for email delivery<\/li>\n<\/ul>\n<p>This reveals immediate decisions: Why Vercel? Why AWS Lambda instead of a full server? The diagram forces you to justify choices\u2014and that\u2019s where clarity begins.<\/p>\n<p><strong>Level 3: Component Diagram<\/strong><\/p>\n<p>Inside the API, components include:\n      <\/p>\n<ul>\n<li>User Authentication Service<\/li>\n<li>To-Do Item Service<\/li>\n<li>Email Notification Service<\/li>\n<li>Task Scheduler<\/li>\n<\/ul>\n<p>Now, when someone asks, \u201cCan the email service run independently?\u201d\u2014the answer is visible. The diagram shows it&#8217;s a separate component, decoupled from the task scheduler.<\/p>\n<p>By Level 3, you\u2019re not just documenting code\u2014you\u2019re shaping design decisions. The team that used this model caught a dependency loop before it caused a crash. A single email service call was being triggered from the auth flow, creating a feedback loop. The component diagram made it obvious.<\/p>\n<h3>Trade-offs in Small Project C4 Diagrams<\/h3>\n<p>Not every small project needs all four levels. The key is knowing when to stop.<\/p>\n<table>\n<tbody>\n<tr>\n<th>Level<\/th>\n<th>Use Case<\/th>\n<th>When to Skip<\/th>\n<\/tr>\n<tr>\n<td>Level 1<\/td>\n<td>Initial stakeholder alignment<\/td>\n<td>When the system is trivial (e.g., a static landing page)<\/td>\n<\/tr>\n<tr>\n<td>Level 2<\/td>\n<td>Defining technology stack and integration points<\/td>\n<td>When the app has no external dependencies<\/td>\n<\/tr>\n<tr>\n<td>Level 3<\/td>\n<td>Designing internal structure and responsibilities<\/td>\n<td>For apps with fewer than 3 core services<\/td>\n<\/tr>\n<tr>\n<td>Level 4<\/td>\n<td>Deep dives into complex logic or critical paths<\/td>\n<td>When no component is reused or performance-critical<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Use this table not as a rule, but as a checkpoint. It helps avoid over-engineering while preserving clarity.<\/p>\n<h2>How C4 Prevents Redesigns<\/h2>\n<p>One of the biggest costs in software development is rework. In small projects, this often comes from poor communication. A feature request gets misinterpreted because the team didn\u2019t agree on how components interact.<\/p>\n<p>With C4, that\u2019s harder. A single diagram becomes the source of truth. When a new feature is added\u2014say, task due dates\u2014the team asks: Where does this logic belong? Is it part of the task service? Or a new scheduler module?<\/p>\n<p>Without a diagram, they guess. With one, they discuss. The result? Fewer bugs, fewer pull requests, and faster delivery.<\/p>\n<p>Consider this scenario: A mobile app team added a new feature to sync tasks across devices. They didn\u2019t have a C4 diagram. The sync logic ended up in the backend, but also duplicated in the mobile app. Two months later, a bug appeared: updates weren\u2019t synchronized correctly.<\/p>\n<p>After creating a Level 2 container diagram, they realized the sync logic should live in a dedicated service\u2014not spread across devices. They refactored, restored consistency, and avoided future drift.<\/p>\n<p>This is the real value of C4 model real world examples: they turn guesswork into shared understanding.<\/p>\n<h2>Practical Tips for Beginners<\/h2>\n<p>Here\u2019s how to start with small project C4 diagrams\u2014even if you\u2019re new to modeling:<\/p>\n<ol>\n<li><strong>Start with Level 1<\/strong>\u2014Who uses the system? What external systems does it interact with? Draw it before writing code.<\/li>\n<li><strong>Use simple tools<\/strong>\u2014Visual Paradigm, or even pen and paper work fine. The goal isn\u2019t perfection\u2014it\u2019s communication.<\/li>\n<li><strong>Update with the team<\/strong>\u2014Review diagrams during sprint planning. When a new dependency appears, add it.<\/li>\n<li><strong>Keep diagrams small<\/strong>\u2014Avoid overloading. If you need more than 6\u20137 elements, consider breaking it down.<\/li>\n<li><strong>Link to code<\/strong>\u2014Use comments or annotations to point to actual classes or functions. This bridges the gap between model and implementation.<\/li>\n<\/ol>\n<p>These steps aren\u2019t just for beginners\u2014they\u2019re for anyone building anything beyond a prototype.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Do I need to use all four levels for small projects?<\/h3>\n<p>No. Start with Level 1 for stakeholder alignment. Add Level 2 if you have multiple systems or integrations. Level 3 only if you\u2019re managing complex internal logic. Level 4 is optional and best used for critical components.<\/p>\n<h3>Can C4 model real world examples help with freelance or solo projects?<\/h3>\n<p>Absolutely. Even for solo developers, a C4 diagram acts as a personal design guide. It prevents drift and makes onboarding future contributors easier.<\/p>\n<h3>What if my app is too simple to need a C4 diagram?<\/h3>\n<p>If your app is a basic form or a static site, a diagram may not be needed. But if it has logic, interactions, or dependencies, even a Level 1 diagram adds value. Clarity is never overkill.<\/p>\n<h3>How do I keep C4 diagrams from becoming outdated?<\/h3>\n<p>Update them during sprint reviews. Treat them as living artifacts. When a new technology is introduced or a component changes, revise the diagram. Use version control for the files.<\/p>\n<h3>Should I share C4 diagrams with non-technical stakeholders?<\/h3>\n<h4>Yes\u2014but only the top-level diagram. Level 1 is perfect for product managers, clients, or investors. It explains the system without jargon.<\/h4>\n<h3>Can I use C4 for mobile apps?<\/h3>\n<p>Yes. A mobile app typically has a frontend (native or React Native), a backend API, and a database. The same C4 model applies. Use a Level 2 diagram to show how the app interacts with cloud services and local storage.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>One of the most common sources of wasted time in early software design is treating architecture as a one-off documentation task rather than an evolving conversation. Teams often spend hours drawing complex diagrams that no one reviews, understand, or update. The real shift isn\u2019t about tools\u2014it\u2019s about recognizing that C4 model case studies aren\u2019t just [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":970,"menu_order":1,"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-972","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>C4 Model Case Studies: Real-World Examples for Beginners<\/title>\n<meta name=\"description\" content=\"Discover practical C4 model case studies for small-scale projects. Learn how real-world examples improve decision-making and prevent redesigns in web and mobile apps.\" \/>\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\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/\" \/>\n<meta property=\"og:locale\" content=\"pl_PL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C4 Model Case Studies: Real-World Examples for Beginners\" \/>\n<meta property=\"og:description\" content=\"Discover practical C4 model case studies for small-scale projects. Learn how real-world examples improve decision-making and prevent redesigns in web and mobile apps.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Polski\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Szacowany czas czytania\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minut\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/\",\"name\":\"C4 Model Case Studies: Real-World Examples for Beginners\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#website\"},\"datePublished\":\"2026-02-25T10:33:26+00:00\",\"description\":\"Discover practical C4 model case studies for small-scale projects. Learn how real-world examples improve decision-making and prevent redesigns in web and mobile apps.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/#breadcrumb\"},\"inLanguage\":\"pl-PL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"From Zero to C4: Beginner Modeling Blueprint\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Best Practices and Real-World Application\",\"item\":\"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Case Studies: C4 in Small-Scale Projects\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/\",\"name\":\"Visual Paradigm Skills Polski\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/pl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"pl-PL\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#organization\",\"name\":\"Visual Paradigm Skills Polski\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"pl-PL\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Polski\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C4 Model Case Studies: Real-World Examples for Beginners","description":"Discover practical C4 model case studies for small-scale projects. Learn how real-world examples improve decision-making and prevent redesigns in web and mobile apps.","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\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/","og_locale":"pl_PL","og_type":"article","og_title":"C4 Model Case Studies: Real-World Examples for Beginners","og_description":"Discover practical C4 model case studies for small-scale projects. Learn how real-world examples improve decision-making and prevent redesigns in web and mobile apps.","og_url":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/","og_site_name":"Visual Paradigm Skills Polski","twitter_card":"summary_large_image","twitter_misc":{"Szacowany czas czytania":"6 minut"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/","url":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/","name":"C4 Model Case Studies: Real-World Examples for Beginners","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#website"},"datePublished":"2026-02-25T10:33:26+00:00","description":"Discover practical C4 model case studies for small-scale projects. Learn how real-world examples improve decision-making and prevent redesigns in web and mobile apps.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/#breadcrumb"},"inLanguage":"pl-PL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/c4-model-case-studies-real-world-examples\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/pl\/"},{"@type":"ListItem","position":2,"name":"From Zero to C4: Beginner Modeling Blueprint","item":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/"},{"@type":"ListItem","position":3,"name":"Best Practices and Real-World Application","item":"https:\/\/skills.visual-paradigm.com\/pl\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/c4-model-best-practices\/"},{"@type":"ListItem","position":4,"name":"Case Studies: C4 in Small-Scale Projects"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#website","url":"https:\/\/skills.visual-paradigm.com\/pl\/","name":"Visual Paradigm Skills Polski","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/pl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"pl-PL"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#organization","name":"Visual Paradigm Skills Polski","url":"https:\/\/skills.visual-paradigm.com\/pl\/","logo":{"@type":"ImageObject","inLanguage":"pl-PL","@id":"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/pl\/wp-content\/uploads\/sites\/8\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Polski"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/pl\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/972","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/972\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/docs\/970"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/media?parent=972"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/pl\/wp-json\/wp\/v2\/doc_tag?post=972"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}