Skip to content
This repository was archived by the owner on Nov 2, 2023. It is now read-only.

Fixed minimum & exclusiveMinimum docs #116

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions latest/json-schema-validation.html
Original file line number Diff line number Diff line change
Expand Up @@ -657,10 +657,10 @@ <h1 id="rfc.section.6.3"><a href="#rfc.section.6.3">6.3.</a> exclusiveMaximum</h
<p id="rfc.section.6.3.p.1">The value of "exclusiveMaximum" MUST be number, representing an exclusive upper limit for a numeric instance. </p>
<p id="rfc.section.6.3.p.2">If the instance is a number, then the instance is valid only if it has a value strictly less than (not equal to) "exclusiveMaximum". </p>
<h1 id="rfc.section.6.4"><a href="#rfc.section.6.4">6.4.</a> minimum</h1>
<p id="rfc.section.6.4.p.1">The value of "minimum" MUST be a number, representing an inclusive upper limit for a numeric instance. </p>
<p id="rfc.section.6.4.p.1">The value of "minimum" MUST be a number, representing an inclusive lower limit for a numeric instance. </p>
<p id="rfc.section.6.4.p.2">If the instance is a number, then this keyword validates only if the instance is greater than or exactly equal to "minimum". </p>
<h1 id="rfc.section.6.5"><a href="#rfc.section.6.5">6.5.</a> exclusiveMinimum</h1>
<p id="rfc.section.6.5.p.1">The value of "exclusiveMinimum" MUST be number, representing an exclusive upper limit for a numeric instance. </p>
<p id="rfc.section.6.5.p.1">The value of "exclusiveMinimum" MUST be number, representing an exclusive lower limit for a numeric instance. </p>
<p id="rfc.section.6.5.p.2">If the instance is a number, then the instance is valid only if it has a value strictly greater than (not equal to) "exclusiveMinimum". </p>
<h1 id="rfc.section.6.6"><a href="#rfc.section.6.6">6.6.</a> maxLength</h1>
<p id="rfc.section.6.6.p.1">The value of this keyword MUST be a non-negative integer.</p>
Expand Down