{"id":443,"date":"2024-10-09T07:27:08","date_gmt":"2024-10-09T07:27:08","guid":{"rendered":"https:\/\/www.go-uml.com\/ja\/?p=443"},"modified":"2024-10-09T07:27:08","modified_gmt":"2024-10-09T07:27:08","slug":"understanding-class-diagrams-modeling-the-structure-of-a-car","status":"publish","type":"post","link":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/","title":{"rendered":"Understanding Class Diagrams: Modeling the Structure of a Car"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p>A class diagram is a vital component of the Unified Modeling Language (UML) that visually represents the structure of a system. In this tutorial, we will delve into how to utilize a class diagram to model the architecture of a car. We will explore its purpose, benefits, and essential guidelines for creating effective class diagrams.<\/p>\n<h2>Purpose of Class Diagrams<\/h2>\n<p>Class diagrams serve several critical functions:<\/p>\n<ul>\n<li><strong>Visual Representation<\/strong>: They provide a clear graphical structure that simplifies the understanding of relationships and attributes within the system.<\/li>\n<li><strong>Documentation<\/strong>: Class diagrams serve as a comprehensive documentation tool for the system&#8217;s components, enhancing communication among stakeholders.<\/li>\n<li><strong>Design Blueprint<\/strong>: They act as blueprints for system design, aiding developers in grasping the system&#8217;s architecture before implementation.<\/li>\n<\/ul>\n<h2>Benefits of Using Class Diagrams<\/h2>\n<p>Utilizing class diagrams offers numerous advantages:<\/p>\n<ol>\n<li><strong>Clarity<\/strong>: They illuminate complex relationships and interactions within the system, making it easier to comprehend.<\/li>\n<li><strong>Code Generation<\/strong>: Many development tools can automatically generate code from class diagrams, expediting the development process.<\/li>\n<li><strong>Easy Modifications<\/strong>: Changes can be visualized and communicated effectively, facilitating improved planning and design.<\/li>\n<li><strong>Enhanced Communication<\/strong>: Class diagrams foster better communication among team members and stakeholders by providing a shared understanding of the system.<\/li>\n<\/ol>\n<h2>Guidelines for Creating a Class Diagram<\/h2>\n<h3>1. Identify Classes<\/h3>\n<p>Begin by determining the main entities within your system. For modeling a car structure, key classes might include:<\/p>\n<ul>\n<li><strong>Car<\/strong>: The main entity in the diagram.<\/li>\n<li><strong>Engine<\/strong>: A crucial component of the car.<\/li>\n<li><strong>GearBox<\/strong>: Represents the car&#8217;s transmission system.<\/li>\n<li><strong>Body<\/strong>: The physical structure of the car.<\/li>\n<li><strong>Wheel<\/strong>: The wheels of the vehicle.<\/li>\n<li><strong>Brake<\/strong>: The braking system.<\/li>\n<\/ul>\n<h3>2. Define Attributes<\/h3>\n<p>Each class should have its own attributes (properties). For example:<\/p>\n<ul>\n<li><strong>Car<\/strong>:\n<ul>\n<li><code>registrationNum<\/code>: Identifier for the car.<\/li>\n<li><code>year<\/code>: Year of manufacture.<\/li>\n<li><code>licenseNumber<\/code>: Legal registration number.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Engine<\/strong>:\n<ul>\n<li><code>capacity<\/code>: Size or volume of the engine.<\/li>\n<li><code>numberOfCylinders<\/code>: Total number of cylinders.<\/li>\n<\/ul>\n<\/li>\n<li><strong>GearBox<\/strong>:\n<ul>\n<li><code>gearRatio<\/code>: Ratio of gears.<\/li>\n<li><code>currentGear<\/code>: The gear currently in use.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Wheel<\/strong>:\n<ul>\n<li><code>width<\/code>: Width of the wheel.<\/li>\n<li><code>diameter<\/code>: Diameter of the wheel.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Brake<\/strong>:\n<ul>\n<li>Attributes may include types and performance metrics, though specifics are not detailed in the diagram.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h3>3. Specify Operations<\/h3>\n<p>Every class can have methods (functions) that define its behavior. For example:<\/p>\n<ul>\n<li><strong>Car<\/strong>:\n<ul>\n<li><code>move()<\/code>: Method to move the car.<\/li>\n<li><code>stop()<\/code>: Method to stop the car.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Engine<\/strong>:\n<ul>\n<li><code>start()<\/code>: Method to initiate the engine.<\/li>\n<li><code>accelerate()<\/code>: Method to increase speed.<\/li>\n<\/ul>\n<\/li>\n<li><strong>GearBox<\/strong>:\n<ul>\n<li><code>shiftUp()<\/code>: Method to change to a higher gear.<\/li>\n<li><code>shiftDown()<\/code>: Method to change to a lower gear.<\/li>\n<\/ul>\n<\/li>\n<li><strong>Wheel<\/strong>:\n<ul>\n<li><code>turn()<\/code>: Method for turning the wheel.<\/li>\n<li><code>apply()<\/code>: Method to apply brakes.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h2>Relationships<\/h2>\n<h3>Associations<\/h3>\n<p>The lines connecting classes represent associations, indicating how classes relate to each other:<\/p>\n<ul>\n<li><strong>Car to Engine<\/strong>: A car has exactly one engine (1-to-1 relationship).<\/li>\n<li><strong>Car to Wheel<\/strong>: A car has multiple wheels (1-to-many relationship).<\/li>\n<li><strong>Car to GearBox<\/strong>: A car has one gearbox (1-to-1 relationship).<\/li>\n<\/ul>\n<h3>Multiplicity<\/h3>\n<p>The numbers near the associations indicate multiplicity:<\/p>\n<ul>\n<li><code>1<\/code> signifies one instance.<\/li>\n<li><code>*<\/code> (asterisk) indicates many instances (zero or more).<\/li>\n<\/ul>\n<p>For instance, the <code>Car<\/code> class is associated with multiple <code>Wheel<\/code> instances, typically four in a standard vehicle.<\/p>\n<h2>Example Class Diagram Representation for a Car Structure<\/h2>\n<p>Here\u2019s a simplified class diagram representing the structure of a car:<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png\" \/><\/p>\n<h2>Interpretation Summary<\/h2>\n<p>The class diagram visually represents the structure of a car system, showcasing how various components interact with one another. It illustrates that a <code>Car<\/code> is composed of an <code>Engine<\/code>, a <code>GearBox<\/code>, multiple <code>Wheels<\/code>, and potentially a <code>Brake<\/code> system. Each class has specific attributes that detail its characteristics and operations that define its behavior.<\/p>\n<h2>Practical Implications<\/h2>\n<p>This diagram serves as a guide for developers in implementing the car system by providing a clear understanding of the system\u2019s architecture. It helps identify necessary classes and their relationships, simplifying the planning process for software development, maintenance, and enhancements in automotive applications.<\/p>\n<p>By analyzing the class diagram in this manner, stakeholders can ensure that all essential components are represented and that their interactions are well-defined, leading to a more robust system design.<\/p>\n<h2>Conclusion<\/h2>\n<p>Using a class diagram to represent a car structure provides a systematic approach to understanding and designing automotive systems. By following guidelines for identifying classes, defining attributes, establishing relationships, and specifying operations, you can create a clear and effective class diagram that serves as a valuable resource for development and communication.<\/p>\n<p>Feel free to apply these concepts to your projects to enhance clarity and streamline the development process!<\/p>\n<p>&nbsp;<\/p>\n<ul>\n<li><a href=\"https:\/\/www.visual-paradigm.com\/guide\/uml-unified-modeling-language\/uml-class-diagram-tutorial\" target=\"_blank\" rel=\"noopener\">UML Class Diagram Tutorial &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/online.visual-paradigm.com\/diagrams\/tutorials\/class-diagram-tutorial\" target=\"_blank\" rel=\"noopener\">Class Diagram Tutorial &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/www.visual-paradigm.com\/guide\/uml-unified-modeling-language\/what-is-class-diagram\" target=\"_blank\" rel=\"noopener\">What is Class Diagram? &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/blog.visual-paradigm.com\/beginners-guide-to-class-diagrams\" target=\"_blank\" rel=\"noopener\">Beginner&#8217;s Guide to Class Diagrams &#8211; Visual Paradigm Blog<\/a><\/li>\n<li><a href=\"https:\/\/circle.visual-paradigm.com\/docs\/uml-and-sysml\/class-diagram\/how-to-draw-a-class-diagram-in-uml\" target=\"_blank\" rel=\"noopener\">How to draw a Class Diagram in UML &#8211; Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/circle.visual-paradigm.com\/docs\/uml-and-sysml\/class-diagram\" target=\"_blank\" rel=\"noopener\">Class Diagram &#8211; Visual Paradigm Community Circle<\/a><\/li>\n<li><a href=\"https:\/\/s.visual-paradigm.com\/support\/documents\/vpuserguide\/94\/2576_classdiagram.html\" target=\"_blank\" rel=\"noopener\">Class diagram in Visual Paradigm<\/a><\/li>\n<li><a href=\"https:\/\/circle.visual-paradigm.com\/docs\/uml-and-sysml\/class-diagram\/how-to-draw-a-class-diagram-in-uml\/?format=pdf\" target=\"_blank\" rel=\"noopener\">How to draw a Class Diagram in UML (PDF) &#8211; Visual Paradigm Community Circle<\/a><\/li>\n<li><a href=\"https:\/\/guides.visual-paradigm.com\/discover-the-ultimate-free-class-diagram-tool-with-visual-paradigm-online\" target=\"_blank\" rel=\"noopener\">Discover the Ultimate Free Class Diagram Tool with Visual Paradigm<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Introduction A class diagram is a vital component of the Unified Modeling Language (UML) that visually represents the structure of a system. In this tutorial, we will delve into how to utilize a class diagram to model the architecture of a car. We will explore its purpose, benefits, and essential guidelines for creating effective class diagrams. Purpose of Class Diagrams Class diagrams serve several critical functions: Visual Representation: They provide a clear graphical structure that simplifies the understanding of relationships and attributes within the system. Documentation: Class diagrams serve as a comprehensive documentation tool for the system&#8217;s components, enhancing communication among stakeholders. Design Blueprint: They act as blueprints for system design, aiding developers in grasping the system&#8217;s architecture before implementation. Benefits of Using Class Diagrams Utilizing class diagrams offers numerous advantages: Clarity: They illuminate complex relationsh<\/p>\n","protected":false},"author":7,"featured_media":446,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"fifu_image_url":"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png","fifu_image_alt":"","footnotes":""},"categories":[16,14],"tags":[],"class_list":["post-443","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-class-diagram","category-free-uml-tool"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Understanding Class Diagrams: Modeling the Structure of a Car - Go UML \u65e5\u672c\u8a9e<\/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:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding Class Diagrams: Modeling the Structure of a Car - Go UML \u65e5\u672c\u8a9e\" \/>\n<meta property=\"og:description\" content=\"Introduction A class diagram is a vital component of the Unified Modeling Language (UML) that visually represents the structure of a system. In this tutorial, we will delve into how to utilize a class diagram to model the architecture of a car. We will explore its purpose, benefits, and essential guidelines for creating effective class diagrams. Purpose of Class Diagrams Class diagrams serve several critical functions: Visual Representation: They provide a clear graphical structure that simplifies the understanding of relationships and attributes within the system. Documentation: Class diagrams serve as a comprehensive documentation tool for the system&#8217;s components, enhancing communication among stakeholders. Design Blueprint: They act as blueprints for system design, aiding developers in grasping the system&#8217;s architecture before implementation. Benefits of Using Class Diagrams Utilizing class diagrams offers numerous advantages: Clarity: They illuminate complex relationsh\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/\" \/>\n<meta property=\"og:site_name\" content=\"Go UML \u65e5\u672c\u8a9e\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-09T07:27:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png\" \/>\n<meta name=\"author\" content=\"curtis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"curtis\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/\",\"url\":\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/\",\"name\":\"Understanding Class Diagrams: Modeling the Structure of a Car - Go UML \u65e5\u672c\u8a9e\",\"isPartOf\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png\",\"datePublished\":\"2024-10-09T07:27:08+00:00\",\"dateModified\":\"2024-10-09T07:27:08+00:00\",\"author\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/fc1da26b1e963fc50ec2722b231a274b\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#primaryimage\",\"url\":\"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png\",\"contentUrl\":\"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png\",\"width\":\"773\",\"height\":\"414\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.go-uml.com\/ja\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding Class Diagrams: Modeling the Structure of a Car\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/#website\",\"url\":\"https:\/\/www.go-uml.com\/ja\/\",\"name\":\"Go UML \u65e5\u672c\u8a9e\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.go-uml.com\/ja\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/fc1da26b1e963fc50ec2722b231a274b\",\"name\":\"curtis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/48025789fc0776739935e63d9f629084?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/48025789fc0776739935e63d9f629084?s=96&d=mm&r=g\",\"caption\":\"curtis\"},\"url\":\"https:\/\/www.go-uml.com\/ja\/author\/curtis\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Understanding Class Diagrams: Modeling the Structure of a Car - Go UML \u65e5\u672c\u8a9e","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:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/","og_locale":"ja_JP","og_type":"article","og_title":"Understanding Class Diagrams: Modeling the Structure of a Car - Go UML \u65e5\u672c\u8a9e","og_description":"Introduction A class diagram is a vital component of the Unified Modeling Language (UML) that visually represents the structure of a system. In this tutorial, we will delve into how to utilize a class diagram to model the architecture of a car. We will explore its purpose, benefits, and essential guidelines for creating effective class diagrams. Purpose of Class Diagrams Class diagrams serve several critical functions: Visual Representation: They provide a clear graphical structure that simplifies the understanding of relationships and attributes within the system. Documentation: Class diagrams serve as a comprehensive documentation tool for the system&#8217;s components, enhancing communication among stakeholders. Design Blueprint: They act as blueprints for system design, aiding developers in grasping the system&#8217;s architecture before implementation. Benefits of Using Class Diagrams Utilizing class diagrams offers numerous advantages: Clarity: They illuminate complex relationsh","og_url":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/","og_site_name":"Go UML \u65e5\u672c\u8a9e","article_published_time":"2024-10-09T07:27:08+00:00","og_image":[{"url":"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png","type":"","width":"","height":""}],"author":"curtis","twitter_card":"summary_large_image","twitter_image":"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png","twitter_misc":{"\u57f7\u7b46\u8005":"curtis","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"4\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/","url":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/","name":"Understanding Class Diagrams: Modeling the Structure of a Car - Go UML \u65e5\u672c\u8a9e","isPartOf":{"@id":"https:\/\/www.go-uml.com\/ja\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#primaryimage"},"image":{"@id":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#primaryimage"},"thumbnailUrl":"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png","datePublished":"2024-10-09T07:27:08+00:00","dateModified":"2024-10-09T07:27:08+00:00","author":{"@id":"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/fc1da26b1e963fc50ec2722b231a274b"},"breadcrumb":{"@id":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/"]}]},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#primaryimage","url":"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png","contentUrl":"https:\/\/circle.visual-paradigm.com\/wp-content\/uploads\/2017\/06\/Class-Diagram-Car.png","width":"773","height":"414"},{"@type":"BreadcrumbList","@id":"https:\/\/www.go-uml.com\/ja\/understanding-class-diagrams-modeling-the-structure-of-a-car\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.go-uml.com\/ja\/"},{"@type":"ListItem","position":2,"name":"Understanding Class Diagrams: Modeling the Structure of a Car"}]},{"@type":"WebSite","@id":"https:\/\/www.go-uml.com\/ja\/#website","url":"https:\/\/www.go-uml.com\/ja\/","name":"Go UML \u65e5\u672c\u8a9e","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.go-uml.com\/ja\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/fc1da26b1e963fc50ec2722b231a274b","name":"curtis","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.go-uml.com\/ja\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/48025789fc0776739935e63d9f629084?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/48025789fc0776739935e63d9f629084?s=96&d=mm&r=g","caption":"curtis"},"url":"https:\/\/www.go-uml.com\/ja\/author\/curtis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/posts\/443","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/comments?post=443"}],"version-history":[{"count":2,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/posts\/443\/revisions"}],"predecessor-version":[{"id":448,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/posts\/443\/revisions\/448"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/media\/446"}],"wp:attachment":[{"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/media?parent=443"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/categories?post=443"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.go-uml.com\/ja\/wp-json\/wp\/v2\/tags?post=443"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}