{"id":2993,"date":"2023-08-30T11:27:55","date_gmt":"2023-08-30T09:27:55","guid":{"rendered":"https:\/\/thedatastory.nl\/?p=2993"},"modified":"2025-09-17T16:26:43","modified_gmt":"2025-09-17T14:26:43","slug":"choosing-the-right-path-following-the-dataform-trail","status":"publish","type":"post","link":"https:\/\/thedatastory.nl\/nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/","title":{"rendered":"Choosing the right path: following the Dataform trail"},"content":{"rendered":"\n<p>In the dense forest that data science can often be, finding a way through can be cumbersome. Although this forest is not made up of decision trees, making choices is essential: without choosing the right path, the right destination will never be reached. Recently, <a href=\"https:\/\/thedatastory.nl\/nl\/\">The Data Story<\/a> has made the decision to switch from the familiar path of DBT to a new route, Dataform. After giving a brief explanation of what DBT and Dataform are, this blog will discuss four of the reasons that led us to switch: integration with Google Cloud Platform, the use of languages, and its capability to perform custom operations and more advanced testing.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"681\" src=\"https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-30-at-09.55.39-1024x681.png\" alt=\"Dataform trail\" class=\"wp-image-2994\" srcset=\"https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-30-at-09.55.39-1024x681.png 1024w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-30-at-09.55.39-300x199.png 300w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-30-at-09.55.39-768x511.png 768w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-30-at-09.55.39-18x12.png 18w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-08-30-at-09.55.39.png 1378w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>DBT, which stands for Data Build Tool, and Dataform are both data transformation tools. As such, they are both tools that help with the Transform step in the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Extract,_load,_transform\">ELT<\/a> process. DBT is an open-source analytics engineering tool that enables transforming raw data into a more structured and refined format using SQL queries. Dataform is very similar. <\/p>\n\n\n\n<p>As the Dataform Docs put it, <em>\u2018Dataform is a service for data analysts to develop, test, version control and schedule complex SQL workflows for data transformation in BigQuery\u2019<\/em>. Both also provide the possibility to use another language to define operations that would be impossible or intricate to construct with just SQL. DBT, being open-source, is free with a command-line interface, excluding any data platform charges. Dataform, on the other hand, offers an IDE for free, again excluding data platform charges. DBT does offer a cloud version with an IDE, though charging extra on top of data platform costs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">GCP<\/h2>\n\n\n\n<p>The main difference between the two is Dataform\u2019s seamless integration with Google Cloud Platform (GCP). This distinction directly introduces the first and most significant reason for switching to Dataform. After Google acquired Dataform in 2020, it has become a big part of data analytics in Google Cloud. The Data Story uses GCP products for nearly all stages in data analysis: from Google Analytics to BigQuery to Looker Studio. It is at the core of our data analyses, which is why Dataform makes such a big difference. For instance, it integrates incredibly well with BigQuery, almost as if it is a part of it, helping us provide efficient solutions while saving time. <\/p>\n\n\n\n<p>It is as if we brought a bike, GCP, with us that rides a lot smoother on one of the two paths of the forest: the Dataform trail. Obviously we want to use this bike if we can; integration with GCP made the decision to switch an easy one.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Man-Riding-Bike-Stunt-1024x576.jpg\" alt=\"Dataform Trail Mountainbike\" class=\"wp-image-3693\" srcset=\"https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Man-Riding-Bike-Stunt-1024x576.jpg 1024w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Man-Riding-Bike-Stunt-300x169.jpg 300w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Man-Riding-Bike-Stunt-768x432.jpg 768w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Man-Riding-Bike-Stunt-1536x864.jpg 1536w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Man-Riding-Bike-Stunt-2048x1152.jpg 2048w, https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Man-Riding-Bike-Stunt-18x10.jpg 18w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Use of languages<\/h2>\n\n\n\n<p>Although both tools use SQL to query data, there is still a difference in their choice of language. As explained before, both DBT and Dataform offer a way to go beyond what is possible with SQL. DBT uses Jinja, a templating language, and Dataform uses Javascript. It allows developers to, for instance, easily use if statements and for loops and define reusable functions. Javascript is one of the most popular programming languages and will therefore likely be a preference for most people. It has more similarities with other commonly used languages, making the learning curve less steep. This ease of use is another plus for Dataform.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Custom operations<\/h2>\n\n\n\n<p>What\u2019s more, Dataform provides the possibility to write custom SQL operations aside from the possibilities provided by Javascript. Contrary to DBT, Dataform can execute custom SQL queries that do not fit in the Dataform model of defining tables. A separate file can be created with custom SQL commands. Dataform will then execute these in BigQuery. A broader range of capabilities opens the door for good solutions, a big advantage; another point for Dataform.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Testing<\/h2>\n\n\n\n<p>Lastly, Dataform allows for more advanced testing than DBT. Both tools provide the option of performing assertions, running tests on data. Through assertions, one can automatically ensure data quality by for example requiring that certain columns are unique or not null. On top of that, as the testing options in DBT reach their limit, Dataform lets you write unit tests. Where assertions test the content of tables, unit tests verify the quality of SQL code. As the Dataform Docs put it: <em>\u2018assertions verify data, unit tests verify logic\u2019<\/em>. At last, Dataform leads the scoreboard and beats DBT again.<\/p>\n\n\n\n<p>In the dense forest of data science, the right path has become clearer. Dataform integrates seamlessly with Google Cloud Platform, its most obvious and convincing advantage. Moreover, Dataform uses Javascript instead of Jinja, making the developer\u2019s life a lot easier. And finally, Dataform offers more possibilities in terms of custom operations and testing. All in all, although DBT is also a great and very similar tool, opting for Dataform has turned out to be a great decision. We have chosen to follow the right path and have not considered looking back through the forest to return to the DBT trail. Tune in next time for a quickstart guide to learn some tips and tricks!<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In the dense forest that data science can often be, finding a way through can be cumbersome. Although this forest is not made up of decision trees, making choices is [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":3001,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_price":"","_stock":"","_tribe_ticket_header":"","_tribe_default_ticket_provider":"","_tribe_ticket_capacity":"0","_ticket_start_date":"","_ticket_end_date":"","_tribe_ticket_show_description":"","_tribe_ticket_show_not_going":false,"_tribe_ticket_use_global_stock":"","_tribe_ticket_global_stock_level":"","_global_stock_mode":"","_global_stock_cap":"","_tribe_rsvp_for_event":"","_tribe_ticket_going_count":"","_tribe_ticket_not_going_count":"","_tribe_tickets_list":"[]","_tribe_ticket_has_attendee_info_fields":false,"footnotes":""},"categories":[2],"tags":[],"class_list":["post-2993","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-data-stories"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Choosing the right path: following the Dataform trail - The Data Story<\/title>\n<meta name=\"description\" content=\"The Data Story switched from the familiar path of DBT to a new route, Dataform. this blog will discuss the reasons that led us to switch.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thedatastory.nl\/nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Choosing the right path: following the Dataform trail - The Data Story\" \/>\n<meta property=\"og:description\" content=\"The Data Story switched from the familiar path of DBT to a new route, Dataform. this blog will discuss the reasons that led us to switch.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thedatastory.nl\/nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/\" \/>\n<meta property=\"og:site_name\" content=\"The Data Story\" \/>\n<meta property=\"article:published_time\" content=\"2023-08-30T09:27:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-17T14:26:43+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-09-13-at-11.21.48.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1836\" \/>\n\t<meta property=\"og:image:height\" content=\"1032\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Zo\u00eb Eenkhoorn\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Geschreven door\" \/>\n\t<meta name=\"twitter:data1\" content=\"Zo\u00eb Eenkhoorn\" \/>\n\t<meta name=\"twitter:label2\" content=\"Geschatte leestijd\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/\"},\"author\":{\"name\":\"Zo\u00eb Eenkhoorn\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#\\\/schema\\\/person\\\/c35ee84058f143e346a30d4d6fa31dc9\"},\"headline\":\"Choosing the right path: following the Dataform trail\",\"datePublished\":\"2023-08-30T09:27:55+00:00\",\"dateModified\":\"2025-09-17T14:26:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/\"},\"wordCount\":830,\"publisher\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/thedatastory.nl\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/Screenshot-2023-09-13-at-11.21.48.png\",\"articleSection\":[\"Data stories\"],\"inLanguage\":\"nl-NL\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/\",\"url\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/\",\"name\":\"Choosing the right path: following the Dataform trail - The Data Story\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/thedatastory.nl\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/Screenshot-2023-09-13-at-11.21.48.png\",\"datePublished\":\"2023-08-30T09:27:55+00:00\",\"dateModified\":\"2025-09-17T14:26:43+00:00\",\"description\":\"The Data Story switched from the familiar path of DBT to a new route, Dataform. this blog will discuss the reasons that led us to switch.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/#primaryimage\",\"url\":\"https:\\\/\\\/thedatastory.nl\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/Screenshot-2023-09-13-at-11.21.48.png\",\"contentUrl\":\"https:\\\/\\\/thedatastory.nl\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/Screenshot-2023-09-13-at-11.21.48.png\",\"width\":1836,\"height\":1032},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/data-stories\\\/choosing-the-right-path-following-the-dataform-trail\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Data stories\",\"item\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/data-stories\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Choosing the right path: following the Dataform trail\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/\",\"name\":\"The Data Story\",\"description\":\"Data Analyse, Visualisatie &amp; Automation\",\"publisher\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#organization\",\"name\":\"The Data Story\",\"url\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/thedatastory.nl\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Logo-negatief.svg\",\"contentUrl\":\"https:\\\/\\\/thedatastory.nl\\\/wp-content\\\/uploads\\\/2021\\\/11\\\/Logo-negatief.svg\",\"width\":250,\"height\":49,\"caption\":\"The Data Story\"},\"image\":{\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/thedatastory.nl\\\/en\\\/#\\\/schema\\\/person\\\/c35ee84058f143e346a30d4d6fa31dc9\",\"name\":\"Zo\u00eb Eenkhoorn\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8a3c1ff604738cb135fc64ceff85df8fb405099b9dc6bd7527f0c3ad5ebd5f51?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8a3c1ff604738cb135fc64ceff85df8fb405099b9dc6bd7527f0c3ad5ebd5f51?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8a3c1ff604738cb135fc64ceff85df8fb405099b9dc6bd7527f0c3ad5ebd5f51?s=96&d=mm&r=g\",\"caption\":\"Zo\u00eb Eenkhoorn\"},\"sameAs\":[\"http:\\\/\\\/TheDatastory.nl\"],\"url\":\"https:\\\/\\\/thedatastory.nl\\\/nl\\\/author\\\/zoe\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Choosing the right path: following the Dataform trail - The Data Story","description":"The Data Story switched from the familiar path of DBT to a new route, Dataform. this blog will discuss the reasons that led us to switch.","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:\/\/thedatastory.nl\/nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/","og_locale":"nl_NL","og_type":"article","og_title":"Choosing the right path: following the Dataform trail - The Data Story","og_description":"The Data Story switched from the familiar path of DBT to a new route, Dataform. this blog will discuss the reasons that led us to switch.","og_url":"https:\/\/thedatastory.nl\/nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/","og_site_name":"The Data Story","article_published_time":"2023-08-30T09:27:55+00:00","article_modified_time":"2025-09-17T14:26:43+00:00","og_image":[{"width":1836,"height":1032,"url":"http:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-09-13-at-11.21.48.png","type":"image\/png"}],"author":"Zo\u00eb Eenkhoorn","twitter_card":"summary_large_image","twitter_misc":{"Geschreven door":"Zo\u00eb Eenkhoorn","Geschatte leestijd":"5 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/#article","isPartOf":{"@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/"},"author":{"name":"Zo\u00eb Eenkhoorn","@id":"https:\/\/thedatastory.nl\/en\/#\/schema\/person\/c35ee84058f143e346a30d4d6fa31dc9"},"headline":"Choosing the right path: following the Dataform trail","datePublished":"2023-08-30T09:27:55+00:00","dateModified":"2025-09-17T14:26:43+00:00","mainEntityOfPage":{"@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/"},"wordCount":830,"publisher":{"@id":"https:\/\/thedatastory.nl\/en\/#organization"},"image":{"@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/#primaryimage"},"thumbnailUrl":"https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-09-13-at-11.21.48.png","articleSection":["Data stories"],"inLanguage":"nl-NL"},{"@type":"WebPage","@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/","url":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/","name":"Choosing the right path: following the Dataform trail - The Data Story","isPartOf":{"@id":"https:\/\/thedatastory.nl\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/#primaryimage"},"image":{"@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/#primaryimage"},"thumbnailUrl":"https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-09-13-at-11.21.48.png","datePublished":"2023-08-30T09:27:55+00:00","dateModified":"2025-09-17T14:26:43+00:00","description":"The Data Story switched from the familiar path of DBT to a new route, Dataform. this blog will discuss the reasons that led us to switch.","breadcrumb":{"@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/"]}]},{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/#primaryimage","url":"https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-09-13-at-11.21.48.png","contentUrl":"https:\/\/thedatastory.nl\/wp-content\/uploads\/2023\/08\/Screenshot-2023-09-13-at-11.21.48.png","width":1836,"height":1032},{"@type":"BreadcrumbList","@id":"https:\/\/thedatastory.nl\/data-stories\/choosing-the-right-path-following-the-dataform-trail\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thedatastory.nl\/en\/"},{"@type":"ListItem","position":2,"name":"Data stories","item":"https:\/\/thedatastory.nl\/en\/data-stories\/"},{"@type":"ListItem","position":3,"name":"Choosing the right path: following the Dataform trail"}]},{"@type":"WebSite","@id":"https:\/\/thedatastory.nl\/en\/#website","url":"https:\/\/thedatastory.nl\/en\/","name":"The Data Story","description":"Data Analyse, Visualisatie &amp; Automation","publisher":{"@id":"https:\/\/thedatastory.nl\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thedatastory.nl\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nl-NL"},{"@type":"Organization","@id":"https:\/\/thedatastory.nl\/en\/#organization","name":"The Data Story","url":"https:\/\/thedatastory.nl\/en\/","logo":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/thedatastory.nl\/en\/#\/schema\/logo\/image\/","url":"https:\/\/thedatastory.nl\/wp-content\/uploads\/2021\/11\/Logo-negatief.svg","contentUrl":"https:\/\/thedatastory.nl\/wp-content\/uploads\/2021\/11\/Logo-negatief.svg","width":250,"height":49,"caption":"The Data Story"},"image":{"@id":"https:\/\/thedatastory.nl\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/thedatastory.nl\/en\/#\/schema\/person\/c35ee84058f143e346a30d4d6fa31dc9","name":"Zo\u00eb Eenkhoorn","image":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/secure.gravatar.com\/avatar\/8a3c1ff604738cb135fc64ceff85df8fb405099b9dc6bd7527f0c3ad5ebd5f51?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/8a3c1ff604738cb135fc64ceff85df8fb405099b9dc6bd7527f0c3ad5ebd5f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/8a3c1ff604738cb135fc64ceff85df8fb405099b9dc6bd7527f0c3ad5ebd5f51?s=96&d=mm&r=g","caption":"Zo\u00eb Eenkhoorn"},"sameAs":["http:\/\/TheDatastory.nl"],"url":"https:\/\/thedatastory.nl\/nl\/author\/zoe\/"}]}},"_links":{"self":[{"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/posts\/2993","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/comments?post=2993"}],"version-history":[{"count":4,"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/posts\/2993\/revisions"}],"predecessor-version":[{"id":3695,"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/posts\/2993\/revisions\/3695"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/media\/3001"}],"wp:attachment":[{"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/media?parent=2993"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/categories?post=2993"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thedatastory.nl\/nl\/wp-json\/wp\/v2\/tags?post=2993"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}