-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialect.go
53 lines (43 loc) · 1.08 KB
/
dialect.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package jsonschema
import "reflect"
type Dialect string
const (
DIALECT_DRAFT_4 Dialect = "http://json-schema.org/draft-04/schema#"
DIALECT_DRAFT_6 Dialect = "http://json-schema.org/draft-06/schema#"
DIALECT_DRAFT_7 Dialect = "http://json-schema.org/draft-07/schema#"
)
func (self Dialect) Valid() bool {
switch self {
case DIALECT_DRAFT_4:
fallthrough
case DIALECT_DRAFT_6:
fallthrough
case DIALECT_DRAFT_7:
return true
}
return false
}
// https://json-schema.org/understanding-json-schema/reference/schema#declaring-a-dialect
func dialect(key string) Keyword {
return Keyword{
Compile: func(ns *Namespace, ctx Context, config reflect.Value) []SchemaError {
errs := []SchemaError{}
if config.Kind() != reflect.String {
errs = append(errs, SchemaError{
Path: ctx.Path,
Keyword: key,
Message: `must be a "string"`,
})
return errs
}
if !Dialect(config.String()).Valid() {
errs = append(errs, SchemaError{
Path: ctx.Path,
Keyword: key,
Message: `must be a supported "Dialect"`,
})
}
return errs
},
}
}