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

    Interface ValidationResult

    The outcome of Schema.validate: whether the document conforms, plus every conformance problem found (not just the first). Mirrors Python's ValidationResult.

    interface ValidationResult {
        errors: readonly OmnistIssue[];
        ok: boolean;
    }
    Index
    errors: readonly OmnistIssue[]

    All validation issues collected during validation (spec §5).

    ok: boolean

    true iff the document conformed to the schema with zero errors (spec §5).