{"id":8561,"date":"2022-07-05T06:56:00","date_gmt":"2022-07-05T04:56:00","guid":{"rendered":"https:\/\/expert-only-com.preview-domain.com\/?p=8561"},"modified":"2022-07-07T16:13:58","modified_gmt":"2022-07-07T14:13:58","slug":"organize-ssas-measures-in-folders-with-mdx","status":"publish","type":"post","link":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/","title":{"rendered":"Organize SSAS measures in folders with MDX"},"content":{"rendered":"\n<p>How to hide and organize SSAS measures in folders with MDX code ? And allow the possibility to group them for Analysis Services end-users? Indeed, browsing an SSAS cube from Microsoft Excel or Power BI for Ad-Hoc Reporting is very convenient.<\/p>\n\n\n\n<p>However, if the list of measures calculated in MDX is several tens or hundreds of items, they must be classified. Ideally, they should be classified by functional groups. And by sub-groups organised by the time axis.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mdx-code-to-organize-ssas-measures-into-folders\">MDX code to organize SSAS measures into folders<\/h2>\n\n\n\n<p>First, all measures calculated in <a href=\"https:\/\/corporatefinanceinstitute.com\/resources\/knowledge\/accounting\/year-to-date-ytd\/\" target=\"_blank\" rel=\"noreferrer noopener\">YTD<\/a> will be close to the current value. Here is a deliberately simple but explicit example for classifying SSAS indicators in folders:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>Sales<\/strong><ul><li>Sales YTD (Year-To-Date)<\/li><li>Sales MTD (Month-To-Date)<\/li><li>Sales LY (Last Year)<\/li><li>Sales LM (Last Month)<\/li><\/ul><\/li><li><strong>Stock<\/strong><ul><li>Stock YTD (Year-To-Date)<\/li><li>Stock MTD (Month-To-Date)<\/li><li>Stock LY (Last Year)<\/li><li>Stock LM (Last Month)<\/li><\/ul><\/li><\/ul>\n\n\n\n<p>This is because financial data is often associated with the past year, the past quarter and the past month.<\/p>\n\n\n\n<p>On the other hand, it is preferable to classify the measures in a functional way rather than in technical files. For greater usability in Reporting from cubes, the following properties are very useful:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>MDX DISPLAY_FOLDER<\/strong><\/li><li><strong>VISIBLE<\/strong><\/li><li><strong>FORMAT_STRING<\/strong><\/li><\/ul>\n\n\n\n<p>Secondly, this example of MDX code creates a calculated indicator based on a group of measures in our &#8220;.cube&#8221; file. This group of measures usually contains one or more fields from a table previously created in the Data View named &#8220;Example_View.dsv&#8221;:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"mssql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">CREATE MEMBER CURRENTCUBE.[Measures].[Area - Sales] AS [Measures].[Amount - Group],\nFORMAT_STRING = \"#,##0.00 \u20ac;-#,##0.00 \u20ac\",\nVISIBLE = 1 ,\nDISPLAY_FOLDER = 'Sales';<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Explanation of the MDX code to structure calculated measures in a folder<\/h3>\n\n\n\n<p>Finally, this example MDX script allows you to easily hide and organize SSAS measures into folders. Code explanation :<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Start by creating the indicator in the cube and indicating the group of measures on which the SSAS indicator is based with the command &#8220;MDX CREATE MEMBER &lt;\u2026&gt; AS &#8220;.<\/li><li>Then indicate the data format which will be separated by a comma every 3 digits. Or with 2 digits after the comma and in euro currency (\u20ac sign) using the <strong>FORMAT_STRING<\/strong> property.<\/li><li>Set the MDX property <strong>VISIBLE<\/strong> to 1 to display the indicator to users. To be checked from the explorer and the SSAS connection from Excel or Power BI for example.<\/li><li>Indicate which folder will contain the calculated indicator with the <strong>DISPLAY_FOLDER<\/strong> property. In our cube example, the indicator will be visible in the &#8220;Sales&#8221; folder.<\/li><\/ol>\n\n\n\n<p>Finally, this short SSAS tutorial explains step by step how to organize SSAS measures in folders with a simple MDX script. To go further in Microsoft OLAP learning, here is another article on <strong><a href=\"https:\/\/expert-only.com\/en\/concepts\/xmla-stands-for-xml-for-analysis\/\">XMLA language<\/a><\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-embed is-type-wp-embed is-provider-tutoriels-et-exemples-sql-server-et-microsoft-it wp-block-embed-tutoriels-et-exemples-sql-server-et-microsoft-it\"><div class=\"wp-block-embed__wrapper\">\nhttps:\/\/expert-only.com\/en\/it-concepts\/xmla-stands-for-xml-for-analysis\/\n<\/div><\/figure>\n","protected":false},"excerpt":{"rendered":"<div class=\"mh-excerpt\"><p>How to hide and organize SSAS measures in folders with MDX code ? And allow the possibility to group them for Analysis Services end-users? Indeed, browsing an SSAS cube from Microsoft Excel or Power BI for Ad-Hoc Reporting is <a class=\"mh-excerpt-more\" href=\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/\" title=\"Organize SSAS measures in folders with MDX\">&#8230;<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":5591,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[600],"tags":[],"class_list":{"0":"post-8561","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-ssas"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.7 (Yoast SEO v26.2) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Organize SSAS measures in folders with MDX - Analysis Services<\/title>\n<meta name=\"description\" content=\"To hide and organize SSAS measures in folders with MDX, use this code or edit Analysis Services options like DISPLAY_FOLDER.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Organize SSAS measures in folders with MDX\" \/>\n<meta property=\"og:description\" content=\"To hide and organize SSAS measures in folders with MDX, use this code or edit Analysis Services options like DISPLAY_FOLDER.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/\" \/>\n<meta property=\"og:site_name\" content=\"SQL and IT Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-05T04:56:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-07T14:13:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Expert-Only\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@expert_only\" \/>\n<meta name=\"twitter:site\" content=\"@expert_only\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Expert-Only\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/\"},\"author\":{\"name\":\"Expert-Only\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\"},\"headline\":\"Organize SSAS measures in folders with MDX\",\"datePublished\":\"2022-07-05T04:56:00+00:00\",\"dateModified\":\"2022-07-07T14:13:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/\"},\"wordCount\":435,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg\",\"articleSection\":[\"SSAS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/\",\"url\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/\",\"name\":\"Organize SSAS measures in folders with MDX - Analysis Services\",\"isPartOf\":{\"@id\":\"https:\/\/expert-only.com\/en\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg\",\"datePublished\":\"2022-07-05T04:56:00+00:00\",\"dateModified\":\"2022-07-07T14:13:58+00:00\",\"description\":\"To hide and organize SSAS measures in folders with MDX, use this code or edit Analysis Services options like DISPLAY_FOLDER.\",\"breadcrumb\":{\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#primaryimage\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"en\",\"item\":\"https:\/\/expert-only.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Organize SSAS measures in folders with MDX\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/expert-only.com\/en\/#website\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"name\":\"SQL and IT Tutorials\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/expert-only.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/expert-only.com\/en\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/expert-only.com\/en\/#organization\",\"name\":\"Expert-Only\",\"url\":\"https:\/\/expert-only.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"contentUrl\":\"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg\",\"width\":381,\"height\":174,\"caption\":\"Expert-Only\"},\"image\":{\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/ExpertOnlyCom\/\",\"https:\/\/x.com\/expert_only\",\"https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef\",\"name\":\"Expert-Only\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g\",\"caption\":\"Expert-Only\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Organize SSAS measures in folders with MDX - Analysis Services","description":"To hide and organize SSAS measures in folders with MDX, use this code or edit Analysis Services options like DISPLAY_FOLDER.","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:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/","og_locale":"en_US","og_type":"article","og_title":"Organize SSAS measures in folders with MDX","og_description":"To hide and organize SSAS measures in folders with MDX, use this code or edit Analysis Services options like DISPLAY_FOLDER.","og_url":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/","og_site_name":"SQL and IT Tutorials","article_publisher":"https:\/\/www.facebook.com\/ExpertOnlyCom\/","article_published_time":"2022-07-05T04:56:00+00:00","article_modified_time":"2022-07-07T14:13:58+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg","type":"image\/jpeg"}],"author":"Expert-Only","twitter_card":"summary_large_image","twitter_creator":"@expert_only","twitter_site":"@expert_only","twitter_misc":{"Written by":"Expert-Only","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#article","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/"},"author":{"name":"Expert-Only","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef"},"headline":"Organize SSAS measures in folders with MDX","datePublished":"2022-07-05T04:56:00+00:00","dateModified":"2022-07-07T14:13:58+00:00","mainEntityOfPage":{"@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/"},"wordCount":435,"commentCount":0,"publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"image":{"@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg","articleSection":["SSAS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/","url":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/","name":"Organize SSAS measures in folders with MDX - Analysis Services","isPartOf":{"@id":"https:\/\/expert-only.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#primaryimage"},"image":{"@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#primaryimage"},"thumbnailUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg","datePublished":"2022-07-05T04:56:00+00:00","dateModified":"2022-07-07T14:13:58+00:00","description":"To hide and organize SSAS measures in folders with MDX, use this code or edit Analysis Services options like DISPLAY_FOLDER.","breadcrumb":{"@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#primaryimage","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/08\/money-DFB21C1941E_1920x1080.jpeg","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/expert-only.com\/en\/ssas\/organize-ssas-measures-in-folders-with-mdx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"en","item":"https:\/\/expert-only.com\/en\/"},{"@type":"ListItem","position":2,"name":"Organize SSAS measures in folders with MDX"}]},{"@type":"WebSite","@id":"https:\/\/expert-only.com\/en\/#website","url":"https:\/\/expert-only.com\/en\/","name":"SQL and IT Tutorials","description":"","publisher":{"@id":"https:\/\/expert-only.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/expert-only.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/expert-only.com\/en\/#organization","name":"Expert-Only","url":"https:\/\/expert-only.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","contentUrl":"https:\/\/expert-only.com\/wp-content\/uploads\/2017\/09\/cropped-logo_Expert-Only.jpg","width":381,"height":174,"caption":"Expert-Only"},"image":{"@id":"https:\/\/expert-only.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ExpertOnlyCom\/","https:\/\/x.com\/expert_only","https:\/\/www.youtube.com\/channel\/UCMS5sR_FwAetB0FmciNvUaA"]},{"@type":"Person","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/406a9576b52944f018739a42046873ef","name":"Expert-Only","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/expert-only.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/084b15660763ff5b13bb60b2f52f97bb?s=96&d=identicon&r=g","caption":"Expert-Only"}}]}},"_links":{"self":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/8561","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/comments?post=8561"}],"version-history":[{"count":0,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/posts\/8561\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media\/5591"}],"wp:attachment":[{"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/media?parent=8561"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/categories?post=8561"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/expert-only.com\/en\/wp-json\/wp\/v2\/tags?post=8561"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}