You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Condensed, the structure of this output file looks like this:
{...}
{...}
{...}
This is technically invalid JSON, and will cause errors if a user wishes to programmatically modify this file (i.e. with jq or Python's json.load) or submit this file elsewhere (i.e. curl --data "@file.json" ...).
A suggested approach would be:
[
{...},
{...},
{...}
]
The underlying data structure of the objects does not need to be changed, the objects just need to be wrapped inside an array.
The text was updated successfully, but these errors were encountered:
Running the sample helloworld usecase, this is an example of one of the files which is outputted in
simulation_log
:helloworld_crissaegrim_ld0_2023-11-03T14:13:48.496.json
Condensed, the structure of this output file looks like this:
This is technically invalid JSON, and will cause errors if a user wishes to programmatically modify this file (i.e. with
jq
or Python'sjson.load
) or submit this file elsewhere (i.e.curl --data "@file.json" ...
).A suggested approach would be:
The underlying data structure of the objects does not need to be changed, the objects just need to be wrapped inside an array.
The text was updated successfully, but these errors were encountered: