-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathjsonvalidate.go
34 lines (30 loc) · 1.09 KB
/
jsonvalidate.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package validation
//go:generate sh -c "go run gen/gen.go -json parserSettings.json -varname JSONSchemaParserSettings > ./parserSettings.go"
import (
"fmt"
"sort"
"strings"
"github.com/xeipuuv/gojsonschema"
)
// SchemaValidate validates a schema based on its JSON schema. Any validation error, if
// present, is context formatted, i.e. schema name is prefixed in the error msg.
func SchemaValidate(schemaName string, schemaContent []byte, jsonSchema string) error {
jsonSchemaLoader := gojsonschema.NewStringLoader(jsonSchema)
targetSchemaLoader := gojsonschema.NewBytesLoader(schemaContent)
result, err := gojsonschema.Validate(jsonSchemaLoader, targetSchemaLoader)
if err != nil {
return fmt.Errorf("unable to perform schema validation: %s", err)
}
if result.Valid() {
return nil
}
var errs []string
for _, err := range result.Errors() {
errs = append(errs, err.String())
}
sort.Strings(errs)
if len(errs) == 1 {
return fmt.Errorf("schema '%s' validation failed: %s", schemaName, errs[0])
}
return fmt.Errorf("schema '%s' validation failed:\n%s", schemaName, strings.Join(errs, "\n"))
}