interface IArray {
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: any[];
    items: SwaggerV2.IJsonSchema;
    maxItems?: number;
    minItems?: number;
    title?: string;
    type: "array";
    uniqueItems?: boolean;
    "x-nullable"?: boolean;
}

Hierarchy (View Summary)

Properties

deprecated?: boolean
description?: string
example?: any
examples?: any[]
maxItems?: number
minItems?: number
title?: string
type: "array"
uniqueItems?: boolean
"x-nullable"?: boolean