@omnist-dev/omnist
    Preparing search index...

    Interface OmnistIssue

    Machine-readable description of a single validation, lint, or parse issue (spec §5).

    interface OmnistIssue {
        code: string;
        message: string;
        path: string;
    }
    Index
    code: string

    Stable machine-readable error code matching omnist-spec §5.

    message: string

    Human-readable explanation of the issue.

    path: string

    Path inside the document or schema where the issue occurred (e.g. "$.user.age").