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

    Hierarchy (View Summary)

    Index

    Properties

    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
    title?: string

    Title of the schema.

    type: "array"

    Discriminator value of the type.

    uniqueItems?: boolean