Skip to content
background-image background-image

JSON Array Splitter connector

[ | version 3.0]

Connector

The connector is permitted for use of the platform background agent.

Connector processing type: Row by row!

Divides the incoming JSON array into individual JSON tokens.

Example

Input data

JSON: JSON
[{"FirstName":"Alice","LastName":"Smith"},{"FirstName":"Bob","LastName":"Johnson"}]

Output data

JSON: JSON
{"FirstName":"Alice","LastName":"Smith"}
{"FirstName":"Bob","LastName":"Johnson"}

Input & Output Schema

Input

Incoming JSON array to split.

JSON (ver. 1.0.0)

Column Data type Allow null Description
JSON JSON No Input in JSON format.

Output

Resulting JSON split token.

JSON (ver. 1.0.0)

Column Data type Allow null Description
JSON JSON No Input in JSON format.

Release notes

3.0.4

  • Plugin binaries update as a result of included connector change.

3.0.3

  • Fixed shared nuget package versions.

3.0.2

  • Fixed right processing of nullable properties.