Json со схемой вложенного массива
У меня есть приведенный ниже JSON, и когда я использую его в API Adobe Document Generation, он выдает ошибку, как показано ниже. Я не уверен, в чем проблема со схемой JSON.
[
{
"OwnerID": "L001",
"Properties": [
[
{
"PropertyID": "P001",
"Property Address": "12 St LA",
"Rent": "300",
"Bedroom ": "2 "
}
],
[
{
"PropertyID": "P002",
"Property Address": "3 St SA",
"Rent": "450",
"Bedroom ": "3 "
}
]
]
},
{
"OwnerID": "L002",
"Properties": [
[
{
"PropertyID": "P003",
"Property Address": "4 St SA",
"Rent": "500",
"Bedroom ": "4 "
}
]
]
},
{
"OwnerID": "L003",
"Properties": [
[
{
"PropertyID": "P004",
"Property Address": "20 St LA",
"Rent": "400",
"Bedroom ": "2 "
}
]
]
}
]
Если бы я использовал первый объект в JSON, проблем не было бы. Только когда я использую полный массив JSON, у меня возникают проблемы в Adobe Doc Generation.
{
"OwnerID": "L001",
"Properties": [
[
{
"PropertyID": "P001",
"Property Address": "12 St LA",
"Rent": "300",
"Bedroom ": "2 "
}
],
[
{
"PropertyID": "P002",
"Property Address": "3 St SA",
"Rent": "450",
"Bedroom ": "3 "
}
]
]
}