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

Hierarchy (View Summary)

Properties

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