{"id":4055,"date":"2023-08-16T17:33:18","date_gmt":"2023-08-16T17:33:18","guid":{"rendered":"https:\/\/quebit.com\/askquebit\/?p=4055"},"modified":"2026-01-20T16:07:28","modified_gmt":"2026-01-20T16:07:28","slug":"getting-started-with-planning-analytics-rule-and-feeder-optimization","status":"publish","type":"post","link":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/","title":{"rendered":"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics?"},"content":{"rendered":"<p><strong>Getting Started with Planning Analytics Rule and Feeder Optimization <\/strong><\/p>\n<p>If you are new to IBM Planning Analytics or specifically new to the task of rule and feeder optimization, the following information may help in getting started. Keep in mind that these are some simple \u201cstrategies\u201d or \u201cguidelines\u201d outlined here to provide general direction, with some specific prescriptions for action, but not meant to be comprehensive in that not all of the rule and feeder optimizations that may or may not be applicable to a specific model are covered.<\/p>\n<p><strong>Starting Point<\/strong><\/p>\n<p>To get started, (I assume that you have the appropriate access to make changes to cube rules and feeders) make sure you are working in a development environment! Editing rules and feeders will cause locking and, more importantly, the changes you make most certainly will affect data in the cube (or at least how it is displayed) so you will want to be sure your edits are correct before landing them in a production environment.<\/p>\n<p>&nbsp;<\/p>\n<p>Next, be sure to gather some performance baselines for the cube that you want to improve. That is, record all the statistics you can about the cube \u2013 total memory used, memory used compared to other cubes in the model, the number of stored calculated cells, number of fed cells, memory used for calculations and memory used for feeders \u2013 are some good data point examples.<\/p>\n<p>&nbsp;<\/p>\n<p>Finally, create a backup! Even though you are working in a non-production environment, a notepad copy of the cube rule (RUX) file will be a handy reference as you progress with your changes.<\/p>\n<p><strong>Step 1 \u2013 Reduction of Calculation Statements<\/strong><\/p>\n<p>Generally, the more rule (and corresponding feeder) statements you have in a cube, the higher resources (i.e., memory) will be used, so trying to reduce the number of rules is a good place to start. Since historical data does not change in real-time, it is not necessary for calculations based on this data to be performed in real-time. Rules that calculate cube N level values for <strong>historical (\u201cactualized\u201d) periods<\/strong> should be removed and reimplemented as TurboIntegrator (batch) processes.<\/p>\n<p>Again, the fewer the number of rules and feeders, the lower the memory and processor requirements will be, which typically results in improved performance. Furthermore, overall sustainability is improved since there is less code to maintain.<\/p>\n<p><strong>Step 2 \u2013 Replace all ATTR Functions with DB Statements<\/strong><\/p>\n<p>Another \u201ceasy\u201d optimization\u2013 almost a \u201cfind and replace\u201d &#8211; is to \u201cswap out\u201d less efficient functions within a rule with a more efficient one. For example, using the <strong>ATTR<\/strong> function can be much (up to 70 % in some applications) slower than getting the value directly from an }ElementAttributes_ cube using the <strong>DB<\/strong> function; therefore, you should replace <u>all<\/u> ATTR functions with DB functions.<\/p>\n<p>The following rule statements:<\/p>\n<p>&nbsp;<\/p>\n<p>ATTRS (&#8216;Cost Center&#8217;, !Cost Center, &#8216;Special Calc&#8217;) @= &#8216;Y&#8217;<\/p>\n<p>&nbsp;<\/p>\n<p>And:<\/p>\n<p>&nbsp;<\/p>\n<p>DB(&#8216;Financial Planning&#8217;, !Versions, ATTRS(&#8216;Periods&#8217;, !Periods, &#8216;Prior\u00a0 Reporting Period&#8217;), !Company, !Product, !Cost Center, !Region, !Financial Planning Measures)<\/p>\n<p>can be optimized to:<\/p>\n<p>&nbsp;<\/p>\n<p>DB (&#8216;}ElementAttributes_Cost Center&#8217;, !Cost Center, &#8216;Special Calc &#8216;) @= &#8216;Y&#8217;<\/p>\n<p>&nbsp;<\/p>\n<p>And:<\/p>\n<p>&nbsp;<\/p>\n<p>DB(&#8216;Financial Planning&#8217;, !Versions, DB (&#8216;}ElementAttributes_Periods&#8217;, !Periods, &#8216;Prior\u00a0 Reporting Period&#8217;), !Company, !Product, !Cost Center, !Region, !Financial Planning Measures)<\/p>\n<p><strong>Step 3 &#8211; \u00a0Streamline and Simplification of Future Period Calculations<\/strong><\/p>\n<p>After you have addressed the historical (\u201cactualized\u201d) period calculations in the cube, it\u2019s time to look at the <strong><em>future period<\/em><\/strong> calculations. If you review these rules and observe any <em>consistently utilized<\/em> attribute or control-element conditionals being used to invoke or \u201cfire\u201d rules (maybe lines such as these):<\/p>\n<p>IF (ATTRS(&#8216;Versions&#8217;, !Versions, &#8216;Plan Helper Rules&#8217;) @= &#8216;Y&#8217;,<\/p>\n<p>IF(!Periods @&gt; DB(&#8216;Period Control&#8217;, !Versions, &#8216;Current Month&#8217;),<\/p>\n<p>Then the above conditional statements may be able to be removed (from all the future period calculations that include them) once the following CONTINUE\/STET statement is added <u>to the top<\/u> of the rule (RUX) file:<\/p>\n<p>[ ] = N:<\/p>\n<p>IF ( !Versions @= &#8216;Working Forecast&#8217;<\/p>\n<p>, IF ( !Periods @&gt;DB ( &#8216;Period Control&#8217; , !Versions , &#8216;Current Month&#8217; )<\/p>\n<p>, CONTINUE<\/p>\n<p>, STET<\/p>\n<p>)<\/p>\n<p>, CONTINUE<\/p>\n<p>) ;<\/p>\n<p>This statement \u201cturns off\u201d all of the future period calculations UNLESS the current version is \u201cWorking Forecast\u201d AND the period is a future period eliminating the need to repeatedly code the previously mentioned attribute and control-element conditionals in each future period calculation. CONTINUE allows evaluation to continue (fire calculations) while STET cancels all calculations beneath the (STET) statement.<\/p>\n<p>The idea here is to \u201cexperiment\u201d to see if a single (or a few) CONTINUE\/STET statement(s) can be used (obviously more efficiently) than having Planning Analytics interpret <em>each<\/em> and <em>all<\/em> of the rules to determine if it should be applied. You\u2019ll need to be sure to thoroughly understand all business logic on this one to make sure that the CONTINUE\/STET statement(s) include or exclude the applicable rule(s).<\/p>\n<p><strong>Step 4 &#8211;\u00a0\u00a0\u00a0 Remove Unnecessary\/Obsolete Attributes<\/strong><\/p>\n<p>Object permanence is \u201cthe understanding that objects continue to exist even when they cannot be sensed\u201d; in every Planning Analytics model\u2019s lifespan, new objects are continually added, and typically existing objects are not always decommissioned. This means that the total number of objects increases while some objects continue to consume valuable resources while not adding value\u00a0 (since they are not or seldom used).\u00a0 To that point, in the above example, since the \u201cPlan Helper Rules\u201d attribute reference has been removed from the rule (RUX) file, it can be deleted from the model \u2013 again, if you are able to remove any attribute references (and those attributes are not used elsewhere in your model) get rid of them!<\/p>\n<p><strong>Step 5 \u2013 <\/strong><strong>Optimization of Feeder Statements <\/strong><\/p>\n<p>Every rule calculation statement <em>should<\/em> have a corresponding feeder statement (yes, there are always exceptions) and each feeder statement implemented will have an impact on memory consumption. The more \u201cfeeding\u201d being done, the more memory will be consumed. To address \u201cover feeding\u201d, if possible, feeder statements should be first \u201cnarrowed\u201d by adding version (or other qualification) to the (left side of the) statement. An original feeder statement such as:<\/p>\n<p>[&#8216;Planning Base Source&#8217;, &#8216;TOTAL_FTE_HEADCOUNT&#8217;, &#8216;Amount&#8217;] =&gt; [&#8216;999999&#8217;];<\/p>\n<p>Could be improved to this:<\/p>\n<p>[&#8216;Working Forecast\u2019, &#8216;Planning Base Source&#8217;, &#8216;TOTAL_FTE_HEADCOUNT&#8217;, &#8216;Amount&#8217;] =&gt; [&#8216;999999&#8217;];<\/p>\n<p>Additionally, by adding a <em>conditional<\/em> to the feeder statement, it can be further optimized (from the above) to the following:<\/p>\n<p>[&#8216;Working Forecast&#8217;, &#8216;Planning Base Source&#8217;, &#8216;TOTAL_FTE_HEADCOUNT&#8217;, &#8216;Amount&#8217;] =&gt;<\/p>\n<p>DB(\u00a0 IF(!Periods @&lt;= DB(&#8216;Period Control&#8217;, !Versions, &#8216;Current Month&#8217;), CONTINUE, &#8216;Financial Planning&#8217;), !System Planning, !Versions, !Periods, !Currencies,<\/p>\n<p>!Company, &#8216;999999&#8217;, !Category, !Product, !Cost Center, !Region, !One Bank, &#8216;Amount&#8217;);<\/p>\n<p>&nbsp;<\/p>\n<p>Adding a conditional(s) to a feeder statement makes it a \u201cconditional feeder\u201d. A conditional feeder will contain one (or more) of the following:<\/p>\n<ul>\n<li>An IF clause to determine an element or cube name,<\/li>\n<li>A lookup to an attribute or cube value to determine an element or cube to be the fed or<\/li>\n<li>A feeder to or from a consolidated element<\/li>\n<\/ul>\n<p>Conditional feeders can generally be very effective in reducing overfeeding but should be used with caution as there are some drawbacks involved. When using conditional feeders, care should be taken to weigh the benefits versus the risks (of using conditional feeders). For example, a conditional feeder will become invalid (stop working) when the conditional(s) in the feeder changes. This is more of an issue if the feeder references an attribute value that changes often. In this case, using a conditional feeder may not be appropriate. You should try to base conditional feeders on data points that are more stable or change on a prescribed schedule, perhaps \u201cperiod\u201d.<\/p>\n<p>To <em>force<\/em> Planning Analytics to reevaluate (calculate) a conditional feeder, you can restart the Planning Analytics instance or use the Process Feeders function in a TurboIntegrator process when the underlying condition changes. Keep in mind that feeder processing does cause locking and in larger models may take a significant amount of time.<\/p>\n<p><strong>Conclusion<\/strong><\/p>\n<p>The optimizations outlined above may be straight forward enough for a beginner to consider making but can also make a material impact on a cube\u2019s performance. Finally, always try to remove obsolete (commented out) code and add some consistent, \u201cbest-practice style\u201d formatting and comments to the RUX file for readability.<\/p>\n<p><strong>\u00a0<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Getting Started with Planning Analytics Rule and Feeder Optimization If you are new to IBM Planning Analytics or specifically new to the task of rule and feeder optimization, the following information may help in getting started. Keep in mind that these are some simple \u201cstrategies\u201d or \u201cguidelines\u201d outlined here to provide general direction, with some&hellip;<\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[24],"tags":[38,77,36,51,96,81],"class_list":["post-4055","post","type-post","status-publish","format-standard","hentry","category-ibm","tag-how-tos","tag-ibm","tag-planning-analytics","tag-planning-analytics-how-tos","tag-rux","tag-turbointegrator"],"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 Get Started with Rule and Feeder Optimization in IBM Planning Analytics? - 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\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics? - QueBIT\" \/>\n<meta property=\"og:description\" content=\"Getting Started with Planning Analytics Rule and Feeder Optimization If you are new to IBM Planning Analytics or specifically new to the task of rule and feeder optimization, the following information may help in getting started. Keep in mind that these are some simple \u201cstrategies\u201d or \u201cguidelines\u201d outlined here to provide general direction, with some&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/\" \/>\n<meta property=\"og:site_name\" content=\"QueBIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-16T17:33:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-20T16:07:28+00:00\" \/>\n<meta name=\"author\" content=\"Patrick Quirke\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Patrick Quirke\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/\"},\"author\":{\"name\":\"Patrick Quirke\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/51bf83d531948247370683787d0f46ff\"},\"headline\":\"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics?\",\"datePublished\":\"2023-08-16T17:33:18+00:00\",\"dateModified\":\"2026-01-20T16:07:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/\"},\"wordCount\":1347,\"commentCount\":0,\"keywords\":[\"How To\u2019s\",\"IBM\",\"Planning Analytics\",\"Planning Analytics How To's\",\"RUX\",\"TurboIntegrator\"],\"articleSection\":[\"IBM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/\",\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/\",\"name\":\"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics? - QueBIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#website\"},\"datePublished\":\"2023-08-16T17:33:18+00:00\",\"dateModified\":\"2026-01-20T16:07:28+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/#\\\/schema\\\/person\\\/51bf83d531948247370683787d0f46ff\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/getting-started-with-planning-analytics-rule-and-feeder-optimization\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics?\"}]},{\"@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\\\/51bf83d531948247370683787d0f46ff\",\"name\":\"Patrick Quirke\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2c5ed78cce873ccf3eb420007d81d4fcdacb9bf4936d8b0b463390b69fd05ff?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2c5ed78cce873ccf3eb420007d81d4fcdacb9bf4936d8b0b463390b69fd05ff?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c2c5ed78cce873ccf3eb420007d81d4fcdacb9bf4936d8b0b463390b69fd05ff?s=96&d=mm&r=g\",\"caption\":\"Patrick Quirke\"},\"sameAs\":[\"https:\\\/\\\/quebit.com\\\/askquebit\\\/\"],\"url\":\"https:\\\/\\\/quebit.com\\\/askquebit\\\/author\\\/pquirke\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics? - 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\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/","og_locale":"en_US","og_type":"article","og_title":"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics? - QueBIT","og_description":"Getting Started with Planning Analytics Rule and Feeder Optimization If you are new to IBM Planning Analytics or specifically new to the task of rule and feeder optimization, the following information may help in getting started. Keep in mind that these are some simple \u201cstrategies\u201d or \u201cguidelines\u201d outlined here to provide general direction, with some&hellip;","og_url":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/","og_site_name":"QueBIT","article_published_time":"2023-08-16T17:33:18+00:00","article_modified_time":"2026-01-20T16:07:28+00:00","author":"Patrick Quirke","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Patrick Quirke","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/#article","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/"},"author":{"name":"Patrick Quirke","@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/51bf83d531948247370683787d0f46ff"},"headline":"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics?","datePublished":"2023-08-16T17:33:18+00:00","dateModified":"2026-01-20T16:07:28+00:00","mainEntityOfPage":{"@id":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/"},"wordCount":1347,"commentCount":0,"keywords":["How To\u2019s","IBM","Planning Analytics","Planning Analytics How To's","RUX","TurboIntegrator"],"articleSection":["IBM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/","url":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/","name":"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics? - QueBIT","isPartOf":{"@id":"https:\/\/quebit.com\/askquebit\/#website"},"datePublished":"2023-08-16T17:33:18+00:00","dateModified":"2026-01-20T16:07:28+00:00","author":{"@id":"https:\/\/quebit.com\/askquebit\/#\/schema\/person\/51bf83d531948247370683787d0f46ff"},"breadcrumb":{"@id":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/quebit.com\/askquebit\/getting-started-with-planning-analytics-rule-and-feeder-optimization\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/quebit.com\/askquebit\/"},{"@type":"ListItem","position":2,"name":"How Do I Get Started with Rule and Feeder Optimization in IBM Planning Analytics?"}]},{"@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\/51bf83d531948247370683787d0f46ff","name":"Patrick Quirke","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c2c5ed78cce873ccf3eb420007d81d4fcdacb9bf4936d8b0b463390b69fd05ff?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c2c5ed78cce873ccf3eb420007d81d4fcdacb9bf4936d8b0b463390b69fd05ff?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c2c5ed78cce873ccf3eb420007d81d4fcdacb9bf4936d8b0b463390b69fd05ff?s=96&d=mm&r=g","caption":"Patrick Quirke"},"sameAs":["https:\/\/quebit.com\/askquebit\/"],"url":"https:\/\/quebit.com\/askquebit\/author\/pquirke\/"}]}},"_links":{"self":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4055","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\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/comments?post=4055"}],"version-history":[{"count":4,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4055\/revisions"}],"predecessor-version":[{"id":5080,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/posts\/4055\/revisions\/5080"}],"wp:attachment":[{"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/media?parent=4055"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/categories?post=4055"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/quebit.com\/askquebit\/wp-json\/wp\/v2\/tags?post=4055"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}