Member Junction
    Preparing search index...
    MJProjectSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Color: ZodNullable<ZodString>;
            Description: ZodNullable<ZodString>;
            Environment: ZodString;
            EnvironmentID: ZodString;
            Icon: ZodNullable<ZodString>;
            ID: ZodString;
            IsArchived: ZodBoolean;
            Name: ZodString;
            Parent: ZodNullable<ZodString>;
            ParentID: ZodNullable<ZodString>;
            RootParentID: ZodNullable<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Color?: string;
            Description?: string;
            Environment?: string;
            EnvironmentID?: string;
            Icon?: string;
            ID?: string;
            IsArchived?: boolean;
            Name?: string;
            Parent?: string;
            ParentID?: string;
            RootParentID?: string;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Color?: string;
            Description?: string;
            Environment?: string;
            EnvironmentID?: string;
            Icon?: string;
            ID?: string;
            IsArchived?: boolean;
            Name?: string;
            Parent?: string;
            ParentID?: string;
            RootParentID?: string;
        },
    > = ...

    zod schema definition for the entity MJ: Projects