Faced the problem that I can not find the structure for decoding this JSON:
"cars": [ { "name":"Ford", "models": "Fiesta", "color": "red" }, { "name":"BMW", "models": "X5", "color": "green" }, { "name":"Fiat", "models": "500", "color": "blue" } ] In the JSON array itself there will not be an exact number of elements (there are 3 of them). And how, after decoding, will it be possible to access the elements of the extracted array?