ContentProcessRunSchema: ZodObject<{
    EndTime: ZodNullable<ZodDate>;
    ID: ZodString;
    ProcessedItems: ZodNullable<ZodNumber>;
    Source: ZodNullable<ZodString>;
    SourceID: ZodString;
    StartTime: ZodNullable<ZodDate>;
    Status: ZodNullable<ZodString>;
    __mj_CreatedAt: ZodDate;
    __mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
    EndTime?: Date;
    ID?: string;
    ProcessedItems?: number;
    Source?: string;
    SourceID?: string;
    StartTime?: Date;
    Status?: string;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}, {
    EndTime?: Date;
    ID?: string;
    ProcessedItems?: number;
    Source?: string;
    SourceID?: string;
    StartTime?: Date;
    Status?: string;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}> = ...

zod schema definition for the entity Content Process Runs

Type declaration

  • EndTime: ZodNullable<ZodDate>
  • ID: ZodString
  • ProcessedItems: ZodNullable<ZodNumber>
  • Source: ZodNullable<ZodString>
  • SourceID: ZodString
  • StartTime: ZodNullable<ZodDate>
  • Status: ZodNullable<ZodString>
  • __mj_CreatedAt: ZodDate
  • __mj_UpdatedAt: ZodDate

Type declaration

  • Optional EndTime?: Date
  • Optional ID?: string
  • Optional ProcessedItems?: number
  • Optional Source?: string
  • Optional SourceID?: string
  • Optional StartTime?: Date
  • Optional Status?: string
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date

Type declaration

  • Optional EndTime?: Date
  • Optional ID?: string
  • Optional ProcessedItems?: number
  • Optional Source?: string
  • Optional SourceID?: string
  • Optional StartTime?: Date
  • Optional Status?: string
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date