interface TIntersect<T> {
    $id?: string;
    $schema?: string;
    [Hint]?: string;
    [Kind]: "Intersect";
    [OptionalKind]?: string;
    [ReadonlyKind]?: string;
    allOf: [...T[]];
    default?: any;
    description?: string;
    examples?: any;
    params: unknown[];
    readOnly?: boolean;
    static: TIntersectStatic<T, unknown[], unknown>;
    title?: string;
    type?: "object";
    unevaluatedProperties?: TUnevaluatedProperties;
    writeOnly?: boolean;
}

Type Parameters

Hierarchy (view full)

Properties

$id?: string

Id for this schema

$schema?: string
[Hint]?: string
[Kind]: "Intersect"
[OptionalKind]?: string
[ReadonlyKind]?: string
allOf: [...T[]]
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: TIntersectStatic<T, unknown[], unknown>
title?: string

Title of this schema

type?: "object"
unevaluatedProperties?: TUnevaluatedProperties
writeOnly?: boolean

Optional annotation for writeOnly