Variable workerStatusSchemaConst
workerStatusSchema: ZodObject<
{ attempt: ZodNumber; max_attempts: ZodNumber; status: ZodString },
"strip",
ZodTypeAny,
{ attempt: number; max_attempts: number; status: string },
{ attempt: number; max_attempts: number; status: string },
> = ...
Runtime validator for WorkerStatus.