Schema.minimum

A lower limit for a numeric instance. If the instance is a number, then this keyword validates if "exclusiveMinimum" is true and instance is greater than the provided value, or else if the instance is greater than or exactly equal to the provided value.

  1. double minimum;
    class Schema
    @optional
    double minimum;
  2. bool exclusiveMinimum;

Meta