<PackageReference Include="NJsonSchema" Version="4.26.6123.28532" />

JsonSchemaExtensionDataAttribute

Adds an extension data property to a class or property.
using System; using System.Runtime.CompilerServices; namespace NJsonSchema.Annotations { [AttributeUsage()] public class JsonSchemaExtensionDataAttribute : Attribute { public string Property { [CompilerGenerated] get; [CompilerGenerated] private set; } public object Value { [CompilerGenerated] get; [CompilerGenerated] private set; } public JsonSchemaExtensionDataAttribute(string property, object value) { Property = property; Value = value; } } }