<?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: Programmatically setting TAGs on VIEWs in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131285#M49027</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to execute your example, but it failed with this error:&lt;/P&gt;&lt;P&gt;"&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;A class="" href="https://learn.microsoft.com/azure/databricks/error-messages/error-classes#invalid_set_syntax" target="_blank" rel="noopener noreferrer"&gt;INVALID_SET_SYNTAX&lt;/A&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt; Expected format is 'SET', 'SET key', or 'SET key=value'. If you want to include special characters in key, or include semicolon in value, please use backquotes, e.g., SET `key`=`value`. SQLSTATE: 42000".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could the cluster setup be an issue? Below is the extract of the cluster's JSON:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;    "spark_version": "15.4.x-scala2.12",
    "spark_conf": {
        "spark.databricks.delta.preview.enabled": "true",
        "spark.databricks.conda.condaMagic.enabled": "true",
        "spark.master": "local[*, 4]",
        "spark.databricks.driver.disableDefaultMavenCentralResolver": "true",
        "spark.databricks.driver.disableSparkPackagesResolver": "true",
        "spark.databricks.cluster.profile": "singleNode"
    },
    "node_type_id": "Standard_DS3_v2",
    "driver_node_type_id": "Standard_DS3_v2"&lt;/LI-CODE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Stefan&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Sep 2025 19:42:11 GMT</pubDate>
    <dc:creator>stefan_erste</dc:creator>
    <dc:date>2025-09-08T19:42:11Z</dc:date>
    <item>
      <title>Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131240#M49015</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;In order to achieve data stability in our Workspace, our IT team has given us access to the data through VIEWs on top of an ingestion schema.&lt;/P&gt;&lt;P&gt;Now I want to provide metadata to VIEWs in form of TAGs (IT does not want to cover this used case). They are stored in a table and I planned to do a loop and dynamically create SQL statements. I have confirmed the SQL syntax as&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;SET TAG ON COLUMN &lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;catalog_name.schema_name.table_name.colum_name&amp;nbsp;`tag_key` = `tag_value`;&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;by running it in the SQL editor.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;However, it does not work in a notebook using pyspark, but rather returns the following error:&lt;/DIV&gt;&lt;DIV&gt;"&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;A class="" href="https://learn.microsoft.com/azure/databricks/error-messages/error-classes#invalid_property_key" target="_blank" rel="noopener noreferrer"&gt;INVALID_PROPERTY_KEY&lt;/A&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt; "TAG ON COLUMN prod_aut_crp00_lab_catalog.access_uc045_crisp_db.prod_parsed_crisp_crrp_vw_fct_deal_sas.CD_AGG_UAMRT_MDF_EST_LCOA `reporting_field_name`" is an invalid property key, please use quotes, e.g. SET "TAG ON COLUMN prod_aut_crp00_lab_catalog.access_uc045_crisp_db.prod_parsed_crisp_crrp_vw_fct_deal_sas.CD_AGG_UAMRT_MDF_EST_LCOA `reporting_field_name`"="DCO - Aggregated Unamortized Contractual Modifications and Changes in Estimates Local GAAP LCOA". SQLSTATE: 42602".&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I tried adjusting per suggestion but again it fails saying that quotes after set are incorrect syntax (which is logical).&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Any help is appreciated!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Stefan&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 08 Sep 2025 15:23:53 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131240#M49015</guid>
      <dc:creator>stefan_erste</dc:creator>
      <dc:date>2025-09-08T15:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131245#M49017</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/183397"&gt;@stefan_erste&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I'm not right now in front of my PC to check this but maybe try to use below syntax:&amp;nbsp;&lt;/P&gt;&lt;P&gt;ALTER VIEW catalog.schema.view_name ALTER COLUMN column_name SET TAGS (key' = 'value)&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 15:52:54 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131245#M49017</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-08T15:52:54Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131248#M49019</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;unfortunately IT won't let us have alter rights so not to accidentally drop them. All they have given is the SET TAG right.&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 16:07:58 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131248#M49019</guid>
      <dc:creator>stefan_erste</dc:creator>
      <dc:date>2025-09-08T16:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131252#M49020</link>
      <description>&lt;P&gt;Thanks for the info. When I come back to home I'll try to find a workaround using SET Tag command&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 16:36:41 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131252#M49020</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-08T16:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131255#M49022</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/183397"&gt;@stefan_erste&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Ok, so in my case I was able to set tag in pyspark using following way:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;spark.sql(f"""
    SET TAG ON COLUMN default.employees.Id test_tag = test_value
