<?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: Symphony Ventures - JSON Manipulation VBO - Question in Digital Exchange</title>
    <link>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54334#M947</link>
    <description>Thank you for the response Eric!&amp;nbsp; I may need to read up some more on JSON and key values.&amp;nbsp; When I input ($..fields['Report Number'].text) as the Key, is that not the correct syntax for a Key?&amp;nbsp; It works in the BluePrism Web API Services JSONPath response, but I'm trying to build out process specific logic for responses within the process rather than muddy up the Web API Object with logic no other process is going to use.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Matt Palmer&lt;BR /&gt;Business Process Specialist&lt;BR /&gt;Chesapeake Energy&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Fri, 20 Nov 2020 15:51:00 GMT</pubDate>
    <dc:creator>MattPalmer</dc:creator>
    <dc:date>2020-11-20T15:51:00Z</dc:date>
    <item>
      <title>Symphony Ventures - JSON Manipulation VBO - Question</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54332#M945</link>
      <description>Hello,&lt;BR /&gt;Is anyone familiar with using the VBO for Symphony Ventures - JSON Manipulation VBO?&amp;nbsp; I'm attempting to use the action 'Filter JSON Keys', however, I can't figure out the syntax for the Keys input.&amp;nbsp; I've attempted to use JSONPath syntax, but that doesn't appear to work.&amp;nbsp; And the documentation doesn't provide an example.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Matt&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Matt Palmer&lt;BR /&gt;Business Process Specialist&lt;BR /&gt;Chesapeake Energy&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Nov 2020 14:27:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54332#M945</guid>
      <dc:creator>MattPalmer</dc:creator>
      <dc:date>2020-11-20T14:27:00Z</dc:date>
    </item>
    <item>
      <title>RE: Symphony Ventures - JSON Manipulation VBO - Question</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54333#M946</link>
      <description>It looks like the input to that action is a simple collection with a single column titled "Keys". Each row in the collection would be the actual key value that you're wanting to include/exclude.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Nov 2020 15:08:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54333#M946</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2020-11-20T15:08:00Z</dc:date>
    </item>
    <item>
      <title>RE: Symphony Ventures - JSON Manipulation VBO - Question</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54334#M947</link>
      <description>Thank you for the response Eric!&amp;nbsp; I may need to read up some more on JSON and key values.&amp;nbsp; When I input ($..fields['Report Number'].text) as the Key, is that not the correct syntax for a Key?&amp;nbsp; It works in the BluePrism Web API Services JSONPath response, but I'm trying to build out process specific logic for responses within the process rather than muddy up the Web API Object with logic no other process is going to use.&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Matt Palmer&lt;BR /&gt;Business Process Specialist&lt;BR /&gt;Chesapeake Energy&lt;BR /&gt;America/Chicago&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Nov 2020 15:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54334#M947</guid>
      <dc:creator>MattPalmer</dc:creator>
      <dc:date>2020-11-20T15:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: Symphony Ventures - JSON Manipulation VBO - Question</title>
      <link>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54335#M948</link>
      <description>The basis of JSON is key/value pairs. So in the following example the keys are &lt;STRONG&gt;employees&lt;/STRONG&gt;, &lt;STRONG&gt;firstName&lt;/STRONG&gt;, and &lt;STRONG&gt;lastName&lt;/STRONG&gt;. The value associated with the key employees is an JSON array whereas the values associated with the keys firstName and lastName are sinple text strings.&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;{
"employees":[
    {
      "firstName":"John", 
      "lastName":"Doe"
    },
    {
      "firstName":"Anna", 
      "lastName":"Smith"
    },
    {
      "firstName":"Peter", 
      "lastName":"Jones"
    }
  ]
}​&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;So in your example the keys would be the name of the array (from the raw JSON) and then the field key "Report Number". Symphony's code does discern between the input JSON being a JArray or JObject though, so I'd say just pass in the JSON that makes up the JArray and then set the keys collection to have a single "Key" row with the value of "Report Number".&lt;/P&gt;
&lt;BR /&gt;Cheers,&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Eric Wilson&lt;BR /&gt;Director, Partner Integrations for Digital Exchange&lt;BR /&gt;Blue Prism&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Nov 2020 16:09:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Digital-Exchange/Symphony-Ventures-JSON-Manipulation-VBO-Question/m-p/54335#M948</guid>
      <dc:creator>ewilson</dc:creator>
      <dc:date>2020-11-20T16:09:00Z</dc:date>
    </item>
  </channel>
</rss>

