FSharp.Data.JsonPath
1.0.0
See the version list below for details.
dotnet add package FSharp.Data.JsonPath --version 1.0.0
NuGet\Install-Package FSharp.Data.JsonPath -Version 1.0.0
<PackageReference Include="FSharp.Data.JsonPath" Version="1.0.0" />
paket add FSharp.Data.JsonPath --version 1.0.0
#r "nuget: FSharp.Data.JsonPath, 1.0.0"
// Install FSharp.Data.JsonPath as a Cake Addin #addin nuget:?package=FSharp.Data.JsonPath&version=1.0.0 // Install FSharp.Data.JsonPath as a Cake Tool #tool nuget:?package=FSharp.Data.JsonPath&version=1.0.0
F# has been characterized as a modern programming language well-suited to data-rich analytical problems. In this language, interacting with diverse datasets from event streams, web services, and databases is further simplified with the open-source FSharp.Data library.
Many of these real-world documents are hierarchically structured in Json and Xml. When designing reusable applications and algorithms in this space, it becomes very important to be able to extract subsets of data using custom queries.
For Xml, XPATH is a well established tool for describing specific elements within a document.
A similar mechanism exists for Json, called JsonPath.
Using JsonPath with F# typically involves converting data to Newtonsoft.Json's JObject type and invoking SelectToken. However, FSharp.Data has an elegant and functional representation of JsonValues that is very widely used.
FSharp.Data.JsonPath can directly query subsets of a JsonValue document without converting your entire dataset to perform some extraction.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.0
- FSharp.Data (>= 2.3.2 && < 3.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial release, based on blog entry: https://j-alexander.github.io/entry/2016/12/23/jsonpath-queries-using-fsharpdata