Skip to content

Commit eed8b19

Browse files
committed
update basic to list
1 parent 9256998 commit eed8b19

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

jsonschema-core.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2806,7 +2806,7 @@
28062806
with no further details.
28072807
</t>
28082808
<t>
2809-
Basic - Provides validation information in a flat list structure.
2809+
List - Provides validation information in a flat list structure.
28102810
</t>
28112811
<t>
28122812
Hierarchical - Provides validation information in a hierarchical
@@ -2815,7 +2815,7 @@
28152815
</t>
28162816
</list>
28172817
An implementation MUST provide the "flag" format and SHOULD provide at least one
2818-
of the "basic" or "hierarchical" formats. Implementations SHOULD specify in
2818+
of the "list" or "hierarchical" formats. Implementations SHOULD specify in
28192819
their documentation which formats they support.
28202820
</t>
28212821

@@ -2984,7 +2984,7 @@ https://example.com/schemas/common#/$defs/allOf/1
29842984
array of output units, even if only a single output unit is produced.
29852985
</t>
29862986
<t>
2987-
For "basic", this property will appear only at the root output unit
2987+
For "list", this property will appear only at the root output unit
29882988
and will hold all output units in a flat list.
29892989
</t>
29902990
<t>
@@ -3201,9 +3201,9 @@ https://example.com/schemas/common#/$defs/allOf/1
32013201
</t>
32023202
</section>
32033203

3204-
<section title="Basic">
3204+
<section title="List">
32053205
<t>
3206-
The "Basic" structure is a flat list of output units contained within a
3206+
The "List" structure is a flat list of output units contained within a
32073207
root output unit.
32083208
</t>
32093209
<t>

output/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
"anyOf": [
77
{ "$ref": "#/$defs/flag" },
8-
{ "$ref": "#/$defs/basic" },
8+
{ "$ref": "#/$defs/list" },
99
{ "$ref": "#/$defs/hierarchical" }
1010
],
1111
"$defs": {
@@ -81,7 +81,7 @@
8181
},
8282
"required": [ "valid" ]
8383
},
84-
"basic": {
84+
"list": {
8585
"properties": {
8686
"valid": { "type": "boolean" },
8787
"nested": {

0 commit comments

Comments
 (0)