JsonScrutinize 1.0.3
See the version list below for details.
dotnet add package JsonScrutinize --version 1.0.3
NuGet\Install-Package JsonScrutinize -Version 1.0.3
<PackageReference Include="JsonScrutinize" Version="1.0.3" />
<PackageVersion Include="JsonScrutinize" Version="1.0.3" />
<PackageReference Include="JsonScrutinize" />
paket add JsonScrutinize --version 1.0.3
#r "nuget: JsonScrutinize, 1.0.3"
#addin nuget:?package=JsonScrutinize&version=1.0.3
#tool nuget:?package=JsonScrutinize&version=1.0.3
A library created to sanitize JSON strings where a standard class is available for comparison.
Each function will recursively search for intended keys (Mismatched typs, Null keys or missing Keys) from the JSON string which differ from the standard ones.
Standard classes can be defined with [Required] tag to make keys required, [RegularExpression(<pattern>)] to add a specific regex to the key, MisMatched type will compare the regex pattern and allow if the regex matches.
Example:
TypeToCompare ( System.Type variable) can be generated from by doing .getType() to a regular Class in c#.
Let the below class be the standard class to compare with the JSON string.
public class StandardClass
{
[Required]
public string key1 { get; set; }
[RegularExpression(@"^[0-9]{3}$")]
public string key2 { get; set; }
public string key3 { get; set; }
}
The JSON string to be sanitized is as follows:
{
"key1": "value1",
"key2": "123",
"key3" : 123
}
Above JSON has key3 of incorrect type, which is an integer, but the standard class has key3 as a string.
To check which key is incorrect, the below code can be used:
StandardClass standard = new StandardClass();
string json = "{\"key1\": \"value1\",\"key2\": \"123\",\"key3 : 123}";
Type typeToCheck = standard.GetType();
List<string> result = await JSONScrutinize.JSONScrutinize.SanitizeJSON(json, typeToCheck);
The result will be a list of strings containing the keys which are incorrect, in this case, key3.
Output is be :
[
"key3"
]
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 was computed. 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. |
-
net8.0
- Newtonsoft.Json (>= 13.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.