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

Hierarchy (view full)

Properties

$id?: string

Id for this schema

$schema?: string
[Hint]?: string
[Kind]: "Null"
[OptionalKind]?: string
[ReadonlyKind]?: 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: null
title?: string

Title of this schema

type: "null"
writeOnly?: boolean

Optional annotation for writeOnly