<?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: manage Null values in Cortex XSOAR Discussions</title>
    <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552908#M2478</link>
    <description>&lt;P&gt;Didn't work in a conditional:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Josep_0-1691491525503.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/52592iA68DFFCDBA20B153/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Josep_0-1691491525503.png" alt="Josep_0-1691491525503.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Aug 2023 10:45:47 GMT</pubDate>
    <dc:creator>Josep</dc:creator>
    <dc:date>2023-08-08T10:45:47Z</dc:date>
    <item>
      <title>manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/550131#M2357</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm trying to create a dataframe from two lists from the context:&lt;/P&gt;
&lt;P&gt;key1:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0:value1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:null&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2:value3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;key2:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0:value1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:value2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2:value3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I call them using demisto.getContext(...), the null value is not passed, like if the key doesn't exist.&lt;/P&gt;
&lt;P&gt;So my first list becomes, without a row:&lt;/P&gt;
&lt;P&gt;key1:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0:value1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1:value3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How can I make XSOAR to detect this Null value, which appears in the context interface?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2023 06:21:43 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/550131#M2357</guid>
      <dc:creator>Josep</dc:creator>
      <dc:date>2023-07-20T06:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/550139#M2358</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/226640"&gt;@Josep&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to reproduce what you explained but I could not see the same results. Can you explain which commands do you use to create those lists and where do you see that list without a null value?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What I have done is as below:&lt;BR /&gt;&lt;BR /&gt;1. Created a list with a null value:&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;DIV id="51@cf6f44e1-8171-48ee-82e1-66ec351dc064" class="chat-box war-room-entry"&gt;
&lt;DIV class="entry-body "&gt;
&lt;DIV class="ui grid"&gt;
&lt;DIV class="row entry-body-content"&gt;
&lt;DIV class="wide column"&gt;
&lt;DIV class="entry-wrapper"&gt;
&lt;DIV class="entry-view vertical-strech"&gt;
&lt;DIV class="vertical-strech"&gt;
&lt;DIV&gt;
&lt;DIV class="entry-note-view" data-test-id="entry-note-text"&gt;
&lt;DIV&gt;
&lt;DIV class="entry-text-view"&gt;&lt;SPAN class=""&gt;!Set key=test value=`["1",null,"3"]`&lt;BR /&gt;&lt;BR /&gt;2.Read the key by using GetContext command and&amp;nbsp;&lt;SPAN&gt;['1', None, '3'] is returned&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;print(demisto.executeCommand("getContext", {"id":incident_id})[0]['Contents']['context']['test'])&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="entry-text-view"&gt;3. Created another key by using SetCommand to make sure the null value is there and it created test2 key as same as test1.&lt;BR /&gt;&lt;BR /&gt;demisto.setContext("test2", demisto.executeCommand("getContext", {"id":incident_id})[0]['Contents']['context']['test'])&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gyldz_0-1689838778858.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/51816i73218FDB8418B1F4/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gyldz_0-1689838778858.png" alt="gyldz_0-1689838778858.png" /&gt;&lt;/span&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV id="52@cf6f44e1-8171-48ee-82e1-66ec351dc064" class="artifact war-room-entry"&gt;
&lt;DIV class="entry-user-image-container"&gt;
&lt;DIV class="ellipsis entry-user-image"&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2023 07:40:51 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/550139#M2358</guid>
      <dc:creator>gyldz</dc:creator>
      <dc:date>2023-07-20T07:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/550146#M2361</link>
      <description>&lt;P&gt;It's working for you&lt;span class="lia-unicode-emoji" title=":astonished_face:"&gt;😲&lt;/span&gt;. These nulls values are brought at the beginning when the incident is created. In my case, when I call the variable ${incident.test1} the null indexes are deleted:&lt;/P&gt;
