json icon indicating copy to clipboard operation
json copied to clipboard

Fork of golang's encoding/json: now with more validation and error context

Results 2 json issues
Sort by recently updated
recently updated
newest added

While looking for ways to neatly map 'unmapped keys' in my structs, I came across the following: * http://devel.io/2013/08/19/go-handling-arbitrary-json/ * https://godoc.org/labix.org/v2/mgo/bson#Marshal Basically, it implements an `inline` tag that is then...

enhancement

I wrote a package that has a similar aim (better JSON error location reporting) but using JSON Pointer (RFC 6901) and using a wrapper strategy instead of forking. See [github.com/dolmen-go/jsonptrerror](https://godoc.org/github.com/dolmen-go/jsonptrerror).