FileSchema: ZodObject<{
    Category: ZodNullable<ZodString>;
    CategoryID: ZodNullable<ZodString>;
    ContentType: ZodNullable<ZodString>;
    Description: ZodNullable<ZodString>;
    ID: ZodString;
    Name: ZodString;
    Provider: ZodString;
    ProviderID: ZodString;
    ProviderKey: ZodNullable<ZodString>;
    Status: ZodString;
    __mj_CreatedAt: ZodDate;
    __mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
    Category?: string;
    CategoryID?: string;
    ContentType?: string;
    Description?: string;
    ID?: string;
    Name?: string;
    Provider?: string;
    ProviderID?: string;
    ProviderKey?: string;
    Status?: string;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}, {
    Category?: string;
    CategoryID?: string;
    ContentType?: string;
    Description?: string;
    ID?: string;
    Name?: string;
    Provider?: string;
    ProviderID?: string;
    ProviderKey?: string;
    Status?: string;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}> = ...

zod schema definition for the entity Files

Type declaration

  • Category: ZodNullable<ZodString>
  • CategoryID: ZodNullable<ZodString>
  • ContentType: ZodNullable<ZodString>
  • Description: ZodNullable<ZodString>
  • ID: ZodString
  • Name: ZodString
  • Provider: ZodString
  • ProviderID: ZodString
  • ProviderKey: ZodNullable<ZodString>
  • Status: ZodString
  • __mj_CreatedAt: ZodDate
  • __mj_UpdatedAt: ZodDate

Type declaration

  • Optional Category?: string
  • Optional CategoryID?: string
  • Optional ContentType?: string
  • Optional Description?: string
  • Optional ID?: string
  • Optional Name?: string
  • Optional Provider?: string
  • Optional ProviderID?: string
  • Optional ProviderKey?: string
  • Optional Status?: string
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date

Type declaration

  • Optional Category?: string
  • Optional CategoryID?: string
  • Optional ContentType?: string
  • Optional Description?: string
  • Optional ID?: string
  • Optional Name?: string
  • Optional Provider?: string
  • Optional ProviderID?: string
  • Optional ProviderKey?: string
  • Optional Status?: string
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date