Member Junction
    Preparing search index...

    Variable MJEntityFormOverrideSchemaConst

    MJEntityFormOverrideSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Component: ZodString;
            ComponentID: ZodString;
            Description: ZodNullable<ZodString>;
            Entity: ZodString;
            EntityID: ZodString;
            ID: ZodString;
            Name: ZodString;
            Notes: ZodNullable<ZodString>;
            Priority: ZodNumber;
            Role: ZodNullable<ZodString>;
            RoleID: ZodNullable<ZodString>;
            Scope: ZodUnion<
                [ZodLiteral<"Global">, ZodLiteral<"Role">, ZodLiteral<"User">],
            >;
            Status: ZodUnion<
                [ZodLiteral<"Active">, ZodLiteral<"Inactive">, ZodLiteral<"Pending">],
            >;
            User: ZodNullable<ZodString>;
            UserID: ZodNullable<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Component?: string;
            ComponentID?: string;
            Description?: string;
            Entity?: string;
            EntityID?: string;
            ID?: string;
            Name?: string;
            Notes?: string;
            Priority?: number;
            Role?: string;
            RoleID?: string;
            Scope?: "Role"
            | "User"
            | "Global";
            Status?: "Active" | "Pending" | "Inactive";
            User?: string;
            UserID?: string;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Component?: string;
            ComponentID?: string;
            Description?: string;
            Entity?: string;
            EntityID?: string;
            ID?: string;
            Name?: string;
            Notes?: string;
            Priority?: number;
            Role?: string;
            RoleID?: string;
            Scope?: "Role"
            | "User"
            | "Global";
            Status?: "Active" | "Pending" | "Inactive";
            User?: string;
            UserID?: string;
        },
    > = ...

    zod schema definition for the entity MJ: Entity Form Overrides