AvroSchemaGenerator 2.10.0
dotnet add package AvroSchemaGenerator --version 2.10.0
NuGet\Install-Package AvroSchemaGenerator -Version 2.10.0
<PackageReference Include="AvroSchemaGenerator" Version="2.10.0" />
<PackageVersion Include="AvroSchemaGenerator" Version="2.10.0" />
<PackageReference Include="AvroSchemaGenerator" />
paket add AvroSchemaGenerator --version 2.10.0
#r "nuget: AvroSchemaGenerator, 2.10.0"
#:package AvroSchemaGenerator@2.10.0
#addin nuget:?package=AvroSchemaGenerator&version=2.10.0
#tool nuget:?package=AvroSchemaGenerator&version=2.10.0
AvroSchemaGenerator
Use to generate Avro Schema with support for RECURSIVE SCHEMA
Getting Started
Install the NuGet package AvroSchemaGenerator and copy/paste the code below
using AvroSchemaGenerator;
public class Course
{
public string Level { get; set; }
public int Year { get; set; }
public string State { get; set; }
public string Gender { get; set; }
}
var avroSchema = typeof(Course).GetSchema();
By default, AvroSchemaGenerator generates schema with optional fields. The code below is an example of how to mark fields as required
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using AvroSchemaGenerator;
public class Course
{
[Required]
public string Level { get; set; }
[Required]
public int Year { get; set; }
[Required]
public string State { get; set; }
[Required]
public string Gender { get; set; }
}
var avroSchema = typeof(Course).GetSchema();
You can assign a default value as well
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using AvroSchemaGenerator;
public class Course
{
[DefaultValue("200")]
[Required]
public string Level { get; set; }
[Required]
public int Year { get; set; }
[DefaultValue("Closed")]
public string State { get; set; }
public string Gender { get; set; }
}
var avroSchema = typeof(Course).GetSchema();
Aliases
[Aliases("OldCourse")]
public class Course
{
[Aliases("Level")]
public string NewLevel { get; set; }
}
Logical Types
public class MessageTimeKind
{
[LogicalType(LogicalTypeKind.TimeMicrosecond)]
public TimeSpan TimeMicros { get; set; }
[LogicalType(LogicalTypeKind.TimeMillisecond)]
public TimeSpan TimeMillis { get; set; }
}
public class MessageTimestampKind
{
[LogicalType(LogicalTypeKind.TimestampMicrosecond)]
public DateTime StampMicros { get; set; }
[LogicalType(LogicalTypeKind.TimestampMillisecond)]
public DateTime StampMillis { get; set; }
}
public class MessageDateKind
{
[LogicalType(LogicalTypeKind.Date)]
public DateTime CreatedTime { get; set; }
public AvroDecimal Size { get; set; }
public string DayOfWeek { get; set; }
}
Custom Avro Definition
public class CustomDefinition
{
[AvroSchema("{\n" +
" \"type\": \"bytes\",\n" +
" \"logicalType\": \"decimal\",\n" +
" \"precision\": 10,\n" +
" \"scale\": 6\n" +
"}")]
public AvroDecimal DecimalAvro { get; set; }
}
NOTE
- Don't use same declaring type as dictionary value
- Don't use same declaring type as list argument
- Dictionary key must be a string type
License
This project is licensed under the Apache License Version 2.0 - see the LICENSE file for details.
| 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 is compatible. 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. 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. |
| .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
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Text.Json (>= 8.0.0)
-
net7.0
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Text.Json (>= 8.0.0)
-
net8.0
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Text.Json (>= 8.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on AvroSchemaGenerator:
| Package | Downloads |
|---|---|
|
Pulsar.Client
.NET client library for Apache Pulsar |
|
|
Pulsar.Client.Otel
OpenTelemetry plugin for Pulsar.Client |
|
|
SharpPulsar
SharpPulsar is Apache Pulsar Client built using Akka.net |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.10.0 | 189,323 | 12/16/2023 |
| 2.9.2 | 879,733 | 7/10/2023 |
| 2.9.1 | 1,619 | 3/19/2023 |
| 2.9.0 | 681 | 2/4/2023 |
| 2.9.0-rc.39 | 261 | 2/3/2023 |
| 2.9.0-rc.15 | 273 | 1/9/2023 |
| 2.9.0-rc.6 | 257 | 1/9/2023 |
| 2.8.1 | 112,529 | 1/9/2023 |
| 2.8.0 | 514 | 12/24/2022 |
| 2.8.0-rc.22 | 251 | 12/24/2022 |
| 2.8.0-rc.21 | 252 | 12/24/2022 |
| 2.8.0-rc.13 | 247 | 12/24/2022 |
| 2.8.0-rc.6 | 254 | 12/24/2022 |
| 2.7.0 | 299,035 | 7/20/2022 |
| 2.7.0-rc.139 | 282 | 7/20/2022 |
| 2.7.0-rc.138 | 283 | 7/20/2022 |
| 2.6.0 | 189,183 | 2/20/2022 |
| 2.6.0-rc.136 | 299 | 7/19/2022 |
| 2.5.2-alpha.2 | 324 | 1/16/2022 |
| 2.5.2-Alpha.1 | 305 | 1/16/2022 |
| 2.5.1 | 535 | 1/13/2022 |
| 2.5.0 | 626 | 12/26/2021 |
| 2.4.1 | 1,442 | 10/27/2021 |
| 2.4.0 | 58,444 | 9/28/2021 |
| 2.4.0-beta | 430 | 9/28/2021 |
| 2.3.3 | 1,157 | 9/15/2021 |
| 2.3.3-beta | 445 | 9/15/2021 |
| 2.3.2 | 548 | 9/15/2021 |
| 2.3.1-beta | 461 | 9/15/2021 |
| 2.3.0 | 595 | 9/15/2021 |
| 2.2.0 | 932 | 9/13/2021 |
| 2.2.0-beta.17 | 371 | 9/13/2021 |
| 2.1.0 | 957 | 9/11/2021 |
| 2.1.0-beta.16 | 389 | 9/13/2021 |
| 2.1.0-beta.15 | 423 | 9/11/2021 |
| 2.0.0 | 999 | 9/10/2021 |
| 2.0.0-beta.14 | 365 | 9/9/2021 |
| 1.9.0 | 56,346 | 4/14/2021 |
| 1.9.0-beta.13 | 398 | 9/9/2021 |
| 1.9.0-beta.12 | 373 | 4/14/2021 |
| 1.9.0-beta.11 | 359 | 4/14/2021 |
| 1.9.0-beta.10 | 365 | 4/13/2021 |
| 1.9.0-beta.9 | 353 | 4/13/2021 |
| 1.9.0-beta.5 | 340 | 4/13/2021 |
| 1.9.0-beta.3 | 338 | 4/13/2021 |
| 1.9.0-beta.2 | 375 | 4/11/2021 |
| 1.8.0 | 198,886 | 12/10/2020 |
| 1.7.0 | 821 | 11/4/2020 |
| 1.6.0 | 62,069 | 6/26/2020 |
| 1.5.4 | 714 | 6/21/2020 |
| 1.5.3 | 6,773 | 5/27/2020 |
| 1.5.2 | 5,227 | 5/13/2020 |
| 1.5.1 | 1,425 | 5/13/2020 |
| 1.5.0 | 704 | 5/13/2020 |
| 1.4.1 | 736 | 5/11/2020 |
| 1.4.0 | 707 | 5/11/2020 |
| 1.3.0 | 1,716 | 4/30/2020 |
| 1.2.0 | 741 | 4/28/2020 |
| 1.1.0 | 1,052 | 4/27/2020 |
| 1.0.0 | 705 | 4/27/2020 |
| 0.1.2 | 1,803 | 4/14/2020 |
| 0.1.1 | 700 | 4/14/2020 |
| 0.1.0 | 1,495 | 4/11/2020 |
• [Add] net8.0
• [update] NUKE 7.0.6
• [Added] CODE OF CONDUCT
Full changelog at https://github.com/Sharp-Pulsar/AvroSchemaGenerator/blob/refs/tags/2.10.0/CHANGELOG.md