{"id":3449,"date":"2023-04-12T15:33:17","date_gmt":"2023-04-12T15:33:17","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/"},"modified":"2026-01-16T17:22:26","modified_gmt":"2026-01-16T17:22:26","slug":"using-hash-values-in-planning-analytics","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/","title":{"rendered":"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing?"},"content":{"rendered":"<p>When working with IBM Planning Analytics, it is not uncommon to source data from a relational data source.<\/p>\n<p>Typically, you will see a <a href=\"https:\/\/blog.quebit.com\/blog\/quebit-blog-data-warehouse-versus-data-lake-the-what-and-the-why-part-1\">Data Warehouse or Data Lake<\/a> where data is transformed and loaded on a schedule using an ETL tool. ETL, which stands for\u00a0<em>Extract<\/em>,\u00a0<em>Transform<\/em> and\u00a0<em>Load,<\/em> extracts data from a source, modifies it in some way (to meet a specific requirement), and then places it into another location where the transformed data can more easily be sourced by a consumer or downstream application.<\/p>\n<p>One example of an ETL tool is <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/integration-services\/sql-server-integration-services?view=sql-server-ver15\">SQL Server Integration Services <\/a><strong>\u00a0<\/strong>or<strong> \u201c<\/strong>SSIS<strong>\u201d<\/strong>. \u00a0SSIS is part of Microsoft&#8217;s Business Intelligence Suite\u00a0and is widely used to achieve\u00a0<a href=\"https:\/\/blog.bismart.com\/en\/data-integration-any-modern-companys-solution\">data integration<\/a>. This platform is designed to solve issues related to data integration and workflow applications and is a robust option for scheduled data loads as well as performing routine database maintenance.<\/p>\n<p>You use SQL Server Integration Services to deploy ETL \u201cpackages\u201d. These SSIS packages can automate various tasks such as:<\/p>\n<ul>\n<li>Archiving data<\/li>\n<li>Loading data<\/li>\n<li>Transferring data (from one data source to another)<\/li>\n<li>Data cleansing or transformation<\/li>\n<li>Other importance (yet mundane) DBA tasks like purging old files or indexing a database.<\/li>\n<\/ul>\n<p>Usually, you deploy a SSIS package using a SQL Agent job and configure it to run as per a defined schedule.<\/p>\n<p><strong>Error Handling in SSIS Packages<\/strong><\/p>\n<p>As part of a best practice SSIS design, you need to (among other things) make sure all SSIS packages properly traps for errors and, if there is a problem, can easily be restarted, preferably without having to rerun the entire package from the beginning. These design principals will make the life of the DBA or those responsible for the results of the package, easier by allowing them to more quickly troubleshoot and resolve issues should a package fail.<\/p>\n<p><strong>Tell Me About It<\/strong><\/p>\n<p>SSIS packages are made up of \u201ctasks\u201d. The <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/integration-services\/control-flow\/send-mail-task?view=sql-server-ver15\">Send Mail task<\/a> can be configured to automatically send an e-mail message if tasks in a package succeed or fail, or send messages in response to an error that the package may raise during its execution. For example, a package can notify a database administrator about the success or failure of a data load so that it can (hopefully) be resolved quickly and downstream applications (who consume that data) can have the \u201cfreshest\u201d version of the data, on schedule.<\/p>\n<p><strong>How fresh is the data in Planning Analytics?<\/strong><\/p>\n<p>Let\u2019s suppose that there is an SSIS package running on a regular interval that performs extraction and transformation on SQL Server data and then loads the transformed data into a relational table that a Planning Analytics process queries (by way of an ODBC Data Source). That process then loads the data into PA cubes for consumption by financial analysts. If the SSIS package fails, and the table that PA \u201csources\u201d are not updated, the data being consumed by the financial analysts is out of date or \u201cstale\u201d.<\/p>\n<p>If the SSIS package is configured to send an email alert upon failure, it then is the responsibility of those who received the email, to inform all of the financial analysts (and other consumers of the data) of what\u2019s going on\u2013 not an optimal situation.<\/p>\n<p><strong>A Better Option<\/strong><\/p>\n<p>Rather than being dependent on the source system (or an individual) to alert the Planning Analytic users as to the freshness of data, why not program Planning Analytics to display how current the source data is?<\/p>\n<p><strong>Last Update Date<\/strong><\/p>\n<p>Some (most) database tables will include a \u201clast update date\u201d column, which stores the date and time when <em>each row<\/em> was last updated. In other words, every time a row is updated, the last update data column is updated to reflect the date and time of that update. In\u00a0SQL Server, you can use a trigger to automatically perform this update (a <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/t-sql\/statements\/create-trigger-transact-sql?view=sql-server-ver15\">trigger<\/a> is a special type of stored procedure that executes when an event occurs in the database server). Using this column, you can determine when <em>each row<\/em> in a table were last changed.<\/p>\n<p>Assuming that the Planning Analytics source tables includes a last update column, we <em>could<\/em> figure out when certain rows in a table were last updated, but that can be tricky, especially to determine if rows of data was deleted or if there are thousands (or more) rows of data.<\/p>\n<p><strong>A Better Approach<\/strong><\/p>\n<p>An alternative approach that I like is to make use of the SQL Server <a href=\"https:\/\/docs.microsoft.com\/en-us\/sql\/t-sql\/functions\/binary-checksum-transact-sql?view=sql-server-ver15#remarks\">CHECKSUM<\/a> function, which returns the <em>binary<\/em> checksum value computed over the rows of a table. A checksum is a \u201chash value\u201d that can be used to determine equality between values. In other words, if you compare hash values from a table \u2013 computed at different times &#8211; you can determine if that table\u2019s data has been updated or changed in anyway.<\/p>\n<p>In the following query, I calculate and return the hash value for the table named \u201ctablename_to_check\u201d, which would return a number something like this: 940335729. If I wait 24 hours (for example), rerun the query and receive the <em>same<\/em> hash value, then I know that the data in that table has not changed in anyway (no additions, updates or deletions of any kind) and I can then either presume that the data is \u201cstale\u201d (the SSIS package failed to update the table) or (in the least) none of the data that Planning Analytics is consuming has changed since yesterday \u2013 which most likely is not probable.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-1519\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/08\/Pic1A-min.jpg\" alt=\"\" width=\"533\" height=\"72\" \/><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>So at a high level, I created measures for each SQL table that Planning Analytics is using as a data source to store the latest hash value for each table as well as the \u201clast updated\u201d date and time that the hash value changed. My TurboIntegrator process runs the CHECKSUM query for the table, compares the returned value with what I\u2019ve stored previously and if it is different, updates the hash value measure with the date and time.<\/p>\n<p>Now my Planning Analytics users can access these values on their dashboards and know just when their source data was last refreshed (hint: you can hide the checksum values)!<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-1520\" src=\"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/08\/Pic1-min.jpg\" alt=\"\" width=\"900\" height=\"172\" \/><\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When working with IBM Planning Analytics, it is not uncommon to source data from a relational data source. Typically, you will see a Data Warehouse or Data Lake where data is transformed and loaded on a schedule using an ETL tool. ETL, which stands for\u00a0Extract,\u00a0Transform and\u00a0Load, extracts data from a source, modifies it in some&hellip;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24],"tags":[35,36,52],"class_list":["post-3449","post","type-post","status-publish","format-standard","hentry","category-ibm","tag-development","tag-planning-analytics","tag-planning-analytics-development"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing? - QueBIT<\/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:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"When working with IBM Planning Analytics, it is not uncommon to source data from a relational data source. Typically, you will see a Data Warehouse or Data Lake where data is transformed and loaded on a schedule using an ETL tool. ETL, which stands for\u00a0Extract,\u00a0Transform and\u00a0Load, extracts data from a source, modifies it in some&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-04-12T15:33:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-16T17:22:26+00:00\" \/>\n<meta name=\"author\" content=\"agoddard\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"agoddard\" \/>\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:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/\"},\"author\":{\"name\":\"agoddard\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"headline\":\"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing?\",\"datePublished\":\"2023-04-12T15:33:17+00:00\",\"dateModified\":\"2026-01-16T17:22:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/\"},\"wordCount\":1029,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Pic1A-min.jpg\",\"keywords\":[\"Development\",\"Planning Analytics\",\"Planning Analytics Development\"],\"articleSection\":[\"IBM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/\",\"name\":\"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Pic1A-min.jpg\",\"datePublished\":\"2023-04-12T15:33:17+00:00\",\"dateModified\":\"2026-01-16T17:22:26+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/#primaryimage\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Pic1A-min.jpg\",\"contentUrl\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Pic1A-min.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/using-hash-values-in-planning-analytics\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\",\"name\":\"QueBIT\",\"description\":\"QueBIT\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/e52d72da0fd2f5f70d189343fe4f5084\",\"name\":\"agoddard\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g\",\"caption\":\"agoddard\"},\"sameAs\":[\"https:\\\/\\\/quebit.com\\\/askquebit\"],\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/agoddard\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing? - QueBIT","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:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/","og_locale":"en_US","og_type":"article","og_title":"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing? - QueBIT","og_description":"When working with IBM Planning Analytics, it is not uncommon to source data from a relational data source. Typically, you will see a Data Warehouse or Data Lake where data is transformed and loaded on a schedule using an ETL tool. ETL, which stands for\u00a0Extract,\u00a0Transform and\u00a0Load, extracts data from a source, modifies it in some&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/","og_site_name":"QueBIT","article_published_time":"2023-04-12T15:33:17+00:00","article_modified_time":"2026-01-16T17:22:26+00:00","author":"agoddard","twitter_card":"summary_large_image","twitter_misc":{"Written by":"agoddard","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/"},"author":{"name":"agoddard","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"headline":"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing?","datePublished":"2023-04-12T15:33:17+00:00","dateModified":"2026-01-16T17:22:26+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/"},"wordCount":1029,"commentCount":0,"image":{"@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/08\/Pic1A-min.jpg","keywords":["Development","Planning Analytics","Planning Analytics Development"],"articleSection":["IBM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/","url":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/","name":"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"primaryImageOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/#primaryimage"},"image":{"@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/#primaryimage"},"thumbnailUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/08\/Pic1A-min.jpg","datePublished":"2023-04-12T15:33:17+00:00","dateModified":"2026-01-16T17:22:26+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/#primaryimage","url":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/08\/Pic1A-min.jpg","contentUrl":"https:\/\/quebit.com\/askquebit\/wp-content\/uploads\/2021\/08\/Pic1A-min.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/using-hash-values-in-planning-analytics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How Do I Use Hash Values in Planning Analytics to Detect Changes and Improve Data Processing?"}]},{"@type":"WebSite","@id":"https:\/\/quebit.com\/askquebit\/#website","url":"https:\/\/quebit.com\/askquebit\/","name":"QueBIT","description":"QueBIT","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/quebit.com\/askquebit\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/e52d72da0fd2f5f70d189343fe4f5084","name":"agoddard","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d817b364cff1d66116debde8d1c85e5e76eeece9c5ae731b19276a6040231455?s=96&d=mm&r=g","caption":"agoddard"},"sameAs":["https:\/\/quebit.com\/askquebit"],"url":"https:\/\/quebit.com\/askquebit\/author\/agoddard\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3449","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=3449"}],"version-history":[{"count":2,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3449\/revisions"}],"predecessor-version":[{"id":5013,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/3449\/revisions\/5013"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=3449"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=3449"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=3449"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}