Parsing JSONs from String
Some connectors and databases return JSON data in an escaped string that you can not use right away. Here an example:
If you receive JSON data as a string that you like to convert into a JSON, you can use our dictionary helper.
If we assume that the data is stored in get_data
the following code example will help you to parse the data in a way that it can be read as a JSON:
The result will be:
Last updated