JSON arrays

Field values in JSON fields can be arranged in arrays. The array values can have different data types, and can be nested.

Array values are accessed through their position, starting with 0. In the following example, reference.0 retrieves the value 125891.

{ product: chair,
reference: [ 125891, "A14-99-X" ],
price: 12.50
}