Skip to content

Commit 784b179

Browse files
committed
update other meta-schema iris
1 parent 599449e commit 784b179

File tree

2 files changed

+7
-11
lines changed

2 files changed

+7
-11
lines changed

specs/jsonschema-core.md

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

22512251
```jsonschema "Tree schema, extensible"
22522252
{
2253-
"$schema": "https://json-schema.org/draft/next/schema",
2253+
"$schema": "https://json-schema.org/1/2025",
22542254
"$id": "https://example.com/tree",
22552255
"$dynamicAnchor": "node",
22562256
@@ -2269,7 +2269,7 @@ and only allows the "data" and "children" properties. An example instance with
22692269

22702270
```jsonschema "Strict-tree schema, guards against misspelled properties"
22712271
{
2272-
"$schema": "https://json-schema.org/draft/next/schema",
2272+
"$schema": "https://json-schema.org/1/2025",
22732273
"$id": "https://example.com/strict-tree",
22742274
"$dynamicAnchor": "node",
22752275

specs/jsonschema-validation.md

+5-9
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,11 @@ specification.
103103
## Meta-Schema {#meta-schema}
104104

105105
The current IRI for the default JSON Schema dialect meta-schema is
106-
`https://json-schema.org/1/2025`. This IRI encodes the specifications iteration
107-
value and release year. Because all schemas written to conform to a given
108-
version are guaranteed to be compatible with later releases within the same
109-
iteration, the meta-schema IRI `https://json-schema.org/1` is also recognized to
110-
represent the latest release within the indicated iteration.
106+
`https://json-schema.org/1/2025`. This IRI encodes the specifications version
107+
and release year. Because all schemas written to conform to a given version are
108+
guaranteed to be compatible with later releases within the same iteration, the
109+
meta-schema IRI `https://json-schema.org/1` is also recognized to represent the
110+
latest release within the indicated iteration.
111111

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

128-
## Specification Versioning
129-
130-
The meta-schema IRI format encodes two values that will assist users in determining compatibiility between releases of the JSON Schema specifications.
131-
132128
## Keywords for Structural Validation
133129

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

0 commit comments

Comments
 (0)