Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.alumio.com/llms.txt

Use this file to discover all available pages before exploring further.

Takes an input json string from the context and converts it to actual json. This can be used when a webservice for example returns xml with one field containing a json string.

Fields

There are no configuration options available for this mapper.

Sample data

Input data

“{ "utilisateur" : { "prenom":"Gabin" , "nom":"Dupont" , "age": 19 , "ville": null } }”

Output data

{
  "utilisateur": {
    "prenom": "Gabin",
    "nom": "Dupont",
    "age": 19,
    "ville": NULL
  }
}
The difference is at first glance minor, the input data is a string containing json while the output is actual json.