AvroSchemaGenerator 2.9.0
See the version list below for details.
dotnet add package AvroSchemaGenerator --version 2.9.0
NuGet\Install-Package AvroSchemaGenerator -Version 2.9.0
<PackageReference Include="AvroSchemaGenerator" Version="2.9.0" />
paket add AvroSchemaGenerator --version 2.9.0
#r "nuget: AvroSchemaGenerator, 2.9.0"
// Install AvroSchemaGenerator as a Cake Addin #addin nuget:?package=AvroSchemaGenerator&version=2.9.0 // Install AvroSchemaGenerator as a Cake Tool #tool nuget:?package=AvroSchemaGenerator&version=2.9.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
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 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. |
-
net7.0
- System.ComponentModel.Annotations (>= 5.0.0)
- System.Text.Json (>= 7.0.1)
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 | 5,247 | 12/16/2023 |
2.9.2 | 278,361 | 7/10/2023 |
2.9.1 | 1,455 | 3/19/2023 |
2.9.0 | 510 | 2/4/2023 |
2.9.0-rc.39 | 150 | 2/3/2023 |
2.9.0-rc.15 | 148 | 1/9/2023 |
2.9.0-rc.6 | 133 | 1/9/2023 |
2.8.1 | 104,157 | 1/9/2023 |
2.8.0 | 368 | 12/24/2022 |
2.8.0-rc.22 | 132 | 12/24/2022 |
2.8.0-rc.21 | 127 | 12/24/2022 |
2.8.0-rc.13 | 128 | 12/24/2022 |
2.8.0-rc.6 | 134 | 12/24/2022 |
2.7.0 | 141,628 | 7/20/2022 |
2.7.0-rc.139 | 153 | 7/20/2022 |
2.7.0-rc.138 | 140 | 7/20/2022 |
2.6.0 | 172,278 | 2/20/2022 |
2.6.0-rc.136 | 166 | 7/19/2022 |
2.5.2-alpha.2 | 173 | 1/16/2022 |
2.5.2-Alpha.1 | 166 | 1/16/2022 |
2.5.1 | 354 | 1/13/2022 |
2.5.0 | 458 | 12/26/2021 |
2.4.1 | 1,252 | 10/27/2021 |
2.4.0 | 50,984 | 9/28/2021 |
2.4.0-beta | 272 | 9/28/2021 |
2.3.3 | 936 | 9/15/2021 |
2.3.3-beta | 298 | 9/15/2021 |
2.3.2 | 376 | 9/15/2021 |
2.3.1-beta | 284 | 9/15/2021 |
2.3.0 | 421 | 9/15/2021 |
2.2.0 | 741 | 9/13/2021 |
2.2.0-beta.17 | 215 | 9/13/2021 |
2.1.0 | 772 | 9/11/2021 |
2.1.0-beta.16 | 230 | 9/13/2021 |
2.1.0-beta.15 | 285 | 9/11/2021 |
2.0.0 | 788 | 9/10/2021 |
2.0.0-beta.14 | 220 | 9/9/2021 |
1.9.0 | 52,528 | 4/14/2021 |
1.9.0-beta.13 | 247 | 9/9/2021 |
1.9.0-beta.12 | 217 | 4/14/2021 |
1.9.0-beta.11 | 200 | 4/14/2021 |
1.9.0-beta.10 | 202 | 4/13/2021 |
1.9.0-beta.9 | 198 | 4/13/2021 |
1.9.0-beta.5 | 189 | 4/13/2021 |
1.9.0-beta.3 | 186 | 4/13/2021 |
1.9.0-beta.2 | 231 | 4/11/2021 |
1.8.0 | 139,444 | 12/10/2020 |
1.7.0 | 625 | 11/4/2020 |
1.6.0 | 58,105 | 6/26/2020 |
1.5.4 | 518 | 6/21/2020 |
1.5.3 | 6,156 | 5/27/2020 |
1.5.2 | 4,789 | 5/13/2020 |
1.5.1 | 1,193 | 5/13/2020 |
1.5.0 | 504 | 5/13/2020 |
1.4.1 | 538 | 5/11/2020 |
1.4.0 | 514 | 5/11/2020 |
1.3.0 | 1,489 | 4/30/2020 |
1.2.0 | 541 | 4/28/2020 |
1.1.0 | 838 | 4/27/2020 |
1.0.0 | 513 | 4/27/2020 |
0.1.2 | 1,570 | 4/14/2020 |
0.1.1 | 506 | 4/14/2020 |
0.1.0 | 1,249 | 4/11/2020 |
• The Guid type in .NET logically maps the the AVRO UUID type @addisonj [https://github.com/eaba/AvroSchemaGenerator/commit/a4cd2255306531fbf24064947377789dc730f2c6]
Full changelog at https://github.com/eaba/AvroSchemaGenerator/blob/main/CHANGELOG.md