From 499a5e6b6df77bdb6e93096e954df578149f7296 Mon Sep 17 00:00:00 2001 From: Nick Dumas Date: Wed, 7 Jun 2023 14:49:00 -0400 Subject: [PATCH] Adding a bit more clarity to the output headers --- validate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate.go b/validate.go index bd1288b..8410cdd 100644 --- a/validate.go +++ b/validate.go @@ -56,7 +56,7 @@ func PrettyDetails(w io.Writer, format string, details jsonschema.Detailed, file } case "markdown": fmt.Fprintf(w, "# Validation Errors for %q\n", filename) - fmt.Fprintf(w, "Keyword Location|Instance Location|Error\n") + fmt.Fprintf(w, "Validation Rule|Failing Property|Error\n") fmt.Fprintf(w, "--|---|---\n") for _, e := range errors { fmt.Fprintf(w, "%s|%s|%s\n", e.KeywordLocation, e.InstanceLocation, e.Error)