NumberConstraints
age-schema-client / NumberConstraints
Interface: NumberConstraints
Defined in: src/schema/types.ts:196
Number property constraints
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
minimum? | number | Minimum value | src/schema/types.ts:200 |
maximum? | number | Maximum value | src/schema/types.ts:205 |
exclusiveMinimum? | boolean | Whether the minimum value is exclusive | src/schema/types.ts:210 |
exclusiveMaximum? | boolean | Whether the maximum value is exclusive | src/schema/types.ts:215 |
multipleOf? | number | Multiple of value | src/schema/types.ts:220 |
enum? | number[] | Enumerated allowed values | src/schema/types.ts:225 |