interface IArray {
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: Record<string, any>;
    items: OpenApiV3.IJsonSchema;
    maxItems?: number;
    minItems?: number;
    nullable?: boolean;
    title?: string;
    type: "array";
    uniqueItems?: boolean;
}

Hierarchy (View Summary)

Properties

deprecated?: boolean
description?: string
example?: any
examples?: Record<string, any>
maxItems?: number
minItems?: number
nullable?: boolean
title?: string
type: "array"
uniqueItems?: boolean