Hello i have this JSON and i didn't find any examples of read from a file structured like this. How would the code to read from a JSON like this look? Most of the examples i found don t contain any arrays
{
"Name": "ngcutcon1",
"Objects": [
{
"Length": 10,
"Height": 10,
"Stock": null,
"Cost": 100
}
],
"Items": [
{
"Length": 3,
"Height": 7,
"Demand": 1,
"DemandMax": 2,
"Value": 35
},
{
"Length": 8,
"Height": 2,
"Demand": 0,
"DemandMax": 2,
"Value": 40
},
{
"Length": 10,
"Height": 2,
"Demand": 0,
"DemandMax": 1,
"Value": 27
},
{
"Length": 5,
"Height": 4,
"Demand": 0,
"DemandMax": 3,
"Value": 23
},
{
"Length": 2,
"Height": 9,
"Demand": 0,
"DemandMax": 2,
"Value": 43
}
]
}