@typia/website
    Preparing search index...
    interface IArray {
        additionalItems?: boolean | OpenApiV3_1.IJsonSchema;
        deprecated?: boolean;
        description?: string;
        example?: any;
        examples?: any[] | Record<string, any>;
        items?: OpenApiV3_1.IJsonSchema | OpenApiV3_1.IJsonSchema[];
        maxItems?: number;
        minItems?: number;
        nullable?: boolean;
        prefixItems?: OpenApiV3_1.IJsonSchema[];
        title?: string;
        type: "array";
        uniqueItems?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    additionalItems?: boolean | OpenApiV3_1.IJsonSchema
    deprecated?: boolean

    Whether the type is deprecated or not.

    description?: string

    Detailed description of the schema.

    example?: any

    Example value.

    examples?: any[] | Record<string, any>
    maxItems?: number
    minItems?: number
    nullable?: boolean
    prefixItems?: OpenApiV3_1.IJsonSchema[]
    title?: string

    Title of the schema.

    type: "array"

    Discriminator value of the type.

    uniqueItems?: boolean