Split and Parse Through JSON Structures using KingswaySoft

30 September 2022
KingswaySoft Team

Having a JSON response that needs to be properly parsed is a common use case, which can be advanced JSON structures like multi-dimensional arrays, key-value pairs, etc. Our KingswaySoft JSON components can easily parse through them using the various features and options available to make your integrations easier. However, there could be cases in which a JSON design is such that it could have records that need to be handled separately from each other. That is, there may be some objects in a JSON array that have a specific field type, and based on that field type, a specific node could change. Now, this change, if not properly handled, could lead to data loss or other unhandled exceptions. We will be seeing one such case in this blog post. Shown below are the components that we will be using in this demonstration. They come as a part of our SSIS Productivity Pack.

Now, let's take a closer look at the scenario.

Sample Data

The sample data we are considering for this case is a JSON structure, as shown below. As you can see, it consists of an array of JSON objects. The "ContentType" node dictates whether the node "Text" exists or whether the node "fileContent" has an actual download link in it.

{
   "entries":[
      {
         "id":"1145",
         "creationDate":"2020-11-23T10:09:46.624+01:00",
         "mime":"text/html",
         "encoding":"UTF-8",
         "contentType":"TEXT_ENTRY",
         "text":"Test Text Enttry",
         "fileContent":[
            
         ]
      },
      {
         "id":"3467",
         "creationDate":"2021-11-28T10:09:46.645+01:00",
         "mime":"application/pdf",
         "contentType":"ATTACHMENT",
         "fileContent":{
            "id":"7dfbf12d-102c-11ea-97b1-274e6565cff3",
            "name":"26-11-2019_Angebot120_Ramsauer_Stefan_01-01-1990_01",
            "mimetype":"application/pdf",
            "uri":"https://www.kingswaysoft.com/Frontend/Data-Sheet/SSIS-Integration-Toolkit-for-Microsoft-Dynamics-365.pdf?pdf=DataSheet-365"
         }
      }
   ]
}
If "ContentType" has the value "TEXT_ENTRY", then that record will have a "Text" node that requires to be written into a database. However, if the node "ContentTYpe" has the value "ATTACHMENT", then the "fileContent" node would have a set of values, including a URL, which should be used to download a file content to a local file. So, in order to accomplish this, the logic shown below would need to be applied:

  • Parse through the JSON document
  • Treat the node "FileContent" as a raw JSON structure
  • Check to see if the ContentType is TEXT_ENTRY or ATTCHMENT
  • Split the records into two flows: one to handle the Text content to a database table and the other to download the file

Let's see how the design would look.

Design and configuration

Now that we have seen how the sample data looks like, and how the logic needs to be applied, let's see how this can be implemented as a data flow. To get a better idea of how to proceed further, the overall flow would look as seen below.

Overall Data flow.png

We start with configuring an HTTP Connection manager, which has the Base URL and the authentication information to access the endpoint and to get the response from the API. And then, we use a JSON Source component to parse it. On the general page, provide the required HTTP method and query string parameters, relative path, etc., and then select the document designer page. Here, you could either import a sample JSON document from a local file (which has the response JSON saved in it) or as we have done, use the "Web" option.

JSON Source document designer.png

As you can see above, the "fileContent" node is treated as "Raw" - This is because we would be using this later downstream to parse it properly. The Array "entries" are the output, which we shall then connect to a Conditional Split component. In this component, we provide a condition to split the parsed record into two. And then, we can name the actual output as "AttachmentOutput" and the other one as "TextOutput". Referring to our sample data, you would see that the AttachmentOutput would have a valid value "fileContent" node since it would equate to the condition as True in the Conditional Split component.

Conditional split component.png

The TextOutput, on the other hand, will have an empty output for fileContent. However, it will have a string value inside the "Text" node, which we can then write to a Premium ADO.NET Destination component.

The AttachmentOutput is then attached to a JSON Extract component. Our JSON Extract component accepts a column that has a raw JSON structure and parses it out. To do that, you would first need to make sure that the document designer matches the raw JSON column, which in this case would be the raw fileContent column. You could save the fileContent JSON structure to a local file and import it into the JSON extract document designer page.

{
            "id":"7dfbf12d-102c-11ea-97b1-274e6565cff3",
            "name":"26-11-2019_Angebot120_Ramsauer_Stefan_01-01-1990_01",
            "mimetype":"application/pdf",
            "uri":"https://www.kingswaysoft.com/Frontend/Data-Sheet/SSIS-Integration-Toolkit-for-Microsoft-Dynamics-365.pdf?pdf=DataSheet-365"
         }

JSON Extract document designer.png

The second thing to note is that, on the Additional Settings page, the proper Document Input Column is chosen.

JSON Extract Additional Settings.png

Now, this will parse out the above JSON structure, which will have a URI field that has an actual download URL. We will be using the URI that gets parsed out from here to download the file. In order to do that, we will be using an HTTP Requester component. The HTTP Requester component requires an HTTP connection manager, which will have the Base URL for the download endpoint. And it also requires a download path to a local file, which we will be provided using a Premium Derived Column component. You will also notice that we have provided a relative path as well, using a Premium Derived Column component to accommodate the HTTP requirement.

Premium Derived Column.png

HTTP Requester component.png

Now, when we run this package, the files in the original JSON are downloaded into the File path. And those records that have a Text entry, would be stored in a database table. We have a sample package that we have uploaded, which you could download for free and refer to, to get an idea of finer design aspects.

Conclusion

By looking at the blog post above, you could see how KingswaySoft components can be used in a flexible way to handle such complex scenarios, and by doing so, make it into a compact and simple data flow. While building an SSIS package, our components ensure that the usual hurdles involved can be easily surpassed, making the experience much simpler and more efficient.

We hope this has helped!

Archive

December 2024 1 November 2024 3 October 2024 1 September 2024 1 August 2024 2 July 2024 1 June 2024 1 May 2024 1 April 2024 2 March 2024 2 February 2024 2 January 2024 2 December 2023 1 November 2023 1 October 2023 2 August 2023 1 July 2023 2 June 2023 1 May 2023 2 April 2023 1 March 2023 1 February 2023 1 January 2023 2 December 2022 1 November 2022 2 October 2022 2 September 2022 2 August 2022 2 July 2022 3 June 2022 2 May 2022 2 April 2022 3 March 2022 2 February 2022 1 January 2022 2 December 2021 1 October 2021 1 September 2021 2 August 2021 2 July 2021 2 June 2021 1 May 2021 1 April 2021 2 March 2021 2 February 2021 2 January 2021 2 December 2020 2 November 2020 4 October 2020 1 September 2020 3 August 2020 2 July 2020 1 June 2020 2 May 2020 1 April 2020 1 March 2020 1 February 2020 1 January 2020 1 December 2019 1 November 2019 1 October 2019 1 May 2019 1 February 2019 1 December 2018 2 November 2018 1 October 2018 4 September 2018 1 August 2018 1 July 2018 1 June 2018 3 April 2018 3 March 2018 3 February 2018 3 January 2018 2 December 2017 1 April 2017 1 March 2017 7 December 2016 1 November 2016 2 October 2016 1 September 2016 4 August 2016 1 June 2016 1 May 2016 3 April 2016 1 August 2015 1 April 2015 10 August 2014 1 July 2014 1 June 2014 2 May 2014 2 February 2014 1 January 2014 2 October 2013 1 September 2013 2 August 2013 2 June 2013 5 May 2013 2 March 2013 1 February 2013 1 January 2013 1 December 2012 2 November 2012 2 September 2012 2 July 2012 1 May 2012 3 April 2012 2 March 2012 2 January 2012 1

Tags