Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface RequestDerivation

    interface RequestDerivation {
        bytes: Buffer<ArrayBufferLike> | null;
        derivedDigest: string | null;
        detail: string | null;
        headerEventId: string;
        inconsistencies: readonly string[];
        recordedDigest: string | null;
        status: RequestDerivationStatus;
    }
    Index
    bytes: Buffer<ArrayBufferLike> | null

    The rebuilt bytes, or null when they could not be produced.

    derivedDigest: string | null

    sha256 of bytes, or null.

    detail: string | null

    Why the status is what it is, in one sentence. Null when reconstructed.

    headerEventId: string
    inconsistencies: readonly string[]

    Commitments in the row that do not match what the log yields. Populated even on a digest-mismatch, because "which commitment broke" is what tells an operator whether to look at the log or at the encoder.

    recordedDigest: string | null

    The digest the signed row commits to, or null when the row was unreadable.