interface IBoolean {
    default?: null | boolean;
    deprecated?: boolean;
    description?: string;
    enum?: (null | boolean)[];
    example?: any;
    examples?: any[];
    title?: string;
    type: "boolean";
    "x-nullable"?: boolean;
}

Hierarchy (View Summary)

Properties

default?: null | boolean
deprecated?: boolean

Whether the type is deprecated or not.

description?: string

Detailed description of the schema.

enum?: (null | boolean)[]
example?: any

Example value.

examples?: any[]
title?: string

Title of the schema.

type: "boolean"

Discriminator value of the type.

"x-nullable"?: boolean