Member Junction
    Preparing search index...
    MJUserSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Email: ZodString;
            EmployeeEmail: ZodNullable<ZodString>;
            EmployeeFirstLast: ZodNullable<ZodString>;
            EmployeeID: ZodNullable<ZodString>;
            EmployeeSupervisor: ZodNullable<ZodString>;
            EmployeeSupervisorEmail: ZodNullable<ZodString>;
            EmployeeTitle: ZodNullable<ZodString>;
            FirstLast: ZodNullable<ZodString>;
            FirstName: ZodNullable<ZodString>;
            ID: ZodString;
            IsActive: ZodBoolean;
            LastName: ZodNullable<ZodString>;
            LinkedEntityID: ZodNullable<ZodString>;
            LinkedEntityRecordID: ZodNullable<ZodString>;
            LinkedRecordType: ZodString;
            Name: ZodString;
            Title: ZodNullable<ZodString>;
            Type: ZodUnion<[ZodLiteral<"Owner">, ZodLiteral<"User">]>;
            UserImageIconClass: ZodNullable<ZodString>;
            UserImageURL: ZodNullable<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Email?: string;
            EmployeeEmail?: string;
            EmployeeFirstLast?: string;
            EmployeeID?: string;
            EmployeeSupervisor?: string;
            EmployeeSupervisorEmail?: string;
            EmployeeTitle?: string;
            FirstLast?: string;
            FirstName?: string;
            ID?: string;
            IsActive?: boolean;
            LastName?: string;
            LinkedEntityID?: string;
            LinkedEntityRecordID?: string;
            LinkedRecordType?: string;
            Name?: string;
            Title?: string;
            Type?: "User"
            | "Owner";
            UserImageIconClass?: string;
            UserImageURL?: string;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Email?: string;
            EmployeeEmail?: string;
            EmployeeFirstLast?: string;
            EmployeeID?: string;
            EmployeeSupervisor?: string;
            EmployeeSupervisorEmail?: string;
            EmployeeTitle?: string;
            FirstLast?: string;
            FirstName?: string;
            ID?: string;
            IsActive?: boolean;
            LastName?: string;
            LinkedEntityID?: string;
            LinkedEntityRecordID?: string;
            LinkedRecordType?: string;
            Name?: string;
            Title?: string;
            Type?: "User"
            | "Owner";
            UserImageIconClass?: string;
            UserImageURL?: string;
        },
    > = ...

    zod schema definition for the entity MJ: Users