exclusiveMinimum property
The value of "exclusiveMinimum" MUST be a boolean, representing whether the limit in "minimum" is exclusive or not. An undefined value is the same as false. If "exclusiveMinimum" is true, then a numeric instance SHOULD NOT be equal to the value specified in "minimum". If "exclusiveMinimum" is false (or not specified), then a numeric instance MAY be equal to the value of "minimum".
Implementation
/// If "exclusiveMinimum" is true, then a numeric instance SHOULD NOT be
/// equal to the value specified in "minimum". If "exclusiveMinimum" is
/// false (or not specified), then a numeric instance MAY be equal to the
/// value of "minimum".
bool? exclusiveMinimum;