Skip to content

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

OpenAPI 3.0 Array Type

Extends

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 patternsResourcefulArrayTypeOptions.items
maxItems?numberMaximum number of items allowed in the arrayResourcefulArrayTypeOptions.maxItems
minItems?numberMinimum number of items required in the arrayResourcefulArrayTypeOptions.minItems
nullable?booleanWhether the value can be nullResourcefulArrayTypeOptions.nullable
readOnly?booleanWhether the property is read-only (not included in create/update operations)ResourcefulArrayTypeOptions.readOnly
type"array"--
uniqueItems?booleanWhether all items in the array must be uniqueResourcefulArrayTypeOptions.uniqueItems
writeOnly?booleanWhether the property is write-only (not included in response serialization)ResourcefulArrayTypeOptions.writeOnly