returnruleBuilder.SetValidator(newRegularExpressionValidator("^https?://[-_a-z0-9.]+",RegexOptions.IgnoreCase)).WithMessage("must be valid URL that starts with http(s)://");
returnruleBuilder.SetValidator(newRegularExpressionValidator(@"^(?!\/?https?://[-_a-z0-9.]+)",RegexOptions.IgnoreCase)).WithMessage($"Must be a valid URL path (ie: '{example}')");