I am working on a research project that requires storing a lot of external data. I set the JSON format, which I never used as a storage format. All I really need to store is a large array of data, however, every JSON example I can find has an array in it, nested inside an object. eg:
{ "NumberList" : { "array" : [ 1, 2, 3, 4, 5, 6] }}
Is it possible to have only an array? For instance:
"array" : [1,2,3,4,5,6]
Without an opening and closing bracket or surrounding object?
source share