json_schemer 0.2.15 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +16 -5
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +23 -12
- data/README.md +77 -2
- data/bin/hostname_character_classes +42 -0
- data/bin/rake +29 -0
- data/exe/json_schemer +62 -0
- data/json_schemer.gemspec +4 -12
- data/lib/json_schemer/cached_resolver.rb +16 -0
- data/lib/json_schemer/ecma_regexp.rb +51 -0
- data/lib/json_schemer/format/hostname.rb +58 -0
- data/lib/json_schemer/format/uri_template.rb +34 -0
- data/lib/json_schemer/format.rb +37 -26
- data/lib/json_schemer/schema/base.rb +152 -112
- data/lib/json_schemer/schema/draft4.json +149 -0
- data/lib/json_schemer/schema/draft6.json +155 -0
- data/lib/json_schemer/schema/draft7.json +172 -0
- data/lib/json_schemer/version.rb +1 -1
- data/lib/json_schemer.rb +37 -18
- metadata +32 -21
- data/lib/json_schemer/cached_ref_resolver.rb +0 -14
@@ -0,0 +1,149 @@
|
|
1
|
+
{
|
2
|
+
"id": "http://json-schema.org/draft-04/schema#",
|
3
|
+
"$schema": "http://json-schema.org/draft-04/schema#",
|
4
|
+
"description": "Core schema meta-schema",
|
5
|
+
"definitions": {
|
6
|
+
"schemaArray": {
|
7
|
+
"type": "array",
|
8
|
+
"minItems": 1,
|
9
|
+
"items": { "$ref": "#" }
|
10
|
+
},
|
11
|
+
"positiveInteger": {
|
12
|
+
"type": "integer",
|
13
|
+
"minimum": 0
|
14
|
+
},
|
15
|
+
"positiveIntegerDefault0": {
|
16
|
+
"allOf": [ { "$ref": "#/definitions/positiveInteger" }, { "default": 0 } ]
|
17
|
+
},
|
18
|
+
"simpleTypes": {
|
19
|
+
"enum": [ "array", "boolean", "integer", "null", "number", "object", "string" ]
|
20
|
+
},
|
21
|
+
"stringArray": {
|
22
|
+
"type": "array",
|
23
|
+
"items": { "type": "string" },
|
24
|
+
"minItems": 1,
|
25
|
+
"uniqueItems": true
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"type": "object",
|
29
|
+
"properties": {
|
30
|
+
"id": {
|
31
|
+
"type": "string"
|
32
|
+
},
|
33
|
+
"$schema": {
|
34
|
+
"type": "string"
|
35
|
+
},
|
36
|
+
"title": {
|
37
|
+
"type": "string"
|
38
|
+
},
|
39
|
+
"description": {
|
40
|
+
"type": "string"
|
41
|
+
},
|
42
|
+
"default": {},
|
43
|
+
"multipleOf": {
|
44
|
+
"type": "number",
|
45
|
+
"minimum": 0,
|
46
|
+
"exclusiveMinimum": true
|
47
|
+
},
|
48
|
+
"maximum": {
|
49
|
+
"type": "number"
|
50
|
+
},
|
51
|
+
"exclusiveMaximum": {
|
52
|
+
"type": "boolean",
|
53
|
+
"default": false
|
54
|
+
},
|
55
|
+
"minimum": {
|
56
|
+
"type": "number"
|
57
|
+
},
|
58
|
+
"exclusiveMinimum": {
|
59
|
+
"type": "boolean",
|
60
|
+
"default": false
|
61
|
+
},
|
62
|
+
"maxLength": { "$ref": "#/definitions/positiveInteger" },
|
63
|
+
"minLength": { "$ref": "#/definitions/positiveIntegerDefault0" },
|
64
|
+
"pattern": {
|
65
|
+
"type": "string",
|
66
|
+
"format": "regex"
|
67
|
+
},
|
68
|
+
"additionalItems": {
|
69
|
+
"anyOf": [
|
70
|
+
{ "type": "boolean" },
|
71
|
+
{ "$ref": "#" }
|
72
|
+
],
|
73
|
+
"default": {}
|
74
|
+
},
|
75
|
+
"items": {
|
76
|
+
"anyOf": [
|
77
|
+
{ "$ref": "#" },
|
78
|
+
{ "$ref": "#/definitions/schemaArray" }
|
79
|
+
],
|
80
|
+
"default": {}
|
81
|
+
},
|
82
|
+
"maxItems": { "$ref": "#/definitions/positiveInteger" },
|
83
|
+
"minItems": { "$ref": "#/definitions/positiveIntegerDefault0" },
|
84
|
+
"uniqueItems": {
|
85
|
+
"type": "boolean",
|
86
|
+
"default": false
|
87
|
+
},
|
88
|
+
"maxProperties": { "$ref": "#/definitions/positiveInteger" },
|
89
|
+
"minProperties": { "$ref": "#/definitions/positiveIntegerDefault0" },
|
90
|
+
"required": { "$ref": "#/definitions/stringArray" },
|
91
|
+
"additionalProperties": {
|
92
|
+
"anyOf": [
|
93
|
+
{ "type": "boolean" },
|
94
|
+
{ "$ref": "#" }
|
95
|
+
],
|
96
|
+
"default": {}
|
97
|
+
},
|
98
|
+
"definitions": {
|
99
|
+
"type": "object",
|
100
|
+
"additionalProperties": { "$ref": "#" },
|
101
|
+
"default": {}
|
102
|
+
},
|
103
|
+
"properties": {
|
104
|
+
"type": "object",
|
105
|
+
"additionalProperties": { "$ref": "#" },
|
106
|
+
"default": {}
|
107
|
+
},
|
108
|
+
"patternProperties": {
|
109
|
+
"type": "object",
|
110
|
+
"additionalProperties": { "$ref": "#" },
|
111
|
+
"default": {}
|
112
|
+
},
|
113
|
+
"dependencies": {
|
114
|
+
"type": "object",
|
115
|
+
"additionalProperties": {
|
116
|
+
"anyOf": [
|
117
|
+
{ "$ref": "#" },
|
118
|
+
{ "$ref": "#/definitions/stringArray" }
|
119
|
+
]
|
120
|
+
}
|
121
|
+
},
|
122
|
+
"enum": {
|
123
|
+
"type": "array",
|
124
|
+
"minItems": 1,
|
125
|
+
"uniqueItems": true
|
126
|
+
},
|
127
|
+
"type": {
|
128
|
+
"anyOf": [
|
129
|
+
{ "$ref": "#/definitions/simpleTypes" },
|
130
|
+
{
|
131
|
+
"type": "array",
|
132
|
+
"items": { "$ref": "#/definitions/simpleTypes" },
|
133
|
+
"minItems": 1,
|
134
|
+
"uniqueItems": true
|
135
|
+
}
|
136
|
+
]
|
137
|
+
},
|
138
|
+
"format": { "type": "string" },
|
139
|
+
"allOf": { "$ref": "#/definitions/schemaArray" },
|
140
|
+
"anyOf": { "$ref": "#/definitions/schemaArray" },
|
141
|
+
"oneOf": { "$ref": "#/definitions/schemaArray" },
|
142
|
+
"not": { "$ref": "#" }
|
143
|
+
},
|
144
|
+
"dependencies": {
|
145
|
+
"exclusiveMaximum": [ "maximum" ],
|
146
|
+
"exclusiveMinimum": [ "minimum" ]
|
147
|
+
},
|
148
|
+
"default": {}
|
149
|
+
}
|
@@ -0,0 +1,155 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-06/schema#",
|
3
|
+
"$id": "http://json-schema.org/draft-06/schema#",
|
4
|
+
"title": "Core schema meta-schema",
|
5
|
+
"definitions": {
|
6
|
+
"schemaArray": {
|
7
|
+
"type": "array",
|
8
|
+
"minItems": 1,
|
9
|
+
"items": { "$ref": "#" }
|
10
|
+
},
|
11
|
+
"nonNegativeInteger": {
|
12
|
+
"type": "integer",
|
13
|
+
"minimum": 0
|
14
|
+
},
|
15
|
+
"nonNegativeIntegerDefault0": {
|
16
|
+
"allOf": [
|
17
|
+
{ "$ref": "#/definitions/nonNegativeInteger" },
|
18
|
+
{ "default": 0 }
|
19
|
+
]
|
20
|
+
},
|
21
|
+
"simpleTypes": {
|
22
|
+
"enum": [
|
23
|
+
"array",
|
24
|
+
"boolean",
|
25
|
+
"integer",
|
26
|
+
"null",
|
27
|
+
"number",
|
28
|
+
"object",
|
29
|
+
"string"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"stringArray": {
|
33
|
+
"type": "array",
|
34
|
+
"items": { "type": "string" },
|
35
|
+
"uniqueItems": true,
|
36
|
+
"default": []
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"type": ["object", "boolean"],
|
40
|
+
"properties": {
|
41
|
+
"$id": {
|
42
|
+
"type": "string",
|
43
|
+
"format": "uri-reference"
|
44
|
+
},
|
45
|
+
"$schema": {
|
46
|
+
"type": "string",
|
47
|
+
"format": "uri"
|
48
|
+
},
|
49
|
+
"$ref": {
|
50
|
+
"type": "string",
|
51
|
+
"format": "uri-reference"
|
52
|
+
},
|
53
|
+
"title": {
|
54
|
+
"type": "string"
|
55
|
+
},
|
56
|
+
"description": {
|
57
|
+
"type": "string"
|
58
|
+
},
|
59
|
+
"default": {},
|
60
|
+
"examples": {
|
61
|
+
"type": "array",
|
62
|
+
"items": {}
|
63
|
+
},
|
64
|
+
"multipleOf": {
|
65
|
+
"type": "number",
|
66
|
+
"exclusiveMinimum": 0
|
67
|
+
},
|
68
|
+
"maximum": {
|
69
|
+
"type": "number"
|
70
|
+
},
|
71
|
+
"exclusiveMaximum": {
|
72
|
+
"type": "number"
|
73
|
+
},
|
74
|
+
"minimum": {
|
75
|
+
"type": "number"
|
76
|
+
},
|
77
|
+
"exclusiveMinimum": {
|
78
|
+
"type": "number"
|
79
|
+
},
|
80
|
+
"maxLength": { "$ref": "#/definitions/nonNegativeInteger" },
|
81
|
+
"minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
|
82
|
+
"pattern": {
|
83
|
+
"type": "string",
|
84
|
+
"format": "regex"
|
85
|
+
},
|
86
|
+
"additionalItems": { "$ref": "#" },
|
87
|
+
"items": {
|
88
|
+
"anyOf": [
|
89
|
+
{ "$ref": "#" },
|
90
|
+
{ "$ref": "#/definitions/schemaArray" }
|
91
|
+
],
|
92
|
+
"default": {}
|
93
|
+
},
|
94
|
+
"maxItems": { "$ref": "#/definitions/nonNegativeInteger" },
|
95
|
+
"minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
|
96
|
+
"uniqueItems": {
|
97
|
+
"type": "boolean",
|
98
|
+
"default": false
|
99
|
+
},
|
100
|
+
"contains": { "$ref": "#" },
|
101
|
+
"maxProperties": { "$ref": "#/definitions/nonNegativeInteger" },
|
102
|
+
"minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
|
103
|
+
"required": { "$ref": "#/definitions/stringArray" },
|
104
|
+
"additionalProperties": { "$ref": "#" },
|
105
|
+
"definitions": {
|
106
|
+
"type": "object",
|
107
|
+
"additionalProperties": { "$ref": "#" },
|
108
|
+
"default": {}
|
109
|
+
},
|
110
|
+
"properties": {
|
111
|
+
"type": "object",
|
112
|
+
"additionalProperties": { "$ref": "#" },
|
113
|
+
"default": {}
|
114
|
+
},
|
115
|
+
"patternProperties": {
|
116
|
+
"type": "object",
|
117
|
+
"additionalProperties": { "$ref": "#" },
|
118
|
+
"propertyNames": { "format": "regex" },
|
119
|
+
"default": {}
|
120
|
+
},
|
121
|
+
"dependencies": {
|
122
|
+
"type": "object",
|
123
|
+
"additionalProperties": {
|
124
|
+
"anyOf": [
|
125
|
+
{ "$ref": "#" },
|
126
|
+
{ "$ref": "#/definitions/stringArray" }
|
127
|
+
]
|
128
|
+
}
|
129
|
+
},
|
130
|
+
"propertyNames": { "$ref": "#" },
|
131
|
+
"const": {},
|
132
|
+
"enum": {
|
133
|
+
"type": "array",
|
134
|
+
"minItems": 1,
|
135
|
+
"uniqueItems": true
|
136
|
+
},
|
137
|
+
"type": {
|
138
|
+
"anyOf": [
|
139
|
+
{ "$ref": "#/definitions/simpleTypes" },
|
140
|
+
{
|
141
|
+
"type": "array",
|
142
|
+
"items": { "$ref": "#/definitions/simpleTypes" },
|
143
|
+
"minItems": 1,
|
144
|
+
"uniqueItems": true
|
145
|
+
}
|
146
|
+
]
|
147
|
+
},
|
148
|
+
"format": { "type": "string" },
|
149
|
+
"allOf": { "$ref": "#/definitions/schemaArray" },
|
150
|
+
"anyOf": { "$ref": "#/definitions/schemaArray" },
|
151
|
+
"oneOf": { "$ref": "#/definitions/schemaArray" },
|
152
|
+
"not": { "$ref": "#" }
|
153
|
+
},
|
154
|
+
"default": {}
|
155
|
+
}
|
@@ -0,0 +1,172 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
3
|
+
"$id": "http://json-schema.org/draft-07/schema#",
|
4
|
+
"title": "Core schema meta-schema",
|
5
|
+
"definitions": {
|
6
|
+
"schemaArray": {
|
7
|
+
"type": "array",
|
8
|
+
"minItems": 1,
|
9
|
+
"items": { "$ref": "#" }
|
10
|
+
},
|
11
|
+
"nonNegativeInteger": {
|
12
|
+
"type": "integer",
|
13
|
+
"minimum": 0
|
14
|
+
},
|
15
|
+
"nonNegativeIntegerDefault0": {
|
16
|
+
"allOf": [
|
17
|
+
{ "$ref": "#/definitions/nonNegativeInteger" },
|
18
|
+
{ "default": 0 }
|
19
|
+
]
|
20
|
+
},
|
21
|
+
"simpleTypes": {
|
22
|
+
"enum": [
|
23
|
+
"array",
|
24
|
+
"boolean",
|
25
|
+
"integer",
|
26
|
+
"null",
|
27
|
+
"number",
|
28
|
+
"object",
|
29
|
+
"string"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"stringArray": {
|
33
|
+
"type": "array",
|
34
|
+
"items": { "type": "string" },
|
35
|
+
"uniqueItems": true,
|
36
|
+
"default": []
|
37
|
+
}
|
38
|
+
},
|
39
|
+
"type": ["object", "boolean"],
|
40
|
+
"properties": {
|
41
|
+
"$id": {
|
42
|
+
"type": "string",
|
43
|
+
"format": "uri-reference"
|
44
|
+
},
|
45
|
+
"$schema": {
|
46
|
+
"type": "string",
|
47
|
+
"format": "uri"
|
48
|
+
},
|
49
|
+
"$ref": {
|
50
|
+
"type": "string",
|
51
|
+
"format": "uri-reference"
|
52
|
+
},
|
53
|
+
"$comment": {
|
54
|
+
"type": "string"
|
55
|
+
},
|
56
|
+
"title": {
|
57
|
+
"type": "string"
|
58
|
+
},
|
59
|
+
"description": {
|
60
|
+
"type": "string"
|
61
|
+
},
|
62
|
+
"default": true,
|
63
|
+
"readOnly": {
|
64
|
+
"type": "boolean",
|
65
|
+
"default": false
|
66
|
+
},
|
67
|
+
"writeOnly": {
|
68
|
+
"type": "boolean",
|
69
|
+
"default": false
|
70
|
+
},
|
71
|
+
"examples": {
|
72
|
+
"type": "array",
|
73
|
+
"items": true
|
74
|
+
},
|
75
|
+
"multipleOf": {
|
76
|
+
"type": "number",
|
77
|
+
"exclusiveMinimum": 0
|
78
|
+
},
|
79
|
+
"maximum": {
|
80
|
+
"type": "number"
|
81
|
+
},
|
82
|
+
"exclusiveMaximum": {
|
83
|
+
"type": "number"
|
84
|
+
},
|
85
|
+
"minimum": {
|
86
|
+
"type": "number"
|
87
|
+
},
|
88
|
+
"exclusiveMinimum": {
|
89
|
+
"type": "number"
|
90
|
+
},
|
91
|
+
"maxLength": { "$ref": "#/definitions/nonNegativeInteger" },
|
92
|
+
"minLength": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
|
93
|
+
"pattern": {
|
94
|
+
"type": "string",
|
95
|
+
"format": "regex"
|
96
|
+
},
|
97
|
+
"additionalItems": { "$ref": "#" },
|
98
|
+
"items": {
|
99
|
+
"anyOf": [
|
100
|
+
{ "$ref": "#" },
|
101
|
+
{ "$ref": "#/definitions/schemaArray" }
|
102
|
+
],
|
103
|
+
"default": true
|
104
|
+
},
|
105
|
+
"maxItems": { "$ref": "#/definitions/nonNegativeInteger" },
|
106
|
+
"minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
|
107
|
+
"uniqueItems": {
|
108
|
+
"type": "boolean",
|
109
|
+
"default": false
|
110
|
+
},
|
111
|
+
"contains": { "$ref": "#" },
|
112
|
+
"maxProperties": { "$ref": "#/definitions/nonNegativeInteger" },
|
113
|
+
"minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
|
114
|
+
"required": { "$ref": "#/definitions/stringArray" },
|
115
|
+
"additionalProperties": { "$ref": "#" },
|
116
|
+
"definitions": {
|
117
|
+
"type": "object",
|
118
|
+
"additionalProperties": { "$ref": "#" },
|
119
|
+
"default": {}
|
120
|
+
},
|
121
|
+
"properties": {
|
122
|
+
"type": "object",
|
123
|
+
"additionalProperties": { "$ref": "#" },
|
124
|
+
"default": {}
|
125
|
+
},
|
126
|
+
"patternProperties": {
|
127
|
+
"type": "object",
|
128
|
+
"additionalProperties": { "$ref": "#" },
|
129
|
+
"propertyNames": { "format": "regex" },
|
130
|
+
"default": {}
|
131
|
+
},
|
132
|
+
"dependencies": {
|
133
|
+
"type": "object",
|
134
|
+
"additionalProperties": {
|
135
|
+
"anyOf": [
|
136
|
+
{ "$ref": "#" },
|
137
|
+
{ "$ref": "#/definitions/stringArray" }
|
138
|
+
]
|
139
|
+
}
|
140
|
+
},
|
141
|
+
"propertyNames": { "$ref": "#" },
|
142
|
+
"const": true,
|
143
|
+
"enum": {
|
144
|
+
"type": "array",
|
145
|
+
"items": true,
|
146
|
+
"minItems": 1,
|
147
|
+
"uniqueItems": true
|
148
|
+
},
|
149
|
+
"type": {
|
150
|
+
"anyOf": [
|
151
|
+
{ "$ref": "#/definitions/simpleTypes" },
|
152
|
+
{
|
153
|
+
"type": "array",
|
154
|
+
"items": { "$ref": "#/definitions/simpleTypes" },
|
155
|
+
"minItems": 1,
|
156
|
+
"uniqueItems": true
|
157
|
+
}
|
158
|
+
]
|
159
|
+
},
|
160
|
+
"format": { "type": "string" },
|
161
|
+
"contentMediaType": { "type": "string" },
|
162
|
+
"contentEncoding": { "type": "string" },
|
163
|
+
"if": { "$ref": "#" },
|
164
|
+
"then": { "$ref": "#" },
|
165
|
+
"else": { "$ref": "#" },
|
166
|
+
"allOf": { "$ref": "#/definitions/schemaArray" },
|
167
|
+
"anyOf": { "$ref": "#/definitions/schemaArray" },
|
168
|
+
"oneOf": { "$ref": "#/definitions/schemaArray" },
|
169
|
+
"not": { "$ref": "#" }
|
170
|
+
},
|
171
|
+
"default": true
|
172
|
+
}
|
data/lib/json_schemer/version.rb
CHANGED
data/lib/json_schemer.rb
CHANGED
@@ -1,21 +1,25 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
require 'base64'
|
3
|
+
require 'bigdecimal'
|
3
4
|
require 'ipaddr'
|
4
5
|
require 'json'
|
5
6
|
require 'net/http'
|
6
7
|
require 'pathname'
|
8
|
+
require 'set'
|
7
9
|
require 'time'
|
8
10
|
require 'uri'
|
9
11
|
|
10
|
-
require 'ecma-re-validator'
|
11
12
|
require 'hana'
|
12
13
|
require 'regexp_parser'
|
13
|
-
require '
|
14
|
+
require 'simpleidn'
|
14
15
|
|
15
16
|
require 'json_schemer/version'
|
17
|
+
require 'json_schemer/format/hostname'
|
18
|
+
require 'json_schemer/format/uri_template'
|
16
19
|
require 'json_schemer/format'
|
17
20
|
require 'json_schemer/errors'
|
18
|
-
require 'json_schemer/
|
21
|
+
require 'json_schemer/cached_resolver'
|
22
|
+
require 'json_schemer/ecma_regexp'
|
19
23
|
require 'json_schemer/schema/base'
|
20
24
|
require 'json_schemer/schema/draft4'
|
21
25
|
require 'json_schemer/schema/draft6'
|
@@ -24,49 +28,64 @@ require 'json_schemer/schema/draft7'
|
|
24
28
|
module JSONSchemer
|
25
29
|
class UnsupportedMetaSchema < StandardError; end
|
26
30
|
class UnknownRef < StandardError; end
|
31
|
+
class UnknownFormat < StandardError; end
|
27
32
|
class InvalidRefResolution < StandardError; end
|
33
|
+
class InvalidRegexpResolution < StandardError; end
|
28
34
|
class InvalidFileURI < StandardError; end
|
29
35
|
class InvalidSymbolKey < StandardError; end
|
36
|
+
class InvalidEcmaRegexp < StandardError; end
|
30
37
|
|
31
|
-
|
38
|
+
DEFAULT_SCHEMA_CLASS = Schema::Draft7
|
39
|
+
SCHEMA_CLASS_BY_META_SCHEMA = {
|
32
40
|
'http://json-schema.org/schema#' => Schema::Draft4, # Version-less $schema deprecated after Draft 4
|
33
41
|
'http://json-schema.org/draft-04/schema#' => Schema::Draft4,
|
34
42
|
'http://json-schema.org/draft-06/schema#' => Schema::Draft6,
|
35
43
|
'http://json-schema.org/draft-07/schema#' => Schema::Draft7
|
36
44
|
}.freeze
|
37
45
|
|
38
|
-
|
46
|
+
WINDOWS_URI_PATH_REGEX = /\A\/[a-z]:/i
|
39
47
|
|
40
48
|
FILE_URI_REF_RESOLVER = proc do |uri|
|
41
49
|
raise InvalidFileURI, 'must use `file` scheme' unless uri.scheme == 'file'
|
42
50
|
raise InvalidFileURI, 'cannot have a host (use `file:///`)' if uri.host && !uri.host.empty?
|
43
|
-
|
51
|
+
path = uri.path
|
52
|
+
path = path[1..-1] if path.match?(WINDOWS_URI_PATH_REGEX)
|
53
|
+
JSON.parse(File.read(URI::DEFAULT_PARSER.unescape(path)))
|
44
54
|
end
|
45
55
|
|
46
56
|
class << self
|
47
|
-
def schema(schema, **options)
|
57
|
+
def schema(schema, default_schema_class: DEFAULT_SCHEMA_CLASS, **options)
|
48
58
|
case schema
|
49
59
|
when String
|
50
60
|
schema = JSON.parse(schema)
|
51
61
|
when Pathname
|
52
|
-
|
53
|
-
|
54
|
-
|
62
|
+
base_uri = URI.parse(File.join('file:', URI::DEFAULT_PARSER.escape(schema.realpath.to_s)))
|
63
|
+
options[:base_uri] = base_uri
|
64
|
+
schema = if options.key?(:ref_resolver)
|
65
|
+
FILE_URI_REF_RESOLVER.call(base_uri)
|
55
66
|
else
|
56
|
-
ref_resolver =
|
57
|
-
schema = ref_resolver.call(uri)
|
67
|
+
ref_resolver = CachedResolver.new(&FILE_URI_REF_RESOLVER)
|
58
68
|
options[:ref_resolver] = ref_resolver
|
69
|
+
ref_resolver.call(base_uri)
|
59
70
|
end
|
60
|
-
schema[draft_class(schema)::ID_KEYWORD] ||= uri.to_s
|
61
71
|
end
|
62
|
-
|
72
|
+
|
73
|
+
schema_class = if schema.is_a?(Hash) && schema.key?('$schema')
|
74
|
+
meta_schema = schema.fetch('$schema')
|
75
|
+
SCHEMA_CLASS_BY_META_SCHEMA[meta_schema] || raise(UnsupportedMetaSchema, meta_schema)
|
76
|
+
else
|
77
|
+
default_schema_class
|
78
|
+
end
|
79
|
+
|
80
|
+
schema_class.new(schema, **options)
|
63
81
|
end
|
64
82
|
|
65
|
-
|
83
|
+
def valid_schema?(schema, default_schema_class: DEFAULT_SCHEMA_CLASS)
|
84
|
+
schema(schema, default_schema_class: default_schema_class).valid_schema?
|
85
|
+
end
|
66
86
|
|
67
|
-
def
|
68
|
-
|
69
|
-
DRAFT_CLASS_BY_META_SCHEMA[meta_schema] || raise(UnsupportedMetaSchema, meta_schema)
|
87
|
+
def validate_schema(schema, default_schema_class: DEFAULT_SCHEMA_CLASS)
|
88
|
+
schema(schema, default_schema_class: default_schema_class).validate_schema
|
70
89
|
end
|
71
90
|
end
|
72
91
|
end
|