You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An implementation of RFC 6901 - JavaScript Object Notation (JSON) Pointer in Golang.
6
+
7
+
## Table of Contents
8
+
9
+
-[Table of Contents](#table-of-contents)
10
+
-[Introduction](#introduction)
11
+
-[Installation](#installation)
12
+
-[Usage](#usage)
13
+
-[Contributing](#contributing)
14
+
-[License](#license)
15
+
16
+
## Introduction
17
+
18
+
`jsonpointer-go` is a Go library for working with JSON Pointers as defined in [RFC 6901](https://tools.ietf.org/html/rfc6901). JSON Pointers provide a way to reference specific parts of a JSON document.
19
+
20
+
## Installation
21
+
22
+
To install the library, simply run:
23
+
24
+
```sh
25
+
go get github.com/bragdond/jsonpointer-go
26
+
```
27
+
28
+
## Usage
29
+
30
+
Here is a simple example of how to use `jsonpointer-go`:
0 commit comments