Interface RealtimeCheckpointStoreDiagnosticV1

Structured report of a load or save that did not produce a durable resume.

error is a HonuaRealtimeResumeError, so a host routes it through the same envelope as every other realtime failure. Messages never echo a stored cursor, scope fingerprint, or offending value.

interface RealtimeCheckpointStoreDiagnosticV1 {
    error: HonuaRealtimeResumeError;
    kind: "honua.realtime-checkpoint-store-diagnostic";
    operation: "load" | "save";
    reason: RealtimeCheckpointStoreReason;
    scopeKey: `sha256:${string}`;
    version: 1;
}

Properties

kind
operation: "load" | "save"
scopeKey: `sha256:${string}`

Scope key the operation addressed; a digest, never a raw identity.

version