In this post, I will give a brief walkthrough of handling the nested json data and extracting the contents from it.
My sample file is as follows .
{
"id": "0001",
"type": "donut",
"name": "Cake",
"ppu": 0.55,
"batters":
{
"batter":
[
{ "id": "1001", "type": "Regular" },
{ "id": "1002", "type": "Chocolate" },
{ "id": "1003", "type": "Blueberry" },
{...
Continue Reading AnithaEswaran’s Article on their blog
Parse nested Json from logic apps
In this post, I will give a brief walkthrough of handling the nested json data and extracting the contents from it. My sample file is as follows . { “id”: “0001”, “type”: “donut”, “name”: “Cake”, “ppu”: 0.55, “batters”: { “batter”: [ { “id”: “1001”, “type”: “Regular” }, { “id”: “1002”, “type”: “Chocolate” }, { “id”:…
Blog Syndicated with AnithaEswaran’s Permission