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

Type Parameters

  • T extends PropertyKey[] = PropertyKey[]

Hierarchy (view full)

Properties

$id?: string

Id for this schema

$schema?: string
[Hint]?: string
[Kind]: "MappedKey"
[OptionalKind]?: string
[ReadonlyKind]?: string
default?: any

Default value for this schema

description?: string

Description of this schema

examples?: any

Example values matching this schema

keys: T
params: unknown[]
readOnly?: boolean

Optional annotation for readOnly

static: T[number]
title?: string

Title of this schema

writeOnly?: boolean

Optional annotation for writeOnly