express-rest-decorators - v1.0.0-rc.2
    Preparing search index...

    Interface ValidationIssue

    interface ValidationIssue {
        message: string;
        path: string | readonly PropertyKey[];
        slot?: ValidationSlot;
    }
    Index

    Properties

    Properties

    message: string
    path: string | readonly PropertyKey[]

    Path to the offending field. The library emits a rendered string (e.g. "items[0].name"); external callers may pass a ReadonlyArray. Both shapes are accepted.

    Which input slot the issue originated from. Optional for backward compatibility; the library always populates it.