diff --git a/backend/FwLite/MiniLcm/Validators/PartOfSpeechValidator.cs b/backend/FwLite/MiniLcm/Validators/PartOfSpeechValidator.cs index 476c030b2..7c160665d 100644 --- a/backend/FwLite/MiniLcm/Validators/PartOfSpeechValidator.cs +++ b/backend/FwLite/MiniLcm/Validators/PartOfSpeechValidator.cs @@ -7,7 +7,7 @@ public class PartOfSpeechValidator : AbstractValidator { public PartOfSpeechValidator() { - RuleFor(pos => pos.Id).Must(BeCanonicalGuid).When(pos => pos.Predefined); + // RuleFor(pos => pos.Id).Must(BeCanonicalGuid).When(pos => pos.Predefined); // TODO: Fix data in Sena3SyncTests and then uncomment this RuleFor(pos => pos.DeletedAt).Null(); RuleFor(pos => pos.Name).Required(); }