Documentation
    Preparing search index...

    Interface IObjectType

    Object type definition.

    interface IObjectType {
        description?: string;
        index: number;
        jsDocTags: IJsDocTagInfo[];
        name: string;
        nullables: boolean[];
        properties: IMetadataSchema.IProperty[];
        recursive: boolean;
    }
    Index

    Properties

    description?: string

    JSDoc description.

    index: number

    Index in components (for deduplication).

    jsDocTags: IJsDocTagInfo[]

    JSDoc tags.

    name: string

    Object type name.

    nullables: boolean[]

    Nullability per reference site.

    Object properties.

    recursive: boolean

    Whether the object type is recursive.