Back to Utilities Integrations
Handler · Version 1

Utility JSON To CSV Utilities

Download GitHub

About

This handler makes some assumptions about the format of the JSON structure. It expects an array of objects to be the value of the root of the JSON object. In the example below the root object has a label of "table", this label is arbitrary and unused by the handler. This handler also expects the array of objects to contain only simple objects, not nested arrays or nested objects.

Examples

Below is an example of a JSON input string and the corresponding CSV output generated by this handler.

JSON Input { "table" : [ { "a" : "animal", "b" : "boat", "c" : "car" }, { "c" : "cat", "d" : "dog" }, { "e" : "eel" } ] }

CSV Output a,b,c,d,e animal,boat,car,, ,,cat,dog, ,,,,eel

Parameters
Name Description Sample
JSON The JSON String to be converted to CSV
Results
Name Description
CSV A CSV String that was converted from the given JSON
Changelog

UtilityJsonToCsvV1 (2010-05-24)

  • Initial version. See README for details.
Download GitHub

On This Page

Other Versions

Looking for a workflow engine? Learn more about the Kinetic Data Enterprise Workflow Platform. Check it out
Return to Top