{"id":24041,"date":"2024-02-15T14:53:34","date_gmt":"2024-02-15T22:53:34","guid":{"rendered":"https:\/\/docs.extraview.com\/v25\/book\/link-1\/"},"modified":"2025-02-13T11:56:29","modified_gmt":"2025-02-13T19:56:29","slug":"link-1","status":"publish","type":"page","link":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/","title":{"rendered":"LINK"},"content":{"rendered":"<h3>\n\t&lt;== link <em>link_name<\/em> ==&gt;<\/h3>\n<h3>\n\tLinking Issues between Business Areas<\/h3>\n<p>This directive is used to specify how to connect linked issues from one business area to a different one, thereby creating a relationship between two business areas.<\/p>\n<p>For example, you can find one or more related issues in a different business area, from which a value is to be retrieved:<\/p>\n<p><code>&lt;== link customer ==&gt; AREA=\u2019Customer\u2019, CUSTOMER=CUSTOMER<\/code><\/p>\n<p>is interpreted that a rule action like:<\/p>\n<p><code>ASSIGNED_TO=(customer).OWNER<\/code><\/p>\n<p>which is used to set the Assigned To field in an Issue record to the OWNER field in a Customer record. If the link returns many records, and you only want to return a specific one, you can use a subscript as follows:<\/p>\n<p><code>ASSIGNED_TO=(customer[nn]).OWNER<\/code><\/p>\n<p>where <code>nn<\/code> is an integer which refers to the number of the record you want returned, starting with zero.<\/p>\n<p>The more generalized description is that link rules have the form:<\/p>\n<p><span style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">&lt;== link <em>link_name<\/em> ==&gt; <em>link_condition1<\/em>[, <em>link_condition2<\/em>]&#8230;[, <em>link_conditionn<\/em>]<\/span><\/p>\n<p>The link_condition parameters may use the&nbsp;<code>=<\/code> operator to provide an exact match with the link, or may use one of the following operators:<\/p>\n<ul>\n<li>\n\t\t<code>contains <em>value-list<\/em>&nbsp;<\/code>or <code>contains all&nbsp;<\/code><em style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">value-list<\/em><\/li>\n<li>\n\t\t<code>contains any&nbsp;<\/code><em style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">value-list<\/em><\/li>\n<li>\n\t\t<code>contains none&nbsp;<\/code><em style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">value-list<\/em><\/li>\n<\/ul>\n<p>where <code><em>value-list <\/em><\/code>is of the form:<\/p>\n<p><code><em>value1<\/em>[<em>; value2<\/em>] ... [<em>;valuen<\/em>]<\/code><\/p>\n<p><strong>Note<\/strong>:&nbsp;<code>contains&nbsp;<em>value-list<\/em>&nbsp;<\/code>and&nbsp;<code>contains all&nbsp;<\/code><em style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">value-list&nbsp;<\/em>are equivalent, namely,&nbsp;<span style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">contains&nbsp;<\/span><em style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">value-list<\/em><span style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">&nbsp;<\/span>has the same meaning as&nbsp;<code>contains all&nbsp;<\/code><em style=\"color: rgb(170, 0, 0); font-family: courier, monospace;\">value-list<\/em>.<\/p>\n<p><strong>Examples<\/strong>:<\/p>\n<p><code>&lt;== link AREA='<em>Licenses<\/em>', LICENSE_TYPE='<em>License<\/em>', COMPONENT='<em>ABC<\/em>' ==&gt;<\/code><\/p>\n<p><code>&lt;== link AREA='<em>Licenses<\/em>', MULTI_VALUED_UDF contains \u2018<em>MV1<\/em>\u2019;\u2019<em>MV2<\/em>\u2019 ==&gt;<\/code><\/p>\n<h3>\n\tLinking Relationship Groups<\/h3>\n<p>The link directive can also be used to link related issue groups. For example:<\/p>\n<p><code>&lt;== link rglink ==&gt; RG(RG_NAME = MY_RG, RG_TYPE = PARENTS)<\/code><\/p>\n<p>where MY_RG is the name of an existing relationship group and RG_TYPE is one of PARENTS, CHILDREN, MEMBERS. If multiple records are referenced by the link, only the first one returned will be used for data assignments. For operations such as UPDATE all records will be processed. You may add an expression to the related issue link to form the link. For example:<\/p>\n<p><code>&lt;== link rglink ==&gt; RG(RG_NAME = MY_RG, RG_TYPE = PARENTS), STATUS != Closed<\/code><\/p>\n<p>will only form the relationship for issues that are not in the <strong>Closed<\/strong> status.<\/p>\n<p>Relationship Group links are not order dependent; the type and name may appear in either order, and the RG_ may be omitted, so <code>RG(TYPE=CHILDREN, NAME=xxxx)<\/code> will work identically to <code>RG(RG_NAME=xxx, RG_TYPE=CHILDREN)<\/code>. Also, the keywords may be eliminated entirely, giving <code>RG(xxxx, CHILDREN)<\/code> as a valid link. Note that GREATGRANDCHILDREN and GREAT-GRANDCHILDREN are only supported in links, and are not supported at this time by RelationshipGroup code.<\/p>\n<p><code>{NULL}<\/code> and <code>{NOT NULL}<\/code> may also be used within link conditions. For example:<\/p>\n<p><code>&lt;== link AREA='Licenses', LICENSE_TYPE='License', COMPONENT={NULL} ==&gt;<\/code><\/p>\n<p>You may also add the <code>{EXISTS}<\/code> as a qualifier to a clause in a link directive. This will check the link, before execution, to find whether the value is present, or is a null value. For example, consider:<\/p>\n<p><code>&lt;== link cousinLink ==&gt;AREA='Functionality', BROTHER_ID = PARENT_ID.{EXISTS}<\/code><\/p>\n<p>If the <code>.{EXISTS}<\/code> was not present, all records with no value for the BROTHER_ID will be selected if the PARENT_ID is null.<\/p>\n<p>You may also add a parameter of <code>DISABLE_LINK<\/code> to a LINK directive. This has the effect of suppressing the drilldown into the issue on the link. For example, the following is correct syntax.<\/p>\n<p><code>&lt;LINK AREA='Bugs' DISABLE_LINK&gt;<\/code><\/p>\n<p>If the value of the behavior setting named ITEM_ID_DISPLAY is ID, then the link uses the ID field to connect the linked issues.&nbsp; If the value is ALT_ID, then the ALT_ID field value is used in the links.<\/p>\n<p>Link directives may also utilise a <code>contains <\/code>clause on a multi-valued field filter.&nbsp; For example, a rule like:<\/p>\n<p><code>&lt;== link idTextFieldLink ==&gt;ID != TEXTFIELD_1, TEXTFIELD_2 contains TEXTFIELD_2 <\/code><\/p>\n<p>will retrieve all the issues where all the values in the UDF field <code>TEXTFIELD_2<\/code> exist in the issue&#8217;s values for <code>TEXTFIELD_2<\/code>.<\/p>\n<h3>\n\tLinking with Wildcards<\/h3>\n<p>By default, reference to a link value returns the first value in the result list for an assignment statement.&nbsp; However, a subscripted value (such as <code>(linkname[n]).ID<\/code> may be specified, returning the <code>n<\/code>th value in the result list for an assignment statement.&nbsp; With this feature, all values in the list can be returned by specifying a wildcard subscript such as <code>(linkname[*]).ID<\/code>. This convention will return all values in the result list separated by semicolons.<\/p>\n<h3>\n\tLink Rules with Multi-Valued Field Filters<\/h3>\n<div>\n\tLink rules may use a <code>contains<\/code> clause on multi-valued field filters.<\/div>\n<div>\n\t&nbsp;<\/div>\n<div>\n\tThus, a link rule like:<\/div>\n<div>\n\t&nbsp;<\/div>\n<div>\n\t<code>&lt;== link idTextfieldLink==&gt; ID != MY_TEXTFIELD,MULTI_MAIN contains MULTI_MAIN&nbsp;<\/code><\/div>\n<div>\n\t&nbsp;<\/div>\n<div>\n\tcan be written to retrieve the items where any of the values in the&nbsp;<code>MULTI_MAIN<\/code> UDF exist in the issue&#8217;s values for <code>MULTI_MAIN<\/code>.<\/div>\n<div>\n\t&nbsp;<\/div>\n<div>\n\tYou can use any of the following where <code>MVA<\/code> is a multi-valued field and <code>&lt;values&gt;<\/code> is a collection of potential values for <code>MVA<\/code>.<\/div>\n<ul>\n<li>\n\t\t<code>MVA.{contains any &lt;values&gt;}MVA.{contains all &lt;values&gt;}<\/code><\/li>\n<li>\n\t\t<code>MVA.{contains none &lt;values&gt;}<\/code><\/li>\n<li>\n\t\t<code>MVA.{contains &lt;values&gt;}<\/code><\/li>\n<li>\n\t\t<code>MVA.{excludes &lt;values&gt;}<\/code><\/li>\n<\/ul>\n<div>\n\tThe same operators also work with link rules as follows.<\/div>\n<ul>\n<li>\n\t\t<code>&lt;== link mva1Link ==&gt; AREA='Simpsons',MVA = MVA<\/code><\/li>\n<li>\n\t\t<code>&lt;== link mva2Link ==&gt; AREA='Simpsons',MVA contains MVA<\/code><\/li>\n<li>\n\t\t<code>&lt;== link mva3Link ==&gt; AREA='Simpsons',MVA excludes MVA<\/code><\/li>\n<li>\n\t\t<code>&lt;== link mva4Link ==&gt; AREA='Simpsons',MVA contains any MVA<\/code><\/li>\n<li>\n\t\t<code>&lt;== link mva5Link ==&gt; AREA='Simpsons',MVA contains all MVA<\/code><\/li>\n<li>\n\t\t<code>&lt;== link mva6Link ==&gt; AREA='Simpsons',MVA contains none MVA<\/code><\/li>\n<\/ul>\n<h3>\n\tRelationship Group Reference ID Feature<\/h3>\n<p>The RG link references currently permit the specification of <code>RG_NAME<\/code> and <code>RG_TYPE<\/code>. With this feature, you can specify <code>RG_REF_ID<\/code>, which specifies a field name containing the <code>ID <\/code>(or <code>ALT_ID<\/code>) of the relationship.&nbsp; For example, the following rules:<\/p>\n<p><code>&lt;== link rgParentIssueLink ==&gt; RG(RG_NAME=MY_GROUP, RG_TYPE=PARENTS, RG_REF_ID=MY_TEXTFIELD)<br \/>\n\t&lt;== load ==&gt;<br \/>\n\tMY_TEXTFIELD = 12345;<br \/>\n\tMY_TEXTAREA = (rgParentIssueLink[*]).ID;<\/code><\/p>\n<p>populate a semicolon-separated list of the parents of issue 12345 from <code>MY_GROUP<\/code> into the <code>MY_TEXTAREA<\/code> field.<\/p>\n<h3>\n\tLinking Issues using ID&#8217;s Stored within a Text Field<\/h3>\n<p>It can be useful to link issues stored with a delimited list of ID&#8217;s to the current issue.&nbsp; Let&#8217;s say that you have a text field named <code>ISSUES_TO_LINK<\/code>.&nbsp; This may have a content such as <code>123;456;789<\/code>.&nbsp; You might want to perform an update operation on all issues linked together.&nbsp; The syntax of the link rule would be:<\/p>\n<p><code>&lt;== link linkFieldIDs ==&gt; ID = RELATED_ISSUES_TO_LINK<br \/>\n\t&nbsp;&nbsp;&nbsp; ISSUES_TO_LINK = '123;456;789';<br \/>\n\t&nbsp;&nbsp;&nbsp; {UPDATE: <code>linkFieldIDs <\/code>STATUS='Approved'};<\/code><\/p>\n<p>As a result of executing the link directive, the issues with IDs of <code>123<\/code>, <code>456 <\/code>and <code>789 <\/code>will be updated with a <code>STATUS<\/code> of <code>Approved<\/code>.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&lt;== link link_name ==&gt; Linking Issues between Business Areas This directive is used to specify how to connect linked issues from one business area to a different one, thereby creating a relationship between two business areas. For example, you can find one or more related issues in a different business area, from which a value&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":24035,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_lmt_disableupdate":"no","_lmt_disable":"","_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-24041","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>LINK - Product Documentation<\/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:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"LINK - Product Documentation\" \/>\n<meta property=\"og:description\" content=\"&lt;== link link_name ==&gt; Linking Issues between Business Areas This directive is used to specify how to connect linked issues from one business area to a different one, thereby creating a relationship between two business areas. For example, you can find one or more related issues in a different business area, from which a value...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/\" \/>\n<meta property=\"og:site_name\" content=\"Product Documentation\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-13T19:56:29+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/\",\"url\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/\",\"name\":\"LINK - Product Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\"},\"datePublished\":\"2024-02-15T22:53:34+00:00\",\"dateModified\":\"2025-02-13T19:56:29+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ExtraView 25\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Administration Guide\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Site Configuration Menu\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/\"},{\"@type\":\"ListItem\",\"position\":5,\"name\":\"Business Rules\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/\"},{\"@type\":\"ListItem\",\"position\":6,\"name\":\"Language Description\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/\"},{\"@type\":\"ListItem\",\"position\":7,\"name\":\"Directives\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/\"},{\"@type\":\"ListItem\",\"position\":8,\"name\":\"LINK\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"name\":\"ExtraView Product Documentation\",\"description\":\"ExtraView Documentation\",\"publisher\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\",\"name\":\"ExtraView Corporation\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"contentUrl\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"ExtraView Corporation\"},\"image\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"LINK - Product Documentation","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:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/","og_locale":"en_US","og_type":"article","og_title":"LINK - Product Documentation","og_description":"&lt;== link link_name ==&gt; Linking Issues between Business Areas This directive is used to specify how to connect linked issues from one business area to a different one, thereby creating a relationship between two business areas. For example, you can find one or more related issues in a different business area, from which a value...","og_url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/","og_site_name":"Product Documentation","article_modified_time":"2025-02-13T19:56:29+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/","url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/","name":"LINK - Product Documentation","isPartOf":{"@id":"https:\/\/docs.extraview.com\/v25\/#website"},"datePublished":"2024-02-15T22:53:34+00:00","dateModified":"2025-02-13T19:56:29+00:00","breadcrumb":{"@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/link-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":2,"name":"ExtraView 25","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":3,"name":"Administration Guide","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/"},{"@type":"ListItem","position":4,"name":"Site Configuration Menu","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/"},{"@type":"ListItem","position":5,"name":"Business Rules","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/"},{"@type":"ListItem","position":6,"name":"Language Description","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/"},{"@type":"ListItem","position":7,"name":"Directives","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/administration-guide-1\/site-configuration-menu-1\/business-rules-1\/language-description-1\/directives-1\/"},{"@type":"ListItem","position":8,"name":"LINK"}]},{"@type":"WebSite","@id":"https:\/\/docs.extraview.com\/v25\/#website","url":"https:\/\/docs.extraview.com\/v25\/","name":"ExtraView Product Documentation","description":"ExtraView Documentation","publisher":{"@id":"https:\/\/docs.extraview.com\/v25\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.extraview.com\/v25\/#organization","name":"ExtraView Corporation","url":"https:\/\/docs.extraview.com\/v25\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/","url":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","contentUrl":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","width":512,"height":512,"caption":"ExtraView Corporation"},"image":{"@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/"}}]}},"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"carl.koppel","author_link":"https:\/\/docs.extraview.com\/v25\/author\/carl-koppel\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24041","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/comments?post=24041"}],"version-history":[{"count":0,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24041\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24035"}],"wp:attachment":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/media?parent=24041"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}