TLabs.SchemaRegistry 1.1.0

dotnet add package TLabs.SchemaRegistry --version 1.1.0
                    
NuGet\Install-Package TLabs.SchemaRegistry -Version 1.1.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="TLabs.SchemaRegistry" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TLabs.SchemaRegistry" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="TLabs.SchemaRegistry" />
                    
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 TLabs.SchemaRegistry --version 1.1.0
                    
#r "nuget: TLabs.SchemaRegistry, 1.1.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.
#:package TLabs.SchemaRegistry@1.1.0
                    
#: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=TLabs.SchemaRegistry&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=TLabs.SchemaRegistry&version=1.1.0
                    
Install as a Cake Tool

TLabs.SchemaRegistry

Versioned JSON schema registry for TLabs web-applications:

  • Store JSON schemas in the application database, versioned per topic with a (Topic, Version) unique key.
  • Validate documents (dynamic Properties dictionaries) against the latest — or an explicitly versioned — schema of a topic.
  • Validation results carry structured errors (ErrorDetails) alongside the flat message list — each with the schema evaluation path, the JSON-pointer instance location, and the failing top-level property, so callers can attribute failures to individual properties.
  • Guard schema evolution with a backward-compatibility check on registration: every document valid under the previous schema version must stay valid under the new one, i.e. a new version may only loosen or preserve constraints. (A forward check is available on JsonSchemaCompatibilityChecker; a deliberate breaking version can be stored by registering with allowBreaking: true.)

The compatibility gate is deny-by-default: changes it cannot prove safe — anything involving $ref, oneOf/anyOf/allOf, conditional or otherwise unsupported keywords — are rejected as breaking. Compatibility is checked against the immediately preceding version only, not transitively across all stored versions.

Builds on TLabs.CoreLib (repo, DI configurator and entity-model conventions) and JsonSchema.Net for schema evaluation.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.1.0 64 9/2/2026
1.0.0 301 8/17/2026