Search found 1 match

by PB_Newbie
Tue Apr 16, 2024 9:35 pm
Forum: Coding Questions
Topic: Compound JSON Extraction
Replies: 1
Views: 518

Compound JSON Extraction

I am querying an API that returns a large JSON string of the format:

{"data":
{
"element1": number,
"element2": number,
...
"rows":
[
{
"a": value,
"b": value,
...
},
{
"c": value,
"d": value,
...
},
...
],
"elementN": number
}
"something": value
}

I'm having just a heck of ...