@bluelibs/runner - v6.3.1
    Preparing search index...

    Interface MatchJsonSchema

    interface MatchJsonSchema {
        $defs?: Record<string, MatchJsonSchema>;
        $ref?: string;
        $schema?: string;
        additionalProperties?: boolean | MatchJsonSchema;
        anyOf?: readonly MatchJsonSchema[];
        const?: MatchJsonValue;
        exclusiveMaximum?: number;
        exclusiveMinimum?: number;
        format?: string;
        items?: MatchJsonSchema | readonly MatchJsonSchema[];
        maximum?: number;
        minimum?: number;
        minItems?: number;
        minLength?: number;
        pattern?: string;
        properties?: Record<string, MatchJsonSchema>;
        required?: readonly string[];
        type?:
            | "string"
            | "number"
            | "boolean"
            | "object"
            | "integer"
            | "array"
            | "null"
            | readonly (
                | "string"
                | "number"
                | "boolean"
                | "object"
                | "integer"
                | "array"
                | "null"
            )[];
        [key: string]: MatchJsonValue
        | undefined;
    }

    Hierarchy (View Summary)

    Indexable

    Index

    Properties

    $defs?: Record<string, MatchJsonSchema>
    $ref?: string
    $schema?: string
    additionalProperties?: boolean | MatchJsonSchema
    anyOf?: readonly MatchJsonSchema[]
    exclusiveMaximum?: number
    exclusiveMinimum?: number
    format?: string
    items?: MatchJsonSchema | readonly MatchJsonSchema[]
    maximum?: number
    minimum?: number
    minItems?: number
    minLength?: number
    pattern?: string
    properties?: Record<string, MatchJsonSchema>
    required?: readonly string[]
    type?:
        | "string"
        | "number"
        | "boolean"
        | "object"
        | "integer"
        | "array"
        | "null"
        | readonly (
            | "string"
            | "number"
            | "boolean"
            | "object"
            | "integer"
            | "array"
            | "null"
        )[]