interface TBoolean {
    [Hint]?: string;
    [Kind]: "Boolean";
    [OptionalKind]?: string;
    [ReadonlyKind]?: string;
    $id?: string;
    $schema?: string;
    default?: any;
    description?: string;
    examples?: any;
    params: unknown[];
    readOnly?: boolean;
    static: boolean;
    title?: string;
    type: "boolean";
    writeOnly?: boolean;
}

Hierarchy (view full)

Properties

[Hint]?: string
[Kind]: "Boolean"
[OptionalKind]?: string
[ReadonlyKind]?: string
$id?: string

Id for this schema

$schema?: string
default?: any

Default value for this schema

description?: string

Description of this schema

examples?: any

Example values matching this schema

params: unknown[]
readOnly?: boolean

Optional annotation for readOnly

static: boolean
title?: string

Title of this schema

type: "boolean"
writeOnly?: boolean

Optional annotation for writeOnly