Schema.maximum

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;
    class Schema
    @optional
    double maximum;
  2. bool exclusiveMaximum;

Meta