Even though JSON supports arrays, JSONiq uses a different construct as its first class citizens: sequences. Any value returned by or passed to an expression is a sequence.
The main difference between sequences and arrays is that sequences are completely flat, meaning they cannot contain other sequences.
Since sequences are flat, expressions of the JSONiq language just concatenate them to form bigger sequences.
This is crucial to allow streaming results, for example through an HTTP session.
Example 227. Flat sequences
( (1, 2), (3, 4) )
Result (run with Zorba): 1 2 3 4
Arrays on the other side can contain nested arrays, like in JSON.
Example 228. Nesting arrays
[ [ 1, 2 ], [ 3, 4 ] ]
Result (run with Zorba): [ [ 1, 2 ], [ 3, 4 ] ]
Many expressions return single items - actually, they really return a singleton sequence, but a singleton sequence of one item is considered the same as this item.
Example 229. Singleton sequences
1 + 1
Result (run with Zorba): 2
This is different for arrays: a singleton array is distinct from its unique member, like in JSON.
Example 230. Singleton sequences
[ 1 + 1 ]
Result (run with Zorba): [ 2 ]
An array is a single item. A (non-singleton) sequence is not. This can be observed by counting the number of items in a sequence.
Example 231. count() on an array
count([ 1, "foo", [ 1, 2, 3, 4 ], { "foo" : "bar" } ])
Result (run with Zorba): 1
Example 232. count() on a sequence
count( ( 1, "foo", [ 1, 2, 3, 4 ], { "foo" : "bar" } ) )
Result (run with Zorba): 4
Other than that, arrays and sequences can contain exactly the same members (atomics, arrays, objects).
Example 233. Members of an array
[ 1, "foo", [ 1, 2, 3, 4 ], { "foo" : "bar" } ]
Result (run with Zorba): [ 1, "foo", [ 1, 2, 3, 4 ], { "foo" : "bar" } ]
Example 234. Members of an sequence
( 1, "foo", [ 1, 2, 3, 4 ], { "foo" : "bar" } )
Result (run with Zorba): 1 foo [ 1, 2, 3, 4 ] { "foo" : "bar" }
Arrays can be converted to sequences, and vice-versa.
Example 235. Converting an array to a sequence
[ 1, "foo", [ 1, 2, 3, 4 ], { "foo" : "bar" } ] []
Result (run with Zorba): 1 foo [ 1, 2, 3, 4 ] { "foo" : "bar" }
Example 236. Converting a sequence to an array
[ ( 1, "foo", [ 1, 2, 3, 4 ], { "foo" : "bar" } ) ]
Result (run with Zorba): [ 1, "foo", [ 1, 2, 3, 4 ], { "foo" : "bar" } ]