Variable MJMLAlgorithmUseCaseSchemaConst
MJMLAlgorithmUseCaseSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Description: ZodNullable<ZodString>;
DisplayOrder: ZodNumber;
Guidance: ZodNullable<ZodString>;
ID: ZodString;
Name: ZodString;
ProblemTypeScope: ZodUnion<
[
ZodLiteral<"any">,
ZodLiteral<"classification">,
ZodLiteral<"regression">,
],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
DisplayOrder?: number;
Guidance?: string;
ID?: string;
Name?: string;
ProblemTypeScope?: "any"
| "classification"
| "regression";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
DisplayOrder?: number;
Guidance?: string;
ID?: string;
Name?: string;
ProblemTypeScope?: "any"
| "classification"
| "regression";
},
> = ...
zod schema definition for the entity MJ: ML Algorithm Use Cases