{"id":1631,"date":"2020-07-21T16:36:25","date_gmt":"2020-07-21T11:06:25","guid":{"rendered":"https:\/\/binaryterms.com\/?p=1631"},"modified":"2020-07-22T12:46:55","modified_gmt":"2020-07-22T07:16:55","slug":"use-case-relationship","status":"publish","type":"post","link":"https:\/\/binaryterms.com\/use-case-relationship.html","title":{"rendered":"Use Case Relationship"},"content":{"rendered":"<p>Use case relationship models the dependency between the use cases in the interaction model of a system. Well, the independent uses cases adequately represent the simpler system. But to represent the complex or large system we need to structure the complex use cases.<\/p>\n<p>In this section, we will discuss in brief about modelling the relationship between use cases to represent a large and complex system. We will also discuss the kind of relationship that can be structured between the use cases.<\/p>\n<h2>Content: Use Case Relationship<\/h2>\n<ol>\n<li><a href=\"#WhatisUseCaseRelationship?\">What is Use Case Relationship?<\/a><\/li>\n<li><a href=\"#IncludeRelationship\">Include Relationship<\/a><\/li>\n<li><a href=\"#ExtendRelationship\">Extend Relationship<\/a><\/li>\n<li><a href=\"#Generalization\">Generalization<\/a><\/li>\n<li><a href=\"#KeyTakeaways\">Key Takeaways<\/a><\/li>\n<\/ol>\n<p><a name=\"WhatisUseCaseRelationship?\"><\/a><\/p>\n<h3>What is Use Case Relationship?<\/h3>\n<p>In our previous content, we have discussed the<a href=\"https:\/\/binaryterms.com\/use-case-model.html\" target=\"_blank\" rel=\"noopener noreferrer\"> use case diagram<\/a> which represents the working of the system. A use case diagram has a set of &#8216;use cases&#8217; and &#8216;actors&#8217;. A use case represents a bit of systems functionality and actors are the objects which interact with the system to get the work done from the system for which it is designed.<\/p>\n<p>The independent use cases can represent a simple application but to represent the complex or large applications the system analyst needs to structure the complex relationship between the use cases.<\/p>\n<p>Establishing relationships between the use cases allow <strong>reusing<\/strong> those use case which needs to be defined repeatedly and this reduces the efforts of developers.<\/p>\n<p>The kinds of relations that could be modelled between use cases are as follow:<\/p>\n<ul>\n<li>Include relationship<\/li>\n<li>Extend relationship<\/li>\n<li>Generalization<\/li>\n<\/ul>\n<p><a name=\"IncludeRelationship\"><\/a><\/p>\n<h3>Include Relationship<\/h3>\n<p>Include relationship is modelled between the use cases when a use case <strong>includes<\/strong> the behavior sequence of another use case. The use cases that need to be described repeatedly for a complex or a large system are modelled once and included in the other uses cases when required.<\/p>\n<p>Include use case is similar to <strong>subroutines<\/strong>, as they are the set of instructions which are repeatedly used in the program, but this set of instructions is written only once and are called whenever required. The include use case may or may not appear as behavior sequence on its own.<\/p>\n<p>Let\u2019s move on an example which would help us in understanding the include relationship among the use cases more clearly. Now, consider an online stock brokerage system which involves several uses cases among which three would be secure session, make a trade and validate password.<\/p>\n<p>Now, whenever a user establishes a secure session it includes validation of passwords and whenever the user make a stock trade then also the passwords are validated.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1632\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg\" alt=\"Include Use Case Relationship\" width=\"406\" height=\"231\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg 406w, https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship-300x171.jpg 300w\" sizes=\"auto, (max-width: 406px) 100vw, 406px\" \/><\/p>\n<p>So, the use cases secure session <strong>includes<\/strong> the use case &#8216;validate password&#8217; and similarly make a trade use case also includes validate password use case. You can observe in the figure above that though use case validate password is repeatedly used by other use cases and it is modelled only once.<\/p>\n<p>The include relationship is presented with a dashed arrow in UML diagram. The arrow head is pointing towards the included use case. Like, in the above figure the arrow head is pointed towards the validate password. The dashed arrow is always annotated by the keyword &lt;&lt;<em>include<\/em>&gt;&gt; to show the include relationship.<br \/>\n<a name=\"ExtendRelationship\"><\/a><\/p>\n<h3>Extend Relationship<\/h3>\n<p>Extend relationship adds up behavior sequence to the base use case. It is somewhat similar to the include relationship but the direction of adding behaviour sequence to the base use case is opposite.<\/p>\n<p>In the include relationship, the base use case incorporates the include use case. But in the extend relationship, the extended use case adds its behaviour sequence to the base use case.<\/p>\n<p>Well, when we observe both &#8216;include&#8217; and &#8216;extended&#8217; relationship both add up behavior sequence to the base use case. This is the scenario when initially the basic elements are modelled and then advanced features are added to the base.<\/p>\n<p>Let\u2019s take an example of extend the relationship to understand it properly. A stock brokerage system has a use case trade stock, which allows the customer to buy the stock for the cash in the account. Now, if the customer has insufficient balance in his account but still, he wants to purchase the stock.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1633\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Extend-Use-Case-Relationship.jpg\" alt=\"Extend Use Case Relationship\" width=\"481\" height=\"262\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Extend-Use-Case-Relationship.jpg 481w, https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Extend-Use-Case-Relationship-300x163.jpg 300w\" sizes=\"auto, (max-width: 481px) 100vw, 481px\" \/><\/p>\n<p>For this situation, the stock brokerage system adds a feature or extension, margin trade which allows the customer to take a loan to purchase the stock. This additional feature is added to the base use case <strong>when<\/strong> (condition) the stocks purchase cost is checked against the balance available in the customer account and it is found that the balance is insufficient to purchase the stock.<\/p>\n<p>The extend relationship in UML notation is represented with the dashed arrow. The arrow head points to the base use case. This dashed arrow is annotated by the keyword &lt;&lt;<em>extend<\/em>&gt;&gt;.<\/p>\n<p>The extension use case does not appear by its own rather the base use case must be valid even in absence of any extension use case. The extension use case appears at a specific point in the behavior sequence of the base class, most of the time it is a condition. When the condition becomes true the extension use case&#8217;s behavioral sequence occurs.<br \/>\n<a name=\"Generalization\"><\/a><\/p>\n<h3>Generalization<\/h3>\n<p>Generalization is the most common term in computers. In generalization, there is a parent class consisting of common attributes and operations and the child class contains the refined attributes and operations.<\/p>\n<p>Analogues to generalization in classes there is a concept of generalization in use case relationship. The parent use case contains the common behavior sequence and the child use case contains the refined features. Generalization in the use case is represented with the triangular arrow where the arrow head points to the parent use case.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1634\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Generalization.jpg\" alt=\"Generalization\" width=\"498\" height=\"243\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Generalization.jpg 498w, https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Generalization-300x146.jpg 300w\" sizes=\"auto, (max-width: 498px) 100vw, 498px\" \/><\/p>\n<p>Well, the generalization in the use case is little complex when compared with generalization among classes. The child class add up attributes and operation to the parent class but the order of insertion is not so important.<\/p>\n<p>While the child use case adds its behavior sequence in a specific location within the behavior sequence of the parent class.<\/p>\n<p>In classes, we also have the concept of multiple inheritance but we can\u2019t implement such a complex concept in use cases. Rather the include and extend relationship eliminates the need for multiple inheritance.<\/p>\n<p><strong>Combination of Use Case Relationship<\/strong><\/p>\n<p>A single-use case diagram can incorporate several use case relationships. The figure below shows the use case diagram of the stock brokerage system which shows how a use case diagram represents several relationships between the use cases.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1636\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/combination-of-use-case-relationships-1.jpg\" alt=\"combination of use case relationships 1\" width=\"465\" height=\"481\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/combination-of-use-case-relationships-1.jpg 465w, https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/combination-of-use-case-relationships-1-290x300.jpg 290w\" sizes=\"auto, (max-width: 465px) 100vw, 465px\" \/><\/p>\n<p><a name=\"KeyTakeaways\"><\/a><\/p>\n<div id=\"keytake\">\n<h3>Key Takeaways<\/h3>\n<ul>\n<li>Use case relationship defines the complex relation between the use cases.<\/li>\n<li>Include use case is one where a use case incorporates another use case.<\/li>\n<li>In UML notation the include relationship annotated with the &lt;&lt;<em>include<\/em>&gt;&gt; keyword and a dashed arrow pointing towards the include use case.<\/li>\n<li>Include relationship may or may not appear on its own as a behavior sequence.<\/li>\n<li>Extend relationship is one where the extension use case adds itself to the base use case.<\/li>\n<li>In UML notation the extend relationship is annotated with the &lt;&lt;<em>extend<\/em>&gt;&gt; keyword and a dashed arrow pointing towards the base use case.<\/li>\n<li>The extend use case never appear on its own as a behavior sequence. It occurs at a specific point in the base use case behavior sequence, in most cases that point is a condition.<\/li>\n<li>Generalization in the use case is similar to generalization in classes. But, the order of adding the behavior sequence of a child to parents\u2019 behavior sequence is important in the use case.<\/li>\n<li>A single use case diagram incorporates several use case relationships.<\/li>\n<\/ul>\n<\/div>\n<p>So, this is all about the use case relationship. We have seen how it is important to structure the relationship between the use cases to model a large or complex application.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Use case relationship models the dependency between the use cases in the interaction model of a system. Well, the independent uses cases adequately represent the simpler system. But to represent the complex or large system we need to structure the complex use cases. In this section, we will discuss in brief about modelling the relationship [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[10],"tags":[],"class_list":{"0":"post-1631","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-oot","7":"entry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Use Case Relationship? Include, Extend, Generalization - Binary Terms<\/title>\n<meta name=\"description\" content=\"Use case relationship models the functional dependency between the use cases in system. Well, the independent uses cases adequately represent the simpler system. But to represent the complex or large system we need to structure the complex use cases.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/binaryterms.com\/use-case-relationship.html\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Use Case Relationship? Include, Extend, Generalization - Binary Terms\" \/>\n<meta property=\"og:description\" content=\"Use case relationship models the functional dependency between the use cases in system. Well, the independent uses cases adequately represent the simpler system. But to represent the complex or large system we need to structure the complex use cases.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/binaryterms.com\/use-case-relationship.html\" \/>\n<meta property=\"og:site_name\" content=\"Binary Terms\" \/>\n<meta property=\"article:published_time\" content=\"2020-07-21T11:06:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-07-22T07:16:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg\" \/>\n<meta name=\"author\" content=\"Neha T\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neha T\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html\"},\"author\":{\"name\":\"Neha T\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\"},\"headline\":\"Use Case Relationship\",\"datePublished\":\"2020-07-21T11:06:25+00:00\",\"dateModified\":\"2020-07-22T07:16:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html\"},\"wordCount\":1276,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg\",\"articleSection\":[\"Object Oriented Technology\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/binaryterms.com\/use-case-relationship.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html\",\"url\":\"https:\/\/binaryterms.com\/use-case-relationship.html\",\"name\":\"What is Use Case Relationship? Include, Extend, Generalization - Binary Terms\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg\",\"datePublished\":\"2020-07-21T11:06:25+00:00\",\"dateModified\":\"2020-07-22T07:16:55+00:00\",\"description\":\"Use case relationship models the functional dependency between the use cases in system. Well, the independent uses cases adequately represent the simpler system. But to represent the complex or large system we need to structure the complex use cases.\",\"breadcrumb\":{\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/binaryterms.com\/use-case-relationship.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html#primaryimage\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg\",\"width\":406,\"height\":231,\"caption\":\"Include Use Case Relationship\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/binaryterms.com\/use-case-relationship.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/binaryterms.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Use Case Relationship\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/binaryterms.com\/#website\",\"url\":\"https:\/\/binaryterms.com\/\",\"name\":\"Binary Terms\",\"description\":\"The Computer Science &amp; IT Guide\",\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/binaryterms.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/binaryterms.com\/#organization\",\"name\":\"Binary Terms\",\"url\":\"https:\/\/binaryterms.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"width\":400,\"height\":63,\"caption\":\"Binary Terms\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\",\"name\":\"Neha T\",\"url\":\"https:\/\/binaryterms.com\/author\/author\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Use Case Relationship? Include, Extend, Generalization - Binary Terms","description":"Use case relationship models the functional dependency between the use cases in system. Well, the independent uses cases adequately represent the simpler system. But to represent the complex or large system we need to structure the complex use cases.","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:\/\/binaryterms.com\/use-case-relationship.html","og_locale":"en_GB","og_type":"article","og_title":"What is Use Case Relationship? Include, Extend, Generalization - Binary Terms","og_description":"Use case relationship models the functional dependency between the use cases in system. Well, the independent uses cases adequately represent the simpler system. But to represent the complex or large system we need to structure the complex use cases.","og_url":"https:\/\/binaryterms.com\/use-case-relationship.html","og_site_name":"Binary Terms","article_published_time":"2020-07-21T11:06:25+00:00","article_modified_time":"2020-07-22T07:16:55+00:00","og_image":[{"url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg","type":"","width":"","height":""}],"author":"Neha T","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Neha T","Estimated reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/binaryterms.com\/use-case-relationship.html#article","isPartOf":{"@id":"https:\/\/binaryterms.com\/use-case-relationship.html"},"author":{"name":"Neha T","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe"},"headline":"Use Case Relationship","datePublished":"2020-07-21T11:06:25+00:00","dateModified":"2020-07-22T07:16:55+00:00","mainEntityOfPage":{"@id":"https:\/\/binaryterms.com\/use-case-relationship.html"},"wordCount":1276,"commentCount":1,"publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"image":{"@id":"https:\/\/binaryterms.com\/use-case-relationship.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg","articleSection":["Object Oriented Technology"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/binaryterms.com\/use-case-relationship.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/binaryterms.com\/use-case-relationship.html","url":"https:\/\/binaryterms.com\/use-case-relationship.html","name":"What is Use Case Relationship? Include, Extend, Generalization - Binary Terms","isPartOf":{"@id":"https:\/\/binaryterms.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/binaryterms.com\/use-case-relationship.html#primaryimage"},"image":{"@id":"https:\/\/binaryterms.com\/use-case-relationship.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg","datePublished":"2020-07-21T11:06:25+00:00","dateModified":"2020-07-22T07:16:55+00:00","description":"Use case relationship models the functional dependency between the use cases in system. Well, the independent uses cases adequately represent the simpler system. But to represent the complex or large system we need to structure the complex use cases.","breadcrumb":{"@id":"https:\/\/binaryterms.com\/use-case-relationship.html#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/binaryterms.com\/use-case-relationship.html"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/use-case-relationship.html#primaryimage","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/07\/Include-Use-Case-Relationship.jpg","width":406,"height":231,"caption":"Include Use Case Relationship"},{"@type":"BreadcrumbList","@id":"https:\/\/binaryterms.com\/use-case-relationship.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/binaryterms.com\/"},{"@type":"ListItem","position":2,"name":"Use Case Relationship"}]},{"@type":"WebSite","@id":"https:\/\/binaryterms.com\/#website","url":"https:\/\/binaryterms.com\/","name":"Binary Terms","description":"The Computer Science &amp; IT Guide","publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/binaryterms.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/binaryterms.com\/#organization","name":"Binary Terms","url":"https:\/\/binaryterms.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","width":400,"height":63,"caption":"Binary Terms"},"image":{"@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe","name":"Neha T","url":"https:\/\/binaryterms.com\/author\/author"}]}},"_links":{"self":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/1631","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/comments?post=1631"}],"version-history":[{"count":0,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/1631\/revisions"}],"wp:attachment":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/media?parent=1631"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/categories?post=1631"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/tags?post=1631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}