{"id":4066,"date":"2026-01-15T10:54:30","date_gmt":"2026-01-15T02:54:30","guid":{"rendered":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/"},"modified":"2026-01-22T11:40:43","modified_gmt":"2026-01-22T03:40:43","slug":"object-oriented-fundamentals","status":"publish","type":"docs","link":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/","title":{"rendered":"Object-Oriented Fundamentals"},"content":{"rendered":"<p dir=\"auto\"><strong>Object-Oriented Fundamentals: Mastering Abstraction, Encapsulation, Inheritance, and Polymorphism within the AI Workflow<\/strong><\/p>\n<p dir=\"auto\">The <a href=\"https:\/\/www.visual-paradigm.com\/guide\/uml-unified-modeling-language\/what-is-class-diagram\/\">Class Diagram<\/a> generated in the previous section is far more than a collection of boxes and lines\u2014it is the visual expression of <strong><a href=\"https:\/\/en.wikipedia.org\/wiki\/Object-oriented_programming\">object-oriented<\/a> thinking<\/strong>. True mastery of structural modeling requires not just producing diagrams, but deeply understanding and intentionally applying the four pillars of object-oriented design: <strong>Abstraction<\/strong>, <strong>Encapsulation<\/strong>, <strong>Inheritance<\/strong>, and <strong>Polymorphism<\/strong>. These principles determine whether a system is elegant, maintainable, extensible, and resilient to change\u2014or brittle, rigid, and expensive to evolve.<\/p>\n<p dir=\"auto\">Visual Paradigm\u2019s AI does not merely draw diagrams; it acts as an intelligent co-designer that helps you apply these fundamentals correctly and consistently. Through suggestions, validations, explanatory dialogue, and safe iterative refinement, the AI workflow becomes a practical classroom for OO mastery\u2014reinforcing concepts in real time as you build production-grade models.<\/p>\n<h3 dir=\"auto\">How the AI Workflow Reinforces Each OO Pillar<\/h3>\n<ol dir=\"auto\">\n<li>\n<p dir=\"auto\"><strong>Abstraction<\/strong> \u2014 Focusing on What Matters, Hiding Irrelevant Detail Abstraction means representing only the essential characteristics and behaviors relevant to the current perspective, suppressing unnecessary complexity.<\/p>\n<ul dir=\"auto\">\n<li><strong>AI Support<\/strong>:\n<ul dir=\"auto\">\n<li>When generating or refining classes, the AI suggests <strong>abstract classes<\/strong> and <strong>interfaces<\/strong> where appropriate (e.g., \u201cPaymentMethod should be an interface with concrete realizations CreditCardPayment and PayPalPayment\u201d).<\/li>\n<li>It proposes <strong>derived attributes<\/strong> and <strong>abstract operations<\/strong> (italicized in <a href=\"https:\/\/www.visual-paradigm.com\/guide\/uml-unified-modeling-language\/what-is-uml\/\">UML<\/a>) to express intent without implementation detail (e.g., Order.totalPrice {calculated from line items}).<\/li>\n<li>Conversational prompts like \u201cMake this a high-level abstraction layer\u201d trigger the AI to introduce interfaces or abstract base classes automatically.<\/li>\n<li>Educational mode: Ask \u201cWhy use an interface here instead of a concrete class?\u201d \u2192 the AI explains separation of concern, contract definition, and future extensibility.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p dir=\"auto\"><strong>Workflow Tip<\/strong>: Use prompts such as \u201cApply abstraction by extracting common behaviors into an interface\u201d to quickly refactor toward cleaner, more conceptual models.<\/p>\n<\/li>\n<li>\n<p dir=\"auto\"><strong>Encapsulation<\/strong> \u2014 Protecting Data and Exposing Controlled Access Encapsulation bundles data (attributes) with the operations that act on it, hiding internal representation and exposing only what is necessary via well-defined interfaces.<\/p>\n<ul dir=\"auto\">\n<li><strong>AI Support<\/strong>:\n<ul dir=\"auto\">\n<li>Automatically applies <strong>visibility modifiers<\/strong> according to best practices: -private for internal state, +public for services, #protected for subclass access, ~package for module-internal use.<\/li>\n<li>Suggests <strong>getter\/setter methods<\/strong> (or property-style accessors in languages like C#) when attributes should not be directly modifiable.<\/li>\n<li>Flags violations: \u201cDirect public access to \u2018balance\u2019 in Account class violates encapsulation\u2014recommend private + getBalance() \/ withdraw().\u201d<\/li>\n<li>Supports <strong>immutability<\/strong> hints: suggests final\/readonly attributes or immutable collections when context implies (e.g., Order date after confirmation).<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p dir=\"auto\"><strong>Workflow Tip<\/strong>: After generation, ask \u201cEncapsulate all attributes properly and generate accessors\u201d \u2192 the AI updates the diagram and can even produce code stubs showing the protected implementation.<\/p>\n<\/li>\n<li>\n<p dir=\"auto\"><strong>Inheritance<\/strong> \u2014 Building Specialization Through Generalization Inheritance allows classes to inherit attributes and operations from more general superclasses, promoting reuse and establishing \u201cis-a\u201d relationships.<\/p>\n<ul dir=\"auto\">\n<li><strong>AI Support<\/strong>:\n<ul dir=\"auto\">\n<li>Proposes <strong>generalization<\/strong> arrows (solid line, hollow triangle) when it detects clear specialization (e.g., \u201cPremiumMember is-a Member with extra benefits\u201d).<\/li>\n<li>Ensures correct UML notation: abstract superclasses in italics, leaf classes without further specialization.<\/li>\n<li>Warns against misuse: \u201cAvoid deep inheritance hierarchies\u2014favor composition for \u2018has-a\u2019 relationships.\u201d<\/li>\n<li>Helps override operations: \u201cAdd overridden calculateDiscount() in PremiumMember that calls super and adds loyalty bonus.\u201d<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p dir=\"auto\"><strong>Workflow Tip<\/strong>: Prompt \u201cIntroduce inheritance for different user roles\u201d \u2192 the AI suggests a User base class with Customer, Admin, and Guest subclasses, complete with shared and specialized operations.<\/p>\n<\/li>\n<li>\n<p dir=\"auto\"><strong>Polymorphism<\/strong> \u2014 Treating Different Types Uniformly Through a Common Interface Polymorphism allows objects of different classes to be treated as instances of a common superclass or interface, with behavior determined at runtime (via overriding or interface implementation).<\/p>\n<ul dir=\"auto\">\n<li><strong>AI Support<\/strong>:\n<ul dir=\"auto\">\n<li>Highlights polymorphic opportunities: suggests operations that should be abstract\/virtual in base classes so subclasses can override (e.g., Payment.process() implemented differently for CreditCard vs. BankTransfer).<\/li>\n<li>Generates <strong>realization<\/strong> relationships (dashed line, hollow triangle) when classes implement interfaces.<\/li>\n<li>In Object Diagrams (next section), demonstrates polymorphism by creating snapshots with mixed subclass instances treated via superclass references.<\/li>\n<li>Explains in dialogue: \u201cThis design enables polymorphic payment processing\u2014any PaymentMethod subtype can be passed to Order without knowing the concrete type.\u201d<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p dir=\"auto\"><strong>Workflow Tip<\/strong>: Ask \u201cShow polymorphic behavior for payment processing\u201d \u2192 the AI adds an interface, multiple realizations, and an example Object Diagram illustrating runtime substitution.<\/p>\n<\/li>\n<\/ol>\n<h3 dir=\"auto\">AI as Your OO Tutor in the Workflow<\/h3>\n<ul dir=\"auto\">\n<li><strong>Real-time Coaching<\/strong> \u2014 Ask questions like \u201cIs this composition or aggregation?\u201d, \u201cShould this be abstract?\u201d, \u201cDoes this violate Liskov Substitution Principle?\u201d \u2014 the AI responds with rationale, examples, and diagram adjustments.<\/li>\n<li><strong>Pattern Suggestions<\/strong> \u2014 Recognizes opportunities for Template Method, Strategy, Factory, Decorator, etc., and applies them when requested.<\/li>\n<li><strong>Anti-Pattern Detection<\/strong> \u2014 Flags \u201cGod Classes,\u201d anemic domain models, misuse of inheritance for code reuse, or excessive coupling.<\/li>\n<li><strong>Educational Reinforcement<\/strong> \u2014 Every major suggestion includes a brief explanation or link to UML\/OO best-practice rationale.<\/li>\n<\/ul>\n<h3 dir=\"auto\">Practical Payoff in Your Modeling Process<\/h3>\n<p dir=\"auto\">By working within this AI-assisted workflow, you don\u2019t just produce diagrams\u2014you internalize the principles:<\/p>\n<ul dir=\"auto\">\n<li>Abstraction keeps models focused and conceptual.<\/li>\n<li>Encapsulation protects integrity and reduces ripple effects.<\/li>\n<li>Inheritance and generalization promote reuse without duplication.<\/li>\n<li>Polymorphism enables flexible, extensible designs.<\/li>\n<\/ul>\n<p dir=\"auto\">The result is structural models that are not only UML 2.5 compliant but philosophically sound\u2014ready to scale, refactor, and serve as reliable blueprints for implementation.<\/p>\n<p dir=\"auto\">With these fundamentals actively applied and reinforced by the AI, your Class Diagram is now robust and principled. The next sections build on this strength: validating concrete scenarios with Object Diagrams and scaling organization with Package Diagrams\u2014ensuring the static view remains clear, correct, and architecturally sound as complexity grows.<\/p>\n","protected":false},"featured_media":0,"parent":4064,"menu_order":1,"comment_status":"open","ping_status":"closed","template":"","meta":{"_yoast_wpseo_title":"","_yoast_wpseo_metadesc":"","_eb_attr":"","neve_meta_sidebar":"","neve_meta_container":"","neve_meta_enable_content_width":"","neve_meta_content_width":0,"neve_meta_title_alignment":"","neve_meta_author_avatar":"","neve_post_elements_order":"","neve_meta_disable_header":"","neve_meta_disable_footer":"","neve_meta_disable_title":""},"doc_tag":[],"class_list":["post-4066","docs","type-docs","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Object-Oriented Fundamentals - Visual Paradigm Guides Traditional Chinese<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/\" \/>\n<meta property=\"og:locale\" content=\"zh_TW\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Object-Oriented Fundamentals - Visual Paradigm Guides Traditional Chinese\" \/>\n<meta property=\"og:description\" content=\"Object-Oriented Fundamentals: Mastering Abstraction, Encapsulation, Inheritance, and Polymorphism within the AI Workflow The Class Diagram generated in the previous section is far more than a collection of boxes and lines\u2014it is the visual expression of object-oriented thinking. True mastery of structural modeling requires not just producing diagrams, but deeply understanding and intentionally applying the four pillars of object-oriented design: Abstraction, Encapsulation, Inheritance, and Polymorphism. These principles determine whether a system is elegant, maintainable, extensible, and resilient to change\u2014or brittle, rigid, and expensive to evolve. Visual Paradigm\u2019s AI does not merely draw diagrams; it acts as an intelligent co-designer that helps you apply these fundamentals correctly and consistently. Through suggestions, validations, explanatory dialogue, and safe iterative refinement, the AI workflow becomes a practical classroom for OO mastery\u2014reinforcing concepts in real time aObject-Oriented Fundamentals\" \/>\n<meta property=\"og:url\" content=\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/\" \/>\n<meta property=\"og:site_name\" content=\"Visual Paradigm Guides Traditional Chinese\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-22T03:40:43+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9810\u4f30\u95b1\u8b80\u6642\u9593\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 \u5206\u9418\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/\",\"url\":\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/\",\"name\":\"Object-Oriented Fundamentals - Visual Paradigm Guides Traditional Chinese\",\"isPartOf\":{\"@id\":\"https:\/\/guides.visual-paradigm.com\/tw\/#website\"},\"datePublished\":\"2026-01-15T02:54:30+00:00\",\"dateModified\":\"2026-01-22T03:40:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/#breadcrumb\"},\"inLanguage\":\"zh-TW\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/guides.visual-paradigm.com\/tw\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mastering UML Visual Modeling in the Visual Paradigm AI Ecosystem\",\"item\":\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Module 4: Mastery of Structural Modeling (The Static View)\",\"item\":\"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Object-Oriented Fundamentals\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/guides.visual-paradigm.com\/tw\/#website\",\"url\":\"https:\/\/guides.visual-paradigm.com\/tw\/\",\"name\":\"Visual Paradigm Guides Traditional Chinese\",\"description\":\"Just another WordPress site\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/guides.visual-paradigm.com\/tw\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-TW\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Object-Oriented Fundamentals - Visual Paradigm Guides Traditional Chinese","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:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/","og_locale":"zh_TW","og_type":"article","og_title":"Object-Oriented Fundamentals - Visual Paradigm Guides Traditional Chinese","og_description":"Object-Oriented Fundamentals: Mastering Abstraction, Encapsulation, Inheritance, and Polymorphism within the AI Workflow The Class Diagram generated in the previous section is far more than a collection of boxes and lines\u2014it is the visual expression of object-oriented thinking. True mastery of structural modeling requires not just producing diagrams, but deeply understanding and intentionally applying the four pillars of object-oriented design: Abstraction, Encapsulation, Inheritance, and Polymorphism. These principles determine whether a system is elegant, maintainable, extensible, and resilient to change\u2014or brittle, rigid, and expensive to evolve. Visual Paradigm\u2019s AI does not merely draw diagrams; it acts as an intelligent co-designer that helps you apply these fundamentals correctly and consistently. Through suggestions, validations, explanatory dialogue, and safe iterative refinement, the AI workflow becomes a practical classroom for OO mastery\u2014reinforcing concepts in real time aObject-Oriented Fundamentals","og_url":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/","og_site_name":"Visual Paradigm Guides Traditional Chinese","article_modified_time":"2026-01-22T03:40:43+00:00","twitter_card":"summary_large_image","twitter_misc":{"\u9810\u4f30\u95b1\u8b80\u6642\u9593":"4 \u5206\u9418"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/","url":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/","name":"Object-Oriented Fundamentals - Visual Paradigm Guides Traditional Chinese","isPartOf":{"@id":"https:\/\/guides.visual-paradigm.com\/tw\/#website"},"datePublished":"2026-01-15T02:54:30+00:00","dateModified":"2026-01-22T03:40:43+00:00","breadcrumb":{"@id":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/#breadcrumb"},"inLanguage":"zh-TW","potentialAction":[{"@type":"ReadAction","target":["https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/object-oriented-fundamentals\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/guides.visual-paradigm.com\/tw\/"},{"@type":"ListItem","position":2,"name":"Mastering UML Visual Modeling in the Visual Paradigm AI Ecosystem","item":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/"},{"@type":"ListItem","position":3,"name":"Module 4: Mastery of Structural Modeling (The Static View)","item":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/"},{"@type":"ListItem","position":4,"name":"Object-Oriented Fundamentals"}]},{"@type":"WebSite","@id":"https:\/\/guides.visual-paradigm.com\/tw\/#website","url":"https:\/\/guides.visual-paradigm.com\/tw\/","name":"Visual Paradigm Guides Traditional Chinese","description":"Just another WordPress site","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/guides.visual-paradigm.com\/tw\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-TW"}]}},"comment_count":0,"_links":{"self":[{"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/4066","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/types\/docs"}],"replies":[{"embeddable":true,"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/comments?post=4066"}],"version-history":[{"count":5,"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/4066\/revisions"}],"predecessor-version":[{"id":4978,"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/4066\/revisions\/4978"}],"up":[{"embeddable":true,"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/4064"}],"next":[{"title":"Validating Rules with Object Diagrams","link":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/validating-rules-with-object-diagrams\/","href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/4067"}],"prev":[{"title":"AI Class Diagram Generation","link":"https:\/\/guides.visual-paradigm.com\/tw\/docs\/mastering-uml-visual-modeling-in-the-visual-paradigm-ai-ecosystem\/module-4-mastery-of-structural-modeling-the-static-view\/ai-class-diagram-generation\/","href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/docs\/4065"}],"wp:attachment":[{"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/media?parent=4066"}],"wp:term":[{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/guides.visual-paradigm.com\/tw\/wp-json\/wp\/v2\/doc_tag?post=4066"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}