Skip to content

lspeasy / core/src / responseErrorSchema

Variable: responseErrorSchema

ts
const responseErrorSchema: ZodObject<{
  code: ZodNumber;
  data: ZodOptional<ZodUnknown>;
  message: ZodString;
}, $strip>;

Defined in: packages/core/src/jsonrpc/schemas.ts:35

Schema for JSON-RPC 2.0 Response Error

Released under the MIT License.