Member Junction
    Preparing search index...
    MJAISkillSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            ActivationMode: ZodUnion<
                [ZodLiteral<"Auto">, ZodLiteral<"RequestedOnly">],
            >;
            Category: ZodNullable<ZodString>;
            Color: ZodNullable<ZodString>;
            CreatedByUser: ZodString;
            CreatedByUserID: ZodString;
            Description: ZodNullable<ZodString>;
            IconClass: ZodNullable<ZodString>;
            ID: ZodString;
            Instructions: ZodString;
            Name: ZodString;
            Status: ZodUnion<
                [
                    ZodLiteral<"Active">,
                    ZodLiteral<"Deprecated">,
                    ZodLiteral<"Pending">,
                ],
            >;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            ActivationMode?: "Auto"
            | "RequestedOnly";
            Category?: string;
            Color?: string;
            CreatedByUser?: string;
            CreatedByUserID?: string;
            Description?: string;
            IconClass?: string;
            ID?: string;
            Instructions?: string;
            Name?: string;
            Status?: "Active" | "Pending" | "Deprecated";
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            ActivationMode?: "Auto"
            | "RequestedOnly";
            Category?: string;
            Color?: string;
            CreatedByUser?: string;
            CreatedByUserID?: string;
            Description?: string;
            IconClass?: string;
            ID?: string;
            Instructions?: string;
            Name?: string;
            Status?: "Active" | "Pending" | "Deprecated";
        },
    > = ...

    zod schema definition for the entity MJ: AI Skills