Skip to content

Commit 97ea4df

Browse files
committed
Update dates and authorship
1 parent 126ccfe commit 97ea4df

File tree

3 files changed

+46
-37
lines changed

3 files changed

+46
-37
lines changed

jsonschema-core.xml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</abstract>
7272
<note title="Note to Readers">
7373
<t>
74-
This document a pre-release identified as JSON Schema draft 2020-11-rc-0.
74+
This document a pre-release identified as JSON Schema draft 2020-12-rc-1.
7575
</t>
7676
<t>
7777
The issues list for this draft can be found at
@@ -1119,11 +1119,11 @@
11191119
</t>
11201120
<t>
11211121
The current URI for the Core vocabulary is:
1122-
&lt;https://json-schema.org/draft/2020-11/vocab/core&gt;.
1122+
&lt;https://json-schema.org/draft/2020-12/vocab/core&gt;.
11231123
</t>
11241124
<t>
11251125
The current URI for the corresponding meta-schema is:
1126-
<eref target="https://json-schema.org/draft/2020-11/meta/core"/>.
1126+
<eref target="https://json-schema.org/draft/2020-12/meta/core"/>.
11271127
</t>
11281128
<t>
11291129
While the "$" prefix is not formally reserved for the Core vocabulary,
@@ -2051,11 +2051,11 @@
20512051
</t>
20522052
<t>
20532053
The current URI for this vocabulary, known as the Applicator vocabulary, is:
2054-
&lt;https://json-schema.org/draft/2020-11/vocab/applicator&gt;.
2054+
&lt;https://json-schema.org/draft/2020-12/vocab/applicator&gt;.
20552055
</t>
20562056
<t>
20572057
The current URI for the corresponding meta-schema is:
2058-
<eref target="https://json-schema.org/draft/2020-11/meta/applicator"/>.
2058+
<eref target="https://json-schema.org/draft/2020-12/meta/applicator"/>.
20592059
</t>
20602060
<t>
20612061
Updated vocabulary and meta-schema URIs MAY be published between
@@ -2502,11 +2502,11 @@
25022502
<t>
25032503
The current URI for this vocabulary, known as the Unevaluated Applicator
25042504
vocabulary, is:
2505-
&lt;https://json-schema.org/draft/2020-11/vocab/unevaluated&gt;.
2505+
&lt;https://json-schema.org/draft/2020-12/vocab/unevaluated&gt;.
25062506
</t>
25072507
<t>
25082508
The current URI for the corresponding meta-schema is:
2509-
<eref target="https://json-schema.org/draft/2020-11/meta/unevaluated"/>.
2509+
<eref target="https://json-schema.org/draft/2020-12/meta/unevaluated"/>.
25102510
</t>
25112511
<t>
25122512
Updated vocabulary and meta-schema URIs MAY be published between
@@ -2786,7 +2786,7 @@ https://example.com/schemas/common#/$defs/count/minimum
27862786
<![CDATA[
27872787
{
27882788
"$id": "https://example.com/polygon",
2789-
"$schema": "https://json-schema.org/draft/2020-11/schema",
2789+
"$schema": "https://json-schema.org/draft/2020-12/schema",
27902790
"$defs": {
27912791
"point": {
27922792
"type": "object",
@@ -2999,15 +2999,15 @@ https://example.com/schemas/common#/$defs/count/minimum
29992999
<t>
30003000
Because this output structure can be quite large, a smaller example is given
30013001
here for brevity. The URI of the full output structure of the example above is:
3002-
<eref target="https://json-schema.org/draft/2020-11/output/verbose-example"/>.
3002+
<eref target="https://json-schema.org/draft/2020-12/output/verbose-example"/>.
30033003
</t>
30043004
<figure>
30053005
<artwork>
30063006
<![CDATA[
30073007
// schema
30083008
{
30093009
"$id": "https://example.com/polygon",
3010-
"$schema": "https://json-schema.org/draft/2020-11/schema",
3010+
"$schema": "https://json-schema.org/draft/2020-12/schema",
30113011
"type": "object",
30123012
"properties": {
30133013
"validProp": true,
@@ -3061,7 +3061,7 @@ https://example.com/schemas/common#/$defs/count/minimum
30613061
<t>
30623062
For convenience, JSON Schema has been provided to validate output generated
30633063
by implementations. Its URI is:
3064-
<eref target="https://json-schema.org/draft/2020-11/output/schema"/>.
3064+
<eref target="https://json-schema.org/draft/2020-12/output/schema"/>.
30653065
</t>
30663066
</section>
30673067

@@ -3235,7 +3235,7 @@ https://example.com/schemas/common#/$defs/count/minimum
32353235
<author initials="B." surname="Hutton">
32363236
<organization/>
32373237
</author>
3238-
<date year="2020" month="November"/>
3238+
<date year="2020" month="December"/>
32393239
</front>
32403240
<seriesInfo name="Internet-Draft" value="draft-bhutton-json-schema-validation-00" />
32413241
</reference>
@@ -3469,7 +3469,7 @@ https://example.com/schemas/common#/$defs/count/minimum
34693469
<![CDATA[
34703470
// tree schema, extensible
34713471
{
3472-
"$schema": "https://json-schema.org/draft/2020-11/schema",
3472+
"$schema": "https://json-schema.org/draft/2020-12/schema",
34733473
"$id": "https://example.com/tree",
34743474
"$dynamicAnchor": "node",
34753475
@@ -3487,7 +3487,7 @@ https://example.com/schemas/common#/$defs/count/minimum
34873487
34883488
// strict-tree schema, guards against misspelled properties
34893489
{
3490-
"$schema": "https://json-schema.org/draft/2020-11/schema",
3490+
"$schema": "https://json-schema.org/draft/2020-12/schema",
34913491
"$id": "https://example.com/strict-tree",
34923492
"$dynamicAnchor": "node",
34933493
@@ -3660,19 +3660,19 @@ https://example.com/schemas/common#/$defs/count/minimum
36603660
<artwork>
36613661
<![CDATA[
36623662
{
3663-
"$schema": "https://json-schema.org/draft/2020-11/schema",
3663+
"$schema": "https://json-schema.org/draft/2020-12/schema",
36643664
"$id": "https://example.com/meta/general-use-example",
36653665
"$dynamicAnchor": "meta",
36663666
"$vocabulary": {
3667-
"https://json-schema.org/draft/2020-11/vocab/core": true,
3668-
"https://json-schema.org/draft/2020-11/vocab/applicator": true,
3669-
"https://json-schema.org/draft/2020-11/vocab/validation": true,
3667+
"https://json-schema.org/draft/2020-12/vocab/core": true,
3668+
"https://json-schema.org/draft/2020-12/vocab/applicator": true,
3669+
"https://json-schema.org/draft/2020-12/vocab/validation": true,
36703670
"https://example.com/vocab/example-vocab": true
36713671
},
36723672
"allOf": [
3673-
{"$ref": "https://json-schema.org/draft/2020-11/meta/core"},
3674-
{"$ref": "https://json-schema.org/draft/2020-11/meta/applicator"},
3675-
{"$ref": "https://json-schema.org/draft/2020-11/meta/validation"},
3673+
{"$ref": "https://json-schema.org/draft/2020-12/meta/core"},
3674+
{"$ref": "https://json-schema.org/draft/2020-12/meta/applicator"},
3675+
{"$ref": "https://json-schema.org/draft/2020-12/meta/validation"},
36763676
{"$ref": "https://example.com/meta/example-vocab",
36773677
],
36783678
"patternProperties": {
@@ -3695,7 +3695,7 @@ https://example.com/schemas/common#/$defs/count/minimum
36953695
<artwork>
36963696
<![CDATA[
36973697
{
3698-
"$schema": "https://json-schema.org/draft/2020-11/schema",
3698+
"$schema": "https://json-schema.org/draft/2020-12/schema",
36993699
"$id": "https://example.com/meta/example-vocab",
37003700
"$dynamicAnchor": "meta",
37013701
"$vocabulary": {

jsonschema-validation.xml

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171

7272
<note title="Note to Readers">
7373
<t>
74-
This document a pre-release identified as JSON Schema draft 2020-11-rc-0.
74+
This document a pre-release identified as JSON Schema draft 2020-12-rc-1.
7575
</t>
7676
<t>
7777
The issues list for this draft can be found at
@@ -180,7 +180,7 @@
180180
<section title="Meta-Schema" anchor="meta-schema">
181181
<t>
182182
The current URI for the default JSON Schema dialect meta-schema is
183-
<eref target="https://json-schema.org/draft/2020-11/schema"/>.
183+
<eref target="https://json-schema.org/draft/2020-12/schema"/>.
184184
For schema author convenience, this meta-schema describes a dialect
185185
consisting of all vocabularies
186186
defined in this specification and the JSON Schema Core specification,
@@ -209,11 +209,11 @@
209209
</t>
210210
<t>
211211
The current URI for this vocabulary, known as the Validation vocabulary, is:
212-
&lt;https://json-schema.org/draft/2020-11/vocab/validation&gt;.
212+
&lt;https://json-schema.org/draft/2020-12/vocab/validation&gt;.
213213
</t>
214214
<t>
215215
The current URI for the corresponding meta-schema is:
216-
<eref target="https://json-schema.org/draft/2020-11/meta/validation"/>.
216+
<eref target="https://json-schema.org/draft/2020-12/meta/validation"/>.
217217
</t>
218218

219219
<section title="Validation Keywords for Any Instance Type" anchor="general">
@@ -544,18 +544,18 @@
544544

545545
<t>
546546
The current URI for this vocabulary, known as the Format-Annotation vocabulary, is:
547-
&lt;https://json-schema.org/draft/2020-11/vocab/format-annotation&gt;. The current
547+
&lt;https://json-schema.org/draft/2020-12/vocab/format-annotation&gt;. The current
548548
URI for the corresponding meta-schema is:
549-
<eref target="https://json-schema.org/draft/2020-11/meta/format-annotation"/>.
549+
<eref target="https://json-schema.org/draft/2020-12/meta/format-annotation"/>.
550550
Implementing support for this vocabulary is REQUIRED.
551551
</t>
552552
<t>
553553
In addition to the Format-Annotation vocabulary, a secondary vocabulary is available
554554
for custom meta-schemas that defines "format" as an assertion. The URI for the
555555
Format-Assertion vocabulary, is:
556-
&lt;https://json-schema.org/draft/2020-11/vocab/format-assertion&gt;. The current
556+
&lt;https://json-schema.org/draft/2020-12/vocab/format-assertion&gt;. The current
557557
URI for the corresponding meta-schema is:
558-
<eref target="https://json-schema.org/draft/2020-11/meta/format-assertion"/>.
558+
<eref target="https://json-schema.org/draft/2020-12/meta/format-assertion"/>.
559559
Implementing support for the Format-Assertion vocabulary is OPTIONAL.
560560
</t>
561561
<t>
@@ -916,11 +916,11 @@
916916
</t>
917917
<t>
918918
The current URI for this vocabulary, known as the Content vocabulary, is:
919-
&lt;https://json-schema.org/draft/2020-11/vocab/content&gt;.
919+
&lt;https://json-schema.org/draft/2020-12/vocab/content&gt;.
920920
</t>
921921
<t>
922922
The current URI for the corresponding meta-schema is:
923-
<eref target="https://json-schema.org/draft/2020-11/meta/content"/>.
923+
<eref target="https://json-schema.org/draft/2020-12/meta/content"/>.
924924
</t>
925925
</section>
926926

@@ -1116,11 +1116,11 @@
11161116
</t>
11171117
<t>
11181118
The current URI for this vocabulary, known as the Meta-Data vocabulary, is:
1119-
&lt;https://json-schema.org/draft/2020-11/vocab/meta-data&gt;.
1119+
&lt;https://json-schema.org/draft/2020-12/vocab/meta-data&gt;.
11201120
</t>
11211121
<t>
11221122
The current URI for the corresponding meta-schema is:
1123-
<eref target="https://json-schema.org/draft/2020-11/meta/meta-data"/>.
1123+
<eref target="https://json-schema.org/draft/2020-12/meta/meta-data"/>.
11241124
</t>
11251125

11261126
<section title='"title" and "description"'>
@@ -1319,7 +1319,9 @@
13191319
<author initials="H." surname="Andrews">
13201320
<organization>Cloudflare, Inc.</organization>
13211321
</author>
1322-
<date year="2017" month="November"/>
1322+
<author fullname="Ben Hutton" initials="B" surname="Hutton" role="editor">
1323+
</author>
1324+
<date year="2020" month="December"/>
13231325
</front>
13241326
<seriesInfo name="Internet-Draft" value="draft-handrews-relative-json-pointer-01" />
13251327
</reference>
@@ -1338,7 +1340,7 @@
13381340
<author initials="G." surname="Dennis">
13391341
<organization/>
13401342
</author>
1341-
<date year="2020" month="November"/>
1343+
<date year="2020" month="December"/>
13421344
</front>
13431345
<seriesInfo name="Internet-Draft" value="draft-bhutton-json-schema-00" />
13441346
</reference>

relative-json-pointer.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<?rfc rfcedstyle="yes"?>
1313
<?rfc comments="yes"?>
1414
<?rfc inline="yes" ?>
15-
<rfc category="info" docName="draft-handrews-relative-json-pointer-02" ipr="trust200902">
15+
<rfc category="info" docName="draft-bhutton-relative-json-pointer-00" ipr="trust200902">
1616
<front>
1717
<title abbrev="Relative JSON Pointers">Relative JSON Pointers</title>
1818

@@ -33,6 +33,13 @@
3333
</address>
3434
</author>
3535

36+
<author fullname="Ben Hutton" initials="B" surname="Hutton" role="editor">
37+
<address>
38+
<email>ben@jsonschema.dev</email>
39+
<uri>https://jsonschema.dev</uri>
40+
</address>
41+
</author>
42+
3643
<date year="2020"/>
3744
<workgroup>Internet Engineering Task Force</workgroup>
3845
<keyword>JSON</keyword>

0 commit comments

Comments
 (0)