Base protocol frame

interface ErrorResponse {
    payload: {
        code: ErrorCode;
        details?: string;
        message: string;
    };
    requestId?: string;
    timestamp: number;
    type: "error";
}

Hierarchy (view full)

Properties

payload: {
    code: ErrorCode;
    details?: string;
    message: string;
}
requestId?: string

Request correlation ID for request/response flows

timestamp: number
type