{"id":4183,"date":"2021-09-22T14:31:07","date_gmt":"2021-09-22T12:31:07","guid":{"rendered":"https:\/\/help.r2docuo.com\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/"},"modified":"2023-11-06T09:20:50","modified_gmt":"2023-11-06T08:20:50","slug":"categoryagg-function-find-any-data-from-a-formula","status":"publish","type":"ht_kb","link":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/","title":{"rendered":"categoryAgg function &#8211; Find any data from a formula"},"content":{"rendered":"<p>This function allows, from a formula, to obtain a text string using the data of one or several documents of any Docuo category. It is not necessary that the category indicated is related to the one that contains the formula.<\/p>\n<p>The categoryAgg function is only <strong>available in Docuo Enterprise.<\/strong><\/p>\n<p>For example, if we have a category of countries (PAI &#8211; Country) and we want to list them from any formula, we must use this function:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>Document.categoryAgg(Category, Fields, Separator, Order, [Condici\u00f3n], [Top], [Agrupaci\u00f3n])<br \/>\n<\/tt><\/div>\n<p>Where:<\/p>\n<p><strong>Category<\/strong> : is the code, the name or the code &#8211; name of the category from which we want to extract the data:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>'PAI'<\/tt><\/div>\n<p><strong>Fields<\/strong> : is the text string between quotes with the labels of the fields that we want to extract from each document. They can be combined with fixed text as we see in the example:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>'Name: &lt;@PAI:Properties:Name&gt;, Continent: &lt;@PAI:Data:Continent&gt;, Population: <tt>&lt;@PAI:Data:Inhabitants&gt;<\/tt>'<\/tt><\/div>\n<p><strong>Separator<\/strong> : is a text string between quotes that will separate the data of each document. You can include \\n for line breaks or \\t for tabs. For example:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>'\\n'<\/tt><\/div>\n<p><strong>Order<\/strong> : is an ordering text string. Indicates on which field or fields we want to order the results. The syntax must include the name of one or more fields separated by commas. Behind each of them we can specify the ASC or DESC clause to indicate the order. For example:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>'<tt>&lt;@PAI <\/tt><tt>:Data:Inhabitants&gt; DESC, <\/tt>&lt;@PAI:Properties:Name&gt; ASC'<\/tt><\/div>\n<p><strong>Condition<\/strong> : This is an optional parameter with a T-SQL condition text string of the same type used in dropdown lists. It allows us to filter the results of the aggregate. For example, to filter <em>Countries<\/em> in Europe or Asia:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt><tt>\"&lt; @PAI:Data:Continent&gt;<\/tt> = 'Europe' OR <tt>&lt;<tt>@PAI:Data:Continent<\/tt>&gt; = 'Asian'\"<\/tt><\/tt><\/div>\n<p><strong>Top<\/strong>: is an optional parameter with a number indicating the maximum number of records to return.<\/p>\n<p><strong>Grouping<\/strong>: is an optional parameter that indicates the field by which you want to group. When using groupings it is possible to indicate the aggregate functions:<\/p>\n<ul>\n<li>COUNT(*) to return the number of elements<\/li>\n<li>SUM(field) to get the sum of numeric and currency fields<\/li>\n<li>AVG(field) to get the sum of numeric and currency fields<\/li>\n<li>MAX(field) to get the maximum value of the field<\/li>\n<li>MIN(field) to obtain the minimum value of the field<\/li>\n<\/ul>\n<p>It is important to know that when using groupers, only fields that are already included in the <strong>Fields<\/strong> parameter can be used in the <strong>Order<\/strong> parameter.<\/p>\n<p>Finally, the <strong>final formula<\/strong> (without groupings) would be as follows:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>Document.categoryAgg(<tt>'PAI'<\/tt>,  <tt>'Name: &lt;@PAI:Properties:Name&gt;, Continent: &lt;@PAI:Data:Continent&gt;, Population: <tt>&lt;@PAI:Data:Inhabitants&gt;<\/tt>'<\/tt>, '\\n', <tt>'<tt>&lt;@PAI <\/tt><tt>:Data:Inhabitants&gt; DESC, <\/tt>&lt;@PAI:Properties:Name&gt; ASC'<\/tt>, \"<tt><tt>&lt;@PAI:Data:Continent&gt;<\/tt> = 'Europe' OR <tt><tt>&lt;@PAI:Data:Continent&gt;<\/tt> = 'Asia'\", 7<\/tt><\/tt>)<\/tt><\/div>\n<p>We would obtain a text string with the specified data of the countries that are from Asia or Europe, up to a maximum of 7, sorted by population in descending order and separated by a line break:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>Name: China, Continent: Asia, Inhabitants: 1,403,500,365<br \/>\nName: India <tt>, Continent: Asia, Population: 1,398,496,000<\/tt><br \/>\nName: Indonesia <tt><tt>, Continent: Asia, Population: 269,856,000<\/tt><\/tt><br \/>\nName: Pakistan<tt><tt><tt>, Continent: Asia, Inhabitants: 222,017,000<br \/>\n<tt>Name: Bangladesh <tt><tt><tt>, Continent: Asia, Population: 179,904,000<\/tt><\/tt><\/tt><br \/>\n<\/tt><tt><tt><tt><tt><tt>Name: Russia<tt><tt><tt>, Continent: Europe, Inhabitants: 146,710,000<br \/>\n<tt><tt><tt><tt><tt><tt><tt><tt><tt>Name: Japan<tt><tt><tt>, Continent: <tt><tt><tt><tt><tt><tt><tt><tt>Asia<\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt>, Inhabitants: 126,127,000<\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><\/tt><br \/>\n<\/tt><\/tt><\/tt><\/tt><\/div>\n<p>A variant with groupings of the same formula would be:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>Document.categoryAgg('<tt>PAI<\/tt>,  <tt>'Continent: &lt;@PAI:Data:Continent&gt;, No. of countries: COUNT(*), Inhabitants: SUM(<tt>&lt;@PAI:Data:<\/tt><tt>Inhabitants&gt;<\/tt>)'<\/tt>, '\\n', <tt>'<tt>&lt;@PAI:Data:Inhabitants&gt; DESC,  <\/tt>&lt;@PAI:<tt><tt><tt>Data<\/tt><\/tt><\/tt>:<tt><tt><tt>Continent<\/tt><\/tt><\/tt>&gt;  ASC<\/tt>, \"<tt><tt>&lt;@PAI:Data:Continent&gt;<\/tt> = 'Europe' OR  <tt><tt>&lt;@PAI:Data:Continent&gt;<\/tt>  = 'Asia'\", null,  <tt>\"<tt><br \/>\n  <tt>&lt;@PAI:Data:Continent&gt;\"<\/tt><br \/>\n<\/tt><\/tt><\/tt><\/tt>)<\/tt><\/div>\n<p>The results of number of countries per continent with sum of inhabitants would be:<\/p>\n<div style=\"padding: 1em; border: 1px dashed #2f6fab; color: black; background-color: #f9f9f9; line-height: 1.1em; font-size: 0.8em;\"><tt>Continent: Africa, <tt><br \/>\n  <tt> No. of countries: 54,<\/tt><br \/>\n<\/tt> Inhabitants: 1,440,353,360<br \/>\n<tt>Continent: Americas, <tt><br \/>\n  <tt> No. of countries: 35,<\/tt><br \/>\n<\/tt> Inhabitants: 1,046,571,635<\/tt><br \/>\n<tt>Continent: Asia, <tt><br \/>\n  <tt> No. of countries: 48,<\/tt><br \/>\n<\/tt> Inhabitants: 4.753.500.631<br \/>\n<tt>Continent: Europe, <tt><br \/>\n  <tt> No. of countries: 44,<\/tt><br \/>\n<\/tt> Inhabitants: 747.089.798<\/tt><br \/>\n<tt>Continent: Oceania, <tt><br \/>\n  <tt> No. of countries: 14,<\/tt><br \/>\n<\/tt> Inhabitants: 74.915.610<\/tt><\/tt><br \/>\n<\/tt><\/div>\n<div><\/div>\n<div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>This function allows, from a formula, to obtain a text string using the data of one or several documents of any Docuo category. It is not necessary that the category indicated is related to the one that contains the formula. The categoryAgg function is only available in Docuo Enterprise. For&#8230;<\/p>\n","protected":false},"author":1,"comment_status":"open","ping_status":"closed","template":"","format":"standard","meta":{"content-type":"","footnotes":""},"ht-kb-category":[62],"ht-kb-tag":[83],"class_list":["post-4183","ht_kb","type-ht_kb","status-publish","format-standard","has-post-thumbnail","hentry","ht_kb_category-functions-javascript","ht_kb_tag-docuo-enterprise"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>categoryAgg function - Find any data from a formula - R2 Docuo | Help center<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"categoryAgg function - Find any data from a formula - R2 Docuo | Help center\" \/>\n<meta property=\"og:description\" content=\"This function allows, from a formula, to obtain a text string using the data of one or several documents of any Docuo category. It is not necessary that the category indicated is related to the one that contains the formula. The categoryAgg function is only available in Docuo Enterprise. For...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/\" \/>\n<meta property=\"og:site_name\" content=\"R2 Docuo | Help center\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-06T08:20:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/help.r2docuo.com\/wp-content\/uploads\/2021\/03\/Post-type-Guias-de-usuario.png\" \/>\n\t<meta property=\"og:image:width\" content=\"845\" \/>\n\t<meta property=\"og:image:height\" content=\"564\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@R2Docuo\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/en\\\/knowledge-base\\\/categoryagg-function-find-any-data-from-a-formula\\\/\",\"url\":\"https:\\\/\\\/help.r2docuo.com\\\/en\\\/knowledge-base\\\/categoryagg-function-find-any-data-from-a-formula\\\/\",\"name\":\"categoryAgg function - Find any data from a formula - R2 Docuo | Help center\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/en\\\/knowledge-base\\\/categoryagg-function-find-any-data-from-a-formula\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/en\\\/knowledge-base\\\/categoryagg-function-find-any-data-from-a-formula\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/help.r2docuo.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/Post-type-Guias-de-usuario.png\",\"datePublished\":\"2021-09-22T12:31:07+00:00\",\"dateModified\":\"2023-11-06T08:20:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/en\\\/knowledge-base\\\/categoryagg-function-find-any-data-from-a-formula\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/help.r2docuo.com\\\/en\\\/knowledge-base\\\/categoryagg-function-find-any-data-from-a-formula\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/en\\\/knowledge-base\\\/categoryagg-function-find-any-data-from-a-formula\\\/#primaryimage\",\"url\":\"https:\\\/\\\/help.r2docuo.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/Post-type-Guias-de-usuario.png\",\"contentUrl\":\"https:\\\/\\\/help.r2docuo.com\\\/wp-content\\\/uploads\\\/2021\\\/03\\\/Post-type-Guias-de-usuario.png\",\"width\":845,\"height\":564},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/en\\\/knowledge-base\\\/categoryagg-function-find-any-data-from-a-formula\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\\\/\\\/help.r2docuo.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"categoryAgg function &#8211; Find any data from a formula\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/#website\",\"url\":\"https:\\\/\\\/help.r2docuo.com\\\/\",\"name\":\"R2 Docuo | Help center\",\"description\":\"Todos los recursos para usuarios, administradores y desarrolladores de de R2 Docuo a tu alcance\",\"publisher\":{\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/help.r2docuo.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/#organization\",\"name\":\"R2 Docuo | Help center\",\"url\":\"https:\\\/\\\/help.r2docuo.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/help.r2docuo.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/ILUDEST_CENTRODEAYUDA.png\",\"contentUrl\":\"https:\\\/\\\/help.r2docuo.com\\\/wp-content\\\/uploads\\\/2023\\\/06\\\/ILUDEST_CENTRODEAYUDA.png\",\"width\":1200,\"height\":630,\"caption\":\"R2 Docuo | Help center\"},\"image\":{\"@id\":\"https:\\\/\\\/help.r2docuo.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/R2Docuo\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/r2docuo\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"categoryAgg function - Find any data from a formula - R2 Docuo | Help center","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"categoryAgg function - Find any data from a formula - R2 Docuo | Help center","og_description":"This function allows, from a formula, to obtain a text string using the data of one or several documents of any Docuo category. It is not necessary that the category indicated is related to the one that contains the formula. The categoryAgg function is only available in Docuo Enterprise. For...","og_url":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/","og_site_name":"R2 Docuo | Help center","article_modified_time":"2023-11-06T08:20:50+00:00","og_image":[{"width":845,"height":564,"url":"https:\/\/help.r2docuo.com\/wp-content\/uploads\/2021\/03\/Post-type-Guias-de-usuario.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@R2Docuo","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/","url":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/","name":"categoryAgg function - Find any data from a formula - R2 Docuo | Help center","isPartOf":{"@id":"https:\/\/help.r2docuo.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/#primaryimage"},"image":{"@id":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/#primaryimage"},"thumbnailUrl":"https:\/\/help.r2docuo.com\/wp-content\/uploads\/2021\/03\/Post-type-Guias-de-usuario.png","datePublished":"2021-09-22T12:31:07+00:00","dateModified":"2023-11-06T08:20:50+00:00","breadcrumb":{"@id":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/#primaryimage","url":"https:\/\/help.r2docuo.com\/wp-content\/uploads\/2021\/03\/Post-type-Guias-de-usuario.png","contentUrl":"https:\/\/help.r2docuo.com\/wp-content\/uploads\/2021\/03\/Post-type-Guias-de-usuario.png","width":845,"height":564},{"@type":"BreadcrumbList","@id":"https:\/\/help.r2docuo.com\/en\/knowledge-base\/categoryagg-function-find-any-data-from-a-formula\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/help.r2docuo.com\/"},{"@type":"ListItem","position":2,"name":"categoryAgg function &#8211; Find any data from a formula"}]},{"@type":"WebSite","@id":"https:\/\/help.r2docuo.com\/#website","url":"https:\/\/help.r2docuo.com\/","name":"R2 Docuo | Help center","description":"Todos los recursos para usuarios, administradores y desarrolladores de de R2 Docuo a tu alcance","publisher":{"@id":"https:\/\/help.r2docuo.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/help.r2docuo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/help.r2docuo.com\/#organization","name":"R2 Docuo | Help center","url":"https:\/\/help.r2docuo.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/help.r2docuo.com\/#\/schema\/logo\/image\/","url":"https:\/\/help.r2docuo.com\/wp-content\/uploads\/2023\/06\/ILUDEST_CENTRODEAYUDA.png","contentUrl":"https:\/\/help.r2docuo.com\/wp-content\/uploads\/2023\/06\/ILUDEST_CENTRODEAYUDA.png","width":1200,"height":630,"caption":"R2 Docuo | Help center"},"image":{"@id":"https:\/\/help.r2docuo.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/R2Docuo","https:\/\/www.linkedin.com\/company\/r2docuo"]}]}},"_links":{"self":[{"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/ht-kb\/4183","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/ht-kb"}],"about":[{"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/types\/ht_kb"}],"author":[{"embeddable":true,"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/comments?post=4183"}],"version-history":[{"count":0,"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/ht-kb\/4183\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/media\/4053"}],"wp:attachment":[{"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/media?parent=4183"}],"wp:term":[{"taxonomy":"ht_kb_category","embeddable":true,"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/ht-kb-category?post=4183"},{"taxonomy":"ht_kb_tag","embeddable":true,"href":"https:\/\/help.r2docuo.com\/en\/wp-json\/wp\/v2\/ht-kb-tag?post=4183"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}