ExeDCommon.DataSchema 0.9.4-preview

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

ExeDCommon.DataSchema

Common data schema abstractions and models for the ExeD platform.

Install

Install-Package ExeDCommon.DataSchema -Version 0.9.4-preview

Or with .NET CLI:

dotnet add package ExeDCommon.DataSchema --version 0.9.4-preview

Features

  • Strongly-typed schema models (TableSchema, FormSchema, ColumnSchema, FieldSchema)
  • Schema serialization and persistence with JSON
  • Sample data file management
  • Shared value objects
  • SourceLink + symbols (PDB + snupkg) for step-into debugging without cloning repo

Debug Experience

This package publishes:

  • Portable PDB inside the .nupkg
  • Separate .snupkg symbols package
  • SourceLink metadata pointing to GitHub

If you enable Visual Studio / Rider setting: "Enable Source Link support" and allow symbol/server loading, you can F11 into the library code without manually downloading the repository.

Usage

using ExeDCommon.DataSchema;
using ExeDCommon.DataSchema.Serialization;

// Define a table schema
var columns = new[]
{
    new ColumnSchema(IsKeyColumn: true, Name: "Id", DataType: typeof(int), 
                     IsNullable: false, Description: "Primary key"),
    new ColumnSchema(IsKeyColumn: false, Name: "Name", DataType: typeof(string), 
                     IsNullable: false, Description: "Customer name")
};

var table = new TableSchema(name: "Customers", columns: columns, 
                            headerRowCount: 1, description: "Customer master table");

// Save to JSON
SchemaStore.SaveTable(sampleDataFilePath: null, directory: "./schemas", table, overwrite: false);

// Load from JSON
var loadedTable = SchemaStore.LoadTable("./schemas/Customers.table.json");

Versioning

Preview versions prior to 1.0.0 may introduce breaking changes.

Contributing

Issues and PRs welcome.

License

MIT. See LICENSE file.

Product 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.  net10.0 was computed.  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 (1)

Showing the top 1 NuGet packages that depend on ExeDCommon.DataSchema:

Package Downloads
DFDBase

Data Flow Diagram base models and JSON repository for EXED.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.9.4-preview 210 10/21/2025