interface TMappedResult<T> {
    $id?: string;
    $schema?: string;
    [Hint]?: string;
    [Kind]: "MappedResult";
    [OptionalKind]?: string;
    [ReadonlyKind]?: string;
    default?: any;
    description?: string;
    examples?: any;
    params: unknown[];
    properties: T;
    readOnly?: boolean;
    static: unknown;
    title?: string;
    writeOnly?: boolean;
}

Type Parameters

Hierarchy (view full)

Properties

$id?: string

Id for this schema

$schema?: string
[Hint]?: string
[Kind]: "MappedResult"
[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[]
properties: T
readOnly?: boolean

Optional annotation for readOnly

static: unknown
title?: string

Title of this schema

writeOnly?: boolean

Optional annotation for writeOnly