""")&lt;/LI-CODE&gt;&lt;P&gt;Of course you can do it dynamically using loop and f-string:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;tags = [
    "my_tag3 = my_tag_value",
    "my_tag4 = my_tag_other_value"
]
for tag in tags:
    query_template = f"SET TAG ON COLUMN default.employees.Id {tag}"
    #print(query_template)
    spark.sql(query_template)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 17:27:20 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131255#M49022</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-08T17:27:20Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131285#M49027</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried to execute your example, but it failed with this error:&lt;/P&gt;&lt;P&gt;"&lt;SPAN&gt;[&lt;/SPAN&gt;&lt;A class="" href="https://learn.microsoft.com/azure/databricks/error-messages/error-classes#invalid_set_syntax" target="_blank" rel="noopener noreferrer"&gt;INVALID_SET_SYNTAX&lt;/A&gt;&lt;SPAN&gt;]&lt;/SPAN&gt;&lt;SPAN&gt; Expected format is 'SET', 'SET key', or 'SET key=value'. If you want to include special characters in key, or include semicolon in value, please use backquotes, e.g., SET `key`=`value`. SQLSTATE: 42000".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Could the cluster setup be an issue? Below is the extract of the cluster's JSON:&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;    "spark_version": "15.4.x-scala2.12",
    "spark_conf": {
        "spark.databricks.delta.preview.enabled": "true",
        "spark.databricks.conda.condaMagic.enabled": "true",
        "spark.master": "local[*, 4]",
        "spark.databricks.driver.disableDefaultMavenCentralResolver": "true",
        "spark.databricks.driver.disableSparkPackagesResolver": "true",
        "spark.databricks.cluster.profile": "singleNode"
    },
    "node_type_id": "Standard_DS3_v2",
    "driver_node_type_id": "Standard_DS3_v2"&lt;/LI-CODE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Stefan&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 19:42:11 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131285#M49027</guid>
      <dc:creator>stefan_erste</dc:creator>
      <dc:date>2025-09-08T19:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131287#M49028</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/183397"&gt;@stefan_erste&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I'll check with the exact same cluster setting tomorrow's morning.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the meantime - do you use some special characters in your tag's key or value?&lt;/P&gt;&lt;P&gt;Because if you have unusual tags like below - in this case I have dollar sign in my key and space in my tag value I get the same error:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_0-1757361181180.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19838iDDCE0910B9C62E43/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_0-1757361181180.png" alt="szymon_dybczak_0-1757361181180.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To mitigate that you need to escape using backtick, like below:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;tags = [
    "`my_tag$` = `my tag value`"    
]
for tag in tags:
    query_template = f"SET TAG ON COLUMN default.employees.Id {tag}"
    #print(query_template)
    spark.sql(query_template)&lt;/LI-CODE&gt;&lt;P&gt;With backticks it works as expected and I can use non standard characters to define tag's key and value:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_1-1757361293178.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19839iEA9A8AA652C8CD25/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_1-1757361293178.png" alt="szymon_dybczak_1-1757361293178.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And as a prove that it worked, here an output from information_schema.column_tags:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_2-1757361369063.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19840i346892B841C36522/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_2-1757361369063.png" alt="szymon_dybczak_2-1757361369063.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 19:56:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131287#M49028</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-08T19:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131291#M49029</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The loop fails on the first SET TAG, so I just printed it out. Here it is&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;SET TAG ON COLUMN prod_aut_crp00_lab_catalog.crisp_db.prod_parsed_crisp_crrp_vw_fct_cust.DCO_AMG_AGG_INCOME reporting_field_name = DCO_Aggregated_Income&lt;/LI-CODE&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Stefan&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 19:56:44 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131291#M49029</guid>
      <dc:creator>stefan_erste</dc:creator>
      <dc:date>2025-09-08T19:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131299#M49032</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/183397"&gt;@stefan_erste&lt;/a&gt;, I ran into the same situation and managed to get it working from a notebook. The main issue isn’t really the cluster but the way the SQL parser handles the command. When you’re inside PySpark you need to fully qualify the column path with &amp;lt;catalog&amp;gt;.&amp;lt;schema&amp;gt;.&amp;lt;view&amp;gt;.&amp;lt;column&amp;gt;, and also make sure to put backticks around both the tag key and the value, otherwise it throws that syntax error you saw.&lt;/P&gt;&lt;P&gt;For example, what worked for me was something like:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;spark.sql("""
