ArraySchemaOptionsinterface

{
	readonly value?: ImmutableArray;
	readonly items: Schema<T>;
	readonly min?: number;
	readonly max?: number;
	readonly unique?: boolean;
	readonly separator?: string | RegExp;
}
PropertyType
.valueImmutableArray
Default value used when the input is undefined. Defaults to [] readonly
.itemsSchema<T>
Schema every item in the array must conform to. required readonly
.minnumber
Minimum number of items. Defaults to 0 readonly
.maxnumber
Maximum number of items. Defaults to Number.POSITIVE_INFINITY readonly
.uniqueboolean
Whether to deduplicate the items. Defaults to false readonly
.separatorstring
RegExp
String or RegExp used to split a string input into items. Defaults to "," readonly

Options for ArraySchema.