jsonオブジェクトの配列をjsonオブジェクトの2番目のjsonオブジェクトと考えてください。次に取得したのは、たとえばこの単一のjson-'array'です。
{
"this": "is a single object",
"another" : "object in a json array"
}
2番目のjsonオブジェクトで満たされた「別の」部分を参照してください。
{
"this": "is a single object",
"although": [
{
"this": "is an object",
"and this": "another object in a second object",
"and this": "another object in a second object"
}
]
}
2番目のケースでは、「ただし」はこのjsonオブジェクトです。
{
"this": "is an object",
"and this": "another object in a second object",
"and this": "another object in a second object"
}
jsonにそれが配列(別のjsonオブジェクト)であることを知らせるために、とが[
あり]
ます。