I have the following JSON file:
{
"mission": [{
"title": "bloody",
"story": "blah blah blah",
"setup": "ble ble ble",
"victory": "blo blo blo",
"fff":"fff",
"conditions": [{
"condition1": [{
"A00": "NONE"
}]}]}]}
Im trying to do a direct call to "mission.conditions.condition1.A00". No matter what it wont let me access. I did open the Sample project and that uses Loops, which is nice but I need to direct access. I also tried setting the Path to "mission.conditions.condition1" then using json.get(".A00"), NADA!
Im just outputting it to at Text box, I get a 0 each time I try various ways. Using loops works, but that seems odd and bad performance to loop through the whole dataset for 1 value.
any suggestions? thanks!