Interface: ResourcefulArrayType
Instance type for ResourcefulArrayType with validated properties. Represents arrays with typed items and validation constraints as defined in the OpenAPI 3.0 specification.
See
Extends
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 | ResourcefulArrayTypeOptions.items |
maxItems? | number | Maximum number of items allowed in the array | ResourcefulArrayTypeOptions.maxItems |
minItems? | number | Minimum number of items required in the array | ResourcefulArrayTypeOptions.minItems |
nullable? | boolean | Whether the value can be null | ResourcefulArrayTypeOptions.nullable |
readOnly? | boolean | Whether the property is read-only (not included in create/update operations) | ResourcefulArrayTypeOptions.readOnly |
type | "array" | - | - |
uniqueItems? | boolean | Whether all items in the array must be unique | ResourcefulArrayTypeOptions.uniqueItems |
writeOnly? | boolean | Whether the property is write-only (not included in response serialization) | ResourcefulArrayTypeOptions.writeOnly |