Details of authentication violations and the number of times the violation count has been reset.
C# syntax[DataContract] 
public class UserViolationCount
{
   [DataMember]
   public string SAMAccountName { get; set; }
   [DataMember]
   public string CommonName { get; set; }
   [DataMember]
   public string DN { get; set; }
   [DataMember]
   public int ViolationCount { get; set; }
   [DataMember]
   public int ResetCount { get; set; }
}
Properties
- SAMAccountName SAM account name of the user.
- CommonName Common name of the user.
- DN Distinguished name of the user.
- ViolationCount The count of Defender authentication violations.
- ResetCount The number of times the violation count has been reset.