SET TAG ON COLUMN workspace.wiliam_lab.vw_sales.customerID
`reporting_field_name` = `Customer Identifier Test`
""")
&lt;/LI-CODE&gt;&lt;P&gt;Once I used this format, the tag showed up in information_schema.column_tags and in the UI as expected. If you plan to loop over a mapping table and apply multiple tags dynamically, the same pattern works fine with f-strings. The only catch is that if you run it more than once with the same key/value, Unity Catalog complains with a duplicate assignment error. To get around that, I either skip when the tag already exists with the same value, or unset it first and then set it again if I need to update the value.&lt;/P&gt;&lt;P&gt;After doing this, I was able to tag my views programmatically without issues. So as long as you backtick the key and value and fully qualify the column name, you should be good to go.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 20:37:07 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131299#M49032</guid>
      <dc:creator>WiliamRosa</dc:creator>
      <dc:date>2025-09-08T20:37:07Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131304#M49034</link>
      <description>&lt;P&gt;I've already suggested that and even provide code with for loop, backticks and f-string...&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131287/highlight/true#M49028" target="_blank"&gt;Re: Programmatically setting TAGs on VIEWs - Databricks Community - 131240&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_0-1757365161773.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19846i639ECE19D2192012/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_0-1757365161773.png" alt="szymon_dybczak_0-1757365161773.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And &lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/183397"&gt;@stefan_erste&lt;/a&gt;&amp;nbsp;already using fully qualified name. I think he's only missing backticks&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="szymon_dybczak_1-1757365207939.png" style="width: 400px;"&gt;&lt;img src="https://community.databricks.com/t5/image/serverpage/image-id/19847iEC5390563971277F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="szymon_dybczak_1-1757365207939.png" alt="szymon_dybczak_1-1757365207939.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 21:00:28 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131304#M49034</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-08T21:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131343#M49052</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/110502"&gt;@szymon_dybczak&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/179612"&gt;@WiliamRosa&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I have used backticks from the very start (you'll see it if you re-check my original post).&lt;/P&gt;&lt;P&gt;It is definitely a cluster issue as I am able to assign tags using serverless cluster. The reason I was using a dedicated one is because I was pulling data from an excel on a sharepoint location, and this is not working with serverless.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So in the end I will make a two-step job. First with dedicated cluster that will store all the tags into a table and the second one with serverless that will do the assignment.&lt;/P&gt;&lt;P&gt;Thank you both for the time and effort!&lt;/P&gt;&lt;P&gt;KR,&lt;BR /&gt;Stefan&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 07:22:43 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131343#M49052</guid>
      <dc:creator>stefan_erste</dc:creator>
      <dc:date>2025-09-09T07:22:43Z</dc:date>
    </item>
    <item>
      <title>Re: Programmatically setting TAGs on VIEWs</title>
      <link>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131344#M49053</link>
      <description>&lt;P&gt;Thanks for info&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/183397"&gt;@stefan_erste&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 07:24:21 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/programmatically-setting-tags-on-views/m-p/131344#M49053</guid>
      <dc:creator>szymon_dybczak</dc:creator>
      <dc:date>2025-09-09T07:24:21Z</dc:date>
    </item>
  </channel>
</rss>

