V.Udodov.Json 1.0.0

There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package V.Udodov.Json --version 1.0.0
NuGet\Install-Package V.Udodov.Json -Version 1.0.0
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="V.Udodov.Json" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add V.Udodov.Json --version 1.0.0
#r "nuget: V.Udodov.Json, 1.0.0"
#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.
// Install V.Udodov.Json as a Cake Addin
#addin nuget:?package=V.Udodov.Json&version=1.0.0

// Install V.Udodov.Json as a Cake Tool
#tool nuget:?package=V.Udodov.Json&version=1.0.0

Flexible objects with JSON and JSON Schema

Flexible Data implementation which is combination of JSON and JSON Schema working together in dot net world.

Getting Started

Get yourself familiar with JSON Schema before using it. JSON Schema official documentation. This library also heavily use Newtonsoft

Usage

class FlexibleEntity : V.Udodov.Json.Entity
{
  ...
}

JSchema flexibleJsonSchema = JSchema.Parse(@"{
    'type': 'object',
    'properties': {
      'role': {'type': 'string', 'enum': ['accountant']}
    }
  }");

FlexibleEntity entity = new FlexibleEntity(flexibleJsonSchema);

entity["role"] = "not accountant"; // throws a JsonValidationException
entity["role"] = "accountant";
Console.WriteLine(entity["role"]); // prints "accountant"

Console.WriteLine(entity.JsonSchema); // will return full JSON Schema of an object. Extensible and static parts

The Json Schema provided in constructor shold contain only declaration for extension data. There should be no collisions in class declaraion and extensible data

class FlexibleEntity : V.Udodov.Json.Entity
{
  public string Name { get; set; }
  ...
}

Schema flexibleJsonSchema = JSchema.Parse(@"{
    'type': 'object',
    'properties': {
      'name': {'type': 'string', 'minLength': 3}
    }
  }");

// Code below throws ArgumentException because both class and JSON Schema declarations
// have declaration for name property.
FlexibleEntity entity = new FlexibleEntity(flexibleJsonSchema);

Product 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 was computed.  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.2 is compatible.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.56 611 9/25/2019
1.0.55 895 9/9/2019
1.0.53 467 9/8/2019
1.0.50 489 8/28/2019
1.0.48 461 8/15/2019
1.0.46 634 7/18/2019
1.0.43 468 7/17/2019
1.0.40 527 6/28/2019
1.0.37 506 6/23/2019
1.0.30 467 6/22/2019