&lt;P&gt;test1:&lt;/P&gt;
&lt;P&gt;0:1&lt;/P&gt;
&lt;P&gt;1:3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using it directly at a playbook, not in an automation&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2023 08:52:45 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/550146#M2361</guid>
      <dc:creator>Josep</dc:creator>
      <dc:date>2023-07-20T08:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/550418#M2370</link>
      <description>&lt;P&gt;I just tested as well, I created an incident with a field testnull and set a list with a null value for that field:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-07-21 at 10.45.31 AM.png" style="width: 154px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/51909i53A1F3BC84EA2E41/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-07-21 at 10.45.31 AM.png" alt="Screenshot 2023-07-21 at 10.45.31 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Then I ran a task in a playbook that set the context key test with the data from the testnull field:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-07-21 at 10.45.40 AM.png" style="width: 591px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/51910iA86F79FD986629E4/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-07-21 at 10.45.40 AM.png" alt="Screenshot 2023-07-21 at 10.45.40 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;That new test context key still contained the null value:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-07-21 at 10.45.59 AM.png" style="width: 137px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/51911i58FC4F5D992520AB/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999" role="button" title="Screenshot 2023-07-21 at 10.45.59 AM.png" alt="Screenshot 2023-07-21 at 10.45.59 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jul 2023 17:47:49 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/550418#M2370</guid>
      <dc:creator>amontminy</dc:creator>
      <dc:date>2023-07-21T17:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552899#M2475</link>
      <description>&lt;P&gt;Sorry for replying so late. The "null" value used is not a string &lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/263879"&gt;@amontminy&lt;/a&gt;, example:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Josep_0-1691487429493.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/52587i27563A68518E3830/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Josep_0-1691487429493.png" alt="Josep_0-1691487429493.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;When this null value is used directly in a task conditional it doesn't detects it as an empty value. How can I check if this value is null?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 09:39:11 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552899#M2475</guid>
      <dc:creator>Josep</dc:creator>
      <dc:date>2023-08-08T09:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552906#M2477</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://live.paloaltonetworks.com/t5/user/viewprofilepage/user-id/226640"&gt;@Josep&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use a transformer which is "doesn't equal "and "value -&amp;gt; null". Please see the example below:&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="gyldz_0-1691491016685.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/52590i1E3BB4AA790F2E46/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gyldz_0-1691491016685.png" alt="gyldz_0-1691491016685.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gyldz_1-1691491030853.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/52591i8440533D733F5366/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gyldz_1-1691491030853.png" alt="gyldz_1-1691491030853.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:37:20 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552906#M2477</guid>
      <dc:creator>gyldz</dc:creator>
      <dc:date>2023-08-08T10:37:20Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552908#M2478</link>
      <description>&lt;P&gt;Didn't work in a conditional:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Josep_0-1691491525503.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/52592iA68DFFCDBA20B153/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="Josep_0-1691491525503.png" alt="Josep_0-1691491525503.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:45:47 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552908#M2478</guid>
      <dc:creator>Josep</dc:creator>
      <dc:date>2023-08-08T10:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552909#M2479</link>
      <description>&lt;P&gt;it should be "Doesn't Equal" operator not "Equals"&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:47:03 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552909#M2479</guid>
      <dc:creator>gyldz</dc:creator>
      <dc:date>2023-08-08T10:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552910#M2480</link>
      <description>&lt;P&gt;But I would like to check if a list of dicts has a null value. If I do the oposite, "doesn't equal" it will give me the ones that have value. I just want to check if one of them is "null".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 10:58:32 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552910#M2480</guid>
      <dc:creator>Josep</dc:creator>
      <dc:date>2023-08-08T10:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552918#M2482</link>
      <description>&lt;P&gt;I understand your need now. You can do it as below. StringfyArray and use In List Operator to check if the null is in the list.&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="gyldz_0-1691493773892.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/52594i7FCA44ECE6B43D35/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gyldz_0-1691493773892.png" alt="gyldz_0-1691493773892.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 11:23:08 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552918#M2482</guid>
      <dc:creator>gyldz</dc:creator>
      <dc:date>2023-08-08T11:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552923#M2483</link>
      <description>&lt;P&gt;Nope, it didn't work. It just directly avoid to convert the null to an string. So "list_with_null" with "StringifyArray" are only the ones with value, null doesn't appear.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 11:47:32 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552923#M2483</guid>
      <dc:creator>Josep</dc:creator>
      <dc:date>2023-08-08T11:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552938#M2487</link>
      <description>&lt;P&gt;Strange, It works for me. I put a condition and tested it with different cases. If I set another field with stringifyArray Transform, the null values are not stripped from the list.&amp;nbsp;&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="gyldz_0-1691500894766.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/52596i1587350B601780A4/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gyldz_0-1691500894766.png" alt="gyldz_0-1691500894766.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="gyldz_1-1691500915690.png" style="width: 400px;"&gt;&lt;img src="https://live.paloaltonetworks.com/t5/image/serverpage/image-id/52597i234BB84779078E7C/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="gyldz_1-1691500915690.png" alt="gyldz_1-1691500915690.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 13:22:03 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/552938#M2487</guid>
      <dc:creator>gyldz</dc:creator>
      <dc:date>2023-08-08T13:22:03Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/553083#M2498</link>
      <description>&lt;P&gt;Thanks for your help,&lt;/P&gt;
&lt;P&gt;I don't know if it could be a server configuration which treats the null values differently.&lt;/P&gt;
&lt;P&gt;The data used is the output of an xdr incident, the initial data fetched.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Aug 2023 12:59:28 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/553083#M2498</guid>
      <dc:creator>Josep</dc:creator>
      <dc:date>2023-08-09T12:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: manage Null values</title>
      <link>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/561399#M2718</link>
      <description>&lt;P&gt;Stuff under "incident" in the context is actually an incident field and not part of the context. Instead of using&amp;nbsp;&lt;SPAN&gt;demisto.getContext what do you get if you use&amp;nbsp;demisto.incidents() instead?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;For the conditional, I am guessing you're going to want something like: filter by Not Defined + Count transformer, then in the condition check if the result is &amp;gt;= 0&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Oct 2023 09:01:55 GMT</pubDate>
      <guid>https://live.paloaltonetworks.com/t5/cortex-xsoar-discussions/manage-null-values/m-p/561399#M2718</guid>
      <dc:creator>chrking</dc:creator>
      <dc:date>2023-10-12T09:01:55Z</dc:date>
    </item>
  </channel>
</rss>

