{"id":44355,"date":"2026-05-12T08:20:00","date_gmt":"2026-05-12T06:20:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=44355"},"modified":"2026-05-12T09:12:21","modified_gmt":"2026-05-12T07:12:21","slug":"increase-goldengate-log-retention","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/","title":{"rendered":"Increase GoldenGate 26ai Log Retention"},"content":{"rendered":"\n<p><strong>GoldenGate logs<\/strong> are a powerful <strong>source of information<\/strong> when debugging or analyzing your deployments. However, some of these logs have a rather <strong>low retention<\/strong> period in active deployments. They might then not even be useful for debugging if you send them to your dbi consultants or the Oracle support for analysis. So <strong>how can you increase GoldenGate log retention<\/strong> ?<\/p>\n\n\n\n<p>In a previous blog, I presented all the <a href=\"https:\/\/www.dbi-services.com\/blog\/goldengate-26ai-logs-explained\/\" target=\"_blank\" rel=\"noreferrer noopener\">log files available in GoldenGate<\/a>. Each of them has its <strong>own format and characteristics<\/strong>, but they have one common aspect: they can be customized.<\/p>\n\n\n\n<p>Standard <strong>GoldenGate logging configuration files<\/strong> are located in the <code>$OGG_HOME\/lib\/utl\/logging<\/code> directory.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&gt; ll $OGG_HOME\/lib\/utl\/logging\n-rw-r-----. 1 oracle oinstall  1066 Nov 17  2018 app-adminsrvr-debug.xml\n-rw-r-----. 1 oracle oinstall  1076 Jan 10  2019 app-adminsrvr-events.xml\n-rw-r-----. 1 oracle oinstall  1066 Nov 17  2018 app-distsrvr-debug.xml\n-rw-r-----. 1 oracle oinstall  1040 Apr 17  2017 app-extract-events.xml\n-rw-r-----. 1 oracle oinstall  1066 Nov 17  2018 app-pmsrvr-debug.xml\n-rw-r-----. 1 oracle oinstall  1397 Apr  1  2018 app-pmsrvr-default.xml\n-rw-r-----. 1 oracle oinstall  1066 Nov 17  2018 app-recvsrvr-debug.xml\n-rw-r-----. 1 oracle oinstall  1048 Jan 22  2020 app-replicat-debug509.xml\n-rw-r-----. 1 oracle oinstall  1040 Apr 17  2017 app-replicat-events.xml\n-rw-r-----. 1 oracle oinstall  1066 Nov 17  2018 app-ServiceManager-debug.xml\n-rw-r-----. 1 oracle oinstall  2459 Jan 17  2024 app-ServiceManager-services.xml\n-rw-r-----. 1 oracle oinstall  1282 Dec 19 18:44 ogg-AIService.xml\n-rw-r-----. 1 oracle oinstall  4946 May 14  2020 ogg-audit.xml\n-rw-r-----. 1 oracle oinstall  1582 Jun 28  2023 ogg-ConfigService.xml\n-rw-r-----. 1 oracle oinstall  4487 Jan 10  2019 ogg-ggserr.xml\n-rw-r-----. 1 oracle oinstall 18162 Jun 26  2020 ogg-loggers.json\n-rw-r-----. 1 oracle oinstall  1095 Sep 25  2019 ogg-loggers.xml\n-rw-r-----. 1 oracle oinstall  2180 Sep 11  2024 sca-default.xml\n-rw-r-----. 1 oracle oinstall  1211 Jan 10  2019 sca-restapi.xml\n-rw-r-----. 1 oracle oinstall  1210 Jun  6  2022 sca-stdout.xml<\/code><\/pre>\n\n\n\n<p>The process to modify logging properties of any GoldenGate log file is to <strong>copy one of these files in your deployment and update it<\/strong>. It means that you can have <strong>different logging properties between your deployments<\/strong>.<\/p>\n\n\n\n<p><strong>Oracle GoldenGate Microservices<\/strong> uses a hierarchical logger framework with Log4j-style appenders, layouts, logger inheritance, and category namespaces. I will not dwell on all the configuration files in this blog, but let&#8217;s try to describe the most useful ones.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-sca-restapi-xml\"><code>sca-restapi.xml<\/code><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?xml version=\"1.0\"?&gt;\n&lt;configuration&gt;\n\n  &lt;!--\n   \/- ============================================================= -\\\n   !-   s c a - r e s t a p i . x m l                               -|\n   !-                                                               -|\n   !-   Logging control file for recording all REST API calls       -|\n   !-   to an OGG deployment.                                       -|\n   \\- ============================================================= -\/\n  ! --&gt;\n\n  &lt;appender  name=\"sca-restapi.log\"  class=\"RollingFileAppender\"&gt;\n    &lt;level  value=\"info\"\/&gt;\n    &lt;param   name=\"File\"             value=\"restapi.log\"\/&gt;\n    &lt;param   name=\"MaxFileSize\"      value=\"10MB\"\/&gt;\n    &lt;param   name=\"MaxBackupIndex\"   value=\"9\"\/&gt;\n    &lt;param   name=\"BufferedIO\"       value=\"false\"\/&gt;\n    &lt;param   name=\"Append\"           value=\"true\"\/&gt;\n    &lt;layout class=\"PatternLayout\"&gt;\n      &lt;param name=\"Pattern\"          value=\"%d{%Y-%m-%d %H:%M:%S%z} %-5p|%-36.36c| %m%n\"\/&gt;\n    &lt;\/layout&gt;\n  &lt;\/appender&gt;\n\n  &lt;!--\n   !-   M i c r o s e r v i c e s   A r c h i t e c t u r e\n  ! --&gt;\n  &lt;logger          name=\"RestAPI\"&gt;\n    &lt;appender-ref  name=\"sca-restapi.log\"\/&gt;\n    &lt;level        value=\"info\"\/&gt;\n  &lt;\/logger&gt;\n\n&lt;\/configuration&gt;<\/code><\/pre>\n\n\n\n<p>The <code>sca-restapi.xml<\/code> file is the logging configuration file for the <code>restapi.log<\/code> file.<\/p>\n\n\n\n<p>REST API logs are the <strong>most verbose<\/strong> across all GoldenGate log files. In <strong>production environments<\/strong> where the REST API is often called, you could easily go over the <strong>10 log files in a day<\/strong> or even less. If you have enough space, I would strongly <strong>recommend increasing the retention<\/strong> and\/or the <strong>maximum size<\/strong> of a single log file. This way, you ensure that you keep enough logs for debugging and analysis.<\/p>\n\n\n\n<p>To modify the retention, change <code>MaxFileSize<\/code> to set the maximum log file size and <code>MaxBackupIndex<\/code> to choose the number of files you want to keep (on top of the active log file).<\/p>\n\n\n\n<p>Let&#8217;s copy the file in the deployment home (it could be any deployment, including the Service Manager home).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd $OGG_DEPLOYMENT_HOME\/etc\/conf\/logging\ncp -p $OGG_HOME\/lib\/utl\/logging\/sca-restapi.xml .\nvim sca-restapi.xml<\/code><\/pre>\n\n\n\n<p>For instance, to have <strong>5 files of 50 MB<\/strong> each, edit the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    &lt;param&nbsp;&nbsp; name=\"MaxFileSize\"&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; value=\"50MB\"\/&gt;\n&nbsp;&nbsp;&nbsp; &lt;param&nbsp;&nbsp; name=\"MaxBackupIndex\"&nbsp;&nbsp; value=\"4\"\/&gt;<\/code><\/pre>\n\n\n\n<p>Once this is done, just <strong>restart the administration service<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-about-the-other-log-files\">What about the other log files ?<\/h2>\n\n\n\n<p>If you want to increase the retention or the log file size of any other log file in GoldenGate, just use the following mapping and repeat the same process. If you want to edit the Service Manager logging properties, you should also restart it.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>If you want to modify the log retention for&#8230;<\/th><th>Copy and modify the following file from <code>$OGG_HOME\/lib\/utl\/logging<\/code><\/th><\/tr><\/thead><tbody><tr><td>Most standard microservice logs, except <code>restapi.log<\/code> and <code>ER-events.log<\/code><\/td><td><code>sca-default.xml<\/code><\/td><\/tr><tr><td><code>ggserr.log<\/code><\/td><td><code>ogg-ggserr.xml<\/code><\/td><\/tr><tr><td><code>ER-events.log<\/code><\/td><td><code>app-extract-events.xml<\/code><\/td><\/tr><tr><td><code>restapi.log<\/code><\/td><td><code>sca-restapi.xml<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Warning:<\/strong> If you want to use the same configuration across all your deployments, you could modify the standard files in <code>$OGG_HOME\/lib\/utl\/logging<\/code> and create links from the deployments to this file. However, make sure you do not lose these changes when patching out-of-place !<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-can-i-increase-the-retention-to-more-than-10-files\">Can I increase the retention to more than 10 files ?<\/h2>\n\n\n\n<p>Yes, there is no problem having more than 10 log files. Just increase the <code>MaxBackupIndex<\/code> (9, by default) to the number of log files you want, minus 1. For 20 log files, set <code>MaxBackupIndex<\/code> to <code>19<\/code>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>GoldenGate logs are a powerful source of information when debugging or analyzing your deployments. However, some of these logs have a rather low retention period in active deployments. They might then not even be useful for debugging if you send them to your dbi consultants or the Oracle support for analysis. So how can you [&hellip;]<\/p>\n","protected":false},"author":152,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[3787,59],"tags":[62,3560,3804,328,4030,890,3730,2993,4028],"type_dbi":[4026,3406,3823,3740,4032,3859,3881,4031,4029],"class_list":["post-44355","post","type-post","status-publish","format-standard","hentry","category-goldengate","category-oracle","tag-19c","tag-23ai","tag-26ai","tag-goldengate","tag-increase","tag-log","tag-ogg","tag-retention","tag-size","type-19c","type-23ai","type-26ai","type-goldengate","type-increase","type-log","type-ogg","type-retention","type-size"],"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>Increase GoldenGate 26ai Log Retention - dbi Blog<\/title>\n<meta name=\"description\" content=\"In GoldenGate, changing the log file retention or size is very easy, and can be customized for each log file !\" \/>\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\/increase-goldengate-log-retention\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Increase GoldenGate 26ai Log Retention\" \/>\n<meta property=\"og:description\" content=\"In GoldenGate, changing the log file retention or size is very easy, and can be customized for each log file !\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-12T06:20:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-05-12T07:12:21+00:00\" \/>\n<meta name=\"author\" content=\"Julien Delattre\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Julien Delattre\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 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\\\/increase-goldengate-log-retention\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/increase-goldengate-log-retention\\\/\"},\"author\":{\"name\":\"Julien Delattre\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/764ab019cc9dec42655b4c6b9b8e474e\"},\"headline\":\"Increase GoldenGate 26ai Log Retention\",\"datePublished\":\"2026-05-12T06:20:00+00:00\",\"dateModified\":\"2026-05-12T07:12:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/increase-goldengate-log-retention\\\/\"},\"wordCount\":484,\"commentCount\":0,\"keywords\":[\"19c\",\"23ai\",\"26ai\",\"GoldenGate\",\"increase\",\"log\",\"ogg\",\"retention\",\"size\"],\"articleSection\":[\"GoldenGate\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/increase-goldengate-log-retention\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/increase-goldengate-log-retention\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/increase-goldengate-log-retention\\\/\",\"name\":\"Increase GoldenGate 26ai Log Retention - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-05-12T06:20:00+00:00\",\"dateModified\":\"2026-05-12T07:12:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/764ab019cc9dec42655b4c6b9b8e474e\"},\"description\":\"In GoldenGate, changing the log file retention or size is very easy, and can be customized for each log file !\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/increase-goldengate-log-retention\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/increase-goldengate-log-retention\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/increase-goldengate-log-retention\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Increase GoldenGate 26ai Log Retention\"}]},{\"@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\\\/764ab019cc9dec42655b4c6b9b8e474e\",\"name\":\"Julien Delattre\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g\",\"caption\":\"Julien Delattre\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/juliendelattre\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Increase GoldenGate 26ai Log Retention - dbi Blog","description":"In GoldenGate, changing the log file retention or size is very easy, and can be customized for each log file !","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\/increase-goldengate-log-retention\/","og_locale":"en_US","og_type":"article","og_title":"Increase GoldenGate 26ai Log Retention","og_description":"In GoldenGate, changing the log file retention or size is very easy, and can be customized for each log file !","og_url":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/","og_site_name":"dbi Blog","article_published_time":"2026-05-12T06:20:00+00:00","article_modified_time":"2026-05-12T07:12:21+00:00","author":"Julien Delattre","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Julien Delattre","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/"},"author":{"name":"Julien Delattre","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"headline":"Increase GoldenGate 26ai Log Retention","datePublished":"2026-05-12T06:20:00+00:00","dateModified":"2026-05-12T07:12:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/"},"wordCount":484,"commentCount":0,"keywords":["19c","23ai","26ai","GoldenGate","increase","log","ogg","retention","size"],"articleSection":["GoldenGate","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/","url":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/","name":"Increase GoldenGate 26ai Log Retention - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2026-05-12T06:20:00+00:00","dateModified":"2026-05-12T07:12:21+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"description":"In GoldenGate, changing the log file retention or size is very easy, and can be customized for each log file !","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/increase-goldengate-log-retention\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Increase GoldenGate 26ai Log Retention"}]},{"@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\/764ab019cc9dec42655b4c6b9b8e474e","name":"Julien Delattre","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a97d00e680bbf237126e24b65281cbcb66cd20bd1ed2d14bf928991b2bf68eb5?s=96&d=mm&r=g","caption":"Julien Delattre"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/juliendelattre\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/44355","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\/152"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=44355"}],"version-history":[{"count":20,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/44355\/revisions"}],"predecessor-version":[{"id":44381,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/44355\/revisions\/44381"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=44355"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=44355"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=44355"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=44355"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}