unity3d - Is it possible to have nested array json? -


i'm kinda new json. want make array value inside value of array below.

{     "id": 0,     "title": "level",     "value": [10[2,3,5], 1] } 

but unfortunately it's not working. gives me error when tried read data.

i want know if it's possible have array inside array value. thank you.

{ "id": 0, "title": "level", "value": [10, [2, 3, 5], 1] 

}

option2:

    {     "id": 0,     "title": "level",     "value": [10, {         "somekey": [2, 3, 5]     }, 1] } 

option3:

       {     "id": 0,     "title": "level",     "value": [10, {         "somekey": [2, {             "somekey": [9, 1, 1]         }, 5]     }, 1]    } 

Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -