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

Whether the type is deprecated or not.

description?: string

Detailed description of the schema.

example?: any

Example value.

examples?: any[]
maxItems?: number
minItems?: number
title?: string

Title of the schema.

type: "array"

Discriminator value of the type.

uniqueItems?: boolean
"x-nullable"?: boolean