Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 653 Bytes

README.md

File metadata and controls

35 lines (29 loc) · 653 Bytes

JSON transformer flogo activity

This activity allows your flogo application to transform JSON data. The transformation is done with kazaam (https://github.com/qntfy/kazaam).

Installation

flogo install github.com/abasse/flogojsontransformer

Schema

Inputs and Outputs:

  { "inputs":[
        {
          "name": "Input",
          "type": "string",
          "required": true
        },
        {
          "name": "Transformation",
          "type": "string",
          "required": true
        }
      ],
      "outputs": [
         {
           "name": "result",
           "type": "string"
          }
      ]
 }