{"id":631,"date":"2024-10-05T09:00:00","date_gmt":"2024-10-05T09:00:00","guid":{"rendered":"https:\/\/datablog.roman-halliday.com\/?p=631"},"modified":"2024-10-04T17:07:40","modified_gmt":"2024-10-04T17:07:40","slug":"this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs","status":"publish","type":"post","link":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/","title":{"rendered":"This one little trick will save you up to 79% on your cloud refresh costs"},"content":{"rendered":"\n<p>Yes, the title is clickbait, but the savings are real! The approach can be applied to save money on any cloud data infrastructure. The saving in question applies to regular refreshes, not other data processes (more on that in the future).<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Problem<\/h2>\n\n\n\n<p>It&#8217;s not the first time I&#8217;ve looked at the numbers thinking this, and it won&#8217;t be the last. I glanced at the cloud admin dashboard and thought &#8220;Hmmm, those costs have gone up. It&#8217;s probably less cost in engineer resource than the amount we could save by making changes&#8221;. The place to start is the famous &#8220;low hanging fruit&#8221;, easy changes with significant impact.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The lowest hanging fruit<\/h3>\n\n\n\n<p>Most of us (especially those with experience in &#8216;bare metal&#8217;, in-house infrastructure) will set our regular data refresh to be hourly and then get on with adding value for our consumers. Over time the data volumes will increase, the business will ask for more and one day someone will look at the bill for cloud costs and say &#8220;Wow, that&#8217;s got bigger&#8221;. If you can get that number down (especially before someone notices it), you are winning with your stakeholders.<\/p>\n\n\n\n<p>If you are running a data refresh (or any process) hourly, seven days a week, that&#8217;s 168 executions in a week. Whatever your cost per refresh, 168 multiplied by any base number will probably add up to a significant increase on it.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>24 * 7 = 168<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>You probably already guessed it&#8230; But in my own wise words:<\/p>\n\n\n\n<figure class=\"wp-block-pullquote\"><blockquote><p>Don&#8217;t run your refresh every hour of every day if you don&#8217;t need to!<\/p><cite>David Roman-Halliday<\/cite><\/blockquote><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">The best case<\/h3>\n\n\n\n<p>If your data consumers are only working during office hours in one country, you probably only need to refresh the data for while they are working. If that&#8217;s 9 till 5, Monday to Friday then the hourly refresh only needs to run 09:00 &#8211; 16:00.<\/p>\n\n\n\n<p>That&#8217;s seven times a day, five days a week. A total of 35 executions per week (a saving of 133 executions on our starting point of hourly), which is a difference of 79.17%<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">7 * 5 = 35 -- Mon -&gt; Fri, 09:00 -&gt; 16:00<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">A more realistic case<\/h3>\n\n\n\n<p>Realistically, some people start earlier (or want the numbers ready for their 9am meeting). While some may work a little later than finishing bang on 5pm. There may be reports and updates which need to go out including weekends.<\/p>\n\n\n\n<p>This still clocks in at 54 refreshes (far fewer than 168) a week, to refresh from 8am until (and including) 6pm Monday through Friday and twice a day (for example the start of the morning working hours, and the start of the afternoon).<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">  10 * 5 = 50 -- Monday  -&gt; Friday : 08:00 -&gt; 18:00<br>+  2 * 2 =  4 -- Saturday &amp; Sunday : 08:00  &amp; 13:00<br>           54<\/pre>\n\n\n\n<p>That&#8217;s still a serious reduction of 67% in volume of executions, which is a significant saving on regular refreshes.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Coding it in<\/h2>\n\n\n\n<p>As most orchestration and related tools work with cron style definitions for the schedule, we can save time (and make it easier to read\/check) using <a href=\"https:\/\/crontab.guru\">crontab.guru<\/a>. Some examples are:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Every Hour: <code><a href=\"https:\/\/crontab.guru\/#0_*_*_*_*\">0 * * * *<\/a><\/code><\/li>\n\n\n\n<li>Our best case:\n<ul class=\"wp-block-list\">\n<li>Every hour from 9 through 16 on every day-of-week from Monday through Friday: <code><a href=\"https:\/\/crontab.guru\/#0_9-16_*_*_1-5\">0 9-16 * * 1-5<\/a><\/code><\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Our more realistic case:\n<ul class=\"wp-block-list\">\n<li><em>Every hour from 8 through 18\u00a0on every day-of-week from Monday through Friday<\/em>: <code><a href=\"https:\/\/crontab.guru\/#0_8-18_*_*_1-5\">0 8-18 * * 1-5<\/a><\/code><\/li>\n\n\n\n<li>Hour 9 and 13 on Saturday and Sunday: <code><a href=\"https:\/\/crontab.guru\/#0_9,13_*_*_6,0\">0 9,13 * * 6,0<\/a><\/code><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Going Further<\/h2>\n\n\n\n<p>If you use <a href=\"https:\/\/www.getdbt.com\/\">dbt<\/a> (and who in the world of data doesn&#8217;t seem to be using it now), you can go further and use <a href=\"https:\/\/docs.getdbt.com\/reference\/resource-configs\/tags\">tags<\/a> to control different parts of your project to refresh at different cadences (perhaps some sources don&#8217;t update as regularly as others). Doing that in detail requires another blog post, on another day.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Yes, the title is clickbait, but the savings are real! The approach can be applied to save money on any cloud data infrastructure. The saving in question applies to regular refreshes, not other data processes (more on that in the future).<\/p>\n","protected":false},"author":1,"featured_media":634,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[32,26,51,61,28],"tags":[69,68,62,71,70],"class_list":["post-631","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-aws","category-big-data","category-bigquery","category-dbt","category-snowflake","tag-cloud","tag-cron","tag-dbt","tag-orchestration","tag-snowflake"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>This one little trick will save you up to 79% on your cloud refresh costs - Rows Across The Lake<\/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:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"This one little trick will save you up to 79% on your cloud refresh costs - Rows Across The Lake\" \/>\n<meta property=\"og:description\" content=\"Yes, the title is clickbait, but the savings are real! The approach can be applied to save money on any cloud data infrastructure. The saving in question applies to regular refreshes, not other data processes (more on that in the future).\" \/>\n<meta property=\"og:url\" content=\"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/\" \/>\n<meta property=\"og:site_name\" content=\"Rows Across The Lake\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-05T09:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2024\/10\/lcphgxs7pww.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1600\" \/>\n\t<meta property=\"og:image:height\" content=\"1067\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"david\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@d_roman_h\" \/>\n<meta name=\"twitter:site\" content=\"@d_roman_h\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"david\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated 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:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/\"},\"author\":{\"name\":\"david\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#\\\/schema\\\/person\\\/575f96d2590c3085923ff9e1b565748b\"},\"headline\":\"This one little trick will save you up to 79% on your cloud refresh costs\",\"datePublished\":\"2024-10-05T09:00:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/\"},\"wordCount\":593,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#\\\/schema\\\/person\\\/575f96d2590c3085923ff9e1b565748b\"},\"image\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/lcphgxs7pww.jpg\",\"keywords\":[\"cloud\",\"cron\",\"dbt\",\"Orchestration\",\"SnowFlake\"],\"articleSection\":[\"AWS\",\"Big Data\",\"BigQuery\",\"dbt\",\"Snowflake\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/\",\"url\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/\",\"name\":\"This one little trick will save you up to 79% on your cloud refresh costs - Rows Across The Lake\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/lcphgxs7pww.jpg\",\"datePublished\":\"2024-10-05T09:00:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/#primaryimage\",\"url\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/lcphgxs7pww.jpg\",\"contentUrl\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/wp-content\\\/uploads\\\/2024\\\/10\\\/lcphgxs7pww.jpg\",\"width\":1600,\"height\":1067},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/index.php\\\/2024\\\/10\\\/05\\\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"This one little trick will save you up to 79% on your cloud refresh costs\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#website\",\"url\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/\",\"name\":\"Rows Across The Lake\",\"description\":\"Data &amp; Databases\",\"publisher\":{\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#\\\/schema\\\/person\\\/575f96d2590c3085923ff9e1b565748b\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/datablog.roman-halliday.com\\\/#\\\/schema\\\/person\\\/575f96d2590c3085923ff9e1b565748b\",\"name\":\"david\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g\",\"caption\":\"david\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"This one little trick will save you up to 79% on your cloud refresh costs - Rows Across The Lake","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:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/","og_locale":"en_GB","og_type":"article","og_title":"This one little trick will save you up to 79% on your cloud refresh costs - Rows Across The Lake","og_description":"Yes, the title is clickbait, but the savings are real! The approach can be applied to save money on any cloud data infrastructure. The saving in question applies to regular refreshes, not other data processes (more on that in the future).","og_url":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/","og_site_name":"Rows Across The Lake","article_published_time":"2024-10-05T09:00:00+00:00","og_image":[{"width":1600,"height":1067,"url":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2024\/10\/lcphgxs7pww.jpg","type":"image\/jpeg"}],"author":"david","twitter_card":"summary_large_image","twitter_creator":"@d_roman_h","twitter_site":"@d_roman_h","twitter_misc":{"Written by":"david","Estimated reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/#article","isPartOf":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/"},"author":{"name":"david","@id":"https:\/\/datablog.roman-halliday.com\/#\/schema\/person\/575f96d2590c3085923ff9e1b565748b"},"headline":"This one little trick will save you up to 79% on your cloud refresh costs","datePublished":"2024-10-05T09:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/"},"wordCount":593,"commentCount":1,"publisher":{"@id":"https:\/\/datablog.roman-halliday.com\/#\/schema\/person\/575f96d2590c3085923ff9e1b565748b"},"image":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/#primaryimage"},"thumbnailUrl":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2024\/10\/lcphgxs7pww.jpg","keywords":["cloud","cron","dbt","Orchestration","SnowFlake"],"articleSection":["AWS","Big Data","BigQuery","dbt","Snowflake"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/","url":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/","name":"This one little trick will save you up to 79% on your cloud refresh costs - Rows Across The Lake","isPartOf":{"@id":"https:\/\/datablog.roman-halliday.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/#primaryimage"},"image":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/#primaryimage"},"thumbnailUrl":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2024\/10\/lcphgxs7pww.jpg","datePublished":"2024-10-05T09:00:00+00:00","breadcrumb":{"@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/#primaryimage","url":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2024\/10\/lcphgxs7pww.jpg","contentUrl":"https:\/\/datablog.roman-halliday.com\/wp-content\/uploads\/2024\/10\/lcphgxs7pww.jpg","width":1600,"height":1067},{"@type":"BreadcrumbList","@id":"https:\/\/datablog.roman-halliday.com\/index.php\/2024\/10\/05\/this-one-little-trick-will-save-you-up-to-79-on-your-cloud-refresh-costs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/datablog.roman-halliday.com\/"},{"@type":"ListItem","position":2,"name":"This one little trick will save you up to 79% on your cloud refresh costs"}]},{"@type":"WebSite","@id":"https:\/\/datablog.roman-halliday.com\/#website","url":"https:\/\/datablog.roman-halliday.com\/","name":"Rows Across The Lake","description":"Data &amp; Databases","publisher":{"@id":"https:\/\/datablog.roman-halliday.com\/#\/schema\/person\/575f96d2590c3085923ff9e1b565748b"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/datablog.roman-halliday.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":["Person","Organization"],"@id":"https:\/\/datablog.roman-halliday.com\/#\/schema\/person\/575f96d2590c3085923ff9e1b565748b","name":"david","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g","caption":"david"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/acddbc676a1d5c73795edcf0627ee39e5aa947da9033b58373e03d93122cb3b7?s=96&d=mm&r=g"}}]}},"_links":{"self":[{"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/posts\/631","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/comments?post=631"}],"version-history":[{"count":3,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/posts\/631\/revisions"}],"predecessor-version":[{"id":635,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/posts\/631\/revisions\/635"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/media\/634"}],"wp:attachment":[{"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/media?parent=631"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/categories?post=631"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/datablog.roman-halliday.com\/index.php\/wp-json\/wp\/v2\/tags?post=631"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}