VOOZH about

URL: https://www.nuget.org/packages/JsonPath.Net/

⇱ NuGet Gallery | JsonPath.Net 3.0.2




👁 Image
JsonPath.Net 3.0.2

dotnet add package JsonPath.Net --version 3.0.2
 
 
NuGet\Install-Package JsonPath.Net -Version 3.0.2
 
 
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="JsonPath.Net" Version="3.0.2" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="JsonPath.Net" Version="3.0.2" />
 
Directory.Packages.props
<PackageReference Include="JsonPath.Net" />
 
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add JsonPath.Net --version 3.0.2
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: JsonPath.Net, 3.0.2"
 
 
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package JsonPath.Net@3.0.2
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=JsonPath.Net&version=3.0.2
 
Install as a Cake Addin
#tool nuget:?package=JsonPath.Net&version=3.0.2
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

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 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 was computed.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 is compatible.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 is compatible.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 is compatible.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 was computed.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (223)

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 (13)

Showing the top 13 popular GitHub repositories that depend on JsonPath.Net:

Repository Stars
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
SnapXL/SnapX
SnapX is a free, open-source, cross-platform tool that lets you capture or record any area of your screen and instantly share it with a single keypress. Upload images, videos, text, and more to multiple supported destinations—all with ease. ShareX fork
prom3theu5/aspirational-manifests
Handle deployments of .NET Aspire AppHost Projects
microsoft/botbuilder-dotnet
Welcome to the Bot Framework SDK for .NET repository, which is the home for the libraries and packages that enable developers to build sophisticated bot applications using .NET.
simpleidserver/SimpleIdServer
OpenID, OAuth 2.0, SCIM2.0, UMA2.0, FAPI, CIBA & OPENBANKING Framework for ASP.NET Core
VolcanicArts/VRCOSC
A modular node-programming language, program creator, animation system, toolkit, router, and debugger made for VRChat
lulzsun/RePlays
Open-source game recording management software
corvus-dotnet/Corvus.JsonSchema
Support for Json Schema validation and entity generation
dalenewman/Transformalize
Configurable Extract, Transform, and Load
nightroman/FarNet
Far Manager framework for .NET modules and scripts in PowerShell, F#, JavaScript.
elgarf/vMixUTC
Customizable controller for vMix
OctoAwesome/octoawesome
This is the code repository for the OctoAwesome project - a collection of daily, 20 minute long game development tutorial videos, iterating over the same piece of code
NatVanG/PBI-Inspector
A rules-based Power BI report layout testing tool.
Version Downloads Last Updated
3.0.2 379,618 3/15/2026
3.0.1 80,771 2/14/2026
3.0.0 26,119 2/1/2026
2.2.0 336,480 12/9/2025
2.1.1 1,650,791 2/6/2025
2.1.0 80,501 1/2/2025
2.0.1 83,789 12/27/2024
2.0.0 155,808 11/30/2024
1.1.6 1,202,554 9/30/2024
1.1.5 40,493 9/19/2024
1.1.4 610,206 8/5/2024
1.1.3 6,364 8/1/2024
1.1.2 125,453 6/24/2024
1.1.1 7,544 6/18/2024
1.1.0 989,899 5/21/2024
1.0.5 8,354 5/18/2024
1.0.4 9,045 5/16/2024
1.0.3 6,286 5/13/2024
1.0.2 24,101 5/9/2024
1.0.1.2 81,227 4/19/2024
Loading failed

Release notes can be found at https://docs.json-everything.net/rn-json-path/