Skip to content

Variable: RedactionJobStatusResponseSchema

ts
const RedactionJobStatusResponseSchema: ZodObject<{
  bulkRedactionResponse: ZodOptional<ZodObject<{
     results: ZodArray<ZodObject<{
        externalId: ZodString;
        successful: ZodBoolean;
     }, $loose>>;
  }, $loose>>;
  jobStatus: ZodOptional<ZodCustom<string & object | "IN_PROGRESS" | "PENDING" | "COMPLETED", string & object | "IN_PROGRESS" | "PENDING" | "COMPLETED">>;
}, $loose>;

Defined in: src/cloud/models/redactionJobStatusResponse.ts:5