Variable MJCompanySchemaConst
MJCompanySchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Description: ZodString;
Domain: ZodNullable<ZodString>;
ID: ZodString;
LogoURL: ZodNullable<ZodString>;
Name: ZodString;
Website: ZodNullable<ZodString>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
Domain?: string;
ID?: string;
LogoURL?: string;
Name?: string;
Website?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
Domain?: string;
ID?: string;
LogoURL?: string;
Name?: string;
Website?: string;
},
> = ...
zod schema definition for the entity MJ: Companies