jsonpointer
jsonpointer copied to clipboard
golang implementation of IETF RFC6901: https://tools.ietf.org/html/rfc6901
In order to make json schema references work, we need an interface for traversing json pointers in decoded go types. I've seen this pattern pop up in a few places,...
Hello there, Thank you for such clean and simple library! ### What feature or capability would you like? I'd like to have an ability to have a call like `pointer.Set(interface{})`....
## Issue I'm trying to traverse a `*jsonschema.Schema` using this library and notice that this library declares the following interface: ```go // JSONParent is an interface that enables tree traversal...