Variable errorSchemaConst
errorSchema: ZodObject<
{
call_id: ZodString;
code: ZodString;
message: ZodString;
status: ZodLiteral<"error">;
},
"strip",
ZodTypeAny,
{ call_id: string; code: string; message: string; status: "error" },
{ call_id: string; code: string; message: string; status: "error" },
> = ...
Runtime validator for Error.