<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: PowerBI Custom Visual - Licensing API - Doesn't return an attribute indicating the Service Plan in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/PowerBI-Custom-Visual-Licensing-API-Doesn-t-return-an-attribute/m-p/4795793#M12736</link>
    <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Hey&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/438849"&gt;@dakdgdl&lt;/a&gt;,&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Yeah, the Licensing API only gives you spIdentifier and state - no friendly plan names. Pretty frustrating!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/licensing-api" target="_self"&gt;https://learn.microsoft.com/en-us/power-bi/developer/visuals/licensing-api&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;What I Did&lt;/FONT&gt;&lt;/H3&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;&lt;STRONG&gt;1. Map Your Plan IDs&lt;/STRONG&gt; Go to Partner Center → Your Offer → Plan Overview. Copy those Service IDs and create a simple mapping:&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;const planNames = {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;"abc123-core-id": "Core",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;"def456-pro-id": "Pro", &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;"ghi789-enterprise-id": "Enterprise"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;};&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;2. Simple Plan Detection Function&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;function getUserPlan(servicePlans) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;const activePlans = servicePlans.filter(p =&amp;gt; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;p.state === "Active" || p.state === "Warning"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;);&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;for (let plan of activePlans) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;if (planNames[plan.spIdentifier]) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;return planNames[plan.spIdentifier];&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;return "No License";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;}&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;3. Use It in Your License Check&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;this.licenseManager.getAvailableServicePlans()&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;.then(result =&amp;gt; {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;if (result.isLicenseInfoAvailable &amp;amp;&amp;amp; result.plans) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;const userPlan = getUserPlan(result.plans);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;// Now you know if it's Core, Pro, or Enterprise!&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;this.enableFeaturesFor(userPlan);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;});&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Pro Tips from Experience&lt;/FONT&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Cache the license info - don't call the API repeatedly&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Handle multiple active licenses (user might have upgraded)&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Always check for "Warning" state too (grace period)&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Test with different license scenarios&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Why This Works&lt;/FONT&gt;&lt;/H3&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Microsoft intentionally doesn't expose plan names for security. The spIdentifier is your unique key - you just need to maintain the mapping yourself.&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Fixed? ✓ Mark it • Share it • Help others!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Best Regards,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Jainesh Poojara | Power BI Developer&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Aug 2025 12:12:31 GMT</pubDate>
    <dc:creator>jaineshp</dc:creator>
    <dc:date>2025-08-13T12:12:31Z</dc:date>
    <item>
      <title>PowerBI Custom Visual - Licensing API - Doesn't return an attribute indicating the Service Plan Name</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/PowerBI-Custom-Visual-Licensing-API-Doesn-t-return-an-attribute/m-p/4795679#M12735</link>
      <description>&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our custome visual is now published in the Microsoft AppSource with 3 different plans as below.&lt;/P&gt;&lt;P&gt;Core, Pro and Enterprise.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When we call the&amp;nbsp;Licensing API as below page guides, it returns the "&lt;SPAN&gt;ServicePlan" array with each array node having "State" and "spIdentifier" attributes.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/licensing-api" target="_blank"&gt;https://learn.microsoft.com/en-us/power-bi/developer/visuals/licensing-api&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;But each request return a specific identifier, that we can not specifically identify whether the request sent by Core, Pro or Enterprise vesrsion,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So, Don't we have another attribute in the array nodes, like "Plan Name" or something similar?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Then we can specificaly validate the version and do the needful prompts to the user, based on the version/subscription he currently use.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Please advice on how to identify the service plan name, by the response got from this "Licensing API".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Lasantha&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 11:02:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/PowerBI-Custom-Visual-Licensing-API-Doesn-t-return-an-attribute/m-p/4795679#M12735</guid>
      <dc:creator>dakdgdl</dc:creator>
      <dc:date>2025-08-13T11:02:49Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBI Custom Visual - Licensing API - Doesn't return an attribute indicating the Service Plan</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/PowerBI-Custom-Visual-Licensing-API-Doesn-t-return-an-attribute/m-p/4795793#M12736</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Hey&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/438849"&gt;@dakdgdl&lt;/a&gt;,&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Yeah, the Licensing API only gives you spIdentifier and state - no friendly plan names. Pretty frustrating!&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/developer/visuals/licensing-api" target="_self"&gt;https://learn.microsoft.com/en-us/power-bi/developer/visuals/licensing-api&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;What I Did&lt;/FONT&gt;&lt;/H3&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;&lt;STRONG&gt;1. Map Your Plan IDs&lt;/STRONG&gt; Go to Partner Center → Your Offer → Plan Overview. Copy those Service IDs and create a simple mapping:&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;const planNames = {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;"abc123-core-id": "Core",&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;"def456-pro-id": "Pro", &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;"ghi789-enterprise-id": "Enterprise"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;};&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;2. Simple Plan Detection Function&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;function getUserPlan(servicePlans) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;const activePlans = servicePlans.filter(p =&amp;gt; &lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;p.state === "Active" || p.state === "Warning"&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;);&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;for (let plan of activePlans) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;if (planNames[plan.spIdentifier]) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;return planNames[plan.spIdentifier];&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;return "No License";&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;}&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;3. Use It in Your License Check&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;this.licenseManager.getAvailableServicePlans()&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;.then(result =&amp;gt; {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;if (result.isLicenseInfoAvailable &amp;amp;&amp;amp; result.plans) {&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;const userPlan = getUserPlan(result.plans);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;// Now you know if it's Core, Pro, or Enterprise!&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;this.enableFeaturesFor(userPlan);&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;}&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;});&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;H3&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Pro Tips from Experience&lt;/FONT&gt;&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Cache the license info - don't call the API repeatedly&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Handle multiple active licenses (user might have upgraded)&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Always check for "Warning" state too (grace period)&lt;/FONT&gt;&lt;/LI&gt;&lt;LI&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Test with different license scenarios&lt;/FONT&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Why This Works&lt;/FONT&gt;&lt;/H3&gt;&lt;P class=""&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Microsoft intentionally doesn't expose plan names for security. The spIdentifier is your unique key - you just need to maintain the mapping yourself.&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Fixed? ✓ Mark it • Share it • Help others!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Best Regards,&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="arial,helvetica,sans-serif" size="2" color="#000000"&gt;Jainesh Poojara | Power BI Developer&lt;/FONT&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 12:12:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/PowerBI-Custom-Visual-Licensing-API-Doesn-t-return-an-attribute/m-p/4795793#M12736</guid>
      <dc:creator>jaineshp</dc:creator>
      <dc:date>2025-08-13T12:12:31Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBI Custom Visual - Licensing API - Doesn't return an attribute indicating the Service Plan</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/PowerBI-Custom-Visual-Licensing-API-Doesn-t-return-an-attribute/m-p/4796683#M12740</link>
      <description>&lt;P&gt;Thanks...&lt;/P&gt;&lt;P&gt;As you saying each spIdentifier is a unique string based on the version/subscription.&lt;/P&gt;&lt;P&gt;So that it make sense..&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 06:52:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/PowerBI-Custom-Visual-Licensing-API-Doesn-t-return-an-attribute/m-p/4796683#M12740</guid>
      <dc:creator>dakdgdl</dc:creator>
      <dc:date>2025-08-14T06:52:55Z</dc:date>
    </item>
  </channel>
</rss>

