Transformer (JOLT)
Discover more about the Transformer (JOLT) component and how to use it on the Digibee Integration Platform.
Last updated
Discover more about the Transformer (JOLT) component and how to use it on the Digibee Integration Platform.
Last updated
Transformer (JOLT) allows the manipulation of a JSON through JOLT technology.
The component is useful to:
modify the structure of a JSON and keep its values;
add, extract, and remove data from a JSON;
sort the structure of a JSON;
modify the values contained in a JSON through functions, such as text manipulation, mathematical calculations, and conversions between data types, among others;
access and manipulate data from arrays.
Take a look at the configuration options for the component. Parameters supported by Double Braces expressions are marked with (DB)
.
Parameter | Description | Default value | Data type |
---|---|---|---|
Type Properties | Area to include the JOLT transformations. | N/A | String |
Example of a configured Transformer (JOLT):
The JSON configured in Type Properties doesn’t represent the JSON to be manipulated, but the JOLT transformation itself. The JOLT itself uses a JSON structure for the transformation construction, which will interpret the JSON received by the Transformer (JOLT) component.
Used to change the structure of a JSON, keeping the values contained in that same JSON.
Example:
Input
Transformation
Output
Used to add new fields or objects in a JSON, if they don't already exist.
Example:
Input
Transformation
Output
Used to remove fields or objects from a JSON.
Example:
Input
Transformation
Output
Used to sort fields and objects in a JSON in alphabetical order.
Example:
Input
Transformation:
Output
Used to transform simple fields and objects into arrays and vice versa.
Example:
Input
Transformation
Output
Used to add values and apply functions to a JSON.
Example:
Input
Transformation
Output
Used to override values and apply functions to a JSON.
Example:
Input
Transformation
Output
Click here to read a detailed article about Transformer (JOLT).