See More

namespace JSONAPI.Documents { ///

/// Interface for JSON API documents that represent a collection of errors /// public interface IErrorDocument : IJsonApiDocument { /// /// The errors to send in this document /// IError[] Errors { get; } } }