Hi,
I have a JSON return form a HTTPCaller with schema info. An example of the return looks like this:
{
"name": "Administration",
"properties" : {
"Id" : {
"type" : "number",
"required" : true,
"description" : "The given Id for the object"
},
"GeoType" : {
"type" : "string",
"required" : true,
"description" : "The type of object"
},
The json continues here with more schema info.
I want to turn the information into a table like this:
I have 82 other JSON returns with the same layout but other “name” values and exposing them all takes to much time. I have tried to use JSON transfromers but so far no succes.
Is there a more dynamic solution to transforming the return to my desired solution?
Thanks in advance,
Sander