{"id":25600336,"date":"2025-01-22T12:30:09","date_gmt":"2025-01-22T07:00:09","guid":{"rendered":"https:\/\/entri.app\/blog\/?p=25600336"},"modified":"2025-01-22T12:30:09","modified_gmt":"2025-01-22T07:00:09","slug":"mindtree-power-bi-interview-questions","status":"publish","type":"post","link":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/","title":{"rendered":"Mindtree Power BI Interview Questions"},"content":{"rendered":"<p>Power BI has become a cornerstone for business intelligence and data visualization, helping organizations make data-driven decisions. Mindtree is a tech leader for whom proficiency in Power BI is a must-have skill for aspiring candidates. Whether you\u2019re a fresher or an experienced professional, preparing for a Power BI interview at Mindtree can seem daunting. To help you succeed, this blog delves into the most frequently asked Mindtree Power BI interview questions, covering fundamental concepts, DAX functions, data modelling, and real-world problem-solving scenarios.<\/p>\n<p style=\"text-align: center;\"><strong><a href=\"https:\/\/entri.app\/course\/data-science-and-machine-learning-course\/?utm_source=data-science-ml&amp;utm_medium=blog_referral&amp;utm_campaign=virtusa-business-analyst-interview-questions\" target=\"_blank\" rel=\"noopener\">Enhance your data science skills with us! Join our free demo today!<\/a><\/strong><\/p>\n<h2><strong>Mindtree Power BI Interview Questions and Answers<\/strong><\/h2>\n<p>Here are some Mindtree Power BI interview questions and answers to help you prepare:<\/p>\n<h3><strong>Basic Power BI Questions<\/strong><\/h3>\n<h3>1. What is Power BI, and why is it used?<\/h3>\n<p>Power BI is a business intelligence tool developed by Microsoft that allows users to connect to various data sources, transform data, and create interactive reports and dashboards. It is used for:<\/p>\n<ul>\n<li>Data visualization.<\/li>\n<li>Business analytics.<\/li>\n<li>Generating actionable insights.<\/li>\n<li>Sharing reports across teams via the Power BI Service.<\/li>\n<\/ul>\n<h3>2. What are the components of Power BI?<\/h3>\n<p>The main components are:<\/p>\n<ul>\n<li>Power BI Desktop: For report creation and data modelling.<\/li>\n<li>Power BI Service: Cloud-based platform for sharing and collaboration.<\/li>\n<li>Power BI Mobile: Access reports on mobile devices.<\/li>\n<li>Power BI Gateway: Connects on-premise data sources to Power BI Service.<\/li>\n<li>Power BI Report Server: For on-premise report storage and management.<\/li>\n<\/ul>\n<h3><strong>Data Modelling Questions<\/strong><\/h3>\n<h3>3. Explain the difference between a star schema and a snowflake schema. Which one is preferred in Power BI?<\/h3>\n<ul>\n<li>Star Schema: A central fact table is connected to dimension tables in a simple, flat structure.<\/li>\n<li>Snowflake Schema: Dimension tables are normalized into multiple related tables.<br \/>\nPreferred: Star schema is preferred in Power BI as it simplifies querying and improves performance.<\/li>\n<\/ul>\n<h3>4. What is a measure in Power BI?<\/h3>\n<p>A measure is a DAX formula used to perform calculations on data, such as sums, averages, or counts. Measures are dynamic and calculated based on filter contexts in a report.<\/p>\n<h3><strong>DAX (Data Analysis Expressions) Questions<\/strong><\/h3>\n<h3>5. What is the difference between SUM() and SUMX()?<\/h3>\n<p>SUM(): Adds up all the values in a column.<\/p>\n<p>SUMX(): Iterates through a table, applies a calculation to each row, and then sums up the results.<br \/>\nExample: SUMX(Table, Table[Column1] * Table[Column2]) calculates the sum of products row by row.<\/p>\n<h3>6. How would you calculate Year-to-Date (YTD) in Power BI?<\/h3>\n<p>Use the TOTALYTD() function in DAX:<\/p>\n<p>YTD Sales = TOTALYTD(SUM(Sales[Amount]), Calendar[Date])<\/p>\n<h3><strong>Data Visualization Questions<\/strong><\/h3>\n<h3>7. What are slicers, and how are they used in Power BI?<\/h3>\n<p>Slicers are visual filters that allow users to interact with and filter data in a report dynamically. They improve report interactivity and help focus on specific subsets of data.<\/p>\n<h3>8. How do you create a hierarchy in Power BI?<\/h3>\n<p>Select fields to include in the hierarchy (e.g., Year, Quarter, Month).<\/p>\n<p>Right-click and select &#8220;New hierarchy&#8221; to create it.<\/p>\n<p>Drag fields to reorder levels if needed.<\/p>\n<h3><strong>Power Query (ETL) Questions<\/strong><\/h3>\n<h3>9. What is Power Query?<\/h3>\n<p>Power Query is a data transformation tool in Power BI used to clean, transform, and load data. It uses the M language for advanced data shaping tasks.<\/p>\n<h3>10. How do you remove duplicate rows in Power Query?<\/h3>\n<p>In Power Query:<\/p>\n<p>1. Go to the &#8220;Home&#8221; tab.<\/p>\n<p>2. Select the column(s) to check for duplicates.<\/p>\n<p>3. Click &#8220;Remove Duplicates.&#8221;<\/p>\n<h3><strong>Advanced Questions<\/strong><\/h3>\n<h3>11. How do you implement Row-Level Security (RLS) in Power BI?<\/h3>\n<ul>\n<li>Define roles in Power BI Desktop using DAX filters (e.g., [Region] = &#8220;North&#8221;).<\/li>\n<li>Publish the report to Power BI Service.<\/li>\n<li>Assign users to roles under the &#8220;Security&#8221; settings in the dataset.<\/li>\n<\/ul>\n<h3>12. How do you optimize Power BI reports for performance?<\/h3>\n<ul>\n<li>Use star schema for data modelling.<\/li>\n<li>Avoid importing unnecessary columns or rows.<\/li>\n<li>Use measures instead of calculated columns.<\/li>\n<li>Optimize DAX calculations.<\/li>\n<li>Reduce the number of visuals on a single page.<\/li>\n<li>Enable query reduction techniques.<\/li>\n<\/ul>\n<h3><strong>Scenario-Based Questions<\/strong><\/h3>\n<h3>13. Your report visuals are not refreshing correctly. How would you troubleshoot?<\/h3>\n<p>1. Check the data source connection.<\/p>\n<p>2. Ensure the dataset is refreshing in Power BI Service.<\/p>\n<p>3. Verify filters or slicers affecting the visual.<\/p>\n<p>4. Use &#8220;Refresh&#8221; in Power BI Desktop to test.<\/p>\n<h3>14. How would you design a real-time dashboard in Power BI?<\/h3>\n<ul>\n<li>Use streaming datasets.<\/li>\n<li>Connect to real-time data sources like Azure Stream Analytics.<\/li>\n<li>Create visuals that update automatically as data streams in.<\/li>\n<\/ul>\n<p>By practicing these questions and tailoring your answers with real-world examples, you&#8217;ll be better prepared for your Mindtree Power BI interview.<\/p>\n<h3><strong>Conclusion<\/strong><\/h3>\n<p>Mastering Power BI is essential for candidates aspiring to join Mindtree&#8217;s dynamic team. By thoroughly understanding the concepts discussed in this blog, you\u2019ll be well-prepared to tackle the interview with confidence.<\/p>\n<p>Remember, Mindtree values not only technical expertise but also problem-solving skills, creativity, and a strong understanding of business needs. Complement your technical preparation with hands-on practice and the ability to articulate your thought process during the interview.<\/p>\n<p style=\"text-align: center;\"><strong><a href=\"https:\/\/entri.app\/course\/data-science-and-machine-learning-course\/?utm_source=data-science-ml&amp;utm_medium=blog_referral&amp;utm_campaign=virtusa-business-analyst-interview-questions\" target=\"_blank\" rel=\"noopener\">Enhance your data science skills with us! Join our free demo today!<\/a><\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Power BI has become a cornerstone for business intelligence and data visualization, helping organizations make data-driven decisions. Mindtree is a tech leader for whom proficiency in Power BI is a must-have skill for aspiring candidates. Whether you\u2019re a fresher or an experienced professional, preparing for a Power BI interview at Mindtree can seem daunting. To [&hellip;]<\/p>\n","protected":false},"author":85,"featured_media":25600342,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[802,1864],"tags":[],"class_list":["post-25600336","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-articles","category-data-science-ml"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Mindtree Power BI Interview Questions - Entri Blog<\/title>\n<meta name=\"description\" content=\"This blog delves into the most frequently asked Mindtree Power BI interview questions, covering DAX functions, data modelling, problem-solving scenarios.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Mindtree Power BI Interview Questions - Entri Blog\" \/>\n<meta property=\"og:description\" content=\"This blog delves into the most frequently asked Mindtree Power BI interview questions, covering DAX functions, data modelling, problem-solving scenarios.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/\" \/>\n<meta property=\"og:site_name\" content=\"Entri Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/entri.me\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-22T07:00:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png\" \/>\n\t<meta property=\"og:image:width\" content=\"820\" \/>\n\t<meta property=\"og:image:height\" content=\"615\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ramzeena Althaf\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@entri_app\" \/>\n<meta name=\"twitter:site\" content=\"@entri_app\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ramzeena Althaf\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/\"},\"author\":{\"name\":\"Ramzeena Althaf\",\"@id\":\"https:\/\/entri.app\/blog\/#\/schema\/person\/cd8971e538ee1e693a59cb416f4a4182\"},\"headline\":\"Mindtree Power BI Interview Questions\",\"datePublished\":\"2025-01-22T07:00:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/\"},\"wordCount\":821,\"publisher\":{\"@id\":\"https:\/\/entri.app\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png\",\"articleSection\":[\"Articles\",\"Data Science and Machine Learning\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/\",\"url\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/\",\"name\":\"Mindtree Power BI Interview Questions - Entri Blog\",\"isPartOf\":{\"@id\":\"https:\/\/entri.app\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png\",\"datePublished\":\"2025-01-22T07:00:09+00:00\",\"description\":\"This blog delves into the most frequently asked Mindtree Power BI interview questions, covering DAX functions, data modelling, problem-solving scenarios.\",\"breadcrumb\":{\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#primaryimage\",\"url\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png\",\"contentUrl\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png\",\"width\":820,\"height\":615,\"caption\":\"Mindtree Power BI Interview Questions\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/entri.app\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Entri Skilling\",\"item\":\"https:\/\/entri.app\/blog\/category\/entri-skilling\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Data Science and Machine Learning\",\"item\":\"https:\/\/entri.app\/blog\/category\/entri-skilling\/data-science-ml\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Mindtree Power BI Interview Questions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/entri.app\/blog\/#website\",\"url\":\"https:\/\/entri.app\/blog\/\",\"name\":\"Entri Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/entri.app\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/entri.app\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/entri.app\/blog\/#organization\",\"name\":\"Entri App\",\"url\":\"https:\/\/entri.app\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/entri.app\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2019\/10\/Entri-Logo-1.png\",\"contentUrl\":\"https:\/\/entri.app\/blog\/wp-content\/uploads\/2019\/10\/Entri-Logo-1.png\",\"width\":989,\"height\":446,\"caption\":\"Entri App\"},\"image\":{\"@id\":\"https:\/\/entri.app\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/entri.me\/\",\"https:\/\/x.com\/entri_app\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/entri.app\/blog\/#\/schema\/person\/cd8971e538ee1e693a59cb416f4a4182\",\"name\":\"Ramzeena Althaf\",\"description\":\"Ramzeena is a free thinker, an avid reader and tenacious when it comes to writing. An ardent Scrabble lover, she loves sharing exam updates and related topics for aspirants\",\"url\":\"https:\/\/entri.app\/blog\/author\/ramzeena\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Mindtree Power BI Interview Questions - Entri Blog","description":"This blog delves into the most frequently asked Mindtree Power BI interview questions, covering DAX functions, data modelling, problem-solving scenarios.","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:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/","og_locale":"en_US","og_type":"article","og_title":"Mindtree Power BI Interview Questions - Entri Blog","og_description":"This blog delves into the most frequently asked Mindtree Power BI interview questions, covering DAX functions, data modelling, problem-solving scenarios.","og_url":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/","og_site_name":"Entri Blog","article_publisher":"https:\/\/www.facebook.com\/entri.me\/","article_published_time":"2025-01-22T07:00:09+00:00","og_image":[{"width":820,"height":615,"url":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png","type":"image\/png"}],"author":"Ramzeena Althaf","twitter_card":"summary_large_image","twitter_creator":"@entri_app","twitter_site":"@entri_app","twitter_misc":{"Written by":"Ramzeena Althaf","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#article","isPartOf":{"@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/"},"author":{"name":"Ramzeena Althaf","@id":"https:\/\/entri.app\/blog\/#\/schema\/person\/cd8971e538ee1e693a59cb416f4a4182"},"headline":"Mindtree Power BI Interview Questions","datePublished":"2025-01-22T07:00:09+00:00","mainEntityOfPage":{"@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/"},"wordCount":821,"publisher":{"@id":"https:\/\/entri.app\/blog\/#organization"},"image":{"@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png","articleSection":["Articles","Data Science and Machine Learning"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/","url":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/","name":"Mindtree Power BI Interview Questions - Entri Blog","isPartOf":{"@id":"https:\/\/entri.app\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#primaryimage"},"image":{"@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png","datePublished":"2025-01-22T07:00:09+00:00","description":"This blog delves into the most frequently asked Mindtree Power BI interview questions, covering DAX functions, data modelling, problem-solving scenarios.","breadcrumb":{"@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#primaryimage","url":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png","contentUrl":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2025\/01\/Mindtree-Power-BI-Interview-Questions.png","width":820,"height":615,"caption":"Mindtree Power BI Interview Questions"},{"@type":"BreadcrumbList","@id":"https:\/\/entri.app\/blog\/mindtree-power-bi-interview-questions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/entri.app\/blog\/"},{"@type":"ListItem","position":2,"name":"Entri Skilling","item":"https:\/\/entri.app\/blog\/category\/entri-skilling\/"},{"@type":"ListItem","position":3,"name":"Data Science and Machine Learning","item":"https:\/\/entri.app\/blog\/category\/entri-skilling\/data-science-ml\/"},{"@type":"ListItem","position":4,"name":"Mindtree Power BI Interview Questions"}]},{"@type":"WebSite","@id":"https:\/\/entri.app\/blog\/#website","url":"https:\/\/entri.app\/blog\/","name":"Entri Blog","description":"","publisher":{"@id":"https:\/\/entri.app\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/entri.app\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/entri.app\/blog\/#organization","name":"Entri App","url":"https:\/\/entri.app\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/entri.app\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2019\/10\/Entri-Logo-1.png","contentUrl":"https:\/\/entri.app\/blog\/wp-content\/uploads\/2019\/10\/Entri-Logo-1.png","width":989,"height":446,"caption":"Entri App"},"image":{"@id":"https:\/\/entri.app\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/entri.me\/","https:\/\/x.com\/entri_app"]},{"@type":"Person","@id":"https:\/\/entri.app\/blog\/#\/schema\/person\/cd8971e538ee1e693a59cb416f4a4182","name":"Ramzeena Althaf","description":"Ramzeena is a free thinker, an avid reader and tenacious when it comes to writing. An ardent Scrabble lover, she loves sharing exam updates and related topics for aspirants","url":"https:\/\/entri.app\/blog\/author\/ramzeena\/"}]}},"_links":{"self":[{"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/posts\/25600336","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/users\/85"}],"replies":[{"embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/comments?post=25600336"}],"version-history":[{"count":1,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/posts\/25600336\/revisions"}],"predecessor-version":[{"id":25600343,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/posts\/25600336\/revisions\/25600343"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/media\/25600342"}],"wp:attachment":[{"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/media?parent=25600336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/categories?post=25600336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/entri.app\/blog\/wp-json\/wp\/v2\/tags?post=25600336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}