JsonPointer.Net 7.0.2

Summary

JsonPointer.Net implements the JSON Pointer specification RFC 6901, a string syntax for identifying a specific value within a JavaScript Object Notation (JSON) document.

Usage

Parse a pointer:

var pointer = JsonPointer.Parse("/objects/and/3/arrays");

Build it manually:

var pointer = JsonPointer.Create("object", "and", 3, "arrays");

Or generate using an LINQ expression:

var pointer = JsonPointer.Create<MyObject>(x => x.objects.and[3].arrays);

Use the pointer to query JsonElement:

using var element = JsonDocument.Parse("{\"objects\":{\"and\":[\"item zero\",null,2,{\"arrays\":\"found me\"}]}}");
var result = pointer.Evaluate(element.RootElement);
// result: "found me"

or JsonNode:

var element = JsonNode.Parse("{\"objects\":{\"and\":[\"item zero\",null,2,{\"arrays\":\"found me\"}]}}");
var success = pointer.TryEvaluate(element, out var result);
// success: true
// result: "found me"

Sponsorship

If you found this library helpful and would like to promote continued development, please consider sponsoring the maintainers.

Showing the top 20 packages that depend on JsonPointer.Net.

Packages Downloads
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
287
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
200
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
89
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
71
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
70
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
41
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
33
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
31
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
27
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
22
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
16
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace
14
JsonSchema.Net
JSON Schema built on the System.Text.Json namespace.
13

.NET 10.0

.NET 8.0

.NET 9.0

.NET Standard 2.0

Version Downloads Last updated
7.0.2 2 07/30/2026
7.0.1 387 03/18/2026
7.0.0 112 02/02/2026
6.0.1 254 12/18/2025
6.0.0 15 12/09/2025
5.3.1 14 12/29/2025
5.3.0 10 01/21/2026
5.2.0 11 12/09/2025
5.1.0 11 12/10/2025
5.0.2 11 12/09/2025
5.0.1 10 01/21/2026
5.0.0 12 01/21/2026
4.0.1.3 13 12/12/2025
4.0.1.1 13 12/09/2025
4.0.1 12 01/21/2026
4.0.0 13 12/09/2025
3.3.0 11 01/21/2026
3.2.2 12 12/09/2025
3.2.1 11 12/09/2025
3.2.0 11 12/09/2025
3.1.0 11 12/09/2025
3.0.3 11 01/21/2026
3.0.2 10 12/09/2025
3.0.1 10 01/21/2026
3.0.0 12 12/10/2025
2.2.1 12 01/21/2026
2.2.0 13 12/09/2025
2.1.0 11 12/09/2025
2.0.0 12 12/09/2025
1.4.0 10 12/09/2025
1.3.3 12 12/10/2025
1.3.2 11 12/09/2025
1.3.1 11 01/21/2026
1.3.0 10 01/21/2026
1.2.0 10 01/21/2026
1.1.2 13 12/09/2025
1.1.1 13 12/09/2025
1.1.0 11 01/21/2026
1.0.0 12 01/21/2026
1.0.0-rc2 11 12/10/2025
1.0.0-rc1 10 01/21/2026