Skip to content

Commit 39d784b

Browse files
committed
update other meta-schema iris
1 parent 5f9afd7 commit 39d784b

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

Diff for: specs/jsonschema-core.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2195,7 +2195,7 @@ and only allows the "data" and "children" properties. An example instance with
21952195

21962196
```jsonschema "Tree schema, extensible"
21972197
{
2198-
"$schema": "https://json-schema.org/draft/next/schema",
2198+
"$schema": "https://json-schema.org/1/2025",
21992199
"$id": "https://example.com/tree",
22002200
"$dynamicAnchor": "node",
22012201
@@ -2214,7 +2214,7 @@ and only allows the "data" and "children" properties. An example instance with
22142214

22152215
```jsonschema "Strict-tree schema, guards against misspelled properties"
22162216
{
2217-
"$schema": "https://json-schema.org/draft/next/schema",
2217+
"$schema": "https://json-schema.org/1/2025",
22182218
"$id": "https://example.com/strict-tree",
22192219
"$dynamicAnchor": "node",
22202220

Diff for: specs/jsonschema-validation.md

+5-9
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ specification.
8888
## Meta-Schema {#meta-schema}
8989

9090
The current IRI for the default JSON Schema dialect meta-schema is
91-
`https://json-schema.org/1/2025`. This IRI encodes the specifications iteration
92-
value and release year. Because all schemas written to conform to a given
93-
version are guaranteed to be compatible with later releases within the same
94-
iteration, the meta-schema IRI `https://json-schema.org/1` is also recognized to
95-
represent the latest release within the indicated iteration.
91+
`https://json-schema.org/1/2025`. This IRI encodes the specifications version
92+
and release year. Because all schemas written to conform to a given version are
93+
guaranteed to be compatible with later releases within the same iteration, the
94+
meta-schema IRI `https://json-schema.org/1` is also recognized to represent the
95+
latest release within the indicated iteration.
9696

9797
The meta-schema describes a dialect consisting of all keywords defined in this
9898
specification and the JSON Schema Core specification. Certain keywords specify
@@ -110,10 +110,6 @@ location. Rather than performing a network request to retrieve the meta-schema,
110110
implementations SHOULD include a copy of the meta-schema and MAY encode it as
111111
required by the language or framework used by the implementation.
112112

113-
## Specification Versioning
114-
115-
The meta-schema IRI format encodes two values that will assist users in determining compatibiility between releases of the JSON Schema specifications.
116-
117113
## Keywords for Structural Validation
118114

119115
Validation keywords in a schema impose requirements for successful validation of

0 commit comments

Comments
 (0)