Member Junction
    Preparing search index...

    Variable MJActionContextSchemaConst

    MJActionContextSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Action: ZodString;
            ActionID: ZodString;
            ContextType: ZodNullable<ZodString>;
            ContextTypeID: ZodNullable<ZodString>;
            ID: ZodString;
            Status: ZodUnion<
                [ZodLiteral<"Active">, ZodLiteral<"Disabled">, ZodLiteral<"Pending">],
            >;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Action?: string;
            ActionID?: string;
            ContextType?: string;
            ContextTypeID?: string;
            ID?: string;
            Status?: "Active"
            | "Disabled"
            | "Pending";
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Action?: string;
            ActionID?: string;
            ContextType?: string;
            ContextTypeID?: string;
            ID?: string;
            Status?: "Active"
            | "Disabled"
            | "Pending";
        },
    > = ...

    zod schema definition for the entity MJ: Action Contexts