ExCedar.ValidationResult (ex_cedar v0.1.2)

Copy Markdown View Source

Result of ExCedar.Validator.validate/3.

validated? is true when errors is empty. Warnings may be present even when validated? is true. Both errors and warnings are lists of ExCedar.ValidationResult.Finding structs.

Summary

Types

t()

@type t() :: %ExCedar.ValidationResult{
  errors: [ExCedar.ValidationResult.Finding.t()],
  validated?: boolean(),
  warnings: [ExCedar.ValidationResult.Finding.t()]
}