JsonLogic 5.3.0
dotnet add package JsonLogic --version 5.3.0
NuGet\Install-Package JsonLogic -Version 5.3.0
<PackageReference Include="JsonLogic" Version="5.3.0" />
paket add JsonLogic --version 5.3.0
#r "nuget: JsonLogic, 5.3.0"
// Install JsonLogic as a Cake Addin #addin nuget:?package=JsonLogic&version=5.3.0 // Install JsonLogic as a Cake Tool #tool nuget:?package=JsonLogic&version=5.3.0
Summary
JsonLogic implements the JSON Logic format, a declarative, data-driven way to define rules.
Links
Usage
var rule = JsonNode.Parse(
"""
{
"and": [
{ "<": [{ "var": "temp" }, 110 ]},
{ "==": [{ "var": "pie.filling" }, "apple" ]}
]
}
"""
);
var data = JsonNode.Parse(
"""
{
"temp" : 100,
"pie" : { "filling" : "apple" }
}
"""
);
var result = JsonLogic.Apply(rule, data);
// result: true
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. |
.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
- JsonPointer.Net (>= 5.0.2)
-
net8.0
- JsonPointer.Net (>= 5.0.2)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on JsonLogic:
Package | Downloads |
---|---|
Shinya.Core
Shinya.Framework |
|
Siccar.Application
This library enables working with the Blueprint models in the Siccar Application. For more infromation see: https://siccar.net/docs For this release see notes - https://projectbob.visualstudio.com/_git/SICCARV3?path=/src/Common/SiccarApplicationBlueprint/README.md For the change log - https://projectbob.visualstudio.com/_git/SICCARV3?path=/src/Common/SiccarApplicationBlueprint/CHANGELOG.md |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
5.3.0 | 208 | 11/16/2024 |
5.2.1 | 68,793 | 4/20/2024 |
5.2.0.2 | 149 | 4/19/2024 |
5.2.0.1 | 110 | 4/19/2024 |
5.2.0 | 107 | 4/18/2024 |
5.1.0 | 8,019 | 3/4/2024 |
5.0.0 | 4,705 | 2/3/2024 |
4.0.4 | 95,490 | 3/29/2023 |
4.0.3 | 1,290 | 3/20/2023 |
4.0.2 | 323 | 3/19/2023 |
4.0.1 | 816 | 3/8/2023 |
4.0.0 | 318 | 3/8/2023 |
3.3.2 | 3,135 | 2/22/2023 |
3.3.1 | 1,352 | 2/2/2023 |
3.3.0 | 655 | 1/23/2023 |
3.2.0 | 28,804 | 9/1/2022 |
3.1.2 | 3,563 | 8/16/2022 |
3.1.1 | 1,354 | 8/5/2022 |
3.1.0 | 18,239 | 7/22/2022 |
3.0.1 | 6,051 | 6/17/2022 |
3.0.0 | 916 | 6/13/2022 |
2.0.0 | 7,763 | 5/18/2022 |
1.4.0 | 80,013 | 1/14/2022 |
1.3.2 | 954 | 11/13/2021 |
1.3.1 | 3,072 | 6/20/2021 |
1.3.0 | 576 | 4/3/2021 |
1.2.1 | 492 | 2/24/2021 |
1.2.0 | 482 | 1/17/2021 |
1.1.0 | 474 | 1/1/2021 |
1.0.1 | 500 | 1/1/2021 |
1.0.0 | 622 | 12/23/2020 |
Release notes can be found at https://docs.json-everything.net/rn-json-logic/