namespace HeuristicLab.JsonInterface { public interface IJsonItemValidator { /// /// Validate method to validate a JsonItem. /// /// /// The result of the validation process, /// contains a sucess flag and a list of errors /// (if validation failed). /// ValidationResult Validate(); } }