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
| {
| "$schema": "https://json-schema.org/draft/2020-12/schema",
| "$id": "https://json-schema.org/draft/2020-12/meta/core",
| "$vocabulary": {
| "https://json-schema.org/draft/2020-12/vocab/core": true
| },
| "$dynamicAnchor": "meta",
|
| "title": "Core vocabulary meta-schema",
| "type": ["object", "boolean"],
| "properties": {
| "$id": {
| "$ref": "#/$defs/uriReferenceString",
| "$comment": "Non-empty fragments not allowed.",
| "pattern": "^[^#]*#?$"
| },
| "$schema": {"$ref": "#/$defs/uriString"},
| "$ref": {"$ref": "#/$defs/uriReferenceString"},
| "$anchor": {"$ref": "#/$defs/anchorString"},
| "$dynamicRef": {"$ref": "#/$defs/uriReferenceString"},
| "$dynamicAnchor": {"$ref": "#/$defs/anchorString"},
| "$vocabulary": {
| "type": "object",
| "propertyNames": {"$ref": "#/$defs/uriString"},
| "additionalProperties": {
| "type": "boolean"
| }
| },
| "$comment": {
| "type": "string"
| },
| "$defs": {
| "type": "object",
| "additionalProperties": {"$dynamicRef": "#meta"}
| }
| },
| "$defs": {
| "anchorString": {
| "type": "string",
| "pattern": "^[A-Za-z_][-A-Za-z0-9._]*$"
| },
| "uriString": {
| "type": "string",
| "format": "uri"
| },
| "uriReferenceString": {
| "type": "string",
| "format": "uri-reference"
| }
| }
| }
|
|