Schema.exclusiveMaximum

An upper limit for a numeric instance. If the instance is a number, then this keyword validates if "exclusiveMaximum" is true and instance is less than the provided value, or else if the instance is less than or exactly equal to the provided value.

  1. double maximum;
  2. bool exclusiveMaximum;
    class Schema
    @optional
    bool exclusiveMaximum;

Meta