Example:
using JSON3
struct Car
model::String
topSpeed::Real
end
JSON3.StructType(::Type{Car}) = JSON3.Struct()
json = """{"model": "S500","topSpeed": 250.1}"""
Getting this error when I run test
car = JSON3.read(json,Car)
ERROR: ArgumentError: Real doesn't have a defined `JSON3.StructType`