ExclusiveMinimum<N> is a type tag that validates numeric values are
strictly greater than the specified bound (not equal). Apply it to number
or bigint properties using TypeScript intersection types.
This constraint is mutually exclusive with Minimum - you cannot
use both on the same property. Use ExclusiveMinimum for exclusive bounds
(>) and Minimum for inclusive bounds (>=).
The constraint is enforced at runtime by typia.is(), typia.assert(), and
typia.validate(). It also generates exclusiveMinimum in JSON Schema.
Type Parameters
Valueextendsnumber|bigint
The minimum bound (exclusive - value must be greater)
Exclusive minimum value constraint (value > min).
ExclusiveMinimum<N>is a type tag that validates numeric values are strictly greater than the specified bound (not equal). Apply it tonumberorbigintproperties using TypeScript intersection types.This constraint is mutually exclusive with Minimum - you cannot use both on the same property. Use
ExclusiveMinimumfor exclusive bounds (>) andMinimumfor inclusive bounds (>=).The constraint is enforced at runtime by
typia.is(),typia.assert(), andtypia.validate(). It also generatesexclusiveMinimumin JSON Schema.