Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
I have a JSON from Infotable, but I have a lot of information i don't need. I just want "rows". I do not want "datashape". What is the code to take only "rows" or delete the "datashape"?
json=
{
"rows":[
{"Desc":"b",
"Class":"d",
}],
"dataShape":{
"fieldDefinitions":{
"Desc":{
"name":"Desc",
"aspects":{"isPrimaryKey":false},
"description":"",
"baseType":"STRING",
"ordinal":2},
"Class":{
"name":"Class",
"aspects":{"isPrimaryKey":false},
"description":"",
"baseType":"STRING",
"ordinal":3},
}}
}
delete jsonData['dataShape'];
Hi @AitorP.
We're not understanding your use case. It should be possible to access the row element and ignore anything else. If you can explain further, we will try to assist.
Regards.
--Sharon