Variable MJTestSuiteSchemaConst
MJTestSuiteSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Configuration: ZodNullable<ZodString>;
Description: ZodNullable<ZodString>;
ID: ZodString;
MaxExecutionTimeMS: ZodNullable<ZodNumber>;
Name: ZodString;
Parent: ZodNullable<ZodString>;
ParentID: ZodNullable<ZodString>;
RootParentID: ZodNullable<ZodString>;
Status: ZodUnion<
[ZodLiteral<"Active">, ZodLiteral<"Disabled">, ZodLiteral<"Pending">],
>;
Tags: ZodNullable<ZodString>;
Variables: ZodNullable<ZodString>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Configuration?: string;
Description?: string;
ID?: string;
MaxExecutionTimeMS?: number;
Name?: string;
Parent?: string;
ParentID?: string;
RootParentID?: string;
Status?: "Active"
| "Disabled"
| "Pending";
Tags?: string;
Variables?: string;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Configuration?: string;
Description?: string;
ID?: string;
MaxExecutionTimeMS?: number;
Name?: string;
Parent?: string;
ParentID?: string;
RootParentID?: string;
Status?: "Active"
| "Disabled"
| "Pending";
Tags?: string;
Variables?: string;
},
> = ...
zod schema definition for the entity MJ: Test Suites