@archastro/sdk
    Preparing search index...

    Interface GraphValidation

    Schema for graph validation responses

    interface GraphValidation {
        error?: string;
        findings?: Record<string, unknown>[];
        ok: boolean;
        valid?: boolean;
    }
    Index

    Properties

    error?: string

    Error message if graph construction or validation failed

    findings?: Record<string, unknown>[]

    Structured findings from static analysis (unreachable nodes, dead-ends, cycles)

    ok: boolean

    Whether graph construction succeeded

    valid?: boolean

    Whether the graph passed structural validation and analysis