# lestrrat-go-jspointer **Repository Path**: mirrors_back/lestrrat-go-jspointer ## Basic Information - **Project Name**: lestrrat-go-jspointer - **Description**: mirrors of https://github.com/lestrrat-go/jspointer - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-06-23 - **Last Updated**: 2022-06-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # go-jspointer [![Build Status](https://travis-ci.org/lestrrat-go/jspointer.svg?branch=master)](https://travis-ci.org/lestrrat-go/jspointer) [![GoDoc](https://godoc.org/github.com/lestrrat-go/jspointer?status.svg)](https://godoc.org/github.com/lestrrat-go/jspointer) JSON pointer for Go # Features * Compile and match against Maps, Slices, Structs (or pointers to those) * Set values in each of those # Usage ```go p, _ := jspointer.New(`/foo/bar/baz`) result, _ := p.Get(someStruct) ``` # Credits This is almost a fork of https://github.com/xeipuuv/gojsonpointer. # References | Name | Notes | |:--------------------------------------------------------:|:---------------------------------| | [go-jsval](https://github.com/lestrrat-go/jsval) | Validator generator | | [go-jsschema](https://github.com/lestrrat-go/jsschema) | JSON Schema implementation | | [go-jshschema](https://github.com/lestrrat-go/jshschema) | JSON Hyper Schema implementation | | [go-jsref](https://github.com/lestrrat-go/jsref) | JSON Reference implementation |