{"id":1047,"date":"2016-04-04T12:36:00","date_gmt":"2016-04-04T12:36:00","guid":{"rendered":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/?p=1047"},"modified":"2024-02-26T09:32:27","modified_gmt":"2024-02-26T09:32:27","slug":"recipes-for-test-automation-part-2","status":"publish","type":"post","link":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/","title":{"rendered":"Recipes for Test Automation (Part 2) \u2013 Data Salad"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong><strong>Testomatoes on data salad with stressing<\/strong><\/strong><\/h2>\n\n\n\n<p>The test data always pose a particular challenge in manual testing, and even more so with respect to test automation. In most manual tests, the test cases frequently only include general information regarding the test data to be used. This method does not work for test automation.<\/p>\n\n\n\n<p>In my previous post, <a href=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-1\/\">\u201eIngredients and appliances for test automation, and who is the chef\u201c<\/a>, I described the prerequisites for test automation that have to be met in order to successfully implement automated processes. I also mentioned another challenge in this context: The test data. I would like to take a closer look at this issue in this blog post.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"563\" src=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg\" alt=\"\" class=\"wp-image-2429\" style=\"width:700px\" srcset=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg 1000w, https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad-600x338.jpg 600w, https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad-768x432.jpg 768w, https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad-640x360.jpg 640w\" sizes=\"auto, (max-width: 639px) 98vw, (max-width: 1199px) 64vw, 770px\" \/><\/figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>What happens if we fail to focus on the test data in the test automation, and we rely on test data that do not take the test automation into account?<\/p>\n\n\n\n<p>Testing can be compared with cooking. The test case is the recipe, and the test data are the ingredients. With manual testing, we follow the recipe\/test case and find the ingredients\/test data as required. This does not work with automated testing. Here, the test data, or ingredients, have to be provided spot-on, in the exact quantities required. This means that it is not enough to indicate the type and form of the test data: the exact instance of the test date has to be specified in the test script as well.<\/p>\n\n\n\n<p>Furthermore, the test data are used up, or the test data age over the course of the testing. Just like in a restaurant, where you eventually run out of tomatoes or the green salad wilts. So then, where do we get the ingredients we need, and in sufficient quantities.<\/p>\n\n\n\n<p>In projects, I often hear: \u201cWe\u2019ll just create a\u2014hopefully anonymized\u2014clone of the production data.\u201d However, such a clone only provides a part of the data required for the test automation. This means that such a clone is quite useful for unchanging master data. But the cook in the kitchen will not always get the same order for the exact same salad. One guest wants olives on their salad, another does not; one wants yogurt dressing, the other wants oil and vinegar. Depending on the ingredients and changes to the order, the price changes as well. This means that we also need dynamic data for our test data, so-called transactional data, to comprehensively represent the business processes. There are two approaches to providing the necessary dynamic data for the test automation, each of which has its advantages and disadvantages. With the first approach, the required data are picked from the anonymized clone of the production data. However, the effort required to determine the respective filter criteria and then formulate a corresponding query can quickly become very high. The disadvantage of this approach is the fact that the quantity of the filtered data is limited, and the data can be used up during testing.<\/p>\n\n\n\n<p>With the second approach, the required test data are newly created in the database, ensuring that all the test data required for the test case are provided. Although these test data are used up as well, they can be recreated time and again by the automated scripts. Creating the so-called synthetic test data can be arduous as well, e.g. when there are large amounts of dependent data. Therefore, the decision of which approach is to be used for which test case has to be evaluated for each individual case.<\/p>\n\n\n\n<p>Furthermore, the test data often have to be dynamized in the test automation. What does that mean? Let us look at another example from the kitchen. Everyone knows that a good Peking duck should be ordered 24 hours before it is to be eaten. As the date of consumption is a variable date, dynamization can offer a solution for the automation. The result then looks like this: Date of consumption = order date + 24 hours. This and similar kinds of dynamic test data are also used in test automation.<\/p>\n\n\n\n<p>Conclusion: In most cases, the solution is like a good salad\u2014it\u2019s all in the mix. Let us once more summarize the recipe: Take an anonymized clone of the production data for the basic, unchanging master data (you can also create smaller amounts of data yourself), and add some well-selected dynamic data from the clone of the production data by means of a query in the test case. Now add a well-selected dose of synthetic test data. All of this should be well balanced to match the test case template. Lastly, top the whole thing off with a splash of dynamized test data in the template, and you have the perfect data salad for your test automation. After serving the test data to the database, it is important to thoroughly clean up the data kitchen. That means returning all the static, synthetic and dynamic test data to their original state if they were modified by the test case. Simply put, every test case necessarily entails a clean-up of the test data because tidiness is the top priority in a good data kitchen.<\/p>\n\n\n\n<p>As we all know, various appliances are also used in the kitchen to automate the cooking process. My <a href=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-3\/\">next blog post in this series on recipes for test automation<\/a> addresses the question how much test automation is good for a project. Until then: Happy testing, and keep your data kitchen neat and tidy.<\/p>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.<\/p>\n","protected":false},"author":63,"featured_media":2429,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"advgb_blocks_editor_width":"","advgb_blocks_columns_visual_guide":"","footnotes":""},"categories":[7],"tags":[131,219,365,534],"topics":[935,82],"class_list":["post-1047","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-quality-assurance","tag-test-automation","tag-test-data","tag-tester","tag-test-automates","topics-recipes-for-test-automation","topics-test-automation"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>ZEISS Digital Innovation Blog - Recipes for Test Automation (Part 2) \u2013 Data Salad<\/title>\n<meta name=\"description\" content=\"The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ZEISS Digital Innovation - Blog Post &quot;Recipes for Test Automation (Part 2) \u2013 Data Salad&quot;\" \/>\n<meta property=\"og:description\" content=\"The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Digital Innovation Blog\" \/>\n<meta property=\"article:published_time\" content=\"2016-04-04T12:36:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-26T09:32:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"563\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jan Mo\u00dfler\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:title\" content=\"ZEISS Digital Innovation - Blog Post &quot;Recipes for Test Automation (Part 2) \u2013 Data Salad&quot;\" \/>\n<meta name=\"twitter:description\" content=\"The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jan Mo\u00dfler\" \/>\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\":\"WebPage\",\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/\",\"url\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/\",\"name\":\"ZEISS Digital Innovation Blog - Recipes for Test Automation (Part 2) \u2013 Data Salad\",\"isPartOf\":{\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg\",\"datePublished\":\"2016-04-04T12:36:00+00:00\",\"dateModified\":\"2024-02-26T09:32:27+00:00\",\"author\":{\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#\/schema\/person\/1303b95c98a7f61a7346473fc4169d43\"},\"description\":\"The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.\",\"breadcrumb\":{\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#primaryimage\",\"url\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg\",\"contentUrl\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg\",\"width\":1000,\"height\":563},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Recipes for Test Automation (Part 2) \u2013 Data Salad\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#website\",\"url\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/\",\"name\":\"Digital Innovation Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#\/schema\/person\/1303b95c98a7f61a7346473fc4169d43\",\"name\":\"Jan Mo\u00dfler\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2024\/01\/Mossler-Jan_kl_neu-150x150.jpg\",\"contentUrl\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2024\/01\/Mossler-Jan_kl_neu-150x150.jpg\",\"caption\":\"Jan Mo\u00dfler\"},\"description\":\"Jan Mo\u00dfler is an IT specialist and works as a test manager and competence coach for quality management at ZEISS Digital Innovation. In the past years, he has ensured quality and tested software in classic and agile projects from various specialist domains (banks, industry, energy, ...).\",\"url\":\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/author\/enjanmossler\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ZEISS Digital Innovation Blog - Recipes for Test Automation (Part 2) \u2013 Data Salad","description":"The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.","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:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/","og_locale":"en_US","og_type":"article","og_title":"ZEISS Digital Innovation - Blog Post \"Recipes for Test Automation (Part 2) \u2013 Data Salad\"","og_description":"The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.","og_url":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/","og_site_name":"Digital Innovation Blog","article_published_time":"2016-04-04T12:36:00+00:00","article_modified_time":"2024-02-26T09:32:27+00:00","og_image":[{"width":1000,"height":563,"url":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg","type":"image\/jpeg"}],"author":"Jan Mo\u00dfler","twitter_card":"summary_large_image","twitter_title":"ZEISS Digital Innovation - Blog Post \"Recipes for Test Automation (Part 2) \u2013 Data Salad\"","twitter_description":"The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.","twitter_image":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg","twitter_misc":{"Written by":"Jan Mo\u00dfler","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/","url":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/","name":"ZEISS Digital Innovation Blog - Recipes for Test Automation (Part 2) \u2013 Data Salad","isPartOf":{"@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#primaryimage"},"image":{"@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#primaryimage"},"thumbnailUrl":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg","datePublished":"2016-04-04T12:36:00+00:00","dateModified":"2024-02-26T09:32:27+00:00","author":{"@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#\/schema\/person\/1303b95c98a7f61a7346473fc4169d43"},"description":"The test data always pose a particular challenge in manual testing, and even more so with respect to test automation.","breadcrumb":{"@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#primaryimage","url":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg","contentUrl":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad.jpg","width":1000,"height":563},{"@type":"BreadcrumbList","@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/recipes-for-test-automation-part-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/"},{"@type":"ListItem","position":2,"name":"Recipes for Test Automation (Part 2) \u2013 Data Salad"}]},{"@type":"WebSite","@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#website","url":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/","name":"Digital Innovation Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#\/schema\/person\/1303b95c98a7f61a7346473fc4169d43","name":"Jan Mo\u00dfler","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/#\/schema\/person\/image\/","url":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2024\/01\/Mossler-Jan_kl_neu-150x150.jpg","contentUrl":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2024\/01\/Mossler-Jan_kl_neu-150x150.jpg","caption":"Jan Mo\u00dfler"},"description":"Jan Mo\u00dfler is an IT specialist and works as a test manager and competence coach for quality management at ZEISS Digital Innovation. In the past years, he has ensured quality and tested software in classic and agile projects from various specialist domains (banks, industry, energy, ...).","url":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/author\/enjanmossler\/"}]}},"author_meta":{"display_name":"Jan Mo\u00dfler","author_link":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/author\/enjanmossler\/"},"featured_img":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-content\/uploads\/sites\/3\/2015\/12\/blog_zdi_testautomation_part2_salad-600x338.jpg","coauthors":[],"tax_additional":{"categories":{"linked":["<a href=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/category\/quality-assurance\/\" class=\"advgb-post-tax-term\">Quality Assurance<\/a>"],"unlinked":["<span class=\"advgb-post-tax-term\">Quality Assurance<\/span>"]},"tags":{"linked":["<a href=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/category\/quality-assurance\/\" class=\"advgb-post-tax-term\">test automation<\/a>","<a href=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/category\/quality-assurance\/\" class=\"advgb-post-tax-term\">test data<\/a>","<a href=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/category\/quality-assurance\/\" class=\"advgb-post-tax-term\">Tester<\/a>","<a href=\"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/category\/quality-assurance\/\" class=\"advgb-post-tax-term\">test automates<\/a>"],"unlinked":["<span class=\"advgb-post-tax-term\">test automation<\/span>","<span class=\"advgb-post-tax-term\">test data<\/span>","<span class=\"advgb-post-tax-term\">Tester<\/span>","<span class=\"advgb-post-tax-term\">test automates<\/span>"]}},"comment_count":"0","relative_dates":{"created":"Posted 10 years ago","modified":"Updated 2 years ago"},"absolute_dates":{"created":"Posted on April 4, 2016","modified":"Updated on February 26, 2024"},"absolute_dates_time":{"created":"Posted on April 4, 2016 12:36 pm","modified":"Updated on February 26, 2024 9:32 am"},"featured_img_caption":"","series_order":"","_links":{"self":[{"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/posts\/1047","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/comments?post=1047"}],"version-history":[{"count":7,"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/posts\/1047\/revisions"}],"predecessor-version":[{"id":2437,"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/posts\/1047\/revisions\/2437"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/media\/2429"}],"wp:attachment":[{"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/media?parent=1047"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/categories?post=1047"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/tags?post=1047"},{"taxonomy":"topics","embeddable":true,"href":"https:\/\/blogs.zeiss.com\/digital-innovation\/en\/wp-json\/wp\/v2\/topics?post=1047"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}