I'm designing some REST style API endpoints that need to GET/POST (get/add) an array of objects.
Is there a strong reason to go with a format like:
{"Objects" : [{"Field1:Val1","Field2:Val2"},{"Field1:Val1","Field2:Val2"}]}
vs. omitting the top level "Objects" and just using the following instead?
[{"Field1:Val1","Field2:Val2"},{"Field1:Val1","Field2:Val2"}]