The following code ```julia JSON.parse("{\"a\":1}") ``` returns a `JSON.Object{String, Any}`, but the following ```julia JSON.parse("{\"a\":1}", JSON.Object) ``` returns a `JSON.Object{Any, Any}`.
The following code
returns a
JSON.Object{String, Any}, but the followingreturns a
JSON.Object{Any, Any}.