Member Junction
    Preparing search index...

    Variable MJDashboardUserPreferenceSchemaConst

    MJDashboardUserPreferenceSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Application: ZodNullable<ZodString>;
            ApplicationID: ZodNullable<ZodString>;
            Dashboard: ZodString;
            DashboardID: ZodString;
            DisplayOrder: ZodNumber;
            ID: ZodString;
            Scope: ZodUnion<[ZodLiteral<"App">, ZodLiteral<"Global">]>;
            User: ZodNullable<ZodString>;
            UserID: ZodNullable<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Application?: string;
            ApplicationID?: string;
            Dashboard?: string;
            DashboardID?: string;
            DisplayOrder?: number;
            ID?: string;
            Scope?: "Global"
            | "App";
            User?: string;
            UserID?: string;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Application?: string;
            ApplicationID?: string;
            Dashboard?: string;
            DashboardID?: string;
            DisplayOrder?: number;
            ID?: string;
            Scope?: "Global"
            | "App";
            User?: string;
            UserID?: string;
        },
    > = ...

    zod schema definition for the entity MJ: Dashboard User Preferences