Skip to content

Commit 771d86f

Browse files
committed
Fix spec markdown linting errors
1 parent 005b812 commit 771d86f

7 files changed

+72
-44
lines changed

jsonschema-core.md

+34-18
Original file line numberDiff line numberDiff line change
@@ -2051,7 +2051,7 @@ specified for the `application/json` media type. See [JSON](#rfc8259).
20512051
Security considerations:: See {{security}} above.
20522052

20532053
Interoperability considerations:: See Sections [6.2](#language),
2054-
[6.3](#integers), and [6.4](#regex) above.
2054+
[6.3](#data-model), and [6.4](#regex) above.
20552055

20562056
Fragment identifier considerations:: See {{fragments}}
20572057

@@ -2072,7 +2072,7 @@ specified for the `application/json` media type. See [JSON](#rfc8259).
20722072
Security considerations:: See {{security}} above.
20732073

20742074
Interoperability considerations:: See Sections [6.2](#language),
2075-
[6.3](#integers), and [6.4](#regex) above.
2075+
[6.3](#data-model), and [6.4](#regex) above.
20762076

20772077
Fragment identifier considerations:: See {{fragments}}
20782078

@@ -2467,32 +2467,48 @@ to the document.
24672467

24682468
### draft-bhutton-json-schema-next
24692469
- Use IRIs instead of URIs, including allowing unicode in plain-name fragments
2470-
- Clarify that detecting duplicate IRIs for different schemas SHOULD raise an error
2470+
- Clarify that detecting duplicate IRIs for different schemas SHOULD raise an
2471+
error
24712472
- Consolidate and clarify the syntax and rationale for plain-name fragments
24722473
- "$id" MUST be an absolute-IRI, without any fragment, even an empty one
2473-
- Note that an empty string "$id" results in duplicate IRIs for different schemas
2474+
- Note that an empty string "$id" results in duplicate IRIs for different
2475+
schemas
24742476
- Define empty schemas as empty (no longer allowing unrecognized keywords)
2475-
- Clarify that if unknown properties are not treated as annotations, they MUST be ignored
2476-
- Remove outdated pre-annotation-collection section on annotation-applicator interaction
2477+
- Clarify that if unknown properties are not treated as annotations, they MUST
2478+
be ignored
2479+
- Remove outdated pre-annotation-collection section on annotation-applicator
2480+
interaction
24772481
- Clarify that regular expressions are not anchored
2478-
- Specify valid implementation-defined options for handling schemas without "$schema"
2479-
- Clarify that vocabularies omitted from "$vocabulary" MUST NOT be available for use
2480-
- Clarify that standard keywords are only available as vocabulary keywords, subject to "$vocabulary" control
2481-
- Clarify the nature and purpose of optional (set to false in "$vocabulary") vocabularies
2482-
- Clarify that optional simple-annotation-only vocabularies can be supported without custom code
2483-
- Fix typo that "$vocabulary" can only be in a document root; it is legal in resource roots
2482+
- Specify valid implementation-defined options for handling schemas without
2483+
"$schema"
2484+
- Clarify that vocabularies omitted from "$vocabulary" MUST NOT be available for
2485+
use
2486+
- Clarify that standard keywords are only available as vocabulary keywords,
2487+
subject to "$vocabulary" control
2488+
- Clarify the nature and purpose of optional (set to false in "$vocabulary")
2489+
vocabularies
2490+
- Clarify that optional simple-annotation-only vocabularies can be supported
2491+
without custom code
2492+
- Fix typo that "$vocabulary" can only be in a document root; it is legal in
2493+
resource roots
24842494
- Remove bookending requirement for `$dynamicRef`
24852495
- Clarify that "prefixItems" does not constrain the length of an array
2486-
- Move "minContains" and "maxContains" to the applicator vocabulary from validation
2496+
- Move "minContains" and "maxContains" to the applicator vocabulary from
2497+
validation
24872498
- "minContains" and "maxContains" no longer have their own assertion results
24882499
- "contains" assertion result now depends on "minContains" and "maxContains"
2489-
- Affirm that no keyword can un-fail an adjacent keyword ("minContains" previously violated this)
2490-
- "contains", "minContains", and "maxContains" now apply to objects as well as arrays
2500+
- Affirm that no keyword can un-fail an adjacent keyword ("minContains"
2501+
previously violated this)
2502+
- "contains", "minContains", and "maxContains" now apply to objects as well as
2503+
arrays
24912504
- As an object keyword, "contains" now affects "unevaluatedProperties"
24922505
- Add `propertyDependencies` keyword
2493-
- Add new "list" and "hierarchical" output formats in place of "basic", "detailed", and "verbose"
2494-
- Rename "absoluteKeywordLocation" and "keywordLocation" to "schemaLocation" and "evaluationPath"
2495-
- Output units in new format group by "schemaLocation", "instanceLocation", and "evaluationPath"
2506+
- Add new "list" and "hierarchical" output formats in place of "basic",
2507+
"detailed", and "verbose"
2508+
- Rename "absoluteKeywordLocation" and "keywordLocation" to "schemaLocation" and
2509+
"evaluationPath"
2510+
- Output units in new format group by "schemaLocation", "instanceLocation", and
2511+
"evaluationPath"
24962512
- Add "droppedAnnotations" to output formats
24972513

24982514
### draft-bhutton-json-schema-01

jsonschema-validation-output-machines.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,14 @@ The failing instance will produce the following errors:
172172
is not a number.
173173

174174
<!--
175-
"minimum" doesn't produce an error because it only operates on instances that are numbers.
175+
"minimum" doesn't produce an error because it only operates on instances that
176+
are numbers.
176177
-->
177178
<!--
178-
Note that the error message wording as depicted in the examples below is not a requirement of this specification. Implementations SHOULD craft error messages tailored for their audience or provide a templating mechanism that allows their users to craft their own messages.
179+
Note that the error message wording as depicted in the examples below is not a
180+
requirement of this specification. Implementations SHOULD craft error messages
181+
tailored for their audience or provide a templating mechanism that allows their
182+
users to craft their own messages.
179183
-->
180184

181185
The passing instance will produce the following annotations:

jsonschema-validation.md

+18-14
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ Omitting this keyword has the same behavior as a value of 0.
234234

235235
The value of this keyword MUST be a boolean.
236236

237-
If this keyword has boolean value `false`, the instance validates successfully. If
238-
it has boolean value `true`, the instance validates successfully if all of its
239-
elements are unique.
237+
If this keyword has boolean value `false`, the instance validates successfully.
238+
If it has boolean value `true`, the instance validates successfully if all of
239+
its elements are unique.
240240

241241
Omitting this keyword has the same behavior as a value of `false`.
242242

@@ -317,8 +317,8 @@ which choose to support assertion behavior:
317317

318318
- MUST still collect the keyword's value as an annotation (if the implementation
319319
supports annotation collection),
320-
- MUST provide a configuration option to enable assertion behavior, defaulting to
321-
annotation-only behavior
320+
- MUST provide a configuration option to enable assertion behavior, defaulting
321+
to annotation-only behavior
322322
- SHOULD provide an implementation-specific best effort validation for each
323323
format attribute defined below;[^3]
324324
- MAY choose to implement validation of any or all format attributes as a no-op
@@ -662,7 +662,8 @@ associated schema.
662662

663663
The value of this keyword MUST be a boolean. When multiple occurrences of this
664664
keyword are applicable to a single sub-instance, applications SHOULD consider
665-
the instance location to be deprecated if any occurrence specifies a `true` value.
665+
the instance location to be deprecated if any occurrence specifies a `true`
666+
value.
666667

667668
If `deprecated` has a value of boolean `true`, it indicates that applications
668669
SHOULD refrain from usage of the declared property. It MAY mean the property is
@@ -695,11 +696,11 @@ An instance document that is marked as `readOnly` for the entire document MAY be
695696
ignored if sent to the owning authority, or MAY result in an error, at the
696697
authority's discretion.
697698

698-
If `writeOnly` has a value of boolean `true`, it indicates that the value is never
699-
present when the instance is retrieved from the owning authority. It can be
700-
present when sent to the owning authority to update or create the document (or
701-
the resource it represents), but it will not be included in any updated or newly
702-
created version of the instance.
699+
If `writeOnly` has a value of boolean `true`, it indicates that the value is
700+
never present when the instance is retrieved from the owning authority. It can
701+
be present when sent to the owning authority to update or create the document
702+
(or the resource it represents), but it will not be included in any updated or
703+
newly created version of the instance.
703704

704705
An instance document that is marked as `writeOnly` for the entire document MAY
705706
be returned as a blank document of some sort, or MAY produce an error upon
@@ -899,9 +900,12 @@ to the document.
899900

900901
- *draft-next*
901902
- Use IRIs instead of URIs
902-
- Move "minContains" and "maxContains" to the applicator vocabulary (see also that changelog)
903-
- Remove the optional automatic second-pass validation of "content*" keywords
904-
- Clarify that "contentSchema"'s value is a schema just like any other subschema
903+
- Move "minContains" and "maxContains" to the applicator vocabulary (see
904+
also that changelog)
905+
- Remove the optional automatic second-pass validation of "content*"
906+
keywords
907+
- Clarify that "contentSchema"'s value is a schema just like any other
908+
subschema
905909
- *draft-bhutton-json-schema-validation-01*
906910
- Improve and clarify the `minContains` keyword explanation
907911
- Remove the use of "production" in favour of "ABNF rule"

proposals/propertyDependencies.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ specification](../jsonschema-core.html) also apply to this document.
3939
A common need in JSON Schema is to select between one schema or another to
4040
validate an instance based on the value of some property in the JSON instance.
4141
There are a several patterns people use to accomplish this, but they all have
42-
significant [problems](propertyDependencies-adr.md#problems). <!-- Update when moving ADR -->
42+
significant [problems](propertyDependencies-adr.md#problems). <!-- Update when
43+
moving ADR -->
4344

4445
OpenAPI solves this problem with the `discriminator` keyword. However, their
4546
approach is more oriented toward code generation concerns, is poorly specified
@@ -88,7 +89,8 @@ those goals means that some trade-offs need to be made.
8889

8990
## Change Description
9091

91-
The `propertyDependencies` keyword will be added to the `https://json-schema.org/vocab/applicator` [applicator
92+
The `propertyDependencies` keyword will be added to the
93+
`https://json-schema.org/vocab/applicator` [applicator
9294
vocabulary](../jsonschema-core.html#applicatorvocab).
9395

9496
1. The following will be added to the JSON Schema Core specification as a

proposals/proposal-template.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
## Abstract
44

55
<!--
6-
Fill in the specification(s) that will change. If adding a keyword, which vocabulary
7-
will contain it?
6+
Fill in the specification(s) that will change. If adding a keyword, which
7+
vocabulary will contain it?
88
99
For example
1010

proposals/vocabularies-adr.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Rational for the Vocabulary System proposal
1+
# Add Vocabulary System
22

33
- Status: proposed
44
- Deciders: @gregsdennis, @jdesrosiers
@@ -47,7 +47,8 @@ processed when it is found as part of a meta-schema.
4747
- Good because it provides a language-agnostic method of defining extension
4848
keywords that's built into JSON Schema itself
4949
- Bad because unknown keywords are now unsupported, which implies that
50-
[unknown vocabularies are implicitly unsupported](https://github.com/orgs/json-schema-org/discussions/342)
50+
[unknown vocabularies are implicitly
51+
unsupported](https://github.com/orgs/json-schema-org/discussions/342)
5152

5253
### [option 2]
5354

proposals/vocabularies.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ The boolean values in `$vocabulary` signify implementation requirements for each
112112
vocabulary.
113113

114114
- A `true` value indicates that the implementation must recognize the vocabulary
115-
and be able to process each of the keywords defined in it. If an implementation
116-
does not recognize the vocabulary or cannot process all of its defined
117-
keywords, the implementation must refuse to process the schema. These
115+
and be able to process each of the keywords defined in it. If an
116+
implementation does not recognize the vocabulary or cannot process all of its
117+
defined keywords, the implementation must refuse to process the schema. These
118118
vocabularies are also known as "required" vocabularies.
119119
- A `false` value indicates that the implementation is not required to recognize
120120
the vocabulary or its keywords and may continue processing the schema anyway.
@@ -153,7 +153,8 @@ reference (via `$ref`) to the vocabulary schema's `$id` value.
153153
Finally, the keywords in both the Core and Validation specifications will be
154154
divided into multiple vocabularies. The keyword definitions will be removed from
155155
the meta-schema and added to vocabulary schemas to which the meta-schema will
156-
contain references. In this way, the meta-schema's functionality remains the same.
156+
contain references. In this way, the meta-schema's functionality remains the
157+
same.
157158

158159
```json
159160
{

0 commit comments

Comments
 (0)