Skip to content
background-image background-image

json_array_splitter

JSON Array Splitter

  • Version

    3.0

  • Agent restriction

    None

  • Processing type

    Row by row

  • Multi-input step

    Not Supported

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/Output in JSON format

Output

Resulting JSON split token.

JSON (ver. 1.0.0)

Column Data type Allow null Description
JSON JSON No Input/Output 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.