interface IUnknown {
    default?: any;
    deprecated?: boolean;
    description?: string;
    example?: any;
    examples?: any[] | Record<string, any>;
    title?: string;
    type?: undefined;
}

Hierarchy (View Summary)

Properties

default?: any
deprecated?: boolean

Whether the type is deprecated or not.

description?: string

Detailed description of the schema.

example?: any

Example value.

examples?: any[] | Record<string, any>
title?: string

Title of the schema.

type?: undefined

Type is never be defined.