{"id":962,"date":"2026-02-25T10:33:22","date_gmt":"2026-02-25T10:33:22","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/"},"modified":"2026-02-25T10:33:22","modified_gmt":"2026-02-25T10:33:22","slug":"c4-model-terminology-beginner-guide","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/","title":{"rendered":"Key Terminology and Concepts Every Beginner Needs"},"content":{"rendered":"<p>Imagine walking into a meeting where developers, product owners, and ops engineers all speak different versions of the same system. The confusion isn\u2019t about code\u2014it\u2019s about understanding. That\u2019s where the C4 model makes a difference. It\u2019s not about drawing pretty pictures; it\u2019s about aligning teams through shared language.<\/p>\n<p>Many beginners start by copying templates or mimicking diagrams they\u2019ve seen. The mistake? Treating C4 as a rigid notation instead of a communication framework. You don\u2019t need to know every symbol upfront. You need to understand what each level represents and why it matters.<\/p>\n<p>This chapter gives you the essential vocabulary to speak confidently about software architecture. You\u2019ll learn the four core abstractions\u2014system, container, component, code\u2014how they relate, and when to use each. By the end, you\u2019ll be able to sketch a context diagram without overthinking, explain your choices clearly, and avoid the common trap of drawing too much too soon.<\/p>\n<h2>Core Abstractions: The Building Blocks of C4<\/h2>\n<p>The C4 model isn\u2019t built on arbitrary labels. Each abstraction serves a purpose: to guide attention, reduce cognitive load, and enable structured conversation.<\/p>\n<h3>System: The Big Picture<\/h3>\n<p>A system is a single, complete application or service that delivers value to users. It\u2019s bounded by clear edges\u2014what\u2019s inside, what\u2019s outside. Think of it as the &#8220;black box&#8221; view.<\/p>\n<p>For example, a banking app is a system. The users are external, and the system includes everything from the frontend to backend APIs and databases. You don\u2019t need to show internal details here.<\/p>\n<ul>\n<li>Represents the entire application as a single unit<\/li>\n<li>Defined by who uses it and who it interacts with<\/li>\n<li>Used in Level 1: System Context Diagrams<\/li>\n<\/ul>\n<h3>Container: The Building Blocks of a System<\/h3>\n<p>A container is a runtime environment where code runs. It\u2019s a logical boundary that houses components. Think of it as the host for your application.<\/p>\n<p>Within a web application system, containers might include:<\/p>\n<ul>\n<li>Frontend web app (React, Vue)<\/li>\n<li>API service (Node.js, Spring Boot)<\/li>\n<li>Database (PostgreSQL, MongoDB)<\/li>\n<li>File storage (S3, Blob)<\/li>\n<\/ul>\n<p>Each container runs in a separate process or deployment unit. The key is to avoid mixing containers with components\u2014this is where confusion often starts.<\/p>\n<h3>Component: Functional Units Inside a Container<\/h3>\n<p>Components are the functional building blocks inside a container. They\u2019re responsible for specific behaviors or data handling.<\/p>\n<p>Take an order management system. Its containers might be a web API and a database. Inside the API container, components could include:<\/p>\n<ul>\n<li>Order Service<\/li>\n<li>Payment Processor<\/li>\n<li>Inventory Validator<\/li>\n<li>Email Notification Handler<\/li>\n<\/ul>\n<p>Components should be cohesive\u2014each should have a clear, single responsibility. If a component starts handling unrelated logic, it\u2019s a sign it needs to be split.<\/p>\n<h3>Code: The Implementation Detail<\/h3>\n<p>Code is the lowest level. It shows how components are implemented in actual source files. This level is optional and should be used sparingly\u2014only when it adds real value.<\/p>\n<p>For example, if a team is struggling with dependency issues in a payment module, a code-level diagram showing the actual classes and their relationships can help clarify the problem.<\/p>\n<p>But don\u2019t fall into the trap of diagramming every class. Focus only on high-impact areas. The goal is not to document all the code\u2014but to make the critical architecture visible.<\/p>\n<h2>Diagram Types and Zoom Levels<\/h2>\n<p>Each level of the C4 model maps to a specific diagram type. These aren\u2019t just categories\u2014they\u2019re tools for communication at different levels of detail.<\/p>\n<h3>Level 1: System Context Diagram<\/h3>\n<p>Shows the system in its environment. Who uses it? What other systems does it connect to?<\/p>\n<ul>\n<li>Primary audience: Stakeholders, business teams<\/li>\n<li>Focus: External interactions<\/li>\n<li>Notation: Boxes for systems, arrows for interactions<\/li>\n<\/ul>\n<h3>Level 2: Container Diagram<\/h3>\n<p>Dives into the system\u2019s structure. What containers exist? What technologies are used?<\/p>\n<ul>\n<li>Primary audience: Developers, DevOps, architects<\/li>\n<li>Focus: Technology stack and boundaries<\/li>\n<li>Notation: Labeled containers, with tech names (e.g., \u201cSpring Boot API\u201d) and interaction lines<\/li>\n<\/ul>\n<h3>Level 3: Component Diagram<\/h3>\n<p>Breaks down a container into components. What are the major functional parts?<\/p>\n<ul>\n<li>Primary audience: Developers, tech leads<\/li>\n<li>Focus: Responsibility and dependencies<\/li>\n<li>Notation: Rectangles for components, lines showing dependencies<\/li>\n<\/ul>\n<h3>Level 4: Code Diagram (Optional)<\/h3>\n<p>Shows how components are implemented. Best for complex systems or critical paths.<\/p>\n<ul>\n<li>Primary audience: Developers, reviewers<\/li>\n<li>Focus: Specific classes, methods, and relationships<\/li>\n<li>Notation: Class diagrams, method-level diagrams<\/li>\n<\/ul>\n<h2>Decision Tree: When to Use Each Level<\/h2>\n<p>Not every diagram needs to go to Level 4. The right level depends on your audience and purpose.<\/p>\n<table>\n<tbody>\n<tr>\n<th>Use Case<\/th>\n<th>Recommended Level<\/th>\n<th>Why<\/th>\n<\/tr>\n<tr>\n<td>Presenting system to non-technical stakeholders<\/td>\n<td>Level 1<\/td>\n<td>Focus on users and external systems<\/td>\n<\/tr>\n<tr>\n<td>Onboarding new developers<\/td>\n<td>Level 2<\/td>\n<td>Shows tech stack and structure<\/td>\n<\/tr>\n<tr>\n<td>Debugging a complex dependency issue<\/td>\n<td>Level 3<\/td>\n<td>Reveals internal logic and flow<\/td>\n<\/tr>\n<tr>\n<td>Reviewing a critical module design<\/td>\n<td>Level 4<\/td>\n<td>Clarifies implementation details<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2>Notation Principles: Clarity Over Complexity<\/h2>\n<p>The C4 model uses simple, consistent symbols. Don\u2019t worry about mastering every convention at first\u2014focus on clarity.<\/p>\n<ul>\n<li>Use rectangles for containers and components<\/li>\n<li>Use double-lined rectangles for systems<\/li>\n<li>Use arrows to show interaction direction<\/li>\n<li>Label all elements clearly\u2014avoid abbreviations unless widely understood<\/li>\n<li>Keep the diagram clean. Remove clutter. Use whitespace.<\/li>\n<\/ul>\n<p>Remember: A diagram is not a map. It\u2019s a conversation starter. If someone can\u2019t understand it in 30 seconds, it\u2019s too complex.<\/p>\n<h2>Common Misconceptions About C4 Terminology<\/h2>\n<p>Let\u2019s address a few myths that trip up beginners.<\/p>\n<h3>Myth: C4 is a UML variant<\/h3>\n<p>It\u2019s not. C4 uses UML-like shapes but doesn\u2019t follow UML rules. For example, you don\u2019t need to show multiplicity or inheritance unless it adds value. The goal is not precision\u2014it\u2019s communication.<\/p>\n<h3>Myth: Every part of the system needs to be modeled at all levels<\/h3>\n<p>No. Only model what matters. A small microservice might only need a Level 2 diagram. A large enterprise system might benefit from all four levels.<\/p>\n<h3>Myth: You must start with Level 1<\/h3>\n<p>Not always. If you\u2019re deep in an architecture review, you might begin with a component diagram. The key is to know your audience and purpose.<\/p>\n<h2>Best Practices for C4 Model Beginners<\/h2>\n<p>These are lessons learned from real projects, not theory.<\/p>\n<ul>\n<li><strong>Start with context<\/strong>: Always define the system and its users first. This prevents scope creep.<\/li>\n<li><strong>Use consistent naming<\/strong>: \u201cUser Management Service\u201d is clearer than \u201cUMS\u201d unless your team agrees.<\/li>\n<li><strong>Limit interactions<\/strong>: More than 5\u20136 external connections make diagrams hard to read.<\/li>\n<li><strong>Update iteratively<\/strong>: Don\u2019t wait to perfect a diagram. Share early, get feedback, refine.<\/li>\n<li><strong>Document assumptions<\/strong>: Use a legend to explain decisions like \u201cWhy is this database in a separate container?\u201d<\/li>\n<\/ul>\n<h2>Frequently Asked Questions<\/h2>\n<h3>What is the difference between a container and a component in C4?<\/h3>\n<p>A container is a runtime environment (e.g., a web app, database). A component is a functional unit inside that container (e.g., a payment service). Containers group components by deployment and technology.<\/p>\n<h3>Can I use C4 model without any tools?<\/h3>\n<p>Yes. You can sketch on paper or whiteboards. The model works at any scale. Tools help with consistency and sharing, but they\u2019re not required.<\/p>\n<h3>When should I use Level 4 code diagrams?<\/h3>\n<p>Only when architectural decisions are hard to understand at Level 3. For example, if a component relies on a complex dependency graph, a code-level view can clarify it.<\/p>\n<h3>How do I decide which abstraction level to start with?<\/h3>\n<p>Ask: Who am I talking to? If it\u2019s business stakeholders, start with Level 1. If it\u2019s engineers, Level 2 is better. The audience shapes the abstraction.<\/p>\n<h3>Are there rules for colors in C4 diagrams?<\/h3>\n<p>There are no strict rules. Use colors to group or highlight\u2014but avoid overloading. Stick to 2\u20133 colors max. Red for critical, blue for services, green for data.<\/p>\n<h3>Can I mix C4 with other modeling techniques like BPMN?<\/h3>\n<p>Yes. Use C4 for structure and architecture. Use BPMN for workflows. They serve different purposes. C4 answers \u201cwhat\u201d and \u201chow,\u201d while BPMN answers \u201cwhen\u201d and \u201cwho.\u201d<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Imagine walking into a meeting where developers, product owners, and ops engineers all speak different versions of the same system. The confusion isn\u2019t about code\u2014it\u2019s about understanding. That\u2019s where the C4 model makes a difference. It\u2019s not about drawing pretty pictures; it\u2019s about aligning teams through shared language. Many beginners start by copying templates or [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":959,"menu_order":2,"template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"doc_tag":[],"class_list":["post-962","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 Terminology: Key Concepts for Beginners<\/title>\n<meta name=\"description\" content=\"Master C4 model terminology with this beginner-friendly guide. Learn abstractions, diagram types, and notation principles to build clear, communicative architecture diagrams from scratch.\" \/>\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\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/\" \/>\n<meta property=\"og:locale\" content=\"id_ID\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"C4 Model Terminology: Key Concepts for Beginners\" \/>\n<meta property=\"og:description\" content=\"Master C4 model terminology with this beginner-friendly guide. Learn abstractions, diagram types, and notation principles to build clear, communicative architecture diagrams from scratch.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills Indonesia\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Estimasi waktu membaca\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 menit\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/\",\"name\":\"C4 Model Terminology: Key Concepts for Beginners\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/#website\"},\"datePublished\":\"2026-02-25T10:33:22+00:00\",\"description\":\"Master C4 model terminology with this beginner-friendly guide. Learn abstractions, diagram types, and notation principles to build clear, communicative architecture diagrams from scratch.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/#breadcrumb\"},\"inLanguage\":\"id\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/id\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"From Zero to C4: Beginner Modeling Blueprint\",\"item\":\"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Foundations of C4 Modeling\",\"item\":\"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Key Terminology and Concepts Every Beginner Needs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/id\/\",\"name\":\"Visual Paradigm Skills Indonesia\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/id\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"id\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/#organization\",\"name\":\"Visual Paradigm Skills Indonesia\",\"url\":\"https:\/\/skills.visual-paradigm.com\/id\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"id\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/id\/wp-content\/uploads\/sites\/7\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/id\/wp-content\/uploads\/sites\/7\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills Indonesia\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/id\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"C4 Model Terminology: Key Concepts for Beginners","description":"Master C4 model terminology with this beginner-friendly guide. Learn abstractions, diagram types, and notation principles to build clear, communicative architecture diagrams from scratch.","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\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/","og_locale":"id_ID","og_type":"article","og_title":"C4 Model Terminology: Key Concepts for Beginners","og_description":"Master C4 model terminology with this beginner-friendly guide. Learn abstractions, diagram types, and notation principles to build clear, communicative architecture diagrams from scratch.","og_url":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/","og_site_name":"Visual Paradigm Skills Indonesia","twitter_card":"summary_large_image","twitter_misc":{"Estimasi waktu membaca":"7 menit"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/","url":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/","name":"C4 Model Terminology: Key Concepts for Beginners","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/id\/#website"},"datePublished":"2026-02-25T10:33:22+00:00","description":"Master C4 model terminology with this beginner-friendly guide. Learn abstractions, diagram types, and notation principles to build clear, communicative architecture diagrams from scratch.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/#breadcrumb"},"inLanguage":"id","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/c4-model-terminology-beginner-guide\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/id\/"},{"@type":"ListItem","position":2,"name":"From Zero to C4: Beginner Modeling Blueprint","item":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/"},{"@type":"ListItem","position":3,"name":"Foundations of C4 Modeling","item":"https:\/\/skills.visual-paradigm.com\/id\/docs\/from-zero-to-c4-beginner-modeling-blueprint\/foundations-of-c4-modeling\/"},{"@type":"ListItem","position":4,"name":"Key Terminology and Concepts Every Beginner Needs"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/id\/#website","url":"https:\/\/skills.visual-paradigm.com\/id\/","name":"Visual Paradigm Skills Indonesia","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/id\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/id\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"id"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/id\/#organization","name":"Visual Paradigm Skills Indonesia","url":"https:\/\/skills.visual-paradigm.com\/id\/","logo":{"@type":"ImageObject","inLanguage":"id","@id":"https:\/\/skills.visual-paradigm.com\/id\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/id\/wp-content\/uploads\/sites\/7\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/id\/wp-content\/uploads\/sites\/7\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills Indonesia"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/id\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/id\/wp-json\/wp\/v2\/docs\/962","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/id\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/id\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/id\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/id\/wp-json\/wp\/v2\/docs\/962\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/id\/wp-json\/wp\/v2\/docs\/959"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/id\/wp-json\/wp\/v2\/media?parent=962"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/id\/wp-json\/wp\/v2\/doc_tag?post=962"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}