interface IObject {
    additionalProperties?: boolean | SwaggerV2.IJsonSchema;
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: any[];
    maxProperties?: number;
    minProperties?: number;
    properties?: Record<string, SwaggerV2.IJsonSchema>;
    required?: string[];
    title?: string;
    type: "object";
    "x-nullable"?: boolean;
}

Hierarchy (View Summary)

Properties

additionalProperties?: boolean | SwaggerV2.IJsonSchema
deprecated?: boolean
description?: string
example?: any
examples?: any[]
maxProperties?: number
minProperties?: number
properties?: Record<string, SwaggerV2.IJsonSchema>
required?: string[]
title?: string
type: "object"
"x-nullable"?: boolean