{"id":825,"date":"2026-02-25T10:25:12","date_gmt":"2026-02-25T10:25:12","guid":{"rendered":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/"},"modified":"2026-02-25T10:25:12","modified_gmt":"2026-02-25T10:25:12","slug":"e-commerce-uml-dfd-case","status":"publish","type":"docs","link":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/","title":{"rendered":"Case Study: E-Commerce Platform (UML \u922b?DFD Simplification)"},"content":{"rendered":"<p>There\u2019s a quiet, unspoken benefit to starting with clarity: the ability to build trust early, before complexity takes root. In e-commerce systems, where every transaction path matters, modeling too early with overly detailed UML diagrams can obscure the very flows they\u2019re meant to illuminate. I\u2019ve seen teams drown in sequence diagrams and class models, only to discover that their business stakeholders\u2014product managers, compliance officers, even customer support\u2014could no longer follow the logic.<\/p>\n<p>What often works better isn\u2019t eliminating complexity, but *reducing cognitive noise*. That\u2019s where DFDs shine. They strip away object identities, method signatures, and lifecycle states, focusing purely on *what data moves, when, and where*. This chapter walks through a real e-commerce platform where UML modeling failed communication, but DFD simplification restored alignment\u2014without losing a single technical requirement.<\/p>\n<p>By the end, you\u2019ll understand exactly when to use UML, when to pivot to DFD, and how to translate complex models for maximum clarity. This isn\u2019t about choosing one over the other\u2014it\u2019s about choosing the right lens at the right time.<\/p>\n<h2>When UML Becomes a Barrier<\/h2>\n<p>Our client, a mid-sized online retailer, had already invested six weeks in UML modeling. The team had built full sequence diagrams for checkout, inventory management, and payment processing.<\/p>\n<p>Every flow was documented in exquisite detail: actors, messages, lifelines, activation bars. But when presented to stakeholders, confusion reigned.<\/p>\n<p>One product manager asked: \u201cWhy are we showing the shopping cart as an object that \u2018sends\u2019 a message to the order service? Isn\u2019t the cart just part of the user\u2019s session?\u201d<\/p>\n<p>Another asked: \u201cHow does the \u2018calculate taxes\u2019 step exist in the system? Is that a method? A service? What triggers it?\u201d<\/p>\n<p>UML overwhelming business stakeholders is a common trap. The notation is powerful for developers, but when applied early to non-technical audiences, it introduces more abstraction than insight.<\/p>\n<h3>Before: The UML Spiral<\/h3>\n<p>Here\u2019s what the original checkout flow looked like in UML:<\/p>\n<ul>\n<li>A <strong>Customer<\/strong> sends a \u201c<em>Begin Checkout<\/em>\u201d message.<\/li>\n<li>A <strong>ShoppingCart<\/strong> object receives the message, validates items, then sends \u201c<em>Check Inventory<\/em>\u201d to <strong>InventoryService<\/strong>.<\/li>\n<li>Upon response, <strong>ShoppingCart<\/strong> calls \u201c<em>Calculate Taxes<\/em>\u201d on a <strong>TaxCalculator<\/strong> object.<\/li>\n<li>Finally, <strong>OrderService<\/strong> is invoked to create an order.<\/li>\n<\/ul>\n<p>While technically accurate, this model obscured the core: data flows through processes. The object identities were secondary. The real question wasn\u2019t about lifelines\u2014it was about *what data changed, when, and where it went*.<\/p>\n<p>Stakeholders were not wrong to ask. They weren\u2019t trying to dissect code. They were trying to understand risk: where could data be lost? Where might a failure occur? The UML model made these questions harder to answer, not easier.<\/p>\n<h2>Reframing with DFD: Clarity Through Abstraction<\/h2>\n<p>Instead, I proposed a DFD Level 0 (context diagram) and a Level 1 decomposition focused only on data flows.<\/p>\n<h3>After: The DFD Approach<\/h3>\n<p>The new context diagram showed just two entities: <strong>Customer<\/strong> and <strong>Order System<\/strong>. The only data flows were:<\/p>\n<ul>\n<li>\u201c<em>Start Checkout Request<\/em>\u201d \u2192 Order System<\/li>\n<li>\u201c<em>Order Confirmation<\/em>\u201d \u2190 Order System<\/li>\n<\/ul>\n<p>At Level 1, we broke down the \u201cOrder System\u201d into core processes:<\/p>\n<ul>\n<li><strong>Validate Shopping Cart<\/strong> \u2192 <em>Inventory Check<\/em><\/li>\n<li><strong>Check Inventory<\/strong> \u2192 <em>Order Validation<\/em><\/li>\n<li><strong>Calculate Taxes<\/strong> \u2192 <em>Order Total<\/em><\/li>\n<li><strong>Generate Order<\/strong> \u2192 <em>New Order Record<\/em><\/li>\n<\/ul>\n<p>Each process had clear inputs and outputs. No objects. No lifelines. Just transformation.<\/p>\n<p>The difference was immediate. In a follow-up meeting, the product lead said: \u201cNow I see where the data goes. If the inventory check fails, the order can\u2019t be generated. That\u2019s the bottleneck.\u201d<\/p>\n<p>Finally, the model wasn\u2019t a code map\u2014it was a business map.<\/p>\n<h2>Measuring Communication Effectiveness<\/h2>\n<p>We tracked stakeholder comprehension before and after the switch using a simple survey:<\/p>\n<table>\n<thead>\n<tr>\n<th>Measure<\/th>\n<th>UML Before<\/th>\n<th>DFD After<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Stakeholder comprehension (avg. score)<\/td>\n<td>5.2 \/ 10<\/td>\n<td>8.7 \/ 10<\/td>\n<\/tr>\n<tr>\n<td>Questions about data flow<\/td>\n<td>13 per session<\/td>\n<td>2 per session<\/td>\n<\/tr>\n<tr>\n<td>Time to identify failure point<\/td>\n<td>4.2 min<\/td>\n<td>1.1 min<\/td>\n<\/tr>\n<tr>\n<td>Agreement on process boundary<\/td>\n<td>42%<\/td>\n<td>91%<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>DFD business communication success was not an accident. It was a design choice. By focusing on data transformation rather than object collaboration, we reduced cognitive load, increased shared understanding, and accelerated decision-making.<\/p>\n<h2>Preserving Technical Depth<\/h2>\n<p>Some may assume that simplifying UML to DFD means sacrificing technical accuracy. That\u2019s not the case.<\/p>\n<p>DFD models are not less detailed\u2014they\u2019re more focused. They answer: What moves? How? When? Where? The *how* is captured in process logic, not object behavior. The *where* is captured in data stores and external entities.<\/p>\n<p>For the e-commerce platform, we preserved full technical detail by keeping the UML models *in parallel*, but only for developers. The DFD became the primary communication tool for business and architecture teams.<\/p>\n<p>When developers asked about the \u201cCalculate Taxes\u201d process, we referred them to the original UML sequence diagram. But when stakeholders asked about *when* taxes were applied, the DFD was the answer.<\/p>\n<p>This dual-use approach is effective because each model serves its purpose: DFD for flow, UML for behavior.<\/p>\n<h2>Key Lessons from the Case<\/h2>\n<ol>\n<li><strong>UML is not always better for clarity<\/strong>. When modeling business processes, object-centric notation can obscure data movement.<\/li>\n<li><strong>DFD business communication success<\/strong> often outperforms UML in stakeholder workshops, especially with non-technical teams.<\/li>\n<li><strong>Simplifying complex UML models<\/strong> into DFDs isn\u2019t a loss of detail\u2014it\u2019s a reorientation to the most critical question: <em>What data moves, when, and where?<\/em><\/li>\n<li><strong>Use DFD for early alignment<\/strong>. Let UML handle implementation detail later, once shared understanding is established.<\/li>\n<\/ol>\n<p>It\u2019s not about replacing UML. It\u2019s about knowing when to step back and let the data speak.<\/p>\n<h2>Frequently Asked Questions<\/h2>\n<h3>Can I use both UML and DFD in the same project?<\/h3>\n<p>Yes. Use DFD during requirements and architecture reviews to align stakeholders. Use UML during design and development for detailed implementation. The key is to maintain traceability between the two.<\/p>\n<h3>What if the business insists on UML for every diagram?<\/h3>\n<p>Start with a DFD to establish shared understanding. Then, use the DFD as the foundation to explain why certain UML elements (like sequence diagrams) are needed. Show how they build on top of the data flow.<\/p>\n<h3>Is DFD still relevant in microservices and event-driven systems?<\/h3>\n<p>Yes. DFDs can model event triggers and data flows between services. They help visualize the full path of data from event generation to persistence, which is critical for audit trails and compliance.<\/p>\n<h3>How do I convert UML sequence diagrams to DFDs?<\/h3>\n<p>Map each message to a data flow. Treat each actor or service as an external entity or process. Convert object states into data stores. The goal is to preserve data movement logic, not object behavior.<\/p>\n<h3>Do DFDs work for real-time systems like live order tracking?<\/h3>\n<p>Yes. DFDs can model real-time flows using time-stamped data flows. While UML timing diagrams are better for visualizing precise timing, DFDs are excellent for showing *what data is updated and when*, which is crucial for audit and debugging.<\/p>\n<h3>Can DFDs replace UML in agile teams?<\/h3>\n<p>Not entirely. DFDs are best for high-level planning and stakeholder alignment. UML remains essential for detailed design, especially in complex, object-oriented systems. Use DFD for epics and features, UML for implementation.<\/p>\n<p>Remember: the best model is the one that gets understood. In e-commerce, where speed and clarity matter, DFD is not a fallback\u2014it\u2019s a first choice.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There\u2019s a quiet, unspoken benefit to starting with clarity: the ability to build trust early, before complexit [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":822,"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-825","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>e-commerce UML DFD case: Simplify for Clarity<\/title>\n<meta name=\"description\" content=\"Real-world case of UML overwhelming business stakeholders, resolved with DFD simplification. Learn how DFD business communication success restored clarity without sacrificing technical depth.\" \/>\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\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"e-commerce UML DFD case: Simplify for Clarity\" \/>\n<meta property=\"og:description\" content=\"Real-world case of UML overwhelming business stakeholders, resolved with DFD simplification. Learn how DFD business communication success restored clarity without sacrificing technical depth.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Skills\u65e5\u672c\u8a9e\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data1\" content=\"6\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/\",\"name\":\"e-commerce UML DFD case: Simplify for Clarity\",\"isPartOf\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/#website\"},\"datePublished\":\"2026-02-25T10:25:12+00:00\",\"description\":\"Real-world case of UML overwhelming business stakeholders, resolved with DFD simplification. Learn how DFD business communication success restored clarity without sacrificing technical depth.\",\"breadcrumb\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/skills.visual-paradigm.com\/ja\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data Flow Diagrams vs. UML: When to Use Each\",\"item\":\"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Real-World Case Studies\",\"item\":\"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Case Study: E-Commerce Platform (UML \u922b?DFD Simplification)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/#website\",\"url\":\"https:\/\/skills.visual-paradigm.com\/ja\/\",\"name\":\"Visual Paradigm Skills\u65e5\u672c\u8a9e\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/skills.visual-paradigm.com\/ja\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/#organization\",\"name\":\"Visual Paradigm Skills\u65e5\u672c\u8a9e\",\"url\":\"https:\/\/skills.visual-paradigm.com\/ja\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/skills.visual-paradigm.com\/ja\/wp-content\/uploads\/sites\/12\/2026\/02\/favicon.svg\",\"contentUrl\":\"https:\/\/skills.visual-paradigm.com\/ja\/wp-content\/uploads\/sites\/12\/2026\/02\/favicon.svg\",\"width\":70,\"height\":70,\"caption\":\"Visual Paradigm Skills\u65e5\u672c\u8a9e\"},\"image\":{\"@id\":\"https:\/\/skills.visual-paradigm.com\/ja\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"e-commerce UML DFD case: Simplify for Clarity","description":"Real-world case of UML overwhelming business stakeholders, resolved with DFD simplification. Learn how DFD business communication success restored clarity without sacrificing technical depth.","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\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/","og_locale":"ja_JP","og_type":"article","og_title":"e-commerce UML DFD case: Simplify for Clarity","og_description":"Real-world case of UML overwhelming business stakeholders, resolved with DFD simplification. Learn how DFD business communication success restored clarity without sacrificing technical depth.","og_url":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/","og_site_name":"Visual Paradigm Skills\u65e5\u672c\u8a9e","twitter_card":"summary_large_image","twitter_misc":{"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"6\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/","url":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/","name":"e-commerce UML DFD case: Simplify for Clarity","isPartOf":{"@id":"https:\/\/skills.visual-paradigm.com\/ja\/#website"},"datePublished":"2026-02-25T10:25:12+00:00","description":"Real-world case of UML overwhelming business stakeholders, resolved with DFD simplification. Learn how DFD business communication success restored clarity without sacrificing technical depth.","breadcrumb":{"@id":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/e-commerce-uml-dfd-case\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/skills.visual-paradigm.com\/ja\/"},{"@type":"ListItem","position":2,"name":"Data Flow Diagrams vs. UML: When to Use Each","item":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/"},{"@type":"ListItem","position":3,"name":"Real-World Case Studies","item":"https:\/\/skills.visual-paradigm.com\/ja\/docs\/dfd-vs-uml-when-to-use-each\/dfd-uml-case-studies\/"},{"@type":"ListItem","position":4,"name":"Case Study: E-Commerce Platform (UML \u922b?DFD Simplification)"}]},{"@type":"WebSite","@id":"https:\/\/skills.visual-paradigm.com\/ja\/#website","url":"https:\/\/skills.visual-paradigm.com\/ja\/","name":"Visual Paradigm Skills\u65e5\u672c\u8a9e","description":"","publisher":{"@id":"https:\/\/skills.visual-paradigm.com\/ja\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/skills.visual-paradigm.com\/ja\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Organization","@id":"https:\/\/skills.visual-paradigm.com\/ja\/#organization","name":"Visual Paradigm Skills\u65e5\u672c\u8a9e","url":"https:\/\/skills.visual-paradigm.com\/ja\/","logo":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/skills.visual-paradigm.com\/ja\/#\/schema\/logo\/image\/","url":"https:\/\/skills.visual-paradigm.com\/ja\/wp-content\/uploads\/sites\/12\/2026\/02\/favicon.svg","contentUrl":"https:\/\/skills.visual-paradigm.com\/ja\/wp-content\/uploads\/sites\/12\/2026\/02\/favicon.svg","width":70,"height":70,"caption":"Visual Paradigm Skills\u65e5\u672c\u8a9e"},"image":{"@id":"https:\/\/skills.visual-paradigm.com\/ja\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/skills.visual-paradigm.com\/ja\/wp-json\/wp\/v2\/docs\/825","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/skills.visual-paradigm.com\/ja\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/skills.visual-paradigm.com\/ja\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/ja\/wp-json\/wp\/v2\/users\/1"}],"version-history":[{"count":0,"href":"https:\/\/skills.visual-paradigm.com\/ja\/wp-json\/wp\/v2\/docs\/825\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/ja\/wp-json\/wp\/v2\/docs\/822"}],"wp:attachment":[{"href":"https:\/\/skills.visual-paradigm.com\/ja\/wp-json\/wp\/v2\/media?parent=825"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/skills.visual-paradigm.com\/ja\/wp-json\/wp\/v2\/doc_tag?post=825"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}