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

JsonSchemaAbstractAttribute

Annotation to merge all inherited properties into this class/schema.
using System; namespace NJsonSchema.Annotations { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface)] public class JsonSchemaAbstractAttribute : Attribute { public bool IsAbstract { get; } public JsonSchemaAbstractAttribute() { IsAbstract = true; } public JsonSchemaAbstractAttribute(bool isAbstract) { IsAbstract = isAbstract; } } }