JsonSchemaIgnoreAttribute
Indicates that the marked class is ignored during the JSON Schema generation.
using System;
namespace NJsonSchema.Annotations
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Property)]
public class JsonSchemaIgnoreAttribute : Attribute
{
}
}