diff --git a/latest/json-schema-validation.html b/latest/json-schema-validation.html index 73538fc4..428b6df1 100644 --- a/latest/json-schema-validation.html +++ b/latest/json-schema-validation.html @@ -657,10 +657,10 @@

6.3. exclusiveMaximumThe value of "exclusiveMaximum" MUST be number, representing an exclusive upper limit for a numeric instance.

If the instance is a number, then the instance is valid only if it has a value strictly less than (not equal to) "exclusiveMaximum".

6.4. minimum

-

The value of "minimum" MUST be a number, representing an inclusive upper limit for a numeric instance.

+

The value of "minimum" MUST be a number, representing an inclusive lower limit for a numeric instance.

If the instance is a number, then this keyword validates only if the instance is greater than or exactly equal to "minimum".

6.5. exclusiveMinimum

-

The value of "exclusiveMinimum" MUST be number, representing an exclusive upper limit for a numeric instance.

+

The value of "exclusiveMinimum" MUST be number, representing an exclusive lower limit for a numeric instance.

If the instance is a number, then the instance is valid only if it has a value strictly greater than (not equal to) "exclusiveMinimum".

6.6. maxLength

The value of this keyword MUST be a non-negative integer.