Skip to content

Commit

Permalink
add missing doc to minpropertieskeyword
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-toepfer committed May 30, 2024
1 parent ab24fcd commit b519ba3
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,18 @@
import java.math.BigInteger;
import java.util.Objects;

/**
* <b>minProperties</b> : <i>Integer</i>
* An object instance is valid if its number of properties is less than, or equal to, the value of this keyword.<br/>
* keyword.<br/>
* <br/>
* <ul>
* <li>assertion</li>
* </ul>
*
* source: https://www.learnjsonschema.com/2020-12/validation/minproperties/
* spec: https://json-schema.org/draft/2020-12/json-schema-validation.html#section-6.5.2
*/
final class MinPropertiesKeyword implements Assertion {

static final String NAME = "minProperties";
Expand Down

0 comments on commit b519ba3

Please sign in to comment.