{"id":1493,"date":"2026-02-25T10:42:12","date_gmt":"2026-02-25T10:42:12","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/"},"modified":"2026-02-25T10:42:12","modified_gmt":"2026-02-25T10:42:12","slug":"soaml-microservice-modeling-cloud","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/","title":{"rendered":"Adapting SoaML for Microservice and Cloud Architectures"},"content":{"rendered":"<p>SoaML isn\u2019t just for enterprise SOA\u2014it\u2019s a foundational language for modern, distributed systems.<\/p>\n<p>When I first started modeling cloud-native services, I realized that the same principles I used in monolithic SOA still applied\u2014just at a finer grain.<\/p>\n<p>SoaML microservice modeling helps you define, visualize, and govern services in a way that scales across teams, environments, and deployment pipelines.<\/p>\n<p>You\u2019ll learn how to apply SoaML to define autonomous services, align contracts with cloud deployment patterns, and establish traceability from design to runtime.<\/p>\n<h2>Mapping SoaML Concepts to Microservices and Cloud<\/h2>\n<p>Microservices aren\u2019t just small services\u2014they\u2019re independently deployable, loosely coupled units that require clear ownership and contract enforcement.<\/p>\n<p>SoaML\u2019s <strong>participant<\/strong> and <strong>service contract<\/strong> elements map directly to microservice boundaries and API contracts.<\/p>\n<p>Each service in a microservice-based system is a participant in a SoaML model, with a defined capability and interface.<\/p>\n<p>Cloud environments amplify the need for consistency across environments (dev, staging, prod) and infrastructure-as-code (IaC) practices.<\/p>\n<p>SoaML models act as living documentation that can be validated, versioned, and shared across teams\u2014critical for CI\/CD pipelines.<\/p>\n<h3>Service Granularity: From Monolith to Microservice<\/h3>\n<p>One of the most debated topics is how fine-grained a service should be. SoaML helps you answer this by modeling capabilities and responsibilities.<\/p>\n<p>Use the <strong>capability-based design<\/strong> principle: define services around business capabilities, not technical functions.<\/p>\n<p>Ask: Can this service be developed, tested, and deployed independently? If yes, it\u2019s likely a valid microservice candidate.<\/p>\n<ul>\n<li><strong>Too coarse:** A single service handling user management, billing, and order processing.<\/strong><\/li>\n<p><strong><\/p>\n<li><strong>Just right:** A dedicated <em>Order Service<\/em> focused on order lifecycle and state.<\/strong><\/li>\n<p><strong><\/p>\n<li><strong>Too fine:** A <em>Order Validation Service<\/em> that does only one validation check.<\/strong><\/li>\n<p><strong><br \/>\n<\/strong><\/strong><\/strong><\/ul>\n<p><strong><strong><strong><\/p>\n<p>SoaML encourages balance by modeling both the <em>what<\/em> (capability) and <em>how<\/em> (interface and contract).<\/p>\n<h3>Autonomous Deployment with SoaML<\/h3>\n<p>Autonomy means a team can deploy their service without coordination with others\u2014this is where SoaML shines.<\/p>\n<p>Model deployment environment dependencies explicitly using <strong>deployment artifacts<\/strong> and <strong>service deployment links<\/strong>.<\/p>\n<p>Each service\u2019s deployment configuration becomes part of the model, ensuring traceability from design to infrastructure.<\/p>\n<p>Consider this pattern:<\/p>\n<ul>\n<li>Define a <em>Deployment Environment<\/em> for each stage (dev, prod).<\/li>\n<li>Link the service to its deployment artifacts (Dockerfile, Helm chart, etc.).<\/li>\n<li>Use <em>Deployment Link<\/em> to show how the service is provisioned.<\/li>\n<\/ul>\n<p>This provides a clear audit trail and prevents drift between design and reality.<\/p>\n<h2>Patterns for Modern Architecture with SoaML<\/h2>\n<h3>1. Contract-First Design with SoaML Service Contracts<\/h3>\n<p>Don\u2019t define APIs after the fact\u2014define the contract first.<\/p>\n<p>SoaML service contracts capture <em>operations<\/em>, <em>input\/output messages<\/em>, and <em>exception handling<\/em>.<\/p>\n<p>Use this to generate OpenAPI\/Swagger specs or gRPC definitions directly from the model.<\/p>\n<pre><code>Service Contract: OrderService\n- Operation: CreateOrder\n  - Input: OrderRequest (JSON)\n  - Output: OrderResponse (with ID)\n  - Faults: InvalidItemError, InsufficientStockError\n<\/code><\/pre>\n<p>This ensures both consumer and provider agree on behavior before implementation.<\/p>\n<h3>2. Event-Driven Communication<\/h3>\n<p>Cloud-native systems often use event-driven architectures via message brokers (e.g., Kafka, SNS).<\/p>\n<p>SoaML supports this through <strong>message channels<\/strong> and <em>event-based collaboration<\/em>.<\/p>\n<p>Model publish-subscribe patterns using:<\/p>\n<ul>\n<li><em>Event Producer<\/em>: Service that emits an event.<\/li>\n<li><em>Event Consumer<\/em>: Service that listens and reacts.<\/li>\n<li><em>Message Channel<\/em>: The communication path (e.g., Kafka topic).<\/li>\n<\/ul>\n<p>This allows you to visualize system decoupling and failure isolation.<\/p>\n<h3>3. API Gateway as a Mediator<\/h3>\n<p>Cloud APIs often use gateways to route and secure requests.<\/p>\n<p>In SoaML, model the API Gateway as a <em>facilitator participant<\/em> that routes requests to backend microservices.<\/p>\n<p>Show how it enforces authentication, rate limiting, and request transformation.<\/p>\n<p>This helps clarify responsibilities and avoids overloading microservices with cross-cutting concerns.<\/p>\n<h2>SoaML and Cloud Architecture: Key Considerations<\/h2>\n<p>Cloud environments add complexity\u2014networks, security, scaling, and observability.<\/p>\n<p>SoaML models can include metadata like:<\/p>\n<ul>\n<li>Deployment region (e.g., us-east-1)<\/li>\n<li>Auto-scaling triggers<\/li>\n<li>Health check endpoints<\/li>\n<li>Monitoring tags (e.g., &#8220;tracing: enabled&#8221;)<\/li>\n<\/ul>\n<p>These don\u2019t replace configuration files\u2014they inform them.<\/p>\n<h3>SoaML vs. Cloud Infrastructure: A Practical Comparison<\/h3>\n<table>\n<tbody>\n<tr>\n<th>Aspect<\/th>\n<th>SoaML Modeling<\/th>\n<th>Cloud Infrastructure-as-Code<\/th>\n<\/tr>\n<tr>\n<td><strong>Abstraction Level<\/strong><\/td>\n<td>High-level service behavior, contracts, collaboration<\/td>\n<td>Low-level deployment, resources, policies<\/td>\n<\/tr>\n<tr>\n<td><strong>Focus<\/strong><\/td>\n<td>What services do and how they interact<\/td>\n<td>How to provision and configure resources<\/td>\n<\/tr>\n<tr>\n<td><strong>Best Used For<\/strong><\/td>\n<td>Design, review, governance, documentation<\/td>\n<td>Automation, CI\/CD, deployment<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The key insight: <strong>SoaML and IaC are complementary<\/strong>. Model the behavior first, then implement it.<\/p>\n<h2>SoaML Microservice Modeling in Practice<\/h2>\n<p>Here\u2019s how I approach a real-world microservice setup in a payment processing system:<\/p>\n<ol>\n<li><strong>Identify business capabilities<\/strong>: Payment Processing, Fraud Detection, Settlement.<\/li>\n<li><strong>Create a participant for each service<\/strong> in SoaML.<\/li>\n<li><strong>Define service contracts<\/strong> with operation names, message types, and fault handling.<\/li>\n<li><strong>Define deployment links<\/strong> to Kubernetes manifests or AWS Lambda functions.<\/li>\n<li><strong>Map event channels<\/strong> for fraud alerts and settlement confirmations.<\/li>\n<li><strong>Validate against autonomy rules<\/strong>: No shared databases, no direct service calls without API contract.<\/li>\n<\/ol>\n<p>This workflow ensures the team can build, test, and deploy services independently\u2014while staying aligned on design.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>How does SoaML support microservice autonomy?<\/h3>\n<p>SoaML defines services as <em>participants<\/em> with independent <em>capabilities<\/em> and <em>service contracts<\/em>. This enforces clear boundaries and responsibilities. When a service&#8217;s contract is stable and independently deployable, autonomy is achieved.<\/p>\n<h3>Can SoaML be used with Kubernetes and Docker?<\/h3>\n<p>Absolutely. SoaML models can reference deployment artifacts like Docker images and Kubernetes manifests. The model shows *what* is deployed and *how* it integrates, while Kubernetes YAML defines *how* it runs.<\/p>\n<h3>How do I model service-to-service communication in SoaML?<\/h3>\n<p>Use <em>service collaboration<\/em> with <em>message channels<\/em>. Define whether communication is synchronous (request-response) or asynchronous (event-driven). Specify message types and protocols (e.g., HTTP, gRPC, Kafka).<\/p>\n<h3>Is SoaML suitable for serverless architectures?<\/h3>\n<p>Yes. SoaML models can represent AWS Lambda functions, Azure Functions, or Google Cloud Functions as services with defined inputs and outputs. The key is to model the function\u2019s <em>capability<\/em> and <em>contract<\/em>, not the runtime details.<\/p>\n<h3>What about security and authentication in SoaML models?<\/h3>\n<p>Include security as part of the service contract: define authorization rules, authentication methods (OAuth, API keys), and data handling policies. You can also model the API gateway as a security layer.<\/p>\n<h3>How do I ensure SoaML models stay relevant in fast-moving teams?<\/h3>\n<p>Use versioning, integrate with CI\/CD, and treat SoaML as living documentation. Regular peer reviews and automated validation (via tools like Visual Paradigm) help maintain quality and alignment.<\/p>\n<p><\/strong><\/strong><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>SoaML isn\u2019t just for enterprise SOA\u2014it\u2019s a foundational [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1491,"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-1493","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>SoaML Microservice Modeling in Cloud<\/title>\n<meta name=\"description\" content=\"Master SoaML microservice modeling in cloud environments with practical guidance on service granularity, autonomous deployment, and integration patterns for modern architecture.\" \/>\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\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SoaML Microservice Modeling in Cloud\" \/>\n<meta property=\"og:description\" content=\"Master SoaML microservice modeling in cloud environments with practical guidance on service granularity, autonomous deployment, and integration patterns for modern architecture.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/\",\"name\":\"SoaML Microservice Modeling in Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#website\"},\"datePublished\":\"2026-02-25T10:42:12+00:00\",\"description\":\"Master SoaML microservice modeling in cloud environments with practical guidance on service granularity, autonomous deployment, and integration patterns for modern architecture.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SoaML Diagram Fundamentals: A Beginner\u2019s Guide\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bringing SoaML to the Real World\",\"item\":\"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Adapting SoaML for Microservice and Cloud Architectures\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/\",\"name\":\"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/cn\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#organization\",\"name\":\"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/cn\/wp-content\/uploads\/sites\/3\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/cn\/wp-content\/uploads\/sites\/3\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/cn\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"SoaML Microservice Modeling in Cloud","description":"Master SoaML microservice modeling in cloud environments with practical guidance on service granularity, autonomous deployment, and integration patterns for modern architecture.","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\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/","og_locale":"zh_CN","og_type":"article","og_title":"SoaML Microservice Modeling in Cloud","og_description":"Master SoaML microservice modeling in cloud environments with practical guidance on service granularity, autonomous deployment, and integration patterns for modern architecture.","og_url":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/","og_site_name":"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587","twitter_card":"summary_large_image","twitter_misc":{"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"5 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/","url":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/","name":"SoaML Microservice Modeling in Cloud","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/#website"},"datePublished":"2026-02-25T10:42:12+00:00","description":"Master SoaML microservice modeling in cloud environments with practical guidance on service granularity, autonomous deployment, and integration patterns for modern architecture.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/soaml-microservice-modeling-cloud\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/cn\/"},{"@type":"ListItem","position":2,"name":"SoaML Diagram Fundamentals: A Beginner\u2019s Guide","item":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/"},{"@type":"ListItem","position":3,"name":"Bringing SoaML to the Real World","item":"https:\/\/skills.visual-paradigm.com\/cn\/docs\/soaml-diagram-fundamentals\/soaml-case-studies\/"},{"@type":"ListItem","position":4,"name":"Adapting SoaML for Microservice and Cloud Architectures"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/cn\/#website","url":"https:\/\/skills.visual-paradigm.com\/cn\/","name":"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/cn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/cn\/#organization","name":"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587","url":"https:\/\/skills.visual-paradigm.com\/cn\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/skills.visual-paradigm.com\/cn\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/cn\/wp-content\/uploads\/sites\/3\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/cn\/wp-content\/uploads\/sites\/3\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills \u7b80\u4f53\u4e2d\u6587"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/cn\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs\/1493","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs\/1493\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/docs\/1491"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/media?parent=1493"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/cn\/wp-json\/wp\/v2\/doc_tag?post=1493"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}