<?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: Setting _time when field is inconsistent in Json ingestion in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746875#M118681</link>
    <description>&lt;P&gt;Interestingly I did consider this as I posted it and decided not to do := based on the examples of setting _time from Rich’s examples at&amp;nbsp;&lt;A href="https://github.com/silkyrich/ingest_eval_examples/blob/master/default/transforms.conf" target="_blank"&gt;https://github.com/silkyrich/ingest_eval_examples/blob/master/default/transforms.conf&lt;/A&gt; which only use = (but oddly only on _time fields), I wonder why this is the case? I might check but I thought it wasn’t possible to set a multi value field for _time (and _raw) using ingest eval?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 23 May 2025 19:49:29 GMT</pubDate>
    <dc:creator>livehybrid</dc:creator>
    <dc:date>2025-05-23T19:49:29Z</dc:date>
    <item>
      <title>Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746798#M118670</link>
      <description>&lt;P&gt;I have a Json file which contains a "date" field. The date field in my data that can either be of format&amp;nbsp;%Y-%m-%d %H:%M:%S&amp;nbsp;(e.g. 2025-05-23 9:35:35 PM) or&amp;nbsp;%Y-%m-%d (e.g. 2025-05-23). The only way to ingest this Json is via manual ingestion.&lt;/P&gt;&lt;P&gt;When trying to set the _time field on ingest, setting the timestamp format to&amp;nbsp;%Y-%m-%d %H:%M:%S will fail and default to the wrong _time value for date fields with format&amp;nbsp;%Y-%m-%d. However, setting timestamp to format&amp;nbsp;%Y-%m-%d won't capture the HMS part. Was there a way to coalesce these so that it will check if HMS is present, and if so, then apply&amp;nbsp;%Y-%m-%d %H:%M:%S format? Or is there a workaround so at least the data ingestion for _time is accurate?&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 01:55:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746798#M118670</guid>
      <dc:creator>cherrypick</dc:creator>
      <dc:date>2025-05-23T01:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746803#M118671</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/269333"&gt;@cherrypick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SPL with Dummy Data Using makeresults&lt;/P&gt;&lt;PRE&gt;| makeresults count=10&lt;BR /&gt;| streamstats count as id&lt;BR /&gt;| eval raw_json=case(&lt;BR /&gt;id=1, "{\"date\": \"2025-05-23 9:35:35 PM\", \"event\": \"Login\"}",&lt;BR /&gt;id=2, "{\"date\": \"2025-05-23\", \"event\": \"Logout\"}",&lt;BR /&gt;id=3, "{\"date\": \"2025-05-24 10:15:00 AM\", \"event\": \"Login\"}",&lt;BR /&gt;id=4, "{\"date\": \"2025-05-24\", \"event\": \"Logout\"}",&lt;BR /&gt;id=5, "{\"date\": \"2025-05-25 11:45:00 AM\", \"event\": \"Update\"}",&lt;BR /&gt;id=6, "{\"date\": \"2025-05-25\", \"event\": \"Login\"}",&lt;BR /&gt;id=7, "{\"date\": \"2025-05-26 12:00:00 PM\", \"event\": \"Logout\"}",&lt;BR /&gt;id=8, "{\"date\": \"2025-05-26\", \"event\": \"Update\"}",&lt;BR /&gt;id=9, "{\"date\": \"2025-05-27 1:30:00 PM\", \"event\": \"Login\"}",&lt;BR /&gt;id=10, "{\"date\": \"2025-05-27\", \"event\": \"Logout\"}"&lt;BR /&gt;)&lt;BR /&gt;| spath input=raw_json&lt;BR /&gt;| eval parsed_time = if(match(date, "\\d{4}-\\d{2}-\\d{2} \\d{1,2}:\\d{2}:\\d{2} [APMapm]{2}"),&lt;BR /&gt;strptime(date, "%Y-%m-%d %I:%M:%S %p"),&lt;BR /&gt;strptime(date, "%Y-%m-%d"))&lt;BR /&gt;| eval _time = parsed_time&lt;BR /&gt;| table _time, date, event&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_3-1747967671263.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39113i57B8249CA4F2DBF9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_3-1747967671263.png" alt="kiran_panchavat_3-1747967671263.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;| makeresults count=4&lt;BR /&gt;| streamstats count AS row&lt;BR /&gt;| eval _raw=case(&lt;BR /&gt;row=1, "{\"date\":\"2025-05-23 21:35:35\"}",&lt;BR /&gt;row=2, "{\"date\":\"2025-05-22\"}",&lt;BR /&gt;row=3, "{\"date\":\"2025-05-21 15:20:00\"}",&lt;BR /&gt;row=4, "{\"date\":\"2025-05-20\"}"&lt;BR /&gt;)&lt;BR /&gt;| spath&lt;BR /&gt;| eval _time=if(match(date, "\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}"), &lt;BR /&gt;strptime(date, "%Y-%m-%d %H:%M:%S"), &lt;BR /&gt;strptime(date, "%Y-%m-%d"))&lt;BR /&gt;| table date _time&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_2-1747967562637.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39111iD0178AEBF6F29F3B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_2-1747967562637.png" alt="kiran_panchavat_2-1747967562637.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 02:36:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746803#M118671</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-05-23T02:36:25Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746806#M118672</link>
      <description>&lt;P&gt;I need this to be done at ingest and not during search. The reason is that Splunk first filters on _time so not having the correct _time values will filter out results that shouldn't.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cherrypick_0-1747967670995.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39112iFD4C30BC694664D6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cherrypick_0-1747967670995.png" alt="cherrypick_0-1747967670995.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 02:35:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746806#M118672</guid>
      <dc:creator>cherrypick</dc:creator>
      <dc:date>2025-05-23T02:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746807#M118673</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/269333"&gt;@cherrypick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then you can try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;props.conf&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;[json_splunk]&lt;BR /&gt;SHOULD_LINEMERGE = false&lt;BR /&gt;LINE_BREAKER = ([\r\n]+)&lt;BR /&gt;TIME_PREFIX = "date":\s*"&lt;BR /&gt;TIME_FORMAT = %Y-%m-%d %I:%M:%S %p&amp;nbsp;&lt;BR /&gt;MAX_TIMESTAMP_LOOKAHEAD = 60&lt;BR /&gt;TRANSFORMS-normalize = fix_date_field, fix_time_hour&lt;/PRE&gt;&lt;P&gt;transforms.conf&lt;/P&gt;&lt;PRE&gt;[fix_date_field]&lt;BR /&gt;REGEX = ("date":\s*")(\d{4}-\d{2}-\d{2}|\d{2}-\d{2}-\d{2})(")&lt;BR /&gt;FORMAT = $1$2 12:00:00 AM$3&lt;BR /&gt;DEST_KEY = _raw&lt;BR /&gt;&lt;BR /&gt;[fix_time_hour]&lt;BR /&gt;REGEX = ("date":\s*".*?\s)(\d{1})(:\d{2}:\d{2}\s(?:AM|PM))&lt;BR /&gt;FORMAT = $10$2$3&lt;BR /&gt;DEST_KEY = _raw&lt;/PRE&gt;&lt;P&gt;output:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="kiran_panchavat_0-1747973360323.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39114i7477B9167C74DC66/image-size/medium?v=v2&amp;amp;px=400" role="button" title="kiran_panchavat_0-1747973360323.png" alt="kiran_panchavat_0-1747973360323.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Sample events which i tried:&lt;/P&gt;&lt;P&gt;{"date": "2025-05-23 9:35:35 PM", "event": "Login"}&lt;BR /&gt;{"date": "2025-05-23", "event": "Logout"}&lt;BR /&gt;{"date": "2025-05-24 10:15:00 AM", "event": "Login"}&lt;BR /&gt;{"date": "2025-05-24", "event": "Logout"}&lt;BR /&gt;{"date": "2025-05-25 11:45:00 AM", "event": "Update"}&lt;BR /&gt;{"date": "2025-05-25", "event": "Login"}&lt;BR /&gt;{"date": "2025-05-26 12:00:00 PM", "event": "Logout"}&lt;BR /&gt;{"date": "2025-05-26", "event": "Update"}&lt;BR /&gt;{"date": "2025-05-27 1:30:00 PM", "event": "Login"}&lt;BR /&gt;{"date": "2025-05-27", "event": "Logout"}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 04:12:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746807#M118673</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-05-23T04:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746809#M118674</link>
      <description>&lt;P&gt;Again, this does not work because this filters events during search time and not using shared time picker.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Let's say I have an event that has been indexed with date 2025-04-01 but I ingest it so that _time is&amp;nbsp;2025-04-02 (so date and _time is mismatched), if I use a timechart command to filter alerts over&amp;nbsp;2025-04-01, this event will not appear on the timechart because it is first filtered on _time. Even if I specify timechart by date, this event will not appear.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;My core issue is how to ensure _time and date fields are the same in the index (NOT SEARCH TIME) when ingesting data with mismatched formats.&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 04:17:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746809#M118674</guid>
      <dc:creator>cherrypick</dc:creator>
      <dc:date>2025-05-23T04:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746810#M118675</link>
      <description>&lt;P class="lia-align-left"&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/269333"&gt;@cherrypick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Splunk cannot natively parse multiple timestamp formats for the same field at index time—it only allows a single TIME_FORMAT per sourcetype.&lt;/P&gt;&lt;P&gt;If you can preprocess or route events differently, you can assign different sourcetypes based on the date format&lt;/P&gt;&lt;P&gt;# props.conf&lt;BR /&gt;[test_json]&lt;BR /&gt;TRANSFORMS-set_sourcetype = set_sourcetype_datetime, set_sourcetype_dateonly&lt;/P&gt;&lt;P&gt;[test_json_datetime]&lt;BR /&gt;TIME_PREFIX = "date":\s*"&lt;BR /&gt;TIME_FORMAT = %Y-%m-%d %I:%M:%S %p&lt;/P&gt;&lt;P&gt;[test_json_dateonly]&lt;BR /&gt;TIME_PREFIX = "date":\s*"&lt;BR /&gt;TIME_FORMAT = %Y-%m-%d&lt;/P&gt;&lt;P&gt;# transforms.conf&lt;BR /&gt;[set_sourcetype_datetime]&lt;BR /&gt;REGEX = "date":\s*"\d{4}-\d{2}-\d{2} \d{1,2}:\d{2}:\d{2} [AP]M"&lt;BR /&gt;DEST_KEY = MetaData:Sourcetype&lt;BR /&gt;FORMAT = sourcetype::test_json_datetime&lt;/P&gt;&lt;P&gt;[set_sourcetype_dateonly]&lt;BR /&gt;REGEX = "date":\s*"\d{4}-\d{2}-\d{2}"&lt;BR /&gt;DEST_KEY = MetaData:Sourcetype&lt;BR /&gt;FORMAT = sourcetype::test_json_dateonly&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Prewin&amp;nbsp;&lt;BR /&gt;&lt;SPAN&gt;Splunk Enthusiast | Always happy to help! &lt;/SPAN&gt;&lt;SPAN&gt;If this answer helped you, please consider marking it as the solution or giving a kudos. Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 04:35:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746810#M118675</guid>
      <dc:creator>PrewinThomas</dc:creator>
      <dc:date>2025-05-23T04:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746813#M118676</link>
      <description>You could use INGEST_EVAL with &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/264857"&gt;@kiran_panchavat&lt;/a&gt; ‘s example.&lt;BR /&gt;Put it in transforms.conf like&lt;BR /&gt;&lt;BR /&gt;INGEST_EVAL = _time := if(match(date, "\\d{4}-\\d{2}-\\d{2} \\d{1,2}:\\d{2}:\\d{2} [APMapm]{2}"), strptime(date, "%Y-%m-%d %I:%M:%S %p"), strptime(date, "%Y-%m-%d"))&lt;BR /&gt;</description>
      <pubDate>Fri, 23 May 2025 05:00:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746813#M118676</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-05-23T05:00:05Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746824#M118678</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/269333"&gt;@cherrypick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This sounds like a job for INGEST_EVAL - There are great examples at&amp;nbsp;&lt;A href="https://github.com/silkyrich/ingest_eval_examples/blob/master/default/transforms.conf" target="_blank" rel="noopener"&gt;https://github.com/silkyrich/ingest_eval_examples/blob/master/default/transforms.conf&lt;/A&gt;&amp;nbsp;from Rich Morgan&amp;nbsp;@ Splunk.&lt;/P&gt;&lt;P&gt;However for your specific example, the following config should hopefully work, this works by checking the time format first before then setting as required:&lt;/P&gt;&lt;PRE&gt;== props.conf ==&lt;BR /&gt;[yourSourceType]&lt;BR /&gt;TRANSFORMS-setCustomTime = setJSONTime&lt;BR /&gt;&lt;BR /&gt;== transform.conf ==&lt;BR /&gt;[setJSONTime]&lt;BR /&gt;INGEST_EVAL = _time=if(match(date, "\d{4}-\d{2}-\d{2} \d{1,2}:\d{2}:\d{2} [AP]M"), strptime(date, "%Y-%m-%d %I:%M:%S %p"), strptime(date, "%Y-%m-%d"))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 06:52:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746824#M118678</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-05-23T06:52:53Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746873#M118680</link>
      <description>You should use := instead of = ! Otherwise you will get mv field.</description>
      <pubDate>Fri, 23 May 2025 18:58:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746873#M118680</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-05-23T18:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746875#M118681</link>
      <description>&lt;P&gt;Interestingly I did consider this as I posted it and decided not to do := based on the examples of setting _time from Rich’s examples at&amp;nbsp;&lt;A href="https://github.com/silkyrich/ingest_eval_examples/blob/master/default/transforms.conf" target="_blank"&gt;https://github.com/silkyrich/ingest_eval_examples/blob/master/default/transforms.conf&lt;/A&gt; which only use = (but oddly only on _time fields), I wonder why this is the case? I might check but I thought it wasn’t possible to set a multi value field for _time (and _raw) using ingest eval?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 May 2025 19:49:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746875#M118681</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-05-23T19:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Setting _time when field is inconsistent in Json ingestion</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746880#M118682</link>
      <description>Neither I have check it with _time field if it have some internal limitations for mv fields or not, but other fields this is needed.</description>
      <pubDate>Sat, 24 May 2025 10:30:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Setting-time-when-field-is-inconsistent-in-Json-ingestion/m-p/746880#M118682</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-05-24T10:30:12Z</dc:date>
    </item>
  </channel>
</rss>

