NumberSchemaOptionsinterface

{
	readonly value?: number | undefined;
	readonly min?: number | undefined;
	readonly max?: number | undefined;
	readonly step?: number | undefined;
	readonly format?: typeof formatNumber | undefined;
}
PropertyType
.valuenumber
Default number value used when the input is undefined. readonly
.minnumber
Minimum allowed value. Defaults to Number.NEGATIVE_INFINITY readonly
.maxnumber
Maximum allowed value. Defaults to Number.POSITIVE_INFINITY readonly
.stepnumber
Rounding step the value is snapped to (e.g. 1 for integers). readonly
.formattypeof formatNumber
Format the number for display in downstream UIs. Defaults to formatNumber readonly

Allowed options for NumberSchema.