Documentation
    Preparing search index...

    Array type definition.

    interface IArrayType {
        index: number | null;
        name: string;
        nullables: boolean[];
        recursive: boolean;
        value: IMetadataSchema;
    }
    Index

    Properties

    index: number | null

    Index in components (for deduplication).

    name: string

    Array type name.

    nullables: boolean[]

    Nullability per reference site.

    recursive: boolean

    Whether the array type is recursive.

    Element type schema.