Skip to content

Commit 63c32f4

Browse files
committed
Fix bugs
1 parent 9486b51 commit 63c32f4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

jsonschema-core.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2089,10 +2089,9 @@ other means.
20892089
This specification defines three output formats. See the "Output Structure"
20902090
section for the requirements of each format.
20912091

2092-
Flag: A boolean which simply indicates the overall validation result with no
2093-
further details.
2094-
2095-
List: Provides validation information in a flat list structure.
2092+
- *Flag*: A boolean which simply indicates the overall validation result with no
2093+
further details.
2094+
- *List*: Provides validation information in a flat list structure.
20962095

20972096
Hierarchical: Provides validation information in a hierarchical structure that
20982097
follows the evaluation paths generated while processing the schema.

jsonschema-validation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,10 @@ String values MUST be one of the six primitive types ("null", "boolean",
124124
"object", "array", "number", or "string"), or "integer" which matches any number
125125
with a zero fractional part.
126126

127-
If the value of "type" is a string, then an instance validates successfully if
127+
If the value of `type` is a string, then an instance validates successfully if
128128
its type matches the type represented by the value of the string.
129129

130-
If the value of "type" is an array, then an instance validates successfully if
130+
If the value of `type` is an array, then an instance validates successfully if
131131
its type matches any of the types indicated by the strings in the array.
132132

133133
#### `enum` {#enum}

0 commit comments

Comments
 (0)