{"id":10450,"date":"2023-05-27T08:48:41","date_gmt":"2023-05-27T08:48:41","guid":{"rendered":"https:\/\/monocroft.com\/?p=10450"},"modified":"2023-08-30T10:16:37","modified_gmt":"2023-08-30T10:16:37","slug":"how-to-perform-distinct-count-searches-for-dates-values-in-power-bi","status":"publish","type":"post","link":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/","title":{"rendered":"How to Perform Distinct Count Searches for Dates Values in Power BI"},"content":{"rendered":"\n

When working with date values in Power BI, performing distinct searches can help simplify the process, while leveraging the distinct count feature. This will filter the data and gain unique insights into specific date ranges or patterns.<\/p>\n\n\n\n

In this article, I will provide a complete guide on how to perform distinct count searches for date values in Power BI\u2014from the basics of date searches to advanced techniques to help you streamline your data analysis process.<\/p>\n\n\n\n

Let’s get started.<\/p>\n\n\n\n

Basic Date Searches in Power BI<\/h2>\n\n\n\n

When it comes to date searches in Power BI, the basic searches are the most typically used ones, and they allow you to filter your data by date range, year, month, and day. This will help you to easily find the information you need.<\/p>\n\n\n\n

Searching by Date Range<\/h3>\n\n\n\n

To search for dates in a specific range, you can use the “Between<\/strong><\/code>” operator. For example, if you want to find all orders made between January 1, 2019, and December 31, 2019<\/em>, you can use the following formula:<\/p>\n\n\n\n

OrderDate BETWEEN \"01\/01\/2019\" AND \"12\/31\/2019\"<\/strong><\/code><\/pre>\n\n\n\n

This formula will return all orders made between the specified dates.<\/p>\n\n\n\n

Kindly note that the correctness of the formula depends on the specific date format and data type used in your Power BI model.<\/em><\/p>\n\n\n\n

Searching by Year<\/h3>\n\n\n\n

Also, you can “Year<\/code><\/strong>” function if you want to search for data by year. This function will extract the year from a given date. For example, if you want to find every sale made in 2019, you can use the following formula:<\/p>\n\n\n\n

Year(SalesDate) = 2019<\/strong><\/code><\/pre>\n\n\n\n

This formula will return all sales made in the year 2019.<\/p>\n\n\n\n

Searching by Month<\/h3>\n\n\n\n

To search for data by month, you can use the “Month<\/code><\/strong>” function. This function will extract the month from a given date. For example, if you want to find all orders made in January 2019, you can use the following formula:<\/p>\n\n\n\n

Month(OrderDate) = 1 AND Year(OrderDate) = 2019<\/strong><\/code><\/pre>\n\n\n\n

This will return all orders made in the month of January 2019.<\/p>\n\n\n\n

Advanced Date Searches in Power BI<\/h2>\n\n\n\n

Now that you understand the basic date searches in Power BI, it is time to move on to more advanced techniques. With these advanced searches, you can filter your data by quarter, week, hour, and minute. <\/p>\n\n\n\n

This allows you to analyze your data in more depth and uncover hidden insights.<\/p>\n\n\n\n

Searching by Quarter<\/h3>\n\n\n\n

To search for data by quarter, you can use the “Quarter<\/strong><\/code>” function. This function extracts the quarter period from a given date. For example, you can find all orders made in the first quarter of 2019 using this formula: <\/p>\n\n\n\n

Quarter(OrderDate) = 1 AND Year(OrderDate) = 2019<\/code><\/strong><\/pre>\n\n\n\n

This formula will return all orders made in the first quarter of 2019.<\/p>\n\n\n\n

Searching by Week<\/h3>\n\n\n\n

To search for data by week, you can use the “ISOWeek<\/strong><\/code>” function. <\/p>\n\n\n\n

This function extracts the International Organization for Standardization (ISO) week number\u2014where each week begins on Monday and the first week of the year includes the first Thursday<\/em> from a given date<\/p>\n\n\n\n

For example, if you want to find all orders made in the first week of 2019, you can use the following formula:<\/p>\n\n\n\n

ISOWeek(OrderDate) = 1 AND Year(OrderDate) = 2019<\/code><\/strong><\/pre>\n\n\n\n

This will return all orders made in the first week of 2019.<\/p>\n\n\n\n

Searching by Hour and Minute<\/h3>\n\n\n\n

To search for data by hour and minute, you can use both the “Hour” and “Minute” functions. These functions extract the hour and minute from a given date.<\/p>\n\n\n\n

For instance, you may want to find all orders made at 3:00 PM on January 1, 2019<\/em>. To do that, you can use this formula:<\/p>\n\n\n\n

Hour(OrderDate) = 15 AND Minute(OrderDate) = 0 AND DAY(OrderDate) = 1 AND MONTH(OrderDate) = 1 AND YEAR(OrderDate) = 2019<\/strong><\/code><\/pre>\n\n\n\n

This will return all orders made at 3:00 PM on January 1, 2019.<\/p>\n\n\n\n

Using Dax Formulas for Date Searches in Power BI<\/h2>\n\n\n\n

In Power BI, DAX is a versatile formula language that is used to create custom calculations and perform advanced date searches and other calculations.<\/p>\n\n\n\n

Some examples of DAX formulas that can be used for date searches include: <\/p>\n\n\n\n

Calculating the Last 30 Days<\/h3>\n\n\n\n

To calculate the last 30 days of data, you can use the “DATESBETWEEN” function to return all orders made in the last 30 days. Here is a sample:<\/p>\n\n\n\n

Last_30_Days = CALCULATETABLE(Orders, DATESBETWEEN(Orders[OrderDate], TODAY() - 29, TODAY()))<\/code><\/strong><\/pre>\n\n\n\n

Calculating the Year-to-Date Sales<\/h3>\n\n\n\n

To calculate the year-to-date sales in Power BI, you can use the “TOTALYTD<\/strong><\/code>” function. For example, the sample code below uses the TOTALYTD function to return the year-to-date sales based on the data.<\/p>\n\n\n\n

YTD_Sales = TOTALYTD(SUM(Orders[Sales]), 'Calendar'[Date])<\/code><\/strong><\/pre>\n\n\n\n

Tips for Performing Efficient and Accurate Distinct Date Searches in <\/h2>\n\n\n\n

To perform efficient and accurate date searches, you can follow the following tips:<\/p>\n\n\n\n

Use the right data type<\/h3>\n\n\n\n

Make sure your date column is in the correct data type. It should be set to the “Date” data type. Also, the time column should be set to “Time” data type.<\/p>\n\n\n\n

Use filters<\/h3>\n\n\n\n

You should use filters to narrow down your search, especially when you want to exclude certain dates or date ranges.<\/p>\n\n\n\n

Use parameters<\/h3>\n\n\n\n

Make use of parameters to make your date searches more dynamic. Parameters let you set the search criteria at run time.<\/p>\n\n\n\n

How to Fix Common Date Searching Issues in Power BI<\/h2>\n\n\n\n

When searching for dates in Power BI, you may encounter some common issues. Here are some solutions to these issues:<\/p>\n\n\n\n

Date format issues<\/h3>\n\n\n\n

Make sure your date column is in the correct format. Power BI supports many date formats, such as MM\/DD\/YYYY, DD\/MM\/YYYY, etc.<\/p>\n\n\n\n

Time zone issues<\/h3>\n\n\n\n

Finally, ensure your date column is in the correct time zone. If your data is from a different time, you can use the DateTimeZone <\/code>function<\/a> to convert the dates to a common time zone.<\/p>\n\n\n\n

FAQs: How to Perform Distinct Count Searches for Dates Values in Power BI<\/h2>\n\n\n\n

Can I combine distinct searches with other filters in Power BI?<\/h3>\n\n\n\n

Yes, Power BI allows you to combine distinct searches with other filters. This enables you to perform complex data analysis.<\/p>\n\n\n\n

Are there requirements for performing distinct searches for date values in Power BI?<\/h3>\n\n\n\n

Not exactly, but it is important to have a well-defined data model with an accurate date field set as a date type in your data source. <\/p>\n\n\n\n

Also, creating a date hierarchy can improve distinct search abilities.<\/p>\n\n\n\n

Can you use the date slicer visualization to perform distinct searches in Power BI?<\/h3>\n\n\n\n

Yes, the date slicer visualization in Power BI can perform distinct searches by selecting specific dates or date ranges.<\/p>\n\n\n\n

Conclusion: How to Perform Distinct Count Searches for Dates Values in Power BI<\/h2>\n\n\n\n

Congratulations! <\/p>\n\n\n\n

You just learned how to perform distinct count searches for date values in Power BI.<\/p>\n\n\n\n

With the Power BI distinct count function, you can make data-driven decisions and uncover valuable trends within your date-based data.<\/p>\n\n\n\n

So, keep practicing and learning. With time and dedication, you will be able to easily analyze your data and gain valuable insights!<\/p>\n\n\n\n

If you enjoyed reading this, you can also read how to count the number of times a value appears in a column in Power BI<\/a>.<\/p>\n\n\n\n

Happy analyzing!<\/p>\n","protected":false},"excerpt":{"rendered":"

When working with date values in Power BI, performing distinct searches can help simplify the process, while leveraging the distinct … <\/p>\n

Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":10453,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,8],"tags":[],"yoast_head":"\nHow to Perform Distinct Count Searches for Dates Values in Power BI - Monocroft<\/title>\n<meta name=\"description\" content=\"In this article, you will learn how to perform distinct count searches for date values in Power BI to better analyze and visualize your data.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Perform Distinct Count Searches for Dates Values in Power BI - Monocroft\" \/>\n<meta property=\"og:description\" content=\"In this article, you will learn how to perform distinct count searches for date values in Power BI to better analyze and visualize your data.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/\" \/>\n<meta property=\"og:site_name\" content=\"Monocroft\" \/>\n<meta property=\"article:published_time\" content=\"2023-05-27T08:48:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-30T10:16:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"720\" \/>\n\t<meta property=\"og:image:height\" content=\"405\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Matt\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Matt\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/\"},\"author\":{\"name\":\"Matt\",\"@id\":\"https:\/\/monocroft.com\/#\/schema\/person\/3aeab97c9b5661d211c0742c48f024b3\"},\"headline\":\"How to Perform Distinct Count Searches for Dates Values in Power BI\",\"datePublished\":\"2023-05-27T08:48:41+00:00\",\"dateModified\":\"2023-08-30T10:16:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/\"},\"wordCount\":1104,\"publisher\":{\"@id\":\"https:\/\/monocroft.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg\",\"articleSection\":[\"Guides\",\"PowerBI\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/\",\"url\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/\",\"name\":\"How to Perform Distinct Count Searches for Dates Values in Power BI - Monocroft\",\"isPartOf\":{\"@id\":\"https:\/\/monocroft.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg\",\"datePublished\":\"2023-05-27T08:48:41+00:00\",\"dateModified\":\"2023-08-30T10:16:37+00:00\",\"description\":\"In this article, you will learn how to perform distinct count searches for date values in Power BI to better analyze and visualize your data.\",\"breadcrumb\":{\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#primaryimage\",\"url\":\"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg\",\"contentUrl\":\"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg\",\"width\":720,\"height\":405,\"caption\":\"distinct count in power bi - monocroft\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/monocroft.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Perform Distinct Count Searches for Dates Values in Power BI\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/monocroft.com\/#website\",\"url\":\"https:\/\/monocroft.com\/\",\"name\":\"Monocroft\",\"description\":\"Monocroft Tech\",\"publisher\":{\"@id\":\"https:\/\/monocroft.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/monocroft.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/monocroft.com\/#organization\",\"name\":\"Triburge\",\"url\":\"https:\/\/monocroft.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/monocroft.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/07\/monocroft-logo.png\",\"contentUrl\":\"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/07\/monocroft-logo.png\",\"width\":512,\"height\":512,\"caption\":\"Triburge\"},\"image\":{\"@id\":\"https:\/\/monocroft.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/monocroft.com\/#\/schema\/person\/3aeab97c9b5661d211c0742c48f024b3\",\"name\":\"Matt\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/monocroft.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c06bcee4d38a649222493c5e9f11f7a5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c06bcee4d38a649222493c5e9f11f7a5?s=96&d=mm&r=g\",\"caption\":\"Matt\"},\"url\":\"https:\/\/monocroft.com\/author\/matthew\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Perform Distinct Count Searches for Dates Values in Power BI - Monocroft","description":"In this article, you will learn how to perform distinct count searches for date values in Power BI to better analyze and visualize your data.","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:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/","og_locale":"en_US","og_type":"article","og_title":"How to Perform Distinct Count Searches for Dates Values in Power BI - Monocroft","og_description":"In this article, you will learn how to perform distinct count searches for date values in Power BI to better analyze and visualize your data.","og_url":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/","og_site_name":"Monocroft","article_published_time":"2023-05-27T08:48:41+00:00","article_modified_time":"2023-08-30T10:16:37+00:00","og_image":[{"width":720,"height":405,"url":"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg","type":"image\/jpeg"}],"author":"Matt","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Matt","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#article","isPartOf":{"@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/"},"author":{"name":"Matt","@id":"https:\/\/monocroft.com\/#\/schema\/person\/3aeab97c9b5661d211c0742c48f024b3"},"headline":"How to Perform Distinct Count Searches for Dates Values in Power BI","datePublished":"2023-05-27T08:48:41+00:00","dateModified":"2023-08-30T10:16:37+00:00","mainEntityOfPage":{"@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/"},"wordCount":1104,"publisher":{"@id":"https:\/\/monocroft.com\/#organization"},"image":{"@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#primaryimage"},"thumbnailUrl":"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg","articleSection":["Guides","PowerBI"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/","url":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/","name":"How to Perform Distinct Count Searches for Dates Values in Power BI - Monocroft","isPartOf":{"@id":"https:\/\/monocroft.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#primaryimage"},"image":{"@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#primaryimage"},"thumbnailUrl":"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg","datePublished":"2023-05-27T08:48:41+00:00","dateModified":"2023-08-30T10:16:37+00:00","description":"In this article, you will learn how to perform distinct count searches for date values in Power BI to better analyze and visualize your data.","breadcrumb":{"@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#primaryimage","url":"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg","contentUrl":"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/05\/distinct-count-in-power-bi-monocroft.jpg","width":720,"height":405,"caption":"distinct count in power bi - monocroft"},{"@type":"BreadcrumbList","@id":"https:\/\/monocroft.com\/how-to-perform-distinct-count-searches-for-dates-values-in-power-bi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/monocroft.com\/"},{"@type":"ListItem","position":2,"name":"How to Perform Distinct Count Searches for Dates Values in Power BI"}]},{"@type":"WebSite","@id":"https:\/\/monocroft.com\/#website","url":"https:\/\/monocroft.com\/","name":"Monocroft","description":"Monocroft Tech","publisher":{"@id":"https:\/\/monocroft.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/monocroft.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/monocroft.com\/#organization","name":"Triburge","url":"https:\/\/monocroft.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/monocroft.com\/#\/schema\/logo\/image\/","url":"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/07\/monocroft-logo.png","contentUrl":"https:\/\/monocroft.com\/wp-content\/uploads\/2023\/07\/monocroft-logo.png","width":512,"height":512,"caption":"Triburge"},"image":{"@id":"https:\/\/monocroft.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/monocroft.com\/#\/schema\/person\/3aeab97c9b5661d211c0742c48f024b3","name":"Matt","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/monocroft.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/c06bcee4d38a649222493c5e9f11f7a5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c06bcee4d38a649222493c5e9f11f7a5?s=96&d=mm&r=g","caption":"Matt"},"url":"https:\/\/monocroft.com\/author\/matthew\/"}]}},"_links":{"self":[{"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/posts\/10450"}],"collection":[{"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/comments?post=10450"}],"version-history":[{"count":77,"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/posts\/10450\/revisions"}],"predecessor-version":[{"id":14838,"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/posts\/10450\/revisions\/14838"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/media\/10453"}],"wp:attachment":[{"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/media?parent=10450"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/categories?post=10450"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/monocroft.com\/wp-json\/wp\/v2\/tags?post=10450"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}