Skip to content

Interface: ResourcefulArrayTypeOptions

Configuration options for ResourcefulArrayType instances. Defines array schemas with typed items and validation constraints. Supports complex item types including nested objects and arrays.

See

OpenAPI 3.0 Array Type

Extends

Extended by

Properties

PropertyTypeDescriptionInherited from
items| ResourcefulDataType | { oneOf: ResourcefulDataType[]; } | { allOf: ResourcefulDataType[]; } | { anyOf: ResourcefulDataType[]; } | { not: ResourcefulDataType[]; }Type specification for array items, supporting all resourceful data types and composition patterns-
maxItems?numberMaximum number of items allowed in the array-
minItems?numberMinimum number of items required in the array-
nullable?booleanWhether the value can be nullBaseInterface.nullable
readOnly?booleanWhether the property is read-only (not included in create/update operations)BaseInterface.readOnly
uniqueItems?booleanWhether all items in the array must be unique-
writeOnly?booleanWhether the property is write-only (not included in response serialization)BaseInterface.writeOnly