JSON max items not working with the API

I use the JSONarray data type to generate nested JSON array data. However, the minitems and maxitems are not working as described in the api documentation.

The request I sent I expect to have 4 to 5 objects with 4 to 5 subobjects nested. However, I recieve 1 to 5 of the subobjects from my request. What is going wrong here?

[
{
“type”: “JSON Array”,
“name”: “object”,
“minitems”: “4”,
“maxitems”: “5”
},
{
“type”: “Street Address”,
“name”: “object.street”
},
{
“type”: “JSON Array”,
“name”: “object.subobject”,
“minitems”: “4”,
“maxitems”: “5”
},
{
“type”: “Row Number”,
“name”: “object.subobject.Row”
}
]

I believe the “I” needs to be capitalized in minItems and maxItems.

I have changed the I of Items to a capital. However, when I do this, I get the error:

{
“error”: “Column “object”: comparison of String with 0 failed”
}

The values for minItems and maxItems need to be numbers, not strings.