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
Extends
Extended by
Properties
| Property | Type | Description | Inherited 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? | number | Maximum number of items allowed in the array | - |
minItems? | number | Minimum number of items required in the array | - |
nullable? | boolean | Whether the value can be null | BaseInterface.nullable |
readOnly? | boolean | Whether the property is read-only (not included in create/update operations) | BaseInterface.readOnly |
uniqueItems? | boolean | Whether all items in the array must be unique | - |
writeOnly? | boolean | Whether the property is write-only (not included in response serialization) | BaseInterface.writeOnly |