Variable MJAIAgentLearningCycleSchemaConst
MJAIAgentLearningCycleSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
Agent: ZodNullable<ZodString>;
AgentID: ZodString;
AgentSummary: ZodNullable<ZodString>;
EndedAt: ZodNullable<ZodDate>;
ID: ZodString;
StartedAt: ZodDate;
Status: ZodUnion<
[
ZodLiteral<"Complete">,
ZodLiteral<"Failed">,
ZodLiteral<"In-Progress">,
],
>;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Agent?: string;
AgentID?: string;
AgentSummary?: string;
EndedAt?: Date;
ID?: string;
StartedAt?: Date;
Status?: "Complete"
| "Failed"
| "In-Progress";
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
Agent?: string;
AgentID?: string;
AgentSummary?: string;
EndedAt?: Date;
ID?: string;
StartedAt?: Date;
Status?: "Complete"
| "Failed"
| "In-Progress";
},
> = ...
zod schema definition for the entity MJ: AI Agent Learning Cycles