{"id":46580,"date":"2026-08-27T08:17:00","date_gmt":"2026-08-27T06:17:00","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=46580"},"modified":"2026-08-23T21:17:47","modified_gmt":"2026-08-23T19:17:47","slug":"goldengate-db2-z-os-upgrade-checklist","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/","title":{"rendered":"GoldenGate DB2 z\/OS Upgrade Checklist"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Upgrading GoldenGate when the source is <strong>DB2 for z\/OS<\/strong> is not quite the same exercise as upgrading a GoldenGate installation for Oracle. Most of what I described in my generic blogs about <a href=\"https:\/\/www.dbi-services.com\/blog\/planning-goldengate-migration-before-premier-support-expires\/\" target=\"_blank\" rel=\"noopener noreferrer\">planning a GoldenGate upgrade<\/a> and <a href=\"https:\/\/www.dbi-services.com\/blog\/upgrade-goldengate-from-classic-to-microservices-architecture-before-its-too-late\/\" target=\"_blank\" rel=\"noopener noreferrer\">migrating from Classic to Microservices Architecture<\/a> is still valid. However, there is an extra layer to deal with. It has to do with the <strong>IBM Data Server Driver for ODBC and CLI<\/strong>, and everything DB2-side depending on it. This blog is a consolidated checklist of everything you should check before, during, and after a GoldenGate for DB2 z\/OS upgrade, based on issues I faced.<\/p>\n\n\n\n<h2 id=\"why-db2-zos-upgrades-are-different\" class=\"wp-block-heading\">Why DB2 z\/OS upgrades are different<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">With Oracle, a GoldenGate upgrade does not really involve the databases themselves. You just have to install the new home, and migrate or reconfigure extracts and replicats. Provided that you do not have a complex custom layer on top of it (automation, pipelines, etc.), this is everything you have to do. With DB2 z\/OS, GoldenGate talks to the DB2 database through the <strong>CLI driver<\/strong>. This driver has its own version, its own licensing, and its own DB2-side procedures that need to be updated. If you only upgrade GoldenGate and the CLI driver but forget the DB2 z\/OS side, you will hit errors when trying to extract data from DB2. On top of this, a stored procedure is installed in the DB2 database, for GoldenGate to work.<\/p>\n\n\n\n<h2 id=\"the-sql1598n-licensing-issue\" class=\"wp-block-heading\">The <code>SQL1598N<\/code> licensing issue<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first error you might encounter when upgrading the CLI driver as part of a GoldenGate upgrade is related to the licensing file. I detailed this in a <a href=\"https:\/\/www.dbi-services.com\/blog\/db2-sql1598n-licensing-error-when-upgrading-goldengate\/\" target=\"_blank\" rel=\"noopener noreferrer\">previous blog<\/a>, but the short version is: the IBM Data Server Driver for ODBC and CLI does not ship with a license file to connect to DB2 for z\/OS. A separate file, <code>db2consv_zs.lic<\/code>, has to be placed manually into the <code>clidriver\/license\/<\/code> directory. T<strong>his file is tied to the exact driver version<\/strong> ! Reusing the license from your old driver (<code>11.1<\/code>) in the new driver\u2019s directory (<code>12.1<\/code>) will not work, and connections will fail with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SQLState : 42968\nNativeError : -1598\nDiagMsg: &#091;IBM]&#091;CLI Driver] SQL1598N An attempt to connect to the database\nserver failed because of a licensing problem. SQLSTATE=42968<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Remember to get the new license file and test it way before the cutover. Whoever manages IBM software on your side, or IBM support directly, needs to provide a <strong>new<\/strong> <code>db2consv_zs.lic<\/code> matching the target driver version. Since getting a license file from IBM support is rarely instantaneous, plan some time to get this done.<\/p>\n\n\n\n<h2 id=\"the-db2-side-stored-procedure-step\" class=\"wp-block-heading\">The DB2-side stored procedure step<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This is the part which is easy to miss because it doesn\u2019t happen on the GoldenGate host at all. However, it is documented by Oracle. A GoldenGate extract for DB2 z\/OS relies on an <strong>initialization and utility stored procedure<\/strong> which is installed directly in DB2 itself. This stored procedure ships with each GoldenGate release and is versioned against it. When you upgrade GoldenGate, the stored procedure sitting in the DB2 subsystem does not upgrade itself. It stays at whatever version was installed during the last GoldenGate install, until it is explicitly reinstalled.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When setting up a new GoldenGate home for DB2, a <code>zOSutils.zip<\/code> file is included under <code>$OGG_HOME\/lib<\/code>. This is what you must use. The new stored procedure will replace the old one in the catalog.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Just like the CLI driver issues described above, this should be <strong>managed by DB2 engineers<\/strong>. Installing or replacing a stored procedure at the DB2 level requires the appropriate privileges, which a Database\/GoldenGate\/Linux administrator typically does not have. Talk with your <strong>DB2 for z\/OS DBA or systems engineer<\/strong> as part of the upgrade plan, and treat the stored procedure reinstall as a mandatory step of the GoldenGate upgrade itself.<\/p>\n\n\n\n<h3 id=\"ogg-30121-or-ogg-30057-with-db2-procedure-upgrade\" class=\"wp-block-heading\"><code>OGG-30121<\/code> or <code>OGG-30057<\/code> with DB2 procedure upgrade<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If GoldenGate itself gets upgraded but the stored procedure in the DB2 subsystem is left at its old version, the extract will detect the mismatch at startup and abend with <code>OGG-30121<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>OGG-30121  ERROR  The initialization and utility stored procedure major version is 210610 and is not compatible with this Extract. (The minor version is 00).<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Getting an <code>OGG-30121<\/code> error during a GoldenGate upgrade means that the DB2-side stored procedure reinstall was missed. There is no need to start debugging the GoldenGate configuration.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Also, please note that this stored procedure change needs to happen during the GoldenGate upgrade, not before. What I mean by this is that you cannot ask for the stored procedure to be updated a week before the GoldenGate upgrade. You will need to <strong>allocate time for updating the stored procedure<\/strong> in your upgrade scenario.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The reverse situation also exists. If you update the procedure but not GoldenGate, you will have an <code>OGG-30057<\/code> error when attempting to restart the extracts.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>OGG-30057  ERROR  The log reading user-defined function major version is 231010 and is not supported. (The minor version is 00)<\/code><\/pre>\n\n\n\n<h2 id=\"other-things-to-check-during-the-upgrade\" class=\"wp-block-heading\">Other things to check during the upgrade<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Here are a few other points regarding issues I faced when upgrading GoldenGate for DB2 setups in the past:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The response file contain an <code>IBMCLIDRIVER<\/code> variable. It must point to the actual root of the CLI driver installation, not a parent directory. A wrong path produces an <a href=\"https:\/\/www.dbi-services.com\/blog\/deployment-creation-ins-85037-error-with-goldengate-26ai-for-db2-z-os\/\" target=\"_blank\" rel=\"noopener noreferrer\">INS-85037 deployment error<\/a> when using <code>oggca.sh<\/code>.<\/li>\n\n\n\n<li>Confirm your GoldenGate version is still under <strong>Premier Support<\/strong> or <strong>Extended Support<\/strong> before you upgrade. Indeed, 19c and 21c Premier Support came to an end in May 2026, as covered in my <a href=\"https:\/\/www.dbi-services.com\/blog\/planning-goldengate-migration-before-premier-support-expires\/\" target=\"_blank\" rel=\"noopener noreferrer\">migration planning blog<\/a>.<\/li>\n<\/ul>\n\n\n\n<h2 id=\"using-the-migration-utility-with-db2-zos-sources\" class=\"wp-block-heading\">Using the Migration Utility with DB2 z\/OS sources<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If part of your upgrade also involves moving from <strong>Classic Architecture<\/strong> to Microservices, the general procedure and its limitations are the same, regardless of source database, and covered in <a href=\"https:\/\/www.dbi-services.com\/blog\/upgrade-goldengate-from-classic-to-microservices-architecture-before-its-too-late\/\" target=\"_blank\" rel=\"noopener noreferrer\">Upgrade GoldenGate from Classic to Microservices Architecture<\/a>. You can use the <strong>migration utility<\/strong> delivered by Oracle (patch <code>37274898<\/code> \/ <code>KB100447<\/code> in MOS). You will still have to pay attention to the points described above.<\/p>\n\n\n\n<h2 id=\"checklist-summary\" class=\"wp-block-heading\">Checklist summary<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Before upgrading GoldenGate for DB2 z\/OS:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Confirm your support status before deciding on a target version. You should upgrade to 26ai.<\/li>\n\n\n\n<li>Identify the current and target CLI driver version and request the matching <code>db2consv_zs.lic<\/code> from IBM (or your internal license owner) ahead of time, if needed.<\/li>\n\n\n\n<li>Open a change request with your DB2 for z\/OS DBA\/systems engineer to <strong>reinstall the GoldenGate stored procedure<\/strong> in every affected DB2 database. This must be done during the upgrade, after stopping and before restarting the new extracts.<\/li>\n\n\n\n<li>After cutover, if an extract abends with the <code>OGG-30121<\/code> or <code>OGG-30057<\/code> error, check the stored procedure at the DB2 level.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">With this, I hope you will succeed in your GoldenGate for DB2 z\/OS migrations and upgrades.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Upgrading GoldenGate when the source is DB2 for z\/OS is not quite the same exercise as upgrading a GoldenGate installation for Oracle. Most of what I described in my generic blogs about planning a GoldenGate upgrade and migrating from Classic to Microservices Architecture is still valid. However, there is an extra layer to deal with. [&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":"","_members_access_role":[],"_members_access_error":""},"categories":[1],"tags":[3380,62,3181,63,3827,3804,4163,3927,56,328,57,377,2562,3730,4187,4188,4181,2601],"type_dbi":[],"class_list":["post-46580","post","type-post","status-publish","format-standard","hentry","category-non-classifiee","tag-3380","tag-19c","tag-3181","tag-21c","tag-3827","tag-26ai","tag-checklist","tag-clidriver","tag-db2","tag-goldengate","tag-ibm","tag-licensing","tag-migration-2","tag-ogg","tag-ogg-30057","tag-ogg-30121","tag-sql1598n","tag-upgrade-2"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.2 (Yoast SEO v28.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>GoldenGate DB2 z\/OS Upgrade Checklist - dbi Blog<\/title>\n<meta name=\"description\" content=\"A checklist for upgrading GoldenGate for DB2 z\/OS: licensing, stored procedures, and using the Migration Utility with DB2 z\/OS sources.\" \/>\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\/goldengate-db2-z-os-upgrade-checklist\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GoldenGate DB2 z\/OS Upgrade Checklist\" \/>\n<meta property=\"og:description\" content=\"A checklist for upgrading GoldenGate for DB2 z\/OS: licensing, stored procedures, and using the Migration Utility with DB2 z\/OS sources.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-27T06:17:00+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=\"5 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\\\/goldengate-db2-z-os-upgrade-checklist\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/goldengate-db2-z-os-upgrade-checklist\\\/\"},\"author\":{\"name\":\"Julien Delattre\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/764ab019cc9dec42655b4c6b9b8e474e\"},\"headline\":\"GoldenGate DB2 z\\\/OS Upgrade Checklist\",\"datePublished\":\"2026-08-27T06:17:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/goldengate-db2-z-os-upgrade-checklist\\\/\"},\"wordCount\":1028,\"commentCount\":0,\"keywords\":[\"19\",\"19c\",\"21\",\"21c\",\"26\",\"26ai\",\"checklist\",\"clidriver\",\"DB2\",\"GoldenGate\",\"IBM\",\"Licensing\",\"migration\",\"ogg\",\"OGG-30057\",\"OGG-30121\",\"sql1598n\",\"upgrade\"],\"articleSection\":[\"Non classifi\u00e9(e)\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/goldengate-db2-z-os-upgrade-checklist\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/goldengate-db2-z-os-upgrade-checklist\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/goldengate-db2-z-os-upgrade-checklist\\\/\",\"name\":\"GoldenGate DB2 z\\\/OS Upgrade Checklist - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"datePublished\":\"2026-08-27T06:17:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/764ab019cc9dec42655b4c6b9b8e474e\"},\"description\":\"A checklist for upgrading GoldenGate for DB2 z\\\/OS: licensing, stored procedures, and using the Migration Utility with DB2 z\\\/OS sources.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/goldengate-db2-z-os-upgrade-checklist\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/goldengate-db2-z-os-upgrade-checklist\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/goldengate-db2-z-os-upgrade-checklist\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"GoldenGate DB2 z\\\/OS Upgrade Checklist\"}]},{\"@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":"GoldenGate DB2 z\/OS Upgrade Checklist - dbi Blog","description":"A checklist for upgrading GoldenGate for DB2 z\/OS: licensing, stored procedures, and using the Migration Utility with DB2 z\/OS sources.","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\/goldengate-db2-z-os-upgrade-checklist\/","og_locale":"en_US","og_type":"article","og_title":"GoldenGate DB2 z\/OS Upgrade Checklist","og_description":"A checklist for upgrading GoldenGate for DB2 z\/OS: licensing, stored procedures, and using the Migration Utility with DB2 z\/OS sources.","og_url":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/","og_site_name":"dbi Blog","article_published_time":"2026-08-27T06:17:00+00:00","author":"Julien Delattre","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Julien Delattre","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/"},"author":{"name":"Julien Delattre","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"headline":"GoldenGate DB2 z\/OS Upgrade Checklist","datePublished":"2026-08-27T06:17:00+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/"},"wordCount":1028,"commentCount":0,"keywords":["19","19c","21","21c","26","26ai","checklist","clidriver","DB2","GoldenGate","IBM","Licensing","migration","ogg","OGG-30057","OGG-30121","sql1598n","upgrade"],"articleSection":["Non classifi\u00e9(e)"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/","url":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/","name":"GoldenGate DB2 z\/OS Upgrade Checklist - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"datePublished":"2026-08-27T06:17:00+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/764ab019cc9dec42655b4c6b9b8e474e"},"description":"A checklist for upgrading GoldenGate for DB2 z\/OS: licensing, stored procedures, and using the Migration Utility with DB2 z\/OS sources.","breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/goldengate-db2-z-os-upgrade-checklist\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"GoldenGate DB2 z\/OS Upgrade Checklist"}]},{"@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\/46580","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=46580"}],"version-history":[{"count":3,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/46580\/revisions"}],"predecessor-version":[{"id":46586,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/46580\/revisions\/46586"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=46580"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=46580"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=46580"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=46580"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}