Member Junction
    Preparing search index...

    Variable MJTestTypeSchemaConst

    MJTestTypeSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Description: ZodNullable<ZodString>;
            DriverClass: ZodString;
            ID: ZodString;
            Name: ZodString;
            Status: ZodUnion<
                [ZodLiteral<"Active">, ZodLiteral<"Disabled">, ZodLiteral<"Pending">],
            >;
            VariablesSchema: ZodNullable<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Description?: string;
            DriverClass?: string;
            ID?: string;
            Name?: string;
            Status?: "Active"
            | "Disabled"
            | "Pending";
            VariablesSchema?: string;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Description?: string;
            DriverClass?: string;
            ID?: string;
            Name?: string;
            Status?: "Active"
            | "Disabled"
            | "Pending";
            VariablesSchema?: string;
        },
    > = ...

    zod schema definition for the entity MJ: Test Types