Back to Utilities Integrations
Handler · Version 3

Utility JSON To HTML 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. 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 HTML output generated by this handler.

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

HTML Output

abc
animalboatcar
catdog
eel

Note that the JSON input must be in the format [{"label":"Value"},{"label":"Value"},{"label":"Value"}] with no additional levels or brackets.

Configurations
Name Description Sample
enable_debug_logging Enable debug logging if the value is set to 'Yes'. No
Parameters
Name Description Sample
JSON The JSON String to be converted to HTML
Results
Name Description
HTML A HTML table that was converted from the given JSON
Changelog

UtilityJsonToHtmlV1 (2013-01-30)

  • Initial version. See README for details.

V2 (2013-01-30)

  • Removed sort and added border to table

v3 (2016-09-27)

  • Updated for CSV version in Task 4
Download GitHub

On This Page

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