{"id":3623,"date":"2018-10-08T06:50:01","date_gmt":"2018-10-08T06:50:01","guid":{"rendered":"https:\/\/dbtut.com\/?p=3623"},"modified":"2020-05-31T10:27:15","modified_gmt":"2020-05-31T10:27:15","slug":"how-to-setup-auditing-in-db2","status":"publish","type":"post","link":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/","title":{"rendered":"How To Setup Auditing in DB2"},"content":{"rendered":"\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<p>First, check audit parameter in DB2 LUW; as you can see &#8220;audit active&#8221; is <strong>FALSE,\u00a0<\/strong>which shows that currently auditing is not enabled on your instance.<\/p>\n<pre class=\"lang:default decode:true\">db2audit describe\nDB2 AUDIT SETTINGS:\n\nAudit active: \"FALSE \"\nLog audit events: \"FAILURE\"\nLog checking events: \"FAILURE\"\nLog object maintenance events: \"FAILURE\"\nLog security maintenance events: \"FAILURE\"\nLog system administrator events: \"FAILURE\"\nLog validate events: \"FAILURE\"\nLog context events: \"NONE\"\nReturn SQLCA on audit error: \"FALSE \"\nAudit Data Path: \"\"\nAudit Archive Path: \"\"\n\nAUD0000I  Operation succeeded.\n\n\n<\/pre>\n<blockquote>\n<p>Let&#8217;s start to configure;\u00a0<\/p>\n<\/blockquote>\n<ul>\n<li>Update audit_buf_sz parameter.<\/li>\n<\/ul>\n<pre class=\"\">db2 update dbm cfg using audit_buf_sz 64<\/pre>\n<p>Two paths parameters.<\/p>\n<ul>\n<li>One where audit main file will be created.<\/li>\n<li>Second where it will be archived.<\/li>\n<\/ul>\n<pre class=\"lang:default decode:true\">db2audit configure scope audit status both archivepath \/dbawork\/audit\/\ndb2audit configure scope audit status both datapath \/dbawork\/audit\/archive\n<\/pre>\n<p>Now lets create policy, you can create multiple policies in db2. you can even create policy for single table, for detail you can visit IBM page<\/p>\n<p><a href=\"https:\/\/www.ibm.com\/support\/knowledgecenter\/SSEPGG_11.1.0\/com.ibm.db2.luw.admin.sec.doc\/doc\/c0050525.html\">https:\/\/www.ibm.com\/support\/knowledgecenter\/SSEPGG_11.1.0\/com.ibm.db2.luw.admin.sec.doc\/doc\/c0005483.html<\/a><\/p>\n<p>I am creating generic audit policy for all database objects in my database.<\/p>\n<pre class=\"\">db2 connect to COREDB\ndb2 \"CREATE AUDIT POLICY BANKAUDIT CATEGORIES AUDIT STATUS BOTH,SECMAINT STATUS BOTH,OBJMAINT STATUS BOTH,CHECKING STATUS BOTH,VALIDATE STATUS BOTH ERROR TYPE AUDIT CREATE AUDIT POLICY BANKAUDIT CATEGORIES AUDIT STATUS BOTH,OBJMAINT STATUS BOTH,CHECKING STATUS BOTH,VALIDATE STATUS BOTH ERROR TYPE AUDIT\"<\/pre>\n<p>The audit facility acts at both the instance and database levels, independently recording all activities in separate logs based on either the instance or the database.<\/p>\n<pre class=\"lang:default decode:true\">db2audit describe\nDB2 AUDIT SETTINGS:\n\nAudit active: \"TRUE \"\nLog audit events: \"BOTH\"\nLog checking events: \"BOTH\"\nLog object maintenance events: \"BOTH\"\nLog security maintenance events: \"BOTH\"\nLog system administrator events: \"BOTH\"\nLog validate events: \"BOTH\"\nLog context events: \"BOTH\"\nReturn SQLCA on audit error: \"FALSE \"\nAudit Data Path: \"\/dbawork\/audit\/\"\nAudit Archive Path: \"\/dbawork\/audit\/archive\"\n\nAUD0000I Operation succeeded.<\/pre>\n<p>\u00a0<\/p>\n<\/div><\/div>\n<div class=\"pvc_clear\"><\/div><p id=\"pvc_stats_3623\" class=\"pvc_stats all  \" data-element-id=\"3623\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p><div class=\"pvc_clear\"><\/div>","protected":false},"excerpt":{"rendered":"<p>First, check audit parameter in DB2 LUW; as you can see &#8220;audit active&#8221; is FALSE,\u00a0which shows that currently auditing is not enabled on your instance. db2audit describe DB2 AUDIT SETTINGS: Audit active: &#8220;FALSE &#8221; Log audit events: &#8220;FAILURE&#8221; Log checking events: &#8220;FAILURE&#8221; Log object maintenance events: &#8220;FAILURE&#8221; Log security maintenance events: &#8220;FAILURE&#8221; Log system administrator &hellip;<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p id=\"pvc_stats_3623\" class=\"pvc_stats all  \" data-element-id=\"3623\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> <img loading=\"lazy\" decoding=\"async\" width=\"16\" height=\"16\" alt=\"Loading\" src=\"https:\/\/dbtut.com\/wp-content\/plugins\/page-views-count\/ajax-loader-2x.gif\" border=0 \/><\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":391,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"categories":[1305],"tags":[1522],"class_list":["post-3623","post","type-post","status-publish","format-standard","","category-db2","tag-auditing"],"aioseo_notices":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Setup Auditing in DB2 - Database Tutorials<\/title>\n<meta name=\"description\" content=\"How To Setup Auditing in DB2\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Setup Auditing in DB2 - Database Tutorials\" \/>\n<meta property=\"og:description\" content=\"How To Setup Auditing in DB2\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/\" \/>\n<meta property=\"og:site_name\" content=\"Database Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2018-10-08T06:50:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-05-31T10:27:15+00:00\" \/>\n<meta name=\"author\" content=\"Syed Naveed Raza\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@NaveedSupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Syed Naveed Raza\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/\"},\"author\":{\"name\":\"Syed Naveed Raza\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/5983577144c7e7351a238fe559775fe2\"},\"headline\":\"How To Setup Auditing in DB2\",\"datePublished\":\"2018-10-08T06:50:01+00:00\",\"dateModified\":\"2020-05-31T10:27:15+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/\"},\"wordCount\":140,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"keywords\":[\"AUDITING\"],\"articleSection\":[\"DB2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/\",\"url\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/\",\"name\":\"How To Setup Auditing in DB2 - Database Tutorials\",\"isPartOf\":{\"@id\":\"https:\/\/dbtut.com\/#website\"},\"datePublished\":\"2018-10-08T06:50:01+00:00\",\"dateModified\":\"2020-05-31T10:27:15+00:00\",\"description\":\"How To Setup Auditing in DB2\",\"breadcrumb\":{\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/dbtut.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Setup Auditing in DB2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dbtut.com\/#website\",\"url\":\"https:\/\/dbtut.com\/\",\"name\":\"Database Tutorials\",\"description\":\"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux\",\"publisher\":{\"@id\":\"https:\/\/dbtut.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dbtut.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/dbtut.com\/#organization\",\"name\":\"dbtut\",\"url\":\"https:\/\/dbtut.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"contentUrl\":\"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg\",\"width\":223,\"height\":36,\"caption\":\"dbtut\"},\"image\":{\"@id\":\"https:\/\/dbtut.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/5983577144c7e7351a238fe559775fe2\",\"name\":\"Syed Naveed Raza\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dbtut.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9207baa13f7d94cf3076735adba833f4065acf91101c4904ff5057ee86dc7d2c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9207baa13f7d94cf3076735adba833f4065acf91101c4904ff5057ee86dc7d2c?s=96&d=mm&r=g\",\"caption\":\"Syed Naveed Raza\"},\"description\":\"I have experience to manage DB2 &amp; Oracle plus 3 year of experience as Temenos T24 Core Administrator on AIX &amp; IBM Integration Bus 10.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/syed-naveed-raza-453aa835\/\",\"https:\/\/x.com\/NaveedSupport\"],\"url\":\"https:\/\/dbtut.com\/index.php\/author\/syednaveedraza\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Setup Auditing in DB2 - Database Tutorials","description":"How To Setup Auditing in DB2","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:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/","og_locale":"en_US","og_type":"article","og_title":"How To Setup Auditing in DB2 - Database Tutorials","og_description":"How To Setup Auditing in DB2","og_url":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/","og_site_name":"Database Tutorials","article_published_time":"2018-10-08T06:50:01+00:00","article_modified_time":"2020-05-31T10:27:15+00:00","author":"Syed Naveed Raza","twitter_card":"summary_large_image","twitter_creator":"@NaveedSupport","twitter_misc":{"Written by":"Syed Naveed Raza","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/#article","isPartOf":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/"},"author":{"name":"Syed Naveed Raza","@id":"https:\/\/dbtut.com\/#\/schema\/person\/5983577144c7e7351a238fe559775fe2"},"headline":"How To Setup Auditing in DB2","datePublished":"2018-10-08T06:50:01+00:00","dateModified":"2020-05-31T10:27:15+00:00","mainEntityOfPage":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/"},"wordCount":140,"commentCount":0,"publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"keywords":["AUDITING"],"articleSection":["DB2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/","url":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/","name":"How To Setup Auditing in DB2 - Database Tutorials","isPartOf":{"@id":"https:\/\/dbtut.com\/#website"},"datePublished":"2018-10-08T06:50:01+00:00","dateModified":"2020-05-31T10:27:15+00:00","description":"How To Setup Auditing in DB2","breadcrumb":{"@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dbtut.com\/index.php\/2018\/10\/08\/how-to-setup-auditing-in-db2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/dbtut.com\/"},{"@type":"ListItem","position":2,"name":"How To Setup Auditing in DB2"}]},{"@type":"WebSite","@id":"https:\/\/dbtut.com\/#website","url":"https:\/\/dbtut.com\/","name":"Database Tutorials","description":"MSSQL, Oracle, PostgreSQL, MySQL, MariaDB, DB2, Sybase, Teradata, Big Data, NOSQL, MongoDB, Couchbase, Cassandra, Windows, Linux","publisher":{"@id":"https:\/\/dbtut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dbtut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/dbtut.com\/#organization","name":"dbtut","url":"https:\/\/dbtut.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/","url":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","contentUrl":"https:\/\/dbtut.com\/wp-content\/uploads\/2021\/02\/dbtutlogo.jpg","width":223,"height":36,"caption":"dbtut"},"image":{"@id":"https:\/\/dbtut.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/dbtut.com\/#\/schema\/person\/5983577144c7e7351a238fe559775fe2","name":"Syed Naveed Raza","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dbtut.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9207baa13f7d94cf3076735adba833f4065acf91101c4904ff5057ee86dc7d2c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9207baa13f7d94cf3076735adba833f4065acf91101c4904ff5057ee86dc7d2c?s=96&d=mm&r=g","caption":"Syed Naveed Raza"},"description":"I have experience to manage DB2 &amp; Oracle plus 3 year of experience as Temenos T24 Core Administrator on AIX &amp; IBM Integration Bus 10.","sameAs":["https:\/\/www.linkedin.com\/in\/syed-naveed-raza-453aa835\/","https:\/\/x.com\/NaveedSupport"],"url":"https:\/\/dbtut.com\/index.php\/author\/syednaveedraza\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/3623","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/users\/391"}],"replies":[{"embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/comments?post=3623"}],"version-history":[{"count":0,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/posts\/3623\/revisions"}],"wp:attachment":[{"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/media?parent=3623"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/categories?post=3623"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dbtut.com\/index.php\/wp-json\/wp\/v2\/tags?post=3623"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}