ItemsCanBeNullAttribute
Annotation to specify that array items or dictionary values are nullable.
using System;
namespace NJsonSchema.Annotations
{
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
public class ItemsCanBeNullAttribute : Attribute
{
}
}