Member Junction
    Preparing search index...

    Variable MJAIAgentNoteTypeSchemaConst

    MJAIAgentNoteTypeSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Description: ZodNullable<ZodString>;
            ID: ZodString;
            Name: ZodNullable<ZodString>;
            Priority: ZodNumber;
            Status: ZodUnion<
                [ZodLiteral<"Active">, ZodLiteral<"Pending">, ZodLiteral<"Revoked">],
            >;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Description?: string;
            ID?: string;
            Name?: string;
            Priority?: number;
            Status?: "Active"
            | "Pending"
            | "Revoked";
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Description?: string;
            ID?: string;
            Name?: string;
            Priority?: number;
            Status?: "Active"
            | "Pending"
            | "Revoked";
        },
    > = ...

    zod schema definition for the entity MJ: AI Agent Note Types