diff --git a/csaf/validation.go b/csaf/validation.go index 3b42b81..99c6f55 100644 --- a/csaf/validation.go +++ b/csaf/validation.go @@ -169,6 +169,8 @@ func ValidateAggregator(doc interface{}) ([]string, error) { return compiledAggregatorSchema.validate(doc) } +// ValidateROLIE validates the ROLIE feed against the JSON schema +// of ROLIE func ValidateROLIE(doc interface{}) ([]string, error) { return compiledRolieSchema.validate(doc) }