Parsing JSONs from String
{
"timestamp": 1657722582,
"information" : "{\"id\":\"0001\",\"type\":\"donut\",\"name\":\"Cake\",\"ppu\":0.55,\"active\":false}"
}{{ get_data.information | replace('null', 'None') | replace('true', 'True') | replace('false', 'False') | replace('\\/', '/') }}{
"id": "0001",
"type": "donut",
"name": "Cake",
"ppu": 0.55,
"active": false
}Last updated
Was this helpful?