{"id":13769,"date":"2020-03-22T07:00:11","date_gmt":"2020-03-22T06:00:11","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/"},"modified":"2020-03-22T07:00:11","modified_gmt":"2020-03-22T06:00:11","slug":"documentum-lss-registeroracleversionview-script-with-wrong-content","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/","title":{"rendered":"Documentum &#8211; LSS registerOracleVersionView script with wrong content"},"content":{"rendered":"<p>As discussed in a previous <a href=\"https:\/\/www.dbi-services.com\/blog\/documentum-a-first-experience-with-the-life-sciences-suite-16-6-1-silent-installation\/\" target=\"_blank\" rel=\"noopener noreferrer\">blog<\/a>, working with LSS might prove a little bit challenging from time to time. In this blog, I wanted to share an error I saw while installing LSS 16.6.1 on an Oracle database. Initially, I developed my silent installation for LSS (while encapsulate the LSS silent scripts provided by OpenText) using a PostgreSQL database because it&#8217;s usually easier to setup an environment on Kubernetes with PG because of licenses.<\/p>\n<p>&nbsp;<\/p>\n<p>So, the silent installation scripts were created several months ago and working since then, apparently. Recently, I had to execute manually my silent install script of LSS on an environment which was using an Oracle database. The script completed properly, my automatic log file checking didn&#8217;t show any sign or errors or anything so for me it was fully installed. However, I still did a review of the logs printed on the screen to be sure and I did see a new &#8220;error&#8221; I wasn&#8217;t familiar with. I&#8217;m not sure you can call that an error because it&#8217;s just one line drowned in the flood of logs printed without any &#8220;ERROR&#8221; or &#8220;_E_&#8221; messages but it is clearly an error from a Linux point of view:<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1\">...\n.\/registerOracleVersionView.sh: line 1: oracle: command not found\n...<\/pre>\n<p>&nbsp;<\/p>\n<p>This message never appeared in the generated log file of the LSS installation, it&#8217;s only displayed on the screen, which makes it&#8230; quite difficult to see in automation. So, anyway, what&#8217;s the issue this time? Well looking at the message, it&#8217;s clear that the shell script has a wrong content because it is trying to execute a command &#8220;oracle&#8221; which doesn&#8217;t exist. Where is this file? What&#8217;s its content?<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [12,16,17]\">[dmadmin@cs-0 ~]$ workspace=\"\/tmp\/lss\/\"\n[dmadmin@cs-0 ~]$\n[dmadmin@cs-0 ~]$ cd ${workspace}\/*\/\n[dmadmin@cs-0 LSSuite]$\n[dmadmin@cs-0 LSSuite]$ ls -l *.sh\n-rwxr-x--- 1 dmadmin dmadmin 13479 Oct  4 09:15 LSConfigImport.sh\n-rwxr-x--- 1 dmadmin dmadmin  4231 Oct  4 09:15 iHubConfigImport.sh\n-rwxr-x--- 1 dmadmin dmadmin  8384 Oct  4 09:15 install.sh\n-rwxr-x--- 1 dmadmin dmadmin  3096 Oct  4 09:15 myInsightPostInstall.sh\n[dmadmin@cs-0 LSSuite]$\n[dmadmin@cs-0 LSSuite]$ find . -name registerOracleVersionView.sh\n.\/scripts\/registerOracleVersionView.sh\n[dmadmin@cs-0 LSSuite]$\n[dmadmin@cs-0 LSSuite]$ cd .\/scripts\/\n[dmadmin@cs-0 scripts]$\n[dmadmin@cs-0 scripts]$ cat registerOracleVersionView.sh\nif  \"$4\" == \"oracle\"\nthen\n        idql \"$1\" -U\"$2\" -P\"$3\" -R\".\/scripts\/$4\/oracleVersion.dql\"\nfi\n[dmadmin@cs-0 scripts]$<\/pre>\n<p>&nbsp;<\/p>\n<p>If you are familiar with bash\/shell scripting, you probably already saw what&#8217;s wrong with the script. It&#8217;s simply that this isn&#8217;t the correct way to write IF statements. I won&#8217;t go into the details of the correct formatting (one bracket, two brackets, with test command, aso&#8230;) because there are already plenty of documentation around that online but that&#8217;s definitively not a correct way to write IF statements. So, to correct this script, I opened the OpenText <strong>SR#4450083<\/strong> and provided them the commands to fix it in a future patch\/release. I didn&#8217;t receive a confirmation yet but it should be in the next LSS release. In the meanwhile, I put the workaround on my silent install script (if the correct format is already there it won&#8217;t be anything but if it&#8217;s not, then it will correct the file):<\/p>\n<pre class=\"brush: bash; gutter: true; first-line: 1; highlight: [2,7,8,10,13,18,29,3133,35]\">[dmadmin@cs-0 scripts]$ cat registerOracleVersionView.sh\nif  \"$4\" == \"oracle\"\nthen\n        idql \"$1\" -U\"$2\" -P\"$3\" -R\".\/scripts\/$4\/oracleVersion.dql\"\nfi\n[dmadmin@cs-0 scripts]$\n[dmadmin@cs-0 scripts]$ .\/registerOracleVersionView.sh Repo01 dmadmin xxx oracle\n.\/registerOracleVersionView.sh: line 1: oracle: command not found\n[dmadmin@cs-0 scripts]$\n[dmadmin@cs-0 scripts]$ sed -i -e 's,^if[[:space:]]*\",if [[ \",' -e 's,^if [[ .*\"$,&amp; ]],' registerOracleVersionView.sh\n[dmadmin@cs-0 scripts]$\n[dmadmin@cs-0 scripts]$ cat registerOracleVersionView.sh\nif [[ \"$4\" == \"oracle\" ]]\nthen\n        idql \"$1\" -U\"$2\" -P\"$3\" -R\".\/scripts\/$4\/oracleVersion.dql\"\nfi\n[dmadmin@cs-0 scripts]$\n[dmadmin@cs-0 scripts]$ .\/registerOracleVersionView.sh Repo01 dmadmin xxx oracle\n\n        OpenText Documentum idql - Interactive document query interface\n        Copyright (c) 2018. OpenText Corporation\n        All rights reserved.\n        Client Library Release 16.4.0170.0080\n\nConnecting to Server using docbase Repo01\n[DM_SESSION_I_SESSION_START]info:  \"Session 010f1234800113af started for user dmadmin.\"\n\nConnected to OpenText Documentum Server running Release 16.4.0170.0234  Linux64.Oracle\n1&gt; 2&gt; result\n------------\nT\n(1 row affected)\n1&gt; 2&gt; new_object_ID\n----------------\n190f1234800edc59\n(1 row affected)\n1&gt;\n[dmadmin@cs-0 scripts]$\n[dmadmin@cs-0 scripts]$ cat .\/scripts\/oracle\/oracleVersion.dql\nexecute exec_sql with query = 'create view oracle_version as select * from v$version'\ngo\nREGISTER TABLE dm_dbo.oracle_version (banner String(80))\ngo[dmadmin@cs-0 scripts]$<\/pre>\n<p>&nbsp;<\/p>\n<p>As you can see above, the shell executes a DQL script &#8220;oracleVersion.dql&#8221;. This simply creates a new view &#8220;oracle_version&#8221;. I have no clue where this might be used in LSS but what I can tell you is that this script was already wrong in LSS 16.6.0 (released in Jul 2019 I believe) and nobody complained about it so far apparently, so maybe you can wait for the official fix from OpenText or you can fix it yourself like I did, up to you!<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As discussed in a previous blog, working with LSS might prove a little bit challenging from time to time. In this blog, I wanted to share an error I saw while installing LSS 16.6.1 on an Oracle database. Initially, I developed my silent installation for LSS (while encapsulate the LSS silent scripts provided by OpenText) [&hellip;]<\/p>\n","protected":false},"author":20,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[197,525],"tags":[1879,1859,129,73,1862,96,77],"type_dbi":[],"class_list":["post-13769","post","type-post","status-publish","format-standard","hentry","category-application-integration-middleware","category-enterprise-content-management","tag-16-6-0","tag-16-6-1","tag-documentum","tag-linux","tag-lss","tag-oracle","tag-postgresql"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.2 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Documentum - LSS registerOracleVersionView script with wrong content - dbi Blog<\/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.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Documentum - LSS registerOracleVersionView script with wrong content\" \/>\n<meta property=\"og:description\" content=\"As discussed in a previous blog, working with LSS might prove a little bit challenging from time to time. In this blog, I wanted to share an error I saw while installing LSS 16.6.1 on an Oracle database. Initially, I developed my silent installation for LSS (while encapsulate the LSS silent scripts provided by OpenText) [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-22T06:00:11+00:00\" \/>\n<meta name=\"author\" content=\"Morgan Patou\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@MorganPatou\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Morgan Patou\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/\"},\"author\":{\"name\":\"Morgan Patou\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"headline\":\"Documentum &#8211; LSS registerOracleVersionView script with wrong content\",\"datePublished\":\"2020-03-22T06:00:11+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/\"},\"wordCount\":521,\"commentCount\":0,\"keywords\":[\"16.6.0\",\"16.6.1\",\"Documentum\",\"Linux\",\"LSS\",\"Oracle\",\"PostgreSQL\"],\"articleSection\":[\"Application integration &amp; Middleware\",\"Enterprise content management\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/\",\"name\":\"Documentum - LSS registerOracleVersionView script with wrong content - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2020-03-22T06:00:11+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/documentum-lss-registeroracleversionview-script-with-wrong-content\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Documentum &#8211; LSS registerOracleVersionView script with wrong content\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/c4d05b25843a9bc2ab20415dae6bd2d8\",\"name\":\"Morgan Patou\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g\",\"caption\":\"Morgan Patou\"},\"description\":\"Morgan Patou has over 12 years of experience in Enterprise Content Management (ECM) systems, with a strong focus in recent years on platforms such as Alfresco, Documentum, and M-Files. He specializes in the architecture, setup, customization, and maintenance of ECM infrastructures in complex &amp; critical environments. Morgan is well-versed in both engineering and operations aspects, including high availability design, system integration, and lifecycle management. He also has a solid foundation in open-source and proprietary technologies - ranging from Apache, OpenLDAP or Kerberos to enterprise-grade systems like WebLogic. Morgan Patou holds an Engineering Degree in Computer Science from ENSISA (\u00c9cole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse, France. He is Alfresco Content Services Certified Administrator (ACSCA), Alfresco Content Services Certified Engineer (ACSCE) as well as OpenText Documentum Certified Administrator. His industry experience spans the Public Sector, IT Services, Financial Services\\\/Banking, and the Pharmaceutical industry.\",\"sameAs\":[\"https:\\\/\\\/blog.dbi-services.com\\\/author\\\/morgan-patou\\\/\",\"https:\\\/\\\/x.com\\\/MorganPatou\"],\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/morgan-patou\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Documentum - LSS registerOracleVersionView script with wrong content - dbi Blog","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.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/","og_locale":"en_US","og_type":"article","og_title":"Documentum - LSS registerOracleVersionView script with wrong content","og_description":"As discussed in a previous blog, working with LSS might prove a little bit challenging from time to time. In this blog, I wanted to share an error I saw while installing LSS 16.6.1 on an Oracle database. Initially, I developed my silent installation for LSS (while encapsulate the LSS silent scripts provided by OpenText) [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/","og_site_name":"dbi Blog","article_published_time":"2020-03-22T06:00:11+00:00","author":"Morgan Patou","twitter_card":"summary_large_image","twitter_creator":"@MorganPatou","twitter_misc":{"Written by":"Morgan Patou","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/"},"author":{"name":"Morgan Patou","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"headline":"Documentum &#8211; LSS registerOracleVersionView script with wrong content","datePublished":"2020-03-22T06:00:11+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/"},"wordCount":521,"commentCount":0,"keywords":["16.6.0","16.6.1","Documentum","Linux","LSS","Oracle","PostgreSQL"],"articleSection":["Application integration &amp; Middleware","Enterprise content management"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/","url":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/","name":"Documentum - LSS registerOracleVersionView script with wrong content - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2020-03-22T06:00:11+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/documentum-lss-registeroracleversionview-script-with-wrong-content\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Documentum &#8211; LSS registerOracleVersionView script with wrong content"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/c4d05b25843a9bc2ab20415dae6bd2d8","name":"Morgan Patou","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5d7f5bec8b597db68a09107a6f5309e3870d6296ef94fb10ead4b09454ca67e5?s=96&d=mm&r=g","caption":"Morgan Patou"},"description":"Morgan Patou has over 12 years of experience in Enterprise Content Management (ECM) systems, with a strong focus in recent years on platforms such as Alfresco, Documentum, and M-Files. He specializes in the architecture, setup, customization, and maintenance of ECM infrastructures in complex &amp; critical environments. Morgan is well-versed in both engineering and operations aspects, including high availability design, system integration, and lifecycle management. He also has a solid foundation in open-source and proprietary technologies - ranging from Apache, OpenLDAP or Kerberos to enterprise-grade systems like WebLogic. Morgan Patou holds an Engineering Degree in Computer Science from ENSISA (\u00c9cole Nationale Sup\u00e9rieure d'Ing\u00e9nieurs Sud Alsace) in Mulhouse, France. He is Alfresco Content Services Certified Administrator (ACSCA), Alfresco Content Services Certified Engineer (ACSCE) as well as OpenText Documentum Certified Administrator. His industry experience spans the Public Sector, IT Services, Financial Services\/Banking, and the Pharmaceutical industry.","sameAs":["https:\/\/blog.dbi-services.com\/author\/morgan-patou\/","https:\/\/x.com\/MorganPatou"],"url":"https:\/\/www.dbi-services.com\/blog\/author\/morgan-patou\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/13769","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/20"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=13769"}],"version-history":[{"count":0,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/13769\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=13769"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=13769"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=13769"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=13769"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}