I need to model a nested data structure with an array of an array of numbers. Ex:
"measures": [
[1, 91.3],
[2, 87.5],
...
I tried like this:
"mmeasures": {
"type": [ [ "Number" ] ]
},
But it does not seem to work.
The corresponding loopback docs do not mention nested arrays.