Variable MJExperimentSchemaConst
MJExperimentSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Description: ZodNullable<ZodString>;
ExperimentType: ZodString;
Goal: ZodNullable<ZodString>;
ID: ZodString;
Name: ZodString;
PlanSpecTemplate: ZodNullable<ZodString>;
Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Archived">]>;
TargetMetric: ZodNullable<ZodString>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
ExperimentType?: string;
Goal?: string;
ID?: string;
Name?: string;
PlanSpecTemplate?: string;
Status?: "Active"
| "Archived";
TargetMetric?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Description?: string;
ExperimentType?: string;
Goal?: string;
ID?: string;
Name?: string;
PlanSpecTemplate?: string;
Status?: "Active"
| "Archived";
TargetMetric?: string;
},
> = ...
zod schema definition for the entity MJ: Experiments