JsonPath.Net
3.0.2
dotnet add package JsonPath.Net --version 3.0.2
NuGet\Install-Package JsonPath.Net -Version 3.0.2
<PackageReference Include="JsonPath.Net" Version="3.0.2" />
<PackageVersion Include="JsonPath.Net" Version="3.0.2" />
<PackageReference Include="JsonPath.Net" />
paket add JsonPath.Net --version 3.0.2
#r "nuget: JsonPath.Net, 3.0.2"
#:package JsonPath.Net@3.0.2
#addin nuget:?package=JsonPath.Net&version=3.0.2
#tool nuget:?package=JsonPath.Net&version=3.0.2
Summary
JsonPath.Net implements the JSON Path specification RFC 9535, a string syntax for selecting and extracting JSON values from within a given JSON value.
Links
Usage
var path = JsonPath.Parse("$.prop[0:6:2]");
var instance = JsonNode.Parse("{\"prop\":[0,1,2,3]}");
var results = path.Evaluate(instance);
/*
results:
[
{
"Value": 0,
"Location": "$['prop'][0]"
},
{
"Value": 2,
"Location": "$['prop'][2]"
}
]
*/
Sponsorship
If you found this library helpful and would like to promote continued development, please consider sponsoring the maintainers.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Json.More.Net (>= 3.0.1)
-
net10.0
- Json.More.Net (>= 3.0.1)
-
net8.0
- Json.More.Net (>= 3.0.1)
-
net9.0
- Json.More.Net (>= 3.0.1)
NuGet packages (215)
Showing the top 5 NuGet packages that depend on JsonPath.Net:
| Package | Downloads |
|---|---|
|
OrchardCore.Abstractions
Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Abstractions of OrchardCore ShellHost. |
|
|
OrchardCore.Data.Abstractions
Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Abstractions for data access functionality |
|
|
OrchardCore.Infrastructure.Abstractions
Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Abstractions for OrchardCoreCMS Infrastructure |
|
|
OrchardCore.Mvc.Core
Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Core Implementation for MVC application. |
|
|
OrchardCore.Module.Targets
Orchard Core Framework is an application framework for building modular, multi-tenant applications on ASP.NET Core. Converts project/library into an OrchardCore Module that can be referenced in OrchardCore modular application. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.0.2 | 15,293 | 3/15/2026 |
| 3.0.1 | 46,442 | 2/14/2026 |
| 3.0.0 | 16,263 | 2/1/2026 |
| 2.2.0 | 195,773 | 12/9/2025 |
| 2.1.1 | 1,398,121 | 2/6/2025 |
| 2.1.0 | 73,831 | 1/2/2025 |
| 2.0.1 | 81,043 | 12/27/2024 |
| 2.0.0 | 111,636 | 11/30/2024 |
| 1.1.6 | 984,106 | 9/30/2024 |
| 1.1.5 | 29,026 | 9/19/2024 |
| 1.1.4 | 488,193 | 8/5/2024 |
| 1.1.3 | 6,283 | 8/1/2024 |
| 1.1.2 | 122,401 | 6/24/2024 |
| 1.1.1 | 7,435 | 6/18/2024 |
| 1.1.0 | 814,532 | 5/21/2024 |
| 1.0.5 | 8,087 | 5/18/2024 |
| 1.0.4 | 8,646 | 5/16/2024 |
| 1.0.3 | 4,288 | 5/13/2024 |
| 1.0.2 | 20,588 | 5/9/2024 |
| 1.0.1.2 | 77,029 | 4/19/2024 |
Release notes can be found at https://docs.json-everything.net/rn-json-path/