...
JSON documents may be appended together, or formatted in the form of a JSON array. For instance:
Code Block |
---|
{"id":1234, "name":"Foo"} {"id":1235, "name":"Bar"} {"id":1236, "name":"Baz"} |
...
Or:
Code Block |
---|
[ {"id":1234, "name":"Foo"}, {"id":1235, "name":"Bar"}, {"id":1236, "name":"Baz"} ] |
...
Example
Here's an example code use of a JSON file:
...