Member Junction
    Preparing search index...

    Variable MJAIAgentSkillSchemaConst

    MJAIAgentSkillSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Agent: ZodNullable<ZodString>;
            AgentID: ZodString;
            ID: ZodString;
            Skill: ZodString;
            SkillID: ZodString;
            Status: ZodUnion<
                [ZodLiteral<"Active">, ZodLiteral<"Pending">, ZodLiteral<"Revoked">],
            >;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Agent?: string;
            AgentID?: string;
            ID?: string;
            Skill?: string;
            SkillID?: string;
            Status?: "Active"
            | "Pending"
            | "Revoked";
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Agent?: string;
            AgentID?: string;
            ID?: string;
            Skill?: string;
            SkillID?: string;
            Status?: "Active"
            | "Pending"
            | "Revoked";
        },
    > = ...

    zod schema definition for the entity MJ: AI Agent Skills