json-schema-library 11.1.0 → 11.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mocharc.js +1 -0
- package/CHANGELOG.md +6 -0
- package/README.md +21 -13
- package/bowtie/.editorconfig +21 -0
- package/bowtie/.prettierrc +6 -0
- package/bowtie/BOWTIE.md +54 -0
- package/bowtie/Dockerfile +6 -0
- package/bowtie/bowtie-api.ts +101 -0
- package/bowtie/bowtie.test.ts +76 -0
- package/bowtie/bowtie.ts +156 -0
- package/bowtie/package.json +11 -0
- package/bowtie/tsconfig.json +12 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +6 -514
- package/dist/index.d.mts +6 -514
- package/dist/index.mjs +1 -1
- package/dist/jlib.js +2 -13
- package/dist/remotes/index.cjs +1 -0
- package/dist/remotes/index.d.cts +7 -0
- package/dist/remotes/index.d.mts +7 -0
- package/dist/remotes/index.mjs +1 -0
- package/dist/types-B2wwNWyo.d.cts +513 -0
- package/dist/types-BhTU1l2h.d.mts +513 -0
- package/index.ts +0 -3
- package/package.json +14 -8
- package/src/Draft.ts +1 -1
- package/src/Keyword.ts +2 -3
- package/src/SchemaNode.ts +9 -0
- package/src/compileSchema.ts +4 -1
- package/src/draft04/keywords/$ref.ts +22 -14
- package/src/draft04/keywords/exclusiveMaximum.ts +14 -0
- package/src/draft04/keywords/exclusiveMinimum.ts +14 -0
- package/src/draft04/validateSchema.test.ts +20 -0
- package/src/draft06/keywords/$ref.ts +15 -5
- package/src/draft2019-09/keywords/$ref.test.ts +3 -1
- package/src/draft2019-09/keywords/$ref.ts +40 -16
- package/src/draft2019-09/keywords/additionalItems.ts +33 -10
- package/src/draft2019-09/keywords/items.ts +32 -10
- package/src/draft2019-09/keywords/unevaluatedItems.ts +19 -6
- package/src/draft2019-09/methods/getData.ts +1 -1
- package/src/draft2019-09/validateSchema.test.ts +28 -0
- package/src/errors/errors.ts +4 -0
- package/src/formats/formats.ts +35 -28
- package/src/formats/hyperjump.d.ts +172 -0
- package/src/keywords/$ref.ts +47 -13
- package/src/keywords/properties.ts +1 -1
- package/src/keywords/propertyDependencies.ts +1 -1
- package/src/methods/getData.ts +1 -1
- package/src/validateNode.ts +4 -1
- package/tsconfig.json +11 -4
- package/tsconfig.test.json +9 -2
- package/tsdown.config.ts +1 -1
- package/Dockerfile +0 -6
- package/bowtie_jlib.js +0 -140
- package/remotes/draft04.json +0 -150
- package/remotes/draft06.json +0 -155
- package/remotes/draft07.json +0 -155
- package/remotes/draft2019-09.json +0 -42
- package/remotes/draft2019-09_meta_applicator.json +0 -53
- package/remotes/draft2019-09_meta_content.json +0 -14
- package/remotes/draft2019-09_meta_core.json +0 -54
- package/remotes/draft2019-09_meta_format.json +0 -11
- package/remotes/draft2019-09_meta_meta-data.json +0 -34
- package/remotes/draft2019-09_meta_validation.json +0 -95
- package/remotes/draft2020-12.json +0 -55
- package/remotes/draft2020-12_meta_applicator.json +0 -45
- package/remotes/draft2020-12_meta_content.json +0 -14
- package/remotes/draft2020-12_meta_core.json +0 -48
- package/remotes/draft2020-12_meta_format_annotation.json +0 -11
- package/remotes/draft2020-12_meta_format_assertion.json +0 -11
- package/remotes/draft2020-12_meta_meta_data.json +0 -34
- package/remotes/draft2020-12_meta_unevaluated.json +0 -12
- package/remotes/draft2020-12_meta_validation.json +0 -87
- package/remotes/index.ts +0 -48
package/remotes/draft04.json
DELETED
|
@@ -1,150 +0,0 @@
|
|
|
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
|
-
"format": "uri"
|
|
33
|
-
},
|
|
34
|
-
"$schema": {
|
|
35
|
-
"type": "string",
|
|
36
|
-
"format": "uri"
|
|
37
|
-
},
|
|
38
|
-
"title": {
|
|
39
|
-
"type": "string"
|
|
40
|
-
},
|
|
41
|
-
"description": {
|
|
42
|
-
"type": "string"
|
|
43
|
-
},
|
|
44
|
-
"default": {},
|
|
45
|
-
"multipleOf": {
|
|
46
|
-
"type": "number",
|
|
47
|
-
"minimum": 0,
|
|
48
|
-
"exclusiveMinimum": true
|
|
49
|
-
},
|
|
50
|
-
"maximum": {
|
|
51
|
-
"type": "number"
|
|
52
|
-
},
|
|
53
|
-
"exclusiveMaximum": {
|
|
54
|
-
"type": "boolean",
|
|
55
|
-
"default": false
|
|
56
|
-
},
|
|
57
|
-
"minimum": {
|
|
58
|
-
"type": "number"
|
|
59
|
-
},
|
|
60
|
-
"exclusiveMinimum": {
|
|
61
|
-
"type": "boolean",
|
|
62
|
-
"default": false
|
|
63
|
-
},
|
|
64
|
-
"maxLength": { "$ref": "#/definitions/positiveInteger" },
|
|
65
|
-
"minLength": { "$ref": "#/definitions/positiveIntegerDefault0" },
|
|
66
|
-
"pattern": {
|
|
67
|
-
"type": "string",
|
|
68
|
-
"format": "regex"
|
|
69
|
-
},
|
|
70
|
-
"additionalItems": {
|
|
71
|
-
"anyOf": [
|
|
72
|
-
{ "type": "boolean" },
|
|
73
|
-
{ "$ref": "#" }
|
|
74
|
-
],
|
|
75
|
-
"default": {}
|
|
76
|
-
},
|
|
77
|
-
"items": {
|
|
78
|
-
"anyOf": [
|
|
79
|
-
{ "$ref": "#" },
|
|
80
|
-
{ "$ref": "#/definitions/schemaArray" }
|
|
81
|
-
],
|
|
82
|
-
"default": {}
|
|
83
|
-
},
|
|
84
|
-
"maxItems": { "$ref": "#/definitions/positiveInteger" },
|
|
85
|
-
"minItems": { "$ref": "#/definitions/positiveIntegerDefault0" },
|
|
86
|
-
"uniqueItems": {
|
|
87
|
-
"type": "boolean",
|
|
88
|
-
"default": false
|
|
89
|
-
},
|
|
90
|
-
"maxProperties": { "$ref": "#/definitions/positiveInteger" },
|
|
91
|
-
"minProperties": { "$ref": "#/definitions/positiveIntegerDefault0" },
|
|
92
|
-
"required": { "$ref": "#/definitions/stringArray" },
|
|
93
|
-
"additionalProperties": {
|
|
94
|
-
"anyOf": [
|
|
95
|
-
{ "type": "boolean" },
|
|
96
|
-
{ "$ref": "#" }
|
|
97
|
-
],
|
|
98
|
-
"default": {}
|
|
99
|
-
},
|
|
100
|
-
"definitions": {
|
|
101
|
-
"type": "object",
|
|
102
|
-
"additionalProperties": { "$ref": "#" },
|
|
103
|
-
"default": {}
|
|
104
|
-
},
|
|
105
|
-
"properties": {
|
|
106
|
-
"type": "object",
|
|
107
|
-
"additionalProperties": { "$ref": "#" },
|
|
108
|
-
"default": {}
|
|
109
|
-
},
|
|
110
|
-
"patternProperties": {
|
|
111
|
-
"type": "object",
|
|
112
|
-
"additionalProperties": { "$ref": "#" },
|
|
113
|
-
"default": {}
|
|
114
|
-
},
|
|
115
|
-
"dependencies": {
|
|
116
|
-
"type": "object",
|
|
117
|
-
"additionalProperties": {
|
|
118
|
-
"anyOf": [
|
|
119
|
-
{ "$ref": "#" },
|
|
120
|
-
{ "$ref": "#/definitions/stringArray" }
|
|
121
|
-
]
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"enum": {
|
|
125
|
-
"type": "array",
|
|
126
|
-
"minItems": 1,
|
|
127
|
-
"uniqueItems": true
|
|
128
|
-
},
|
|
129
|
-
"type": {
|
|
130
|
-
"anyOf": [
|
|
131
|
-
{ "$ref": "#/definitions/simpleTypes" },
|
|
132
|
-
{
|
|
133
|
-
"type": "array",
|
|
134
|
-
"items": { "$ref": "#/definitions/simpleTypes" },
|
|
135
|
-
"minItems": 1,
|
|
136
|
-
"uniqueItems": true
|
|
137
|
-
}
|
|
138
|
-
]
|
|
139
|
-
},
|
|
140
|
-
"allOf": { "$ref": "#/definitions/schemaArray" },
|
|
141
|
-
"anyOf": { "$ref": "#/definitions/schemaArray" },
|
|
142
|
-
"oneOf": { "$ref": "#/definitions/schemaArray" },
|
|
143
|
-
"not": { "$ref": "#" }
|
|
144
|
-
},
|
|
145
|
-
"dependencies": {
|
|
146
|
-
"exclusiveMaximum": [ "maximum" ],
|
|
147
|
-
"exclusiveMinimum": [ "minimum" ]
|
|
148
|
-
},
|
|
149
|
-
"default": {}
|
|
150
|
-
}
|
package/remotes/draft06.json
DELETED
|
@@ -1,155 +0,0 @@
|
|
|
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
|
-
}
|
package/remotes/draft07.json
DELETED
|
@@ -1,155 +0,0 @@
|
|
|
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": [{ "$ref": "#/definitions/nonNegativeInteger" }, { "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
|
-
"uniqueItems": true,
|
|
25
|
-
"default": []
|
|
26
|
-
}
|
|
27
|
-
},
|
|
28
|
-
"type": ["object", "boolean"],
|
|
29
|
-
"properties": {
|
|
30
|
-
"$id": {
|
|
31
|
-
"type": "string",
|
|
32
|
-
"format": "uri-reference"
|
|
33
|
-
},
|
|
34
|
-
"$schema": {
|
|
35
|
-
"type": "string",
|
|
36
|
-
"format": "uri"
|
|
37
|
-
},
|
|
38
|
-
"$ref": {
|
|
39
|
-
"type": "string",
|
|
40
|
-
"format": "uri-reference"
|
|
41
|
-
},
|
|
42
|
-
"$comment": {
|
|
43
|
-
"type": "string"
|
|
44
|
-
},
|
|
45
|
-
"title": {
|
|
46
|
-
"type": "string"
|
|
47
|
-
},
|
|
48
|
-
"description": {
|
|
49
|
-
"type": "string"
|
|
50
|
-
},
|
|
51
|
-
"default": true,
|
|
52
|
-
"readOnly": {
|
|
53
|
-
"type": "boolean",
|
|
54
|
-
"default": false
|
|
55
|
-
},
|
|
56
|
-
"writeOnly": {
|
|
57
|
-
"type": "boolean",
|
|
58
|
-
"default": false
|
|
59
|
-
},
|
|
60
|
-
"examples": {
|
|
61
|
-
"type": "array",
|
|
62
|
-
"items": true
|
|
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": [{ "$ref": "#" }, { "$ref": "#/definitions/schemaArray" }],
|
|
89
|
-
"default": true
|
|
90
|
-
},
|
|
91
|
-
"maxItems": { "$ref": "#/definitions/nonNegativeInteger" },
|
|
92
|
-
"minItems": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
|
|
93
|
-
"uniqueItems": {
|
|
94
|
-
"type": "boolean",
|
|
95
|
-
"default": false
|
|
96
|
-
},
|
|
97
|
-
"contains": { "$ref": "#" },
|
|
98
|
-
"maxProperties": { "$ref": "#/definitions/nonNegativeInteger" },
|
|
99
|
-
"minProperties": { "$ref": "#/definitions/nonNegativeIntegerDefault0" },
|
|
100
|
-
"required": { "$ref": "#/definitions/stringArray" },
|
|
101
|
-
"additionalProperties": { "$ref": "#" },
|
|
102
|
-
"definitions": {
|
|
103
|
-
"type": "object",
|
|
104
|
-
"additionalProperties": { "$ref": "#" },
|
|
105
|
-
"default": {}
|
|
106
|
-
},
|
|
107
|
-
"properties": {
|
|
108
|
-
"type": "object",
|
|
109
|
-
"additionalProperties": { "$ref": "#" },
|
|
110
|
-
"default": {}
|
|
111
|
-
},
|
|
112
|
-
"patternProperties": {
|
|
113
|
-
"type": "object",
|
|
114
|
-
"additionalProperties": { "$ref": "#" },
|
|
115
|
-
"propertyNames": { "format": "regex" },
|
|
116
|
-
"default": {}
|
|
117
|
-
},
|
|
118
|
-
"dependencies": {
|
|
119
|
-
"type": "object",
|
|
120
|
-
"additionalProperties": {
|
|
121
|
-
"anyOf": [{ "$ref": "#" }, { "$ref": "#/definitions/stringArray" }]
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"propertyNames": { "$ref": "#" },
|
|
125
|
-
"const": true,
|
|
126
|
-
"enum": {
|
|
127
|
-
"type": "array",
|
|
128
|
-
"items": true,
|
|
129
|
-
"minItems": 1,
|
|
130
|
-
"uniqueItems": true
|
|
131
|
-
},
|
|
132
|
-
"type": {
|
|
133
|
-
"anyOf": [
|
|
134
|
-
{ "$ref": "#/definitions/simpleTypes" },
|
|
135
|
-
{
|
|
136
|
-
"type": "array",
|
|
137
|
-
"items": { "$ref": "#/definitions/simpleTypes" },
|
|
138
|
-
"minItems": 1,
|
|
139
|
-
"uniqueItems": true
|
|
140
|
-
}
|
|
141
|
-
]
|
|
142
|
-
},
|
|
143
|
-
"format": { "type": "string" },
|
|
144
|
-
"contentMediaType": { "type": "string" },
|
|
145
|
-
"contentEncoding": { "type": "string" },
|
|
146
|
-
"if": { "$ref": "#" },
|
|
147
|
-
"then": { "$ref": "#" },
|
|
148
|
-
"else": { "$ref": "#" },
|
|
149
|
-
"allOf": { "$ref": "#/definitions/schemaArray" },
|
|
150
|
-
"anyOf": { "$ref": "#/definitions/schemaArray" },
|
|
151
|
-
"oneOf": { "$ref": "#/definitions/schemaArray" },
|
|
152
|
-
"not": { "$ref": "#" }
|
|
153
|
-
},
|
|
154
|
-
"default": true
|
|
155
|
-
}
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
3
|
-
"$id": "https://json-schema.org/draft/2019-09/schema",
|
|
4
|
-
"$vocabulary": {
|
|
5
|
-
"https://json-schema.org/draft/2019-09/vocab/core": true,
|
|
6
|
-
"https://json-schema.org/draft/2019-09/vocab/applicator": true,
|
|
7
|
-
"https://json-schema.org/draft/2019-09/vocab/validation": true,
|
|
8
|
-
"https://json-schema.org/draft/2019-09/vocab/meta-data": true,
|
|
9
|
-
"https://json-schema.org/draft/2019-09/vocab/format": false,
|
|
10
|
-
"https://json-schema.org/draft/2019-09/vocab/content": true
|
|
11
|
-
},
|
|
12
|
-
"$recursiveAnchor": true,
|
|
13
|
-
|
|
14
|
-
"title": "Core and Validation specifications meta-schema",
|
|
15
|
-
"allOf": [
|
|
16
|
-
{"$ref": "meta/core"},
|
|
17
|
-
{"$ref": "meta/applicator"},
|
|
18
|
-
{"$ref": "meta/validation"},
|
|
19
|
-
{"$ref": "meta/meta-data"},
|
|
20
|
-
{"$ref": "meta/format"},
|
|
21
|
-
{"$ref": "meta/content"}
|
|
22
|
-
],
|
|
23
|
-
"type": ["object", "boolean"],
|
|
24
|
-
"properties": {
|
|
25
|
-
"definitions": {
|
|
26
|
-
"$comment": "While no longer an official keyword as it is replaced by $defs, this keyword is retained in the meta-schema to prevent incompatible extensions as it remains in common use.",
|
|
27
|
-
"type": "object",
|
|
28
|
-
"additionalProperties": { "$recursiveRef": "#" },
|
|
29
|
-
"default": {}
|
|
30
|
-
},
|
|
31
|
-
"dependencies": {
|
|
32
|
-
"$comment": "\"dependencies\" is no longer a keyword, but schema authors should avoid redefining it to facilitate a smooth transition to \"dependentSchemas\" and \"dependentRequired\"",
|
|
33
|
-
"type": "object",
|
|
34
|
-
"additionalProperties": {
|
|
35
|
-
"anyOf": [
|
|
36
|
-
{ "$recursiveRef": "#" },
|
|
37
|
-
{ "$ref": "meta/validation#/$defs/stringArray" }
|
|
38
|
-
]
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
}
|
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
3
|
-
"$id": "https://json-schema.org/draft/2019-09/meta/applicator",
|
|
4
|
-
"$recursiveAnchor": true,
|
|
5
|
-
|
|
6
|
-
"title": "Applicator vocabulary meta-schema",
|
|
7
|
-
"type": ["object", "boolean"],
|
|
8
|
-
"properties": {
|
|
9
|
-
"additionalItems": { "$recursiveRef": "#" },
|
|
10
|
-
"unevaluatedItems": { "$recursiveRef": "#" },
|
|
11
|
-
"items": {
|
|
12
|
-
"anyOf": [
|
|
13
|
-
{ "$recursiveRef": "#" },
|
|
14
|
-
{ "$ref": "#/$defs/schemaArray" }
|
|
15
|
-
]
|
|
16
|
-
},
|
|
17
|
-
"contains": { "$recursiveRef": "#" },
|
|
18
|
-
"additionalProperties": { "$recursiveRef": "#" },
|
|
19
|
-
"unevaluatedProperties": { "$recursiveRef": "#" },
|
|
20
|
-
"properties": {
|
|
21
|
-
"type": "object",
|
|
22
|
-
"additionalProperties": { "$recursiveRef": "#" },
|
|
23
|
-
"default": {}
|
|
24
|
-
},
|
|
25
|
-
"patternProperties": {
|
|
26
|
-
"type": "object",
|
|
27
|
-
"additionalProperties": { "$recursiveRef": "#" },
|
|
28
|
-
"propertyNames": { "format": "regex" },
|
|
29
|
-
"default": {}
|
|
30
|
-
},
|
|
31
|
-
"dependentSchemas": {
|
|
32
|
-
"type": "object",
|
|
33
|
-
"additionalProperties": {
|
|
34
|
-
"$recursiveRef": "#"
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
"propertyNames": { "$recursiveRef": "#" },
|
|
38
|
-
"if": { "$recursiveRef": "#" },
|
|
39
|
-
"then": { "$recursiveRef": "#" },
|
|
40
|
-
"else": { "$recursiveRef": "#" },
|
|
41
|
-
"allOf": { "$ref": "#/$defs/schemaArray" },
|
|
42
|
-
"anyOf": { "$ref": "#/$defs/schemaArray" },
|
|
43
|
-
"oneOf": { "$ref": "#/$defs/schemaArray" },
|
|
44
|
-
"not": { "$recursiveRef": "#" }
|
|
45
|
-
},
|
|
46
|
-
"$defs": {
|
|
47
|
-
"schemaArray": {
|
|
48
|
-
"type": "array",
|
|
49
|
-
"minItems": 1,
|
|
50
|
-
"items": { "$recursiveRef": "#" }
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
3
|
-
"$id": "https://json-schema.org/draft/2019-09/meta/content",
|
|
4
|
-
"$recursiveAnchor": true,
|
|
5
|
-
|
|
6
|
-
"title": "Content vocabulary meta-schema",
|
|
7
|
-
|
|
8
|
-
"type": ["object", "boolean"],
|
|
9
|
-
"properties": {
|
|
10
|
-
"contentMediaType": { "type": "string" },
|
|
11
|
-
"contentEncoding": { "type": "string" },
|
|
12
|
-
"contentSchema": { "$recursiveRef": "#" }
|
|
13
|
-
}
|
|
14
|
-
}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
3
|
-
"$id": "https://json-schema.org/draft/2019-09/meta/core",
|
|
4
|
-
"$recursiveAnchor": true,
|
|
5
|
-
|
|
6
|
-
"title": "Core vocabulary meta-schema",
|
|
7
|
-
"type": ["object", "boolean"],
|
|
8
|
-
"properties": {
|
|
9
|
-
"$id": {
|
|
10
|
-
"type": "string",
|
|
11
|
-
"format": "uri-reference",
|
|
12
|
-
"$comment": "Non-empty fragments not allowed.",
|
|
13
|
-
"pattern": "^[^#]*#?$"
|
|
14
|
-
},
|
|
15
|
-
"$schema": {
|
|
16
|
-
"type": "string",
|
|
17
|
-
"format": "uri"
|
|
18
|
-
},
|
|
19
|
-
"$anchor": {
|
|
20
|
-
"type": "string",
|
|
21
|
-
"pattern": "^[A-Za-z][-A-Za-z0-9.:_]*$"
|
|
22
|
-
},
|
|
23
|
-
"$ref": {
|
|
24
|
-
"type": "string",
|
|
25
|
-
"format": "uri-reference"
|
|
26
|
-
},
|
|
27
|
-
"$recursiveRef": {
|
|
28
|
-
"type": "string",
|
|
29
|
-
"format": "uri-reference"
|
|
30
|
-
},
|
|
31
|
-
"$recursiveAnchor": {
|
|
32
|
-
"type": "boolean",
|
|
33
|
-
"default": false
|
|
34
|
-
},
|
|
35
|
-
"$vocabulary": {
|
|
36
|
-
"type": "object",
|
|
37
|
-
"propertyNames": {
|
|
38
|
-
"type": "string",
|
|
39
|
-
"format": "uri"
|
|
40
|
-
},
|
|
41
|
-
"additionalProperties": {
|
|
42
|
-
"type": "boolean"
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
|
-
"$comment": {
|
|
46
|
-
"type": "string"
|
|
47
|
-
},
|
|
48
|
-
"$defs": {
|
|
49
|
-
"type": "object",
|
|
50
|
-
"additionalProperties": { "$recursiveRef": "#" },
|
|
51
|
-
"default": {}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
3
|
-
"$id": "https://json-schema.org/draft/2019-09/meta/format",
|
|
4
|
-
"$recursiveAnchor": true,
|
|
5
|
-
|
|
6
|
-
"title": "Format vocabulary meta-schema",
|
|
7
|
-
"type": ["object", "boolean"],
|
|
8
|
-
"properties": {
|
|
9
|
-
"format": { "type": "string" }
|
|
10
|
-
}
|
|
11
|
-
}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
3
|
-
"$id": "https://json-schema.org/draft/2019-09/meta/meta-data",
|
|
4
|
-
"$recursiveAnchor": true,
|
|
5
|
-
|
|
6
|
-
"title": "Meta-data vocabulary meta-schema",
|
|
7
|
-
|
|
8
|
-
"type": ["object", "boolean"],
|
|
9
|
-
"properties": {
|
|
10
|
-
"title": {
|
|
11
|
-
"type": "string"
|
|
12
|
-
},
|
|
13
|
-
"description": {
|
|
14
|
-
"type": "string"
|
|
15
|
-
},
|
|
16
|
-
"default": true,
|
|
17
|
-
"deprecated": {
|
|
18
|
-
"type": "boolean",
|
|
19
|
-
"default": false
|
|
20
|
-
},
|
|
21
|
-
"readOnly": {
|
|
22
|
-
"type": "boolean",
|
|
23
|
-
"default": false
|
|
24
|
-
},
|
|
25
|
-
"writeOnly": {
|
|
26
|
-
"type": "boolean",
|
|
27
|
-
"default": false
|
|
28
|
-
},
|
|
29
|
-
"examples": {
|
|
30
|
-
"type": "array",
|
|
31
|
-
"items": true
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|