Skip to main content

Class: ArrayType

Array type supports arrays of SchemaTypes and arrays of subdocuments.

Options

  • required flag to define if the field is mandatory
  • validator that will be applied to the field, allowed function, object or string with the name of the custom validator
  • default that will define the initial value of the field, allowed and value or function to generate it
  • immutable that will define this field as immutable. Ottoman prevents you from changing immutable fields if the schema as configure like strict

Example

const postSchemaDef = new Schema({
postTags: [String],
comments: [{ type: commentSchema, ref: 'Comment' }],
});

Hierarchy

Constructors

constructor

new ArrayType(name, itemType, options?)

Parameters

NameType
namestring
itemTypeIOttomanType
options?CoreTypeOptions

Overrides

CoreType.constructor

Defined in

schema/types/array-type.ts:26

Properties

itemType

itemType: IOttomanType

Defined in

schema/types/array-type.ts:26


name

name: string

Inherited from

CoreType.name

Defined in

schema/interfaces/schema.types.ts:51


options

Optional options: CoreTypeOptions

Inherited from

CoreType.options

Defined in

schema/types/core-type.ts:23


typeName

typeName: string

Inherited from

CoreType.typeName

Defined in

schema/interfaces/schema.types.ts:51


sName

Static sName: string = Array.name

Overrides

CoreType.sName

Defined in

schema/types/array-type.ts:30

Accessors

default

get default(): unknown

Returns

unknown

Inherited from

CoreType.default

Defined in

schema/types/core-type.ts:39


required

get required(): boolean | RequiredOption | RequiredFunction

Returns

boolean | RequiredOption | RequiredFunction

Inherited from

CoreType.required

Defined in

schema/types/core-type.ts:31


validator

get validator(): undefined | string | ValidatorFunction | ValidatorOption

Returns

undefined | string | ValidatorFunction | ValidatorOption

Inherited from

CoreType.validator

Defined in

schema/types/core-type.ts:35

Methods

buildDefault

buildDefault(): unknown

Returns

unknown

Inherited from

CoreType.buildDefault

Defined in

schema/types/core-type.ts:43


cast

cast(value, strategy?): unknown

Parameters

NameTypeDefault value
valueunknownundefined
strategyCAST_STRATEGYCAST_STRATEGY.DEFAULT_OR_DROP

Returns

unknown

Overrides

CoreType.cast

Defined in

schema/types/array-type.ts:32


checkRequired

checkRequired(): string | void

Returns

string | void

Inherited from

CoreType.checkRequired

Defined in

schema/types/core-type.ts:62


checkValidator

checkValidator(value): void

Parameters

NameType
valueunknown

Returns

void

Inherited from

CoreType.checkValidator

Defined in

schema/types/core-type.ts:71


isEmpty

isEmpty(value): boolean

Parameters

NameType
valueunknown

Returns

boolean

Inherited from

CoreType.isEmpty

Defined in

schema/types/core-type.ts:75


isStrictStrategy

isStrictStrategy(strategy): boolean

Parameters

NameType
strategyVALIDATION_STRATEGY

Returns

boolean

Inherited from

CoreType.isStrictStrategy

Defined in

schema/types/core-type.ts:79


validate

validate(value, strict?): unknown

Parameters

NameTypeDefault value
valueunknownundefined
strictbooleantrue

Returns

unknown

Overrides

CoreType.validate

Defined in

schema/types/array-type.ts